diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index d9e678860e..84ba5017d5 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,97 @@ +2013-07-15 Sergio Martin + + * include/languages/cs.po + include/languages/et.mo + include/languages/pt_BR.po + include/languages/nl.mo + include/languages/es.po + include/languages/pl.mo + include/languages/ko.po + include/languages/it.mo + include/languages/sl.mo + include/languages/sk.po + include/languages/uk.po + include/languages/pt.mo + include/languages/ro.po + include/languages/en_AU.mo + include/languages/ast.mo + include/languages/bg.mo + include/languages/index.pot + include/languages/bn.po + include/languages/nb.po + include/languages/cs.mo + include/languages/en.po + include/languages/ar.po + include/languages/pt_BR.mo + include/languages/es.mo + include/languages/ko.mo + include/languages/fr.po + include/languages/sk.mo + include/languages/uk.mo + include/languages/ro.mo + include/languages/mr.po + include/languages/ca.po + include/languages/da.po + include/languages/tr.po + include/languages/sv.po + include/languages/de.po + include/languages/ja.po + include/languages/zh_TW.po + include/languages/nb.mo + include/languages/bn.mo + include/languages/he.po + include/languages/fi.po + include/languages/ar.mo + include/languages/en.mo + include/languages/hi.po + include/languages/zh_CN.po + include/languages/fr.mo + include/languages/te.po + include/languages/eu.po + include/languages/en_GB.po + include/languages/mr.mo + include/languages/hu.po + include/languages/ca.mo + include/languages/da.mo + include/languages/tr.mo + include/languages/de.mo + include/languages/sv.mo + include/languages/ru.po + include/languages/ja.mo + include/languages/zh_TW.mo + include/languages/he.mo + include/languages/fi.mo + include/languages/hi.mo + include/languages/zh_CN.mo + include/languages/el.po + include/languages/gl.po + include/languages/te.mo + include/languages/eu.mo + include/languages/en_GB.mo + include/languages/et.po + include/languages/hu.mo + include/languages/nl.po + include/languages/pl.po + include/languages/it.po + include/languages/sl.po + include/languages/pt.po + include/languages/ru.mo + include/languages/en_AU.po + include/languages/ast.po + include/languages/bg.po + include/languages/el.mo + include/languages/gl.mo: Upgrade the languages + from launchpad + + * pandoradb_data.sql + pandoradb.data.postgreSQL.sql + pandoradb.data.oracle.sql + godmode/agentes/agent_wizard.wmi_explorer.php + godmode/agentes/agent_wizard.snmp_explorer.php + godmode/agentes/agent_wizard.php + godmode/agentes/configurar_agente.php: Added SNMP wizard + on Agent Wizards subtab + 2013-07-11 Mario Pulido * include/help/en/help_snmp_alert_field1.php, diff --git a/pandora_console/godmode/agentes/agent_wizard.php b/pandora_console/godmode/agentes/agent_wizard.php index f1225254a0..79cfdf44f5 100644 --- a/pandora_console/godmode/agentes/agent_wizard.php +++ b/pandora_console/godmode/agentes/agent_wizard.php @@ -31,6 +31,10 @@ switch($wizard_section) { $snmp_interfaces_explorer_style = ''; $wmi_explorer_style = 'font-weight: bold;'; break; + case 'snmp_explorer': + $snmp_interfaces_explorer_style = ''; + $wmi_explorer_style = 'font-weight: bold;'; + break; } /* diff --git a/pandora_console/godmode/agentes/agent_wizard.snmp_explorer.php b/pandora_console/godmode/agentes/agent_wizard.snmp_explorer.php new file mode 100644 index 0000000000..989a7bede1 --- /dev/null +++ b/pandora_console/godmode/agentes/agent_wizard.snmp_explorer.php @@ -0,0 +1,894 @@ + __('The SNMP remote plugin doesnt seem to be installed') . '. ' . __('It is necessary to use some features') . '.

' . __('Please, install the SNMP remote plugin (The name of the plugin must be snmp_remote.pl)'), 'no_close' => true)); +} + +// Define STATIC SNMP data +$static_snmp_descriptions = array( + 'Load-1' => 'Load Average (Last minute)', + 'Load-5' => 'Load Average (Last 5 minutes)', + 'Load-15' => 'Load Average (Last 5 minutes)', + 'memTotalSwap' => 'Total Swap Size configured for the host', + 'memAvailSwap' => 'Available Swap Space on the host', + 'memTotalReal' => 'Total Real/Physical Memory Size on the host', + 'memAvailReal' => 'Available Real/Physical Memory Space on the host', + 'memTotalFree' => 'Total Available Memory on the host', + //'memShared' => 'Total Shared Memory', + 'memCached' => 'Total Cached Memory', + 'memBuffer' => 'Total Buffered Memory', + 'ssSwapIn' => 'Amount of memory swapped in from disk (kB/s)', + 'ssSwapOut' => 'Amount of memory swapped to disk (kB/s)', + 'ssIORawSent' => 'Number of blocks sent to a block device', + 'ssIORawReceived' => 'Number of blocks received from a block device', + 'ssRawInterrupts' => 'Number of interrupts processed', + 'ssRawContexts' => 'Number of context switches', + 'ssCpuRawUser' => 'user CPU time', + 'ssCpuRawSystem' => 'system CPU time', + 'ssCpuRawIdle' => 'idle CPU time' + ); + +$static_snmp_oids = array( + 'Load-1' => '.1.3.6.1.4.1.2021.10.1.5.1', + 'Load-5' => '.1.3.6.1.4.1.2021.10.1.5.2', + 'Load-15' => '.1.3.6.1.4.1.2021.10.1.5.3', + 'memTotalSwap' => '.1.3.6.1.4.1.2021.4.3.0', + 'memAvailSwap' => '.1.3.6.1.4.1.2021.4.4.0', + 'memTotalReal' => '.1.3.6.1.4.1.2021.4.5.0', + 'memAvailReal' => '.1.3.6.1.4.1.2021.4.6.0', + 'memTotalFree' => '.1.3.6.1.4.1.2021.4.11.0', + //'memShared' => '.1.3.6.1.4.1.2021.4.13', + 'memCached' => '.1.3.6.1.4.1.2021.4.15.0', + 'memBuffer' => '.1.3.6.1.4.1.2021.4.14.0', + 'ssSwapIn' => '.1.3.6.1.4.1.2021.11.3.0', + 'ssSwapOut' => '.1.3.6.1.4.1.2021.11.4.0', + 'ssIORawSent' => '.1.3.6.1.4.1.2021.11.57.0', + 'ssIORawReceived' => '.1.3.6.1.4.1.2021.11.58.0', + 'ssRawInterrupts' => '.1.3.6.1.4.1.2021.11.59.0', + 'ssRawContexts' => '.1.3.6.1.4.1.2021.11.60.0', + 'ssCpuRawUser' => '.1.3.6.1.4.1.2021.11.50.0', + 'ssCpuRawSystem' => '.1.3.6.1.4.1.2021.11.52.0', + 'ssCpuRawIdle' => '.1.3.6.1.4.1.2021.11.53.0' + ); + +// Using plugin +if(!empty($plugin)) { + $static_snmp_descriptions['avgCpuLoad'] = 'Average of CPUs Load (%)'; + $static_snmp_descriptions['memoryUse'] = 'Memory use (%)'; +} + +$fail = false; + +if ($snmpwalk) { + // OID Used is for DISKS + $snmpis = get_snmpwalk($ip_target, $snmp_version, $snmp_community, $snmp3_auth_user, + $snmp3_security_level, $snmp3_auth_method, $snmp3_auth_pass, + $snmp3_privacy_method, $snmp3_privacy_pass, 0, ".1.3.6.1.2.1.25.2.3.1.3", $tcp_port); + + if (empty($snmpis)) { + $fail = true; + $snmpis = array(); + } + else { + $disks = array(); + // We get here only the interface part of the MIB, not full mib + foreach($snmpis as $key => $snmp) { + + $data = explode(': ',$snmp); + $keydata = explode('::',$key); + $keydata2 = explode('.',$keydata[1]); + + // Avoid results without index and results without name + if (!isset($keydata2[1]) || !isset($data[1])) { + continue; + } + + + if (array_key_exists(1,$data)) { + $disks[$data[1]] = $data[1]; + + } + else { + $disks[$data[0]] = $data[0]; + + } + } + + // OID Used is for PROCESSES + $snmpis = get_snmpwalk($ip_target, $snmp_version, $snmp_community, $snmp3_auth_user, + $snmp3_security_level, $snmp3_auth_method, $snmp3_auth_pass, + $snmp3_privacy_method, $snmp3_privacy_pass, 0, ".1.3.6.1.2.1.25.4.2.1.2", $tcp_port); + + if ($snmpis === false) { + $snmpis = array(); + } + + $processes = array(); + // We get here only the interface part of the MIB, not full mib + foreach($snmpis as $key => $snmp) { + + $data = explode(': ',$snmp); + $keydata = explode('::',$key); + $keydata2 = explode('.',$keydata[1]); + + // Avoid results without index and results without name + if (!isset($keydata2[1]) || !isset($data[1])) { + continue; + } + + if (array_key_exists(1,$data)) { + $process_name = str_replace ( "\"" , "" , $data[1]); + + } + else { + $process_name = str_replace ( "\"" , "" , $data[0]); + + } + + $processes[$process_name] = $process_name; + } + + // Keep only the first process found + $processes = array_unique($processes); + + + // OID Used is for SENSOR TEMPERATURES + $snmpis = get_snmpwalk($ip_target, $snmp_version, $snmp_community, $snmp3_auth_user, + $snmp3_security_level, $snmp3_auth_method, $snmp3_auth_pass, + $snmp3_privacy_method, $snmp3_privacy_pass, 0, ".1.3.6.1.4.1.2021.13.16.2.1", $tcp_port); + + if ($snmpis === false) { + $snmpis = array(); + } + + $temperatures = array(); + // We get here only the interface part of the MIB, not full mib + foreach($snmpis as $key => $snmp) { + + $data = explode(': ',$snmp); + $keydata = explode('::',$key); + $keydata2 = explode('.',$keydata[1]); + + // Avoid results without index and results without name + if (!isset($keydata2[1]) || !isset($data[1])) { + continue; + } + + + if ($keydata2[0] == 'lmTempSensorsDevice') { + if (array_key_exists(1,$data)) { + $temperatures[$keydata2[1]] = $data[1]; + + } + else { + $temperatures[$keydata2[1]] = $data[0]; + + } + } + } + + // Keep only the first sensor found + $temperatures = array_unique($temperatures); + + // OID Used is for DEVICES + $snmpis = get_snmpwalk($ip_target, $snmp_version, $snmp_community, $snmp3_auth_user, + $snmp3_security_level, $snmp3_auth_method, $snmp3_auth_pass, + $snmp3_privacy_method, $snmp3_privacy_pass, 0, ".1.3.6.1.4.1.2021.13.15.1.1", $tcp_port); + + if ($snmpis === false) { + $snmpis = array(); + } + + $devices = array(); + // We get here only the interface part of the MIB, not full mib + foreach($snmpis as $key => $snmp) { + + $data = explode(': ',$snmp); + $keydata = explode('::',$key); + $keydata2 = explode('.',$keydata[1]); + + // Avoid results without index and results without name + if (!isset($keydata2[1]) || !isset($data[1])) { + continue; + } + + + if ($keydata2[0] == 'diskIODevice') { + if (array_key_exists(1,$data)) { + $devices['diskIONRead' . $separator . $keydata2[1]] = $data[1] . ' - Bytes read'; + $devices['diskIONWritten' . $separator . $keydata2[1]] = $data[1] . ' - Bytes written'; + $devices['diskIONReads' . $separator . $keydata2[1]] = $data[1] . ' - Read accesses'; + $devices['diskIONWrites' . $separator . $keydata2[1]] = $data[1] . ' - Write accesses'; + } + else { + $devices['diskIONRead' . $separator . $keydata2[1]] = $data[0] . ' - Bytes read'; + $devices['diskIONWritten' . $separator . $keydata2[1]] = $data[0] . ' - Bytes written'; + $devices['diskIONReads' . $separator . $keydata2[1]] = $data[0] . ' - Read accesses'; + $devices['diskIONWrites' . $separator . $keydata2[1]] = $data[0] . ' - Write accesses'; + } + } + } + } +} + +if ($create_modules) { + $modules = get_parameter("module", array()); + + $devices = array(); + $processes = array(); + $disks = array(); + $temperatures = array(); + $snmpdata = array(); + + foreach ($modules as $module) { + // Split module data to get type + $module_exploded = explode($separator, $module); + $type = $module_exploded[0]; + + // Delete type from module data + unset($module_exploded[0]); + + // Rebuild module data + $module = implode($separator, $module_exploded); + + switch($type) { + case 'device': + $devices[] = $module; + break; + case 'process': + $processes[] = $module; + break; + case 'disk': + $disks[] = $module; + break; + case 'temperature': + $temperatures[] = $module; + break; + case 'snmpdata': + $snmpdata[] = $module; + break; + } + } + + if (agents_get_name($id_agent) == false) { + ui_print_error_message (__('No agent selected or the agent does not exist')); + } + else { + + // Common values + $values = array(); + + if ($tcp_port != '') { + $values['tcp_port'] = $tcp_port; + } + $values['snmp_community'] = $snmp_community; + $values['ip_target'] = $ip_target; + $values['tcp_send'] = $snmp_version; + + if ($snmp_version == '3') { + $values['plugin_user'] = $snmp3_auth_user; + $values['plugin_pass'] = $snmp3_auth_pass; + $values['plugin_parameter'] = $snmp3_auth_method; + $values['custom_string_1'] = $snmp3_privacy_method; + $values['custom_string_2'] = $snmp3_privacy_pass; + $values['custom_string_3'] = $snmp3_security_level; + } + + + // DEVICES + $devices_prefix_oids = array( + 'diskIONRead' => '.1.3.6.1.4.1.2021.13.15.1.1.3.', + 'diskIONWritten' => '.1.3.6.1.4.1.2021.13.15.1.1.4.', + 'diskIONReads' => '.1.3.6.1.4.1.2021.13.15.1.1.5.', + 'diskIONWrites' => '.1.3.6.1.4.1.2021.13.15.1.1.6.' + ); + + $devices_prefix_descriptions = array( + 'diskIONRead' => 'The number of bytes read from this device since boot', + 'diskIONWritten' => 'The number of bytes written to this device since boot', + 'diskIONReads' => 'The number of read accesses from this device since boot', + 'diskIONWrites' => 'The number of write accesses from this device since boot' + ); + + $results = array(); + + foreach ($devices as $device) { + // Split module data to get type, name, etc + $device_exploded = explode($separator, $device); + $device_name = $device_exploded[0]; + $device_type = $device_exploded[1]; + + // Delete type from device id + unset($device_exploded[0]); + unset($device_exploded[1]); + + // Rebuild device_name + $device_id = implode($separator, $device_exploded); + + $values['descripcion'] = $devices_prefix_descriptions[$device_type]; + + $values['id_tipo_modulo'] = modules_get_type_id('remote_snmp'); + + $values['snmp_oid'] = $devices_prefix_oids[$device_type] . $device_id; + + $values['id_modulo'] = MODULE_SNMP; + + $result = modules_create_agent_module ($id_agent, io_safe_input($device_name), $values); + + $results[$result][] = $device_name; + } + + // TEMPERATURE SENSORS + $temperatures_prefix_oid = '.1.3.6.1.4.1.2021.13.16.2.1.3.'; + $temperatures_description = 'The temperature of this sensor in C'; + + foreach ($temperatures as $temperature) { + // Split module data to get type, name, etc + $temperature_exploded = explode($separator, $temperature); + $temperature_name = $temperature_exploded[0]; + + // Delete name from temperature sensor id + unset($temperature_exploded[0]); + + // Rebuild device_name + $temperature_id = implode($separator, $temperature_exploded); + + $values['descripcion'] = $temperatures_description; + + $values['id_tipo_modulo'] = modules_get_type_id('remote_snmp'); + + $values['snmp_oid'] = $temperatures_prefix_oid . $temperature_id; + + $values['id_modulo'] = MODULE_SNMP; + + // Temperature are given in mC. Convert to Celsius + $values['post_process'] = 0.001; + + $values['unit'] = 'C'; + + $result = modules_create_agent_module ($id_agent, io_safe_input($temperature_name), $values); + + $results[$result][] = $temperature_name; + } + + // SNMP DATA (STATIC MODULES) + + foreach ($snmpdata as $snmpdata_name) { + $module_values = $values; + + $module_values['descripcion'] = $static_snmp_descriptions[$snmpdata_name]; + $module_values['id_tipo_modulo'] = modules_get_type_id('remote_snmp'); + + //Average use of CPUs is a plugin module + switch ($snmpdata_name) { + case 'avgCpuLoad': + case 'memoryUse': + $module_values['id_modulo'] = MODULE_PLUGIN; + $module_values['id_plugin'] = $plugin['id']; + + $macros = json_decode($plugin['macros'], true); + + foreach($macros as $k => $macro) { + switch($macro['macro']) { + case '_field1_': + // Field 1 is the IP Address + $macros[$k]['value'] = $module_values['ip_target']; + break; + case '_field2_': + // Field 2 is the community + $macros[$k]['value'] = $module_values['snmp_community']; + break; + case '_field3_': + // Field 3 is the plugin parameters + switch ($snmpdata_name) { + case 'avgCpuLoad': + $macros[$k]['value'] = '-m cpuload'; + break; + case 'memoryUse': + $macros[$k]['value'] = '-m memuse'; + break; + } + break; + } + } + + $module_values['macros'] = json_encode($macros); + + unset($module_values['snmp_community']); //snmp_community + unset($module_values['ip_target']); //ip_target + unset($module_values['tcp_send']); //snmp_version + break; + default: + $module_values['snmp_oid'] = $static_snmp_oids[$snmpdata_name]; + + $module_values['id_modulo'] = MODULE_SNMP; + break; + } + + $result = modules_create_agent_module ($id_agent, io_safe_input($snmpdata_name), $module_values); + + $results[$result][] = $snmpdata_name; + } + + // PROCESSES + foreach ($processes as $process) { + $module_values = $values; + + $module_values['descripcion'] = sprintf(__('Check if the process %s is running or not'), $process); + $module_values['id_tipo_modulo'] = modules_get_type_id('remote_snmp_proc'); + $module_values['id_modulo'] = MODULE_PLUGIN; + $module_values['id_plugin'] = $plugin['id']; + + $macros = json_decode($plugin['macros'], true); + + foreach($macros as $k => $macro) { + switch($macro['macro']) { + case '_field1_': + // Field 1 is the IP Address + $macros[$k]['value'] = $module_values['ip_target']; + break; + case '_field2_': + // Field 2 is the community + $macros[$k]['value'] = $module_values['snmp_community']; + break; + case '_field3_': + // Field 3 is the plugin parameters + $macros[$k]['value'] = io_safe_input('-m process -p "' . $process . '"'); + break; + } + } + + $module_values['macros'] = json_encode($macros); + + unset($module_values['snmp_community']); //snmp_community + unset($module_values['ip_target']); //ip_target + unset($module_values['tcp_send']); //snmp_version + + $result = modules_create_agent_module ($id_agent, io_safe_input($process), $module_values); + + $results[$result][] = $process; + } + + + // DISKS USE + foreach ($disks as $disk) { + $module_values = $values; + + $module_values['descripcion'] = __('Disk use information'); + $module_values['id_tipo_modulo'] = modules_get_type_id('remote_snmp'); + $module_values['id_modulo'] = MODULE_PLUGIN; + $module_values['id_plugin'] = $plugin['id']; + + $macros = json_decode($plugin['macros'], true); + + foreach($macros as $k => $macro) { + switch($macro['macro']) { + case '_field1_': + // Field 1 is the IP Address + $macros[$k]['value'] = $module_values['ip_target']; + break; + case '_field2_': + // Field 2 is the community + $macros[$k]['value'] = $module_values['snmp_community']; + break; + case '_field3_': + // Field 3 is the plugin parameters + $macros[$k]['value'] = io_safe_input('-m diskuse -d "' . io_safe_output($disk) . '"'); + break; + } + } + + $module_values['macros'] = json_encode($macros); + + unset($module_values['snmp_community']); //snmp_community + unset($module_values['ip_target']); //ip_target + unset($module_values['tcp_send']); //snmp_version + + $result = modules_create_agent_module ($id_agent, io_safe_input($disk), $module_values); + + $results[$result][] = $disk; + } + + $success_message = ''; + $error_message = ''; + + if (count($results[NOERR]) > 0) { + $success_message .= sprintf(__('%s modules created succesfully'), count($results[NOERR])) . '
'; + } + if (count($results[ERR_GENERIC]) > 0) { + $error_message .= sprintf(__('Error creating %s modules') . ':
  * ' . implode('
  * ', $results[ERR_GENERIC]), count($results[ERR_GENERIC])) . '
'; + } + if (count($results[ERR_EXIST]) > 0) { + $error_message .= sprintf(__('%s modules already exist') . ':
  * ' . implode('
  * ', $results[ERR_EXIST]), count($results[ERR_EXIST])) . '
'; + } + + if (!empty($success_message)) { + ui_print_success_message($success_message); + } + if (!empty($error_message)) { + ui_print_error_message($error_message); + } + } +} + +echo ''; +echo "
"; + +$table->width = '98%'; + +$table->valign[0] = 'top'; +$table->valign[1] = 'top'; + +$table->data[0][0] = '' . __('Target IP') . ''; +$table->data[0][1] = html_print_input_text ('ip_target', $ip_target, '', 15, 60, true); + +$table->data[0][2] = '' . __('Port') . ''; +$table->data[0][3] = html_print_input_text ('tcp_port', $tcp_port, '', 5, 20, true); + +$snmp_versions['1'] = 'v. 1'; +$snmp_versions['2'] = 'v. 2'; +$snmp_versions['2c'] = 'v. 2c'; +$snmp_versions['3'] = 'v. 3'; + +$table->data[1][0] = '' . __('SNMP community') . ''; +$table->data[1][1] = html_print_input_text ('snmp_community', $snmp_community, '', 15, 60, true); + +$table->data[1][2] = '' . __('SNMP version') . ''; +$table->data[1][3] = html_print_select ($snmp_versions, 'snmp_version', $snmp_version, '', '', '', true, false, false, ''); + +$table->data[1][3] .= ''; +html_print_input_hidden('snmpwalk', 1); + +html_print_table($table); + +unset($table); + +//SNMP3 OPTIONS +$table->width = '98%'; + +$table->valign[0] = 'top'; +$table->valign[1] = 'top'; + +$table->data[2][1] = ''.__('Auth user').''; +$table->data[2][2] = html_print_input_text ('snmp3_auth_user', $snmp3_auth_user, '', 15, 60, true); +$table->data[2][3] = ''.__('Auth password').''; +$table->data[2][4] = html_print_input_text ('snmp3_auth_pass', $snmp3_auth_pass, '', 15, 60, true); +$table->data[2][4] .= html_print_input_hidden('active_snmp_v3', 0, true); + +$table->data[5][0] = ''.__('Privacy method').''; +$table->data[5][1] = html_print_select(array('DES' => __('DES'), 'AES' => __('AES')), 'snmp3_privacy_method', $snmp3_privacy_method, '', '', '', true); +$table->data[5][2] = ''.__('privacy pass').''; +$table->data[5][3] = html_print_input_text ('snmp3_privacy_pass', $snmp3_privacy_pass, '', 15, 60, true); + +$table->data[6][0] = ''.__('Auth method').''; +$table->data[6][1] = html_print_select(array('MD5' => __('MD5'), 'SHA' => __('SHA')), 'snmp3_auth_method', $snmp3_auth_method, '', '', '', true); +$table->data[6][2] = ''.__('Security level').''; +$table->data[6][3] = html_print_select(array('noAuthNoPriv' => __('Not auth and not privacy method'), + 'authNoPriv' => __('Auth and not privacy method'), 'authPriv' => __('Auth and privacy method')), 'snmp3_security_level', $snmp3_security_level, '', '', '', true); + +if ($snmp_version == 3) { + echo '
'; +} +else { + echo ''; + +echo "
"; +echo ''; +html_print_submit_button(__('SNMP Walk'), 'snmp_walk', false, array('class' => 'sub next')); +echo "
"; + +if ($snmpwalk && $fail) { + ui_print_error_message(__('Unable to do SNMP walk')); +} + +unset($table); + +echo ""; + +if (!$fail) { + echo ''; + echo "
"; + echo ''; + + html_print_input_hidden('create_modules', 1); + html_print_input_hidden('ip_target', $ip_target); + html_print_input_hidden('tcp_port', $tcp_port); + html_print_input_hidden('snmp_community', $snmp_community); + html_print_input_hidden('snmp_version', $snmp_version); + html_print_input_hidden('snmp3_auth_user', $snmp3_auth_user); + html_print_input_hidden('snmp3_auth_pass', $snmp3_auth_pass); + html_print_input_hidden('snmp3_auth_method', $snmp3_auth_method); + html_print_input_hidden('snmp3_privacy_method', $snmp3_privacy_method); + html_print_input_hidden('snmp3_privacy_pass', $snmp3_privacy_pass); + html_print_input_hidden('snmp3_security_level', $snmp3_security_level); + + $table->width = '98%'; + + // Mode selector + $modes = array(); + $modes['devices'] = __('Devices'); + $modes['processes'] = __('Processes'); + $modes['disks'] = __('Free space on disk'); + $modes['temperatures'] = __('Temperature sensors'); + $modes['snmpdata'] = __('SNMP data'); + + $table->data[1][0] = __('Wizard mode') . ': '; + $table->data[1][0] .= html_print_select ($modes, + 'snmp_wizard_modes', '', '', '', '', true, false, false); + $table->cellstyle[1][0] = 'vertical-align: middle;'; + + $table->colspan[1][0] = 2; + $table->data[1][2] = ''.__('Modules').''; + $table->cellstyle[1][2] = 'vertical-align: middle;'; + + // Devices list + $table->data[2][0] .= '
'; + $table->data[2][0] .= html_print_select ($devices, 'devices', '', '', + '', '', true, true, true, '', false, 'width: 300px;'); + $table->data[2][0] .= '
'; + + // If SNMP remote plugin is not installed, show an advice + if(empty($plugin)) { + // Processes list + $table->data[2][0] .= '
'; + $table->data[2][0] .= ui_print_info_message(__('SNMP remote plugin is necessary for this feature'), '', true); + $table->data[2][0] .= '
'; + + // Disks list + $table->data[2][0] .= '
'; + $table->data[2][0] .= ui_print_info_message(__('SNMP remote plugin is necessary for this feature'), '', true); + $table->data[2][0] .= '
'; + } + else { + // Processes list + $table->data[2][0] .= '
'; + $table->data[2][0] .= html_print_select ($processes, 'processes', '', '', + '', '', true, true, true, '', false, 'width: 300px;'); + $table->data[2][0] .= '
'; + + // Disks list + $table->data[2][0] .= '
'; + $table->data[2][0] .= html_print_select ($disks, 'disks', '', '', + '', '', true, true, true, '', false, 'width: 300px;'); + $table->data[2][0] .= '
'; + } + + // Sensors temperatures list + $table->data[2][0] .= '
'; + $table->data[2][0] .= html_print_select ($temperatures, 'temperatures', '', '', + '', '', true, true, true, '', false, 'width: 300px;'); + $table->data[2][0] .= '
'; + + // SNMP data list + $table->data[2][0] .= '
'; + $table->data[2][0] .= html_print_select ($static_snmp_descriptions, 'snmpdata', '', '', + '', '', true, true, true, '', false, 'width: 300px;'); + $table->data[2][0] .= '
'; + + $table->cellstyle[2][0] = 'vertical-align: top; text-align: center;'; + + // Devices arrow + $table->data[2][1] = '
' . html_print_image('images/darrowright.png', true, array('title' => __('Add to modules list'))) . '
'; + // Processes arrow + $table->data[2][1] .= '
' . html_print_image('images/darrowright.png', true, array('title' => __('Add to modules list'))) . '
'; + // Disks arrow + $table->data[2][1] .= '
' . html_print_image('images/darrowright.png', true, array('title' => __('Add to modules list'))) . '
'; + // Temperatures arrow + $table->data[2][1] .= '
' . html_print_image('images/darrowright.png', true, array('title' => __('Add to modules list'))) . '
'; + // SNMP data arrow + $table->data[2][1] .= '
' . html_print_image('images/darrowright.png', true, array('title' => __('Add to modules list'))) . '
'; + + $table->data[2][1] .= '

' . html_print_image('images/cross.png', true, array('title' => __('Remove from modules list'))) . '
'; + $table->cellstyle[2][1] .= 'vertical-align: middle; text-align: center;'; + + $table->data[2][2] = html_print_select (array (), 'module[]', 0, false, '', 0, true, true, true, '', false, 'width:300px; height: 100%;'); + $table->data[2][2] .= html_print_input_hidden('agent', $id_agent, true); + $table->cellstyle[2][2] = 'vertical-align: top; text-align: center;'; + + html_print_table($table); + + echo "
"; + html_print_submit_button(__('Create modules'), 'create_modules_btn', false, array('class' => 'sub add')); + echo "
"; + unset($table); + + echo "
"; + echo "
"; + echo '
'; +} + +ui_require_jquery_file ('pandora.controls'); +ui_require_jquery_file ('ajaxqueue'); +ui_require_jquery_file ('bgiframe'); +ui_require_javascript_file ('pandora_modules'); + +?> + diff --git a/pandora_console/godmode/agentes/agent_wizard.wmi_explorer.php b/pandora_console/godmode/agentes/agent_wizard.wmi_explorer.php index 5a26e6c19b..3163a00d75 100644 --- a/pandora_console/godmode/agentes/agent_wizard.wmi_explorer.php +++ b/pandora_console/godmode/agentes/agent_wizard.wmi_explorer.php @@ -109,7 +109,7 @@ if ($wmiexplore) { $row_exploded = explode('|', $row); if (!in_array($row_exploded[$disks_name_field], $services)) { - $disk_string = sprintf(__('Free space on disk %s'), $row_exploded[$disks_name_field]); + $disk_string = sprintf(__('Free space on %s'), $row_exploded[$disks_name_field]); $disks[$row_exploded[$disks_name_field]] = $disk_string; } } @@ -244,23 +244,6 @@ if ($create_modules) { } } -// Create the interface list for the interface -$interfaces_list = array(); -foreach ($interfaces as $interface) { - // Get the interface name, removing " " characters and avoid "blank" interfaces - if (isset($interface['ifName']) && $interface['ifName']['value'] != "") { - $ifname = $interface['ifName']['value']; - } - else if (isset($interface['ifDescr']) && $interface['ifDescr']['value'] != "") { - $ifname = $interface['ifDescr']['value']; - } - else { - continue; - } - - $interfaces_list[$interface['ifIndex']['value']] = str_replace ( "\"" , "" , $ifname); -} - echo ''; echo "
"; diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index e932793ede..45d66ffde7 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1434,16 +1434,25 @@ switch ($tab) { // Hidden subtab layer echo ''; ?> diff --git a/pandora_console/include/languages/ar.mo b/pandora_console/include/languages/ar.mo index dc5f13d2ff..82b93ebe83 100644 Binary files a/pandora_console/include/languages/ar.mo and b/pandora_console/include/languages/ar.mo differ diff --git a/pandora_console/include/languages/ar.po b/pandora_console/include/languages/ar.po index e0453e69e0..8f8a74313b 100644 --- a/pandora_console/include/languages/ar.po +++ b/pandora_console/include/languages/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/ast.mo b/pandora_console/include/languages/ast.mo index 1168d940b3..1b3e330501 100644 Binary files a/pandora_console/include/languages/ast.mo and b/pandora_console/include/languages/ast.mo differ diff --git a/pandora_console/include/languages/ast.po b/pandora_console/include/languages/ast.po index d73b877e18..89155b1f5b 100644 --- a/pandora_console/include/languages/ast.po +++ b/pandora_console/include/languages/ast.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:12+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/bg.mo b/pandora_console/include/languages/bg.mo index 98a68d8cca..0ba530a777 100644 Binary files a/pandora_console/include/languages/bg.mo and b/pandora_console/include/languages/bg.mo differ diff --git a/pandora_console/include/languages/bg.po b/pandora_console/include/languages/bg.po index cb8fddc693..177d57b491 100644 --- a/pandora_console/include/languages/bg.po +++ b/pandora_console/include/languages/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:12+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: bg\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/bn.mo b/pandora_console/include/languages/bn.mo index e41bca739c..5962343be9 100644 Binary files a/pandora_console/include/languages/bn.mo and b/pandora_console/include/languages/bn.mo differ diff --git a/pandora_console/include/languages/bn.po b/pandora_console/include/languages/bn.po index 1c0c35c13e..0e6a45b3c1 100644 --- a/pandora_console/include/languages/bn.po +++ b/pandora_console/include/languages/bn.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:12+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: bn\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/ca.mo b/pandora_console/include/languages/ca.mo index 8a0a9b4deb..683983c95b 100644 Binary files a/pandora_console/include/languages/ca.mo and b/pandora_console/include/languages/ca.mo differ diff --git a/pandora_console/include/languages/ca.po b/pandora_console/include/languages/ca.po index 08e9039a35..a2af0b7ca5 100644 --- a/pandora_console/include/languages/ca.po +++ b/pandora_console/include/languages/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/cs.mo b/pandora_console/include/languages/cs.mo index d47061fcfb..4d2d89b19a 100644 Binary files a/pandora_console/include/languages/cs.mo and b/pandora_console/include/languages/cs.mo differ diff --git a/pandora_console/include/languages/cs.po b/pandora_console/include/languages/cs.po index 6f2bfcf048..9fc15693e7 100644 --- a/pandora_console/include/languages/cs.po +++ b/pandora_console/include/languages/cs.po @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: pandora-cs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-22 18:49+0200\n" -"PO-Revision-Date: 2013-04-23 21:07+0000\n" +"PO-Revision-Date: 2013-06-21 21:02+0000\n" "Last-Translator: Zbyněk Schwarz \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:15+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: cs\n" #: ../../include/functions_incidents.php:32 @@ -4705,7 +4705,7 @@ msgstr "Neexistují žádní určení agenti" #: ../../operation/agentes/status_monitor.php:45 #: ../../enterprise/meta/general/main_header.php:124 msgid "Monitor view" -msgstr "" +msgstr "Zobrazení monitorů" #: ../../operation/agentes/status_monitor.php:332 msgid "Monitor status" @@ -4762,11 +4762,11 @@ msgstr "Název modulu" #: ../../operation/agentes/status_monitor.php:392 msgid "Only it is show tags in use." -msgstr "" +msgstr "Zobrazit pouze používané značky" #: ../../operation/agentes/status_monitor.php:401 msgid "No tags" -msgstr "" +msgstr "Žádné značky" #: ../../operation/agentes/status_monitor.php:416 #: ../../operation/agentes/estado_agente.php:188 @@ -5227,7 +5227,7 @@ msgstr "Celkem" #: ../../operation/agentes/snapshot_view.php:61 msgid "Current data at" -msgstr "" +msgstr "Současná data v" #: ../../operation/agentes/status_events.php:27 msgid "Latest events for this agent" @@ -5288,7 +5288,7 @@ msgstr "Filtrovat podle názvu agenta, modulu, šablony nebo činnosti" #: ../../operation/agentes/estado_monitores.php:483 #: ../../operation/search_modules.php:180 msgid "Snapshot view" -msgstr "" +msgstr "Zobrazení snímků" #: ../../operation/agentes/estado_monitores.php:570 msgid "Full list of monitors" @@ -5296,15 +5296,15 @@ msgstr "Úplný seznam monitorů" #: ../../operation/agentes/estado_monitores.php:575 msgid "Any monitors aren't with this filter." -msgstr "" +msgstr "Žádné monitory neodpovídají tomuto filtru." #: ../../operation/agentes/estado_monitores.php:578 msgid "This agent doesn't have any active monitors." -msgstr "" +msgstr "Tento agent nemá žádné aktivní monitory" #: ../../operation/agentes/estado_monitores.php:613 msgid "Status:" -msgstr "" +msgstr "Stav:" #: ../../operation/agentes/estado_monitores.php:617 #: ../../operation/snmpconsole/snmp_view.php:321 @@ -5325,15 +5325,15 @@ msgstr "Výstraha" #: ../../enterprise/include/functions_services.php:711 #: ../../mobile/operation/agents.php:35 msgid "Unknow" -msgstr "" +msgstr "Neznámé" #: ../../operation/agentes/estado_monitores.php:629 msgid "Reset" -msgstr "" +msgstr "Obnovit" #: ../../operation/agentes/estado_monitores.php:636 msgid "Form filter" -msgstr "" +msgstr "Filtr formuláře" #: ../../operation/agentes/exportdata.php:36 ../../operation/menu.php:168 msgid "Export data" @@ -5397,7 +5397,7 @@ msgstr "Obdržena data od" #: ../../operation/agentes/datos_agente.php:174 msgid "Main database" -msgstr "" +msgstr "Hlavní databáze" #: ../../operation/agentes/datos_agente.php:174 #: ../../enterprise/include/functions_setup.php:33 @@ -5411,6 +5411,7 @@ msgid "" "Switch between the main database and the history database to retrieve module " "data" msgstr "" +"Přepínat mezi hlavní databází a databází historie pro získání dat modulu" #: ../../operation/agentes/datos_agente.php:187 msgid "Choose a time from now" @@ -5484,7 +5485,7 @@ msgstr "moduly" #: ../../operation/tree.php:541 msgid "tags" -msgstr "" +msgstr "značky" #: ../../operation/tree.php:547 ../../operation/tree.php:572 #: ../../operation/menu.php:43 @@ -5501,7 +5502,7 @@ msgstr "Seřadit agenty podle " #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1200 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1404 msgid "Tree View" -msgstr "" +msgstr "Stromové zobrazení" #: ../../operation/tree.php:601 #: ../../enterprise/include/functions_networkmap_enterprise.php:273 @@ -5545,21 +5546,23 @@ msgstr "Správa incidentů" #: ../../operation/integria_incidents/incident.php:99 msgid "Incident updated" -msgstr "" +msgstr "Incident aktualizován" #: ../../operation/integria_incidents/incident.php:102 msgid "" "There was a problem updating the incident, please check if any field was " "modified and the values are correct." msgstr "" +"Při aktualizaci incidentu nastal problém, prosím zkontrolujte pole, která " +"byla změněna a správnost hodnot." #: ../../operation/integria_incidents/incident.php:126 msgid "Incident created" -msgstr "" +msgstr "Incident vytvořen" #: ../../operation/integria_incidents/incident.php:129 msgid "There was a problem creating incident" -msgstr "" +msgstr "Při vytváření incidentu nastal problém" #: ../../operation/integria_incidents/incident.php:142 #: ../../operation/integria_incidents/incident_detail.php:111 @@ -5577,7 +5580,7 @@ msgstr "Soubor nahrán" #: ../../operation/integria_incidents/incident.php:159 msgid "There was a problem uploading file" -msgstr "" +msgstr "Při nahrávání souboru nastal problém" #: ../../operation/integria_incidents/incident.php:165 msgid "File is too big" @@ -5597,27 +5600,27 @@ msgstr "Obecná chyba nahrání" #: ../../operation/integria_incidents/incident.php:193 msgid "File deleted" -msgstr "" +msgstr "Soubor smazán" #: ../../operation/integria_incidents/incident.php:196 msgid "You user doesn't have enough rights to delete this file" -msgstr "" +msgstr "Váš uživatel nemá dostatečná práva ke smazání tohoto souboru" #: ../../operation/integria_incidents/incident.php:211 msgid "Incident deleted" -msgstr "" +msgstr "Incident smazán" #: ../../operation/integria_incidents/incident.php:214 msgid "There was a problem deteling incident" -msgstr "" +msgstr "Při mazání incidentu nastal problém" #: ../../operation/integria_incidents/incident.php:238 msgid "Workunit added" -msgstr "" +msgstr "Pracovní jednotka přidána" #: ../../operation/integria_incidents/incident.php:241 msgid "There was a problem adding workunit" -msgstr "" +msgstr "Při přidávání pracovní jednotky nastal problém" #: ../../operation/integria_incidents/incident.php:342 msgid "" @@ -6242,7 +6245,7 @@ msgstr "Nová zpráva" #: ../../operation/menu.php:327 msgid "Netflow Live View" -msgstr "" +msgstr "Živé zobrazení toku sítě" #: ../../operation/menu.php:336 ../../operation/events/events_rss.php:152 msgid "SNMP" @@ -6254,12 +6257,12 @@ msgstr "Konzole SNMP" #: ../../operation/menu.php:343 msgid "SNMP browser" -msgstr "" +msgstr "Prohlížeč SNMP" #: ../../operation/menu.php:344 #: ../../operation/snmpconsole/snmp_mib_uploader.php:30 msgid "MIB uploader" -msgstr "" +msgstr "Nahrávač MIB" #: ../../operation/menu.php:345 ../../include/functions_menu.php:424 msgid "SNMP alerts" @@ -6280,12 +6283,12 @@ msgstr "Elementy" #: ../../operation/search_results.php:60 ../../mobile/operation/home.php:37 msgid "Global search" -msgstr "" +msgstr "Globální hledání" #: ../../operation/messages/message_edit.php:35 #: ../../operation/messages/message_list.php:32 msgid "Received messages" -msgstr "" +msgstr "Obdržené zprávy" #: ../../operation/messages/message_edit.php:39 #: ../../operation/messages/message_list.php:36 @@ -6534,7 +6537,7 @@ msgstr "Uživatel nemá přidělen žádný profil/skupiny" #: ../../operation/snmpconsole/snmp_browser.php:76 msgid "SNMP Browser" -msgstr "" +msgstr "Prohlížeč SNMP" #: ../../operation/snmpconsole/snmp_view.php:57 #: ../../godmode/snmpconsole/snmp_alert.php:30 @@ -6784,7 +6787,7 @@ msgstr "Událost" #: ../../operation/events/events.php:272 msgid "History event list" -msgstr "" +msgstr "Seznam historie událostí" #: ../../operation/events/events.php:277 msgid "RSS Events" @@ -6810,7 +6813,7 @@ msgstr "Spravovat události" #: ../../operation/events/events.php:334 msgid "History" -msgstr "" +msgstr "Historie" #: ../../operation/events/events.php:338 ../../include/functions_html.php:645 #: ../../godmode/category/category.php:47 @@ -6998,7 +7001,7 @@ msgstr "Dodatečné ID" #: ../../godmode/events/custom_events.php:113 #: ../../godmode/events/custom_events.php:163 msgid "ACK Timestamp" -msgstr "" +msgstr "Časové razítko ACK" #: ../../operation/events/events.build_table.php:125 #: ../../include/functions_events.php:1982 @@ -7007,7 +7010,7 @@ msgstr "" #: ../../godmode/events/custom_events.php:116 #: ../../godmode/events/custom_events.php:164 msgid "Instructions" -msgstr "" +msgstr "Pokyny" #: ../../operation/events/events.build_table.php:170 #: ../../enterprise/include/functions_reporting_pdf.php:2553 @@ -7034,7 +7037,7 @@ msgstr "Smazat událost" #: ../../operation/events/events.build_table.php:546 msgid "Validate selected" -msgstr "" +msgstr "Ověřit zvolené" #: ../../operation/events/events.build_table.php:549 #: ../../godmode/agentes/agent_manager.php:187 @@ -7056,17 +7059,17 @@ msgstr "Filtr kontroly událostí" #: ../../operation/events/events_list.php:174 msgid "Show events graph" -msgstr "" +msgstr "Zobrazit graf událostí" #: ../../operation/events/events_list.php:182 #: ../../operation/events/events_list.php:435 msgid "No filter loaded" -msgstr "" +msgstr "Žádné filtry nenačteny" #: ../../operation/events/events_list.php:184 #: ../../operation/events/events_list.php:438 msgid "Filter loaded" -msgstr "" +msgstr "Filtr načten" #: ../../operation/events/events_list.php:186 #: ../../operation/events/events_list.php:218 @@ -7077,7 +7080,7 @@ msgstr "Uložit filtr" #: ../../operation/events/events_list.php:202 msgid "New filter" -msgstr "" +msgstr "Nový filtr" #: ../../operation/events/events_list.php:203 #: ../../operation/events/events_list.php:228 @@ -7110,17 +7113,17 @@ msgstr "Filtrovat akupinu" #: ../../operation/events/events_list.php:226 msgid "Overwrite filter" -msgstr "" +msgstr "Přepsat filtr" #: ../../operation/events/events_list.php:293 #: ../../godmode/events/event_edit_filter.php:267 msgid "Events with following tags" -msgstr "" +msgstr "Události s následujícími značkami:" #: ../../operation/events/events_list.php:296 #: ../../godmode/events/event_edit_filter.php:284 msgid "Events without following tags" -msgstr "" +msgstr "Události bez následujících značek" #: ../../operation/events/events_list.php:306 #: ../../operation/events/events_list.php:312 @@ -7238,7 +7241,7 @@ msgstr "Graf události podle uživatele" #: ../../operation/events/event_statistics.php:61 #: ../../include/functions_events.php:929 msgid "Event graph by agent" -msgstr "" +msgstr "Graf událostí podle gaenta" #: ../../operation/events/event_statistics.php:65 #: ../../enterprise/include/functions_reporting_pdf.php:2484 @@ -7246,7 +7249,7 @@ msgstr "" #: ../../include/functions_reporting.php:3755 #: ../../include/functions_reporting.php:4000 msgid "Amount events validated" -msgstr "" +msgstr "Množství ověřených událostí" #: ../../general/footer.php:30 ../../mobile/include/functions_web.php:81 #: ../../mobile/include/ui.class.php:253 @@ -7260,15 +7263,15 @@ msgstr "Stránka vytvořená v" #: ../../general/login_page.php:35 msgid "Go to Pandora FMS Website" -msgstr "" +msgstr "Přejít na internetovou stránku Pandora FMS" #: ../../general/login_page.php:39 msgid "Go to Login" -msgstr "" +msgstr "Přejít na přihlášení" #: ../../general/login_page.php:104 msgid "Log-in" -msgstr "" +msgstr "Přihlášení" #: ../../general/login_page.php:108 msgid "Logged out" @@ -7283,7 +7286,7 @@ msgstr "" #: ../../general/login_page.php:118 msgid "View details" -msgstr "" +msgstr "Zobrazit podrobnosti" #: ../../general/login_page.php:127 #: ../../enterprise/meta/general/login_page.php:82 @@ -7393,6 +7396,10 @@ msgid "" "learn more about Pandora FMS. Monitoring could be overwhelm, but take your " "time to learn how to use the power of Pandora!" msgstr "" +"Pokud používáte Pandora FMS poprvé, předkládáme Vám pár odkazů, z kterých se " +"můžete dozvědět více informací o Pandora FMS. Sledování může být " +"vyčerpávající, ale najděte si čas, jak správně využít schopnosti aplikace " +"Pandora!" #: ../../general/login_help_dialog.php:51 #: ../../general/login_help_dialog.php:54 @@ -7440,19 +7447,19 @@ msgstr "Připraven" #: ../../general/header.php:108 msgid "Configure autorefresh" -msgstr "" +msgstr "Nastavit automatické obnovení" #: ../../general/header.php:118 msgid "15 seconds" -msgstr "" +msgstr "15 vteřin" #: ../../general/header.php:123 msgid "15 minutes" -msgstr "" +msgstr "15 minut" #: ../../general/header.php:124 ../../include/ajax/module.php:77 msgid "30 minutes" -msgstr "" +msgstr "30 minut" #: ../../general/header.php:127 #: ../../enterprise/meta/monitoring/wizard/wizard.php:86 @@ -7489,7 +7496,7 @@ msgstr "Vybrat" #: ../../general/header.php:132 msgid "Disabled autorefresh" -msgstr "" +msgstr "Automatické obnovení zakázáno" #: ../../general/header.php:153 msgid "System alerts detected - Please fix as soon as possible" @@ -7502,7 +7509,7 @@ msgstr "Máte %d varování" #: ../../general/header.php:162 msgid "There are not warnings" -msgstr "" +msgstr "Žádná varování" #: ../../general/header.php:172 ../../mobile/include/functions_web.php:33 #: ../../mobile/include/ui.class.php:176 @@ -7511,7 +7518,7 @@ msgstr "Odhlásit" #: ../../general/header.php:188 msgid "New chat message" -msgstr "" +msgstr "Nová zpráva v chatu" #: ../../general/header.php:198 msgid "Message overview" @@ -7599,7 +7606,7 @@ msgstr "Vítejte v internetové konzoli Pandora FMS" #: ../../general/logon_ok.php:57 msgid "News board" -msgstr "" +msgstr "Deska novinek" #: ../../general/logon_ok.php:62 msgid "ago" @@ -7629,11 +7636,11 @@ msgstr "Přehled Pandory" #: ../../enterprise/operation/log/log_viewer.php:80 #: ../../enterprise/operation/menu.php:82 msgid "Log viewer" -msgstr "" +msgstr "Prohlížeč záznamů" #: ../../enterprise/operation/log/log_viewer.php:131 msgid "Draw chart" -msgstr "" +msgstr "Nakreslit graf" #: ../../enterprise/operation/log/log_viewer.php:134 #: ../../enterprise/include/functions_reporting_pdf.php:3457 @@ -7644,7 +7651,7 @@ msgstr "Počáteční datum" #: ../../enterprise/operation/log/log_viewer.php:146 #: ../../godmode/modules/manage_network_templates.php:214 msgid "Export to CSV" -msgstr "" +msgstr "Exportovat do CSV" #: ../../enterprise/operation/log/log_viewer.php:153 #: ../../enterprise/operation/agentes/agent_inventory.php:208 @@ -8025,34 +8032,34 @@ msgstr "Činnosti" #: ../../enterprise/operation/services/services.list.php:173 #: ../../enterprise/godmode/services/services.service.php:54 msgid "Create Service" -msgstr "" +msgstr "Vytvořit službu" #: ../../enterprise/operation/services/services.service_map.php:39 #: ../../enterprise/operation/services/services.service.php:37 #: ../../enterprise/godmode/services/services.service.php:96 #: ../../enterprise/godmode/services/services.service.php:121 msgid "Not found" -msgstr "" +msgstr "Nenalezeno" #: ../../enterprise/operation/services/services.service_map.php:66 #: ../../enterprise/operation/services/services.service.php:61 msgid "View Service" -msgstr "" +msgstr "Zobrazit službu" #: ../../enterprise/operation/services/services.service_map.php:72 #: ../../enterprise/operation/services/services.service_map.php:110 #: ../../enterprise/operation/services/services.service_map.php:115 #: ../../enterprise/operation/services/services.service.php:67 msgid "Service map" -msgstr "" +msgstr "Mapa služeb" #: ../../enterprise/operation/services/services.service_map.php:76 msgid "Service Map" -msgstr "" +msgstr "Mapa služeb" #: ../../enterprise/operation/services/services.service.php:154 msgid "List of elements" -msgstr "" +msgstr "Seznam prvků" #: ../../enterprise/include/functions_inventory.php:48 #: ../../enterprise/include/functions_inventory.php:373 @@ -8094,7 +8101,7 @@ msgstr "Vypsat šablony" #: ../../enterprise/include/functions_reporting.php:60 msgid "Templates wizard" -msgstr "" +msgstr "Průvodce šablonami" #: ../../enterprise/include/functions_reporting.php:76 #: ../../enterprise/include/functions_reporting.php:2741 @@ -8110,22 +8117,22 @@ msgstr "Šablony" #: ../../enterprise/include/functions_reporting.php:80 msgid "Templates Wizard" -msgstr "" +msgstr "Průvodce šablonou" #: ../../enterprise/include/functions_reporting.php:1189 #, php-format msgid "Graph agents(%s) - %s" -msgstr "" +msgstr "Agenti grafu(%s) - %s" #: ../../enterprise/include/functions_reporting.php:1300 #, php-format msgid "%s - agents (%s) - %s" -msgstr "" +msgstr "%s - agenti (%s) - %s" #: ../../enterprise/include/functions_reporting.php:1560 #, php-format msgid "%s - %s" -msgstr "" +msgstr "%s - %s" #: ../../enterprise/include/functions_reporting.php:2773 #: ../../enterprise/include/functions_reporting.php:2823 @@ -8493,24 +8500,24 @@ msgstr "Moduly v kritickém nebo varovném stavu" #: ../../enterprise/include/functions_reporting_csv.php:1130 #, php-format msgid "There are no Modules over or equal to %s" -msgstr "" +msgstr "Žádné moduly nejsou přes nebo se rovnají %s" #: ../../enterprise/include/functions_reporting_csv.php:1133 #, php-format msgid "There are no Modules under %s" -msgstr "" +msgstr "Žádné moduly nejsou pod %s" #: ../../enterprise/include/functions_reporting_csv.php:1136 msgid "There are no Modules at normal status" -msgstr "" +msgstr "Žádné moduly nejsou v normálním stavu" #: ../../enterprise/include/functions_reporting_csv.php:1139 msgid "There are no Modules at critial or warning status" -msgstr "" +msgstr "Žádné moduly nejsou v kritickém nebo varovném stavu" #: ../../enterprise/include/functions_reporting_csv.php:1142 msgid "There are no Modules under those conditions" -msgstr "" +msgstr "Žádné moduly nejsou v těchto podmínkách" #: ../../enterprise/include/functions_reporting_csv.php:1195 msgid "Serialized data " @@ -8524,7 +8531,7 @@ msgstr "Nejsou žádná data." #: ../../enterprise/include/functions_services.php:23 msgid "Service does not exist." -msgstr "" +msgstr "Služba neexistuje." #: ../../enterprise/include/functions_services.php:30 msgid "Module store the service does not exist." @@ -8581,7 +8588,7 @@ msgstr "Upozornění na váhu" #: ../../enterprise/include/functions_services.php:823 msgid "Weight Unknown" -msgstr "" +msgstr "Váha neznámá" #: ../../enterprise/include/functions_services.php:824 msgid "Weight Ok" @@ -8606,7 +8613,7 @@ msgstr "Smazat prvek služby" #: ../../enterprise/include/functions_services.php:965 msgid "FAIL" -msgstr "" +msgstr "CHYBA" #: ../../enterprise/include/functions_alert_event.php:920 msgid "Module alert" @@ -8800,7 +8807,7 @@ msgstr "Prùm" #: ../../include/functions_reporting.php:4032 #: ../../include/functions_reports.php:587 msgid "Alert report group" -msgstr "" +msgstr "Skupina hlášení o výstraze" #: ../../enterprise/include/functions_reporting_pdf.php:2056 msgid "There are no alerts for this module." @@ -8826,21 +8833,21 @@ msgstr "Žádné události ve skupině." #: ../../enterprise/include/functions_reporting_pdf.php:2396 #: ../../include/functions_reporting.php:3931 msgid "Events by agent" -msgstr "" +msgstr "Události podle agenta" #: ../../enterprise/include/functions_reporting_pdf.php:2436 #: ../../enterprise/include/functions_reporting_pdf.php:2618 #: ../../include/functions_reporting.php:3709 #: ../../include/functions_reporting.php:3954 msgid "Events validated by user" -msgstr "" +msgstr "Události ověřené uživatelem" #: ../../enterprise/include/functions_reporting_pdf.php:2460 #: ../../enterprise/include/functions_reporting_pdf.php:2642 #: ../../include/functions_reporting.php:3732 #: ../../include/functions_reporting.php:3977 msgid "Events by criticity" -msgstr "" +msgstr "Události podle vážnosti" #: ../../enterprise/include/functions_reporting_pdf.php:2529 msgid "There are no Events." @@ -8870,7 +8877,7 @@ msgstr "Kritičnost" #: ../../include/functions_reporting.php:2471 #: ../../include/functions_reporting.php:2578 msgid "Val. by" -msgstr "" +msgstr "Val. podle" #: ../../enterprise/include/functions_reporting_pdf.php:2829 msgid "Info" @@ -8937,11 +8944,11 @@ msgstr "Limit SLA" #: ../../enterprise/include/functions_reporting_pdf.php:3012 msgid "Agent:" -msgstr "" +msgstr "Agent:" #: ../../enterprise/include/functions_reporting_pdf.php:3015 msgid "Module:" -msgstr "" +msgstr "Modul:" #: ../../enterprise/include/functions_reporting_pdf.php:3167 #: ../../include/functions_visual_map.php:1828 @@ -9005,7 +9012,7 @@ msgstr "Nastavení agenta" #: ../../include/functions_reporting.php:5811 #: ../../include/functions_reporting.php:5952 msgid "SO" -msgstr "" +msgstr "SO" #: ../../enterprise/include/functions_reporting_pdf.php:3614 #: ../../enterprise/include/functions_reporting_pdf.php:3749 @@ -9022,7 +9029,7 @@ msgstr "IP" #: ../../enterprise/include/functions_reporting_pdf.php:3649 #: ../../enterprise/include/functions_reporting_pdf.php:3788 msgid "There are no modules." -msgstr "" +msgstr "Žádné moduly." #: ../../enterprise/include/functions_reporting_pdf.php:3656 #: ../../enterprise/include/functions_reporting_pdf.php:3795 @@ -9066,7 +9073,7 @@ msgstr "Jednotka" #: ../../enterprise/include/functions_reporting_pdf.php:3729 #: ../../include/functions_reports.php:611 msgid "Group configuration" -msgstr "" +msgstr "Nastavení skupiny" #: ../../enterprise/include/functions_login.php:22 msgid "You must change password" @@ -9213,7 +9220,7 @@ msgstr "Fronta" #: ../../enterprise/godmode/agentes/configurar_agente.php:49 #: ../../godmode/agentes/configurar_agente.php:414 msgid "Agent plugins" -msgstr "" +msgstr "Zásuvné moduly agenta" #: ../../enterprise/include/functions_policies.php:3292 msgid "Create a new policy map" @@ -9326,27 +9333,27 @@ msgstr "do vaší cílové databáze." #: ../../enterprise/include/functions_visual_map.php:287 #: ../../enterprise/include/functions_visual_map.php:298 msgid "Crit:" -msgstr "" +msgstr "Vážné:" #: ../../enterprise/include/functions_visual_map.php:168 #: ../../enterprise/include/functions_visual_map.php:221 #: ../../enterprise/include/functions_visual_map.php:289 #: ../../enterprise/include/functions_visual_map.php:300 msgid "Warn:" -msgstr "" +msgstr "Varování:" #: ../../enterprise/include/functions_visual_map.php:170 #: ../../enterprise/include/functions_visual_map.php:223 #: ../../enterprise/include/functions_visual_map.php:291 msgid "Ok:" -msgstr "" +msgstr "Ok:" #: ../../enterprise/include/functions_visual_map.php:172 #: ../../enterprise/include/functions_visual_map.php:225 #: ../../enterprise/include/functions_visual_map.php:293 #: ../../enterprise/include/functions_visual_map.php:302 msgid "Value:" -msgstr "" +msgstr "Hodnota:" #: ../../enterprise/include/functions_networkmap_enterprise.php:152 msgid "Update config" @@ -9470,11 +9477,11 @@ msgstr "Prázdný název" #: ../../enterprise/include/functions_local_components.php:68 msgid "Empty configuration" -msgstr "" +msgstr "Prázdné nastavení" #: ../../enterprise/include/functions_local_components.php:72 msgid "Empty OS" -msgstr "" +msgstr "Prázdné OS" #: ../../enterprise/include/functions_local_components.php:202 #: ../../include/functions_alerts.php:904 @@ -9513,7 +9520,7 @@ msgstr "Heslo" #: ../../enterprise/include/functions_setup.php:37 #: ../../enterprise/include/functions_setup.php:67 msgid "Log collector" -msgstr "" +msgstr "Sběrač záznamu" #: ../../enterprise/include/ajax/metaconsole.ajax.php:42 msgid "Error accesing to API" @@ -9542,6 +9549,8 @@ msgid "" "\"Translate string\" extension is missed in the server. This extension is " "mandatory to be configured on metaconsole." msgstr "" +"Rozšíření \"Translate string\" chybí na serveru. Toto rozšíření je povinné a " +"musí být nastaveni v metakonzoli." #: ../../enterprise/include/ajax/metaconsole.ajax.php:80 msgid "" @@ -9551,7 +9560,7 @@ msgstr "" #: ../../enterprise/include/ajax/metaconsole.ajax.php:88 msgid "Last event replication" -msgstr "" +msgstr "Poslední opakování události" #: ../../enterprise/include/ajax/metaconsole.ajax.php:98 msgid "Events replication is not enabled" @@ -9569,7 +9578,7 @@ msgstr "" #: ../../enterprise/include/ajax/metaconsole.ajax.php:110 msgid "Unknown error" -msgstr "" +msgstr "Neznámá chyba" #: ../../enterprise/include/functions_groups.php:47 msgid "Metaconsole" @@ -9578,7 +9587,7 @@ msgstr "Metakonzole" #: ../../enterprise/include/functions_log.php:277 #: ../../enterprise/include/functions_log.php:290 msgid "Lines" -msgstr "" +msgstr "Řádky" #: ../../enterprise/meta/general/login_page.php:115 msgid "" @@ -9614,29 +9623,29 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:121 msgid "disabled" -msgstr "" +msgstr "zakázáno" #: ../../enterprise/meta/general/main_header.php:130 msgid "Create new report" -msgstr "" +msgstr "Vytvořit nové hlášení" #: ../../enterprise/meta/general/main_header.php:132 msgid "Report templates" -msgstr "" +msgstr "Šablony hlášení" #: ../../enterprise/meta/general/main_header.php:133 #: ../../enterprise/meta/general/logon_ok.php:35 #: ../../enterprise/meta/screens/screens.php:35 #: ../../enterprise/meta/screens/screens.main.php:35 msgid "Screens" -msgstr "" +msgstr "Obrazovky" #: ../../enterprise/meta/general/main_header.php:136 #: ../../enterprise/meta/screens/screens.php:78 #: ../../enterprise/meta/screens/screens.networkmap.php:51 #: ../../enterprise/meta/screens/screens.networkmap.php:64 msgid "Networkmap" -msgstr "" +msgstr "Mapa sítě" #: ../../enterprise/meta/general/main_header.php:142 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:32 @@ -9661,12 +9670,12 @@ msgstr "Filtry" #: ../../enterprise/meta/general/main_header.php:150 #: ../../enterprise/meta/advanced/synchronizing.php:33 msgid "Synchronizing" -msgstr "" +msgstr "Synchronizování" #: ../../enterprise/meta/general/main_header.php:151 #: ../../enterprise/meta/advanced/propagation.php:33 msgid "Propagation" -msgstr "" +msgstr "Rozšíření" #: ../../enterprise/meta/general/main_header.php:153 #: ../../enterprise/meta/general/main_header.php:164 @@ -9695,27 +9704,27 @@ msgstr "Správa modulu" #: ../../enterprise/meta/general/main_header.php:155 msgid "Alert management" -msgstr "" +msgstr "Správy výstrah" #: ../../enterprise/meta/general/main_header.php:156 msgid "Tag management" -msgstr "" +msgstr "Správa značek" #: ../../enterprise/meta/general/main_header.php:157 msgid "Policy management" -msgstr "" +msgstr "Správa zásad" #: ../../enterprise/meta/general/main_header.php:158 msgid "Category management" -msgstr "" +msgstr "Správa kategorií" #: ../../enterprise/meta/general/main_header.php:160 msgid "Metasetup" -msgstr "" +msgstr "Metanastavení" #: ../../enterprise/meta/general/logon_ok.php:36 msgid "Network traffic" -msgstr "" +msgstr "Síťové přenosy" #: ../../enterprise/meta/general/logon_ok.php:37 #: ../../include/functions_networkmap.php:1060 @@ -9739,20 +9748,20 @@ msgstr "Dokončit" #: ../../enterprise/meta/monitoring/wizard/wizard.php:73 msgid "The alert you are trying to add is already in the list of alerts" -msgstr "" +msgstr "Výstraha, kterou se snažíte přidat, již je v seznamu výstrah" #: ../../enterprise/meta/monitoring/wizard/wizard.php:81 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:327 msgid "Please, select a module" -msgstr "" +msgstr "Vyberte prosím modul" #: ../../enterprise/meta/monitoring/wizard/wizard.php:82 msgid "Please, select an alert" -msgstr "" +msgstr "Prosím vyberte výstrahu" #: ../../enterprise/meta/monitoring/wizard/wizard.php:83 msgid "Please, select an agent" -msgstr "" +msgstr "Prosím vyberte agenta" #: ../../enterprise/meta/monitoring/wizard/wizard.php:87 #: ../../enterprise/meta/include/functions_wizard_meta.php:276 @@ -9763,7 +9772,7 @@ msgstr "Url" #: ../../enterprise/meta/monitoring/wizard/wizard.php:88 msgid "String" -msgstr "" +msgstr "Řetězec" #: ../../enterprise/meta/monitoring/wizard/wizard.php:117 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:120 @@ -9772,7 +9781,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:152 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:131 msgid "Can't connect to Pandora FMS instance" -msgstr "" +msgstr "Nelze se připojit k instanci Pandora FMS" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 @@ -9789,7 +9798,7 @@ msgstr "Nastavení" #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:102 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:82 msgid "Advanced configuration" -msgstr "" +msgstr "Pokročilá nastavení" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:74 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:104 @@ -9798,7 +9807,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:988 #: ../../enterprise/meta/include/functions_wizard_meta.php:1076 msgid "Preview" -msgstr "" +msgstr "Náhled" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:91 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 @@ -9807,7 +9816,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:172 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:103 msgid "Create module" -msgstr "" +msgstr "Vytvořit modul" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:94 #: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:37 @@ -9815,7 +9824,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:106 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1405 msgid "Edit module" -msgstr "" +msgstr "Upravit modul" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:171 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:198 @@ -9823,15 +9832,15 @@ msgstr "" #: ../../include/functions_graph.php:714 #: ../../include/functions_graph.php:2855 msgid "Previous" -msgstr "" +msgstr "Předchozí" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:188 msgid "Please, set a name" -msgstr "" +msgstr "Prosím zadejte název" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:198 msgid "Please, set an interval" -msgstr "" +msgstr "Porosím zadejte interval" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:132 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1375 @@ -9851,40 +9860,40 @@ msgstr "Monitor" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:134 msgid "Web check" -msgstr "" +msgstr "Internetová kontrola" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:140 msgid "Select template group" -msgstr "" +msgstr "Vyberte skupinu šablon" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:201 msgid "Select template" -msgstr "" +msgstr "Vyberte šablonu" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:207 msgid "Module description" -msgstr "" +msgstr "Popis modulu" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:221 msgid "Step by step wizard" -msgstr "" +msgstr "Průvodce krok za krokem" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:227 msgid "Click Create to continue" -msgstr "" +msgstr "Pro pokračování klikněte na Vytvořit" #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:215 msgid "Please, set a valid IP address" -msgstr "" +msgstr "Zadejte prosím platnou IP adresu" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:153 msgid "Welcome to the Pandora FMS wizard." -msgstr "" +msgstr "Vítejte v průvodci Pandora FMS" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:154 #: ../../enterprise/meta/screens/screens.main.php:74 msgid "To start select an option from the left side." -msgstr "" +msgstr "Pro zahájení zvolte volbu nalevo" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:173 #: ../../godmode/menu.php:76 @@ -9898,15 +9907,15 @@ msgstr "Správa modulů" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:479 msgid "Back" -msgstr "" +msgstr "Zpět" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:219 msgid "Select the agent where the module will be created" -msgstr "" +msgstr "Vyberte agenta kde bude modul vytvořen" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:231 msgid "Create Module" -msgstr "" +msgstr "Vytvořit modul" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:328 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:401 @@ -9923,40 +9932,40 @@ msgstr "Správa výstrah" #: ../../enterprise/meta/monitoring/group_view.php:31 msgid "Group View" -msgstr "" +msgstr "Skupinové zobrazení" #: ../../enterprise/meta/monitoring/tactical.php:32 msgid "Tactical View" -msgstr "" +msgstr "Taktické zobrazení" #: ../../enterprise/meta/monitoring/tactical.php:73 msgid "Agent and monitor information" -msgstr "" +msgstr "Informace o monitoru a agentovi" #: ../../enterprise/meta/monitoring/tactical.php:130 msgid "State of agents" -msgstr "" +msgstr "Stav agentů" #: ../../enterprise/meta/monitoring/tactical.php:188 #: ../../enterprise/meta/monitoring/tactical.php:262 msgid "State of modules" -msgstr "" +msgstr "Stav modulů" #: ../../enterprise/meta/monitoring/tactical.php:250 msgid "State of Agents" -msgstr "" +msgstr "Stav agentů" #: ../../enterprise/meta/monitoring/tactical.php:283 msgid "No servers" -msgstr "" +msgstr "Žádné servery" #: ../../enterprise/meta/monitoring/tactical.php:333 msgid "Event information" -msgstr "" +msgstr "Informace o události" #: ../../enterprise/meta/monitoring/tactical.php:338 msgid "More events" -msgstr "" +msgstr "Další události" #: ../../enterprise/meta/agentsearch.php:75 msgid "Search results for" @@ -9968,7 +9977,7 @@ msgstr "V této skupině nejsou zařazeni žádní agenti" #: ../../enterprise/meta/event/event_view.php:193 msgid "Event View" -msgstr "" +msgstr "Zobrazení událostí" #: ../../enterprise/meta/event/event_view.php:197 msgid "Event viewer" @@ -10018,7 +10027,7 @@ msgstr "Značka" #: ../../enterprise/meta/event/event_view.php:547 msgid "Delete filter" -msgstr "" +msgstr "Smazat filtr" #: ../../enterprise/meta/event/event_view.php:770 #: ../../enterprise/meta/event/event_view.php:945 @@ -10091,11 +10100,11 @@ msgstr "Uživatelské jméno" #: ../../enterprise/meta/event/event_view.php:1282 msgid "Error deleting filter" -msgstr "" +msgstr "Chyba při mazání filtru" #: ../../enterprise/meta/event/event_view.php:1286 msgid "Filter deleted" -msgstr "" +msgstr "Filtr smazán" #: ../../enterprise/meta/event/event_view.php:1399 msgid "Define name and group for the filter and click on Save filter again" @@ -10111,7 +10120,7 @@ msgstr "Nelze nastavit pohotovostní režim výstrahy" #: ../../enterprise/meta/advanced/metasetup.setup.php:47 #, php-format msgid "Could not be update: Error in %s" -msgstr "" +msgstr "Nelze aktualizovat_ Chyba v %s" #: ../../enterprise/meta/advanced/metasetup.password.php:53 #: ../../enterprise/meta/advanced/metasetup.visual.php:53 @@ -10231,7 +10240,7 @@ msgstr "Porovnat předchozí heslo" #: ../../enterprise/meta/advanced/metasetup.password.php:135 msgid "Passwords" -msgstr "" +msgstr "Hesla" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:133 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:134 @@ -10256,26 +10265,26 @@ msgstr "Prosím vyhledejte jakýkoliv text." #: ../../enterprise/meta/advanced/synchronizing.php:58 #: ../../enterprise/meta/advanced/synchronizing.php:76 msgid "Users synchronization" -msgstr "" +msgstr "Synchronizace uživatelů" #: ../../enterprise/meta/advanced/synchronizing.php:62 #: ../../enterprise/meta/advanced/synchronizing.php:79 msgid "Groups synchronization" -msgstr "" +msgstr "Synchronizace skupin" #: ../../enterprise/meta/advanced/synchronizing.php:66 #: ../../enterprise/meta/advanced/synchronizing.php:82 msgid "Alerts synchronization" -msgstr "" +msgstr "Synchronizace výstrah" #: ../../enterprise/meta/advanced/synchronizing.php:70 #: ../../enterprise/meta/advanced/synchronizing.php:85 msgid "Tags synchronization" -msgstr "" +msgstr "Synchronizace značek" #: ../../enterprise/meta/advanced/policymanager.php:35 msgid "Policy Manager" -msgstr "" +msgstr "Správa zásad" #: ../../enterprise/meta/advanced/policymanager.php:64 msgid "Apply policies" @@ -10294,19 +10303,19 @@ msgstr "Použití zásad" #: ../../enterprise/meta/advanced/propagation.component.php:255 #, php-format msgid "Error creating %s components groups " -msgstr "" +msgstr "Chyba při vytváření %s částí skupin " #: ../../enterprise/meta/advanced/synchronizing.component.php:258 #: ../../enterprise/meta/advanced/propagation.component.php:258 #, php-format msgid "Created %s component groups" -msgstr "" +msgstr "Vytvořeno %s části skupin" #: ../../enterprise/meta/advanced/synchronizing.component.php:263 #: ../../enterprise/meta/advanced/propagation.component.php:263 #, php-format msgid "Error creating/updating %s/%s local components " -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s místních součástí " #: ../../enterprise/meta/advanced/synchronizing.component.php:266 #: ../../enterprise/meta/advanced/propagation.component.php:266 @@ -10318,13 +10327,13 @@ msgstr "" #: ../../enterprise/meta/advanced/propagation.component.php:271 #, php-format msgid "Error creating/updating %s/%s network components " -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s síťových součástí " #: ../../enterprise/meta/advanced/synchronizing.component.php:274 #: ../../enterprise/meta/advanced/propagation.component.php:274 #, php-format msgid "Created/Updated %s/%s network components" -msgstr "" +msgstr "Vytvořeno/Aktualizováno %s/%s síťových součástí" #: ../../enterprise/meta/advanced/synchronizing.component.php:280 #: ../../enterprise/meta/advanced/propagation.component.php:280 @@ -10346,7 +10355,7 @@ msgstr "Chyba při připojování k %s" #: ../../enterprise/meta/advanced/synchronizing.group.php:153 #: ../../enterprise/meta/advanced/synchronizing.user.php:507 msgid "This metaconsole" -msgstr "" +msgstr "Tato metakonzole" #: ../../enterprise/meta/advanced/synchronizing.component.php:304 #: ../../enterprise/meta/advanced/propagation.component.php:304 @@ -10467,24 +10476,24 @@ msgstr "Použít zaoblené rohy" #: ../../enterprise/meta/advanced/metasetup.visual.php:127 #: ../../enterprise/meta/include/functions_meta.php:333 msgid "Show Visual Console" -msgstr "" +msgstr "Zobrazit vizuální konzoli" #: ../../enterprise/meta/advanced/metasetup.visual.php:127 msgid "Switch to show or hide Visual Console." -msgstr "" +msgstr "Přepněte pro zobrazení nebo skrytí vizuální konzole" #: ../../enterprise/meta/advanced/metasetup.visual.php:131 #: ../../enterprise/meta/include/functions_meta.php:343 msgid "Metaconsole elements" -msgstr "" +msgstr "Prvky metakonzole" #: ../../enterprise/meta/advanced/metasetup.visual.php:131 msgid "The number of elements retrieved for each instance in some views." -msgstr "" +msgstr "Počet prvků získaných pro každou instanci v některých zobrazeních." #: ../../enterprise/meta/advanced/metasetup.visual.php:138 msgid "Visual" -msgstr "" +msgstr "Vizuální" #: ../../enterprise/meta/advanced/policymanager.queue.php:60 #: ../../enterprise/godmode/policies/policy_queue.php:59 @@ -10541,12 +10550,12 @@ msgstr "Vyprázdnit frontu" #: ../../enterprise/meta/advanced/propagation.php:58 #: ../../enterprise/meta/advanced/propagation.php:68 msgid "Components propagation" -msgstr "" +msgstr "Rozšíření komponentů" #: ../../enterprise/meta/advanced/propagation.php:62 #: ../../enterprise/meta/advanced/propagation.php:71 msgid "Agents movement" -msgstr "" +msgstr "Pohyb agentů" #: ../../enterprise/meta/advanced/synchronizing.agent.php:80 #: ../../enterprise/meta/advanced/propagation.agent.php:80 @@ -10618,7 +10627,7 @@ msgstr "Filtr skupiny" #: ../../enterprise/meta/advanced/synchronizing.agent.php:153 #: ../../enterprise/meta/advanced/propagation.agent.php:153 msgid "Add agents to destination server" -msgstr "" +msgstr "Přidat agenty do cílového serveru" #: ../../enterprise/meta/advanced/synchronizing.agent.php:163 #: ../../enterprise/meta/advanced/propagation.agent.php:163 @@ -10628,32 +10637,32 @@ msgstr "Přesunout" #: ../../enterprise/meta/advanced/synchronizing.alert.php:286 #, php-format msgid "Error creating/updating %s/%s comamnds" -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s příkazů" #: ../../enterprise/meta/advanced/synchronizing.alert.php:289 #, php-format msgid "Created/Updated %s/%s commands" -msgstr "" +msgstr "Vytvořeno/Aktualizováno %s/%s příkazů" #: ../../enterprise/meta/advanced/synchronizing.alert.php:294 #, php-format msgid "Error creating/updating %s/%s actions" -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s činností" #: ../../enterprise/meta/advanced/synchronizing.alert.php:297 #, php-format msgid "Created/Updated %s/%s actions" -msgstr "" +msgstr "Vytvořeno/Aktualizováno %s/%s činností" #: ../../enterprise/meta/advanced/synchronizing.alert.php:302 #, php-format msgid "Error creating/updating %s/%s templates" -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s šablon" #: ../../enterprise/meta/advanced/synchronizing.alert.php:305 #, php-format msgid "Created/Updated %s/%s templates" -msgstr "" +msgstr "Vytvořeno/Aktualizováno %s/%s šablon" #: ../../enterprise/meta/advanced/metasetup.performance.php:70 #: ../../enterprise/meta/include/functions_meta.php:353 @@ -10665,7 +10674,7 @@ msgstr "Max. dní před smazáním událostí" #: ../../enterprise/meta/advanced/metasetup.performance.php:74 #: ../../enterprise/meta/include/functions_meta.php:363 msgid "Active events history" -msgstr "" +msgstr "Historie aktivních událostí" #: ../../enterprise/meta/advanced/metasetup.performance.php:79 #: ../../enterprise/meta/include/functions_meta.php:373 @@ -10815,7 +10824,7 @@ msgstr "URL konzole" #: ../../enterprise/meta/advanced/metasetup.consoles.php:205 msgid "" "Complete path to Pandora console without last \"/\" character. Example " -msgstr "" +msgstr "Úplná cesta ke konzoli Pandora bez posledního znaku \"/\". Příklad " #: ../../enterprise/meta/advanced/metasetup.consoles.php:207 #: ../../enterprise/godmode/setup/setup_metaconsole.php:183 @@ -10874,7 +10883,7 @@ msgstr "Kompatibilita" #: ../../enterprise/godmode/setup/setup.php:50 #: ../../include/functions_config.php:194 msgid "Events replication" -msgstr "" +msgstr "Opakování událostí" #: ../../enterprise/meta/advanced/metasetup.consoles.php:328 msgid "There aren't server added to metaconsole" @@ -10882,27 +10891,27 @@ msgstr "Do metakonzole nejsou přidány žádné servery" #: ../../enterprise/meta/advanced/metasetup.php:47 msgid "Consoles Setup" -msgstr "" +msgstr "Nastavení konzolí" #: ../../enterprise/meta/advanced/metasetup.php:51 #: ../../enterprise/meta/advanced/metasetup.php:82 msgid "General setup" -msgstr "" +msgstr "Obecná nastavení" #: ../../enterprise/meta/advanced/metasetup.php:55 #: ../../enterprise/meta/advanced/metasetup.php:85 msgid "Passwords setup" -msgstr "" +msgstr "Nastavení hesel" #: ../../enterprise/meta/advanced/metasetup.php:59 #: ../../enterprise/meta/advanced/metasetup.php:88 msgid "Visual setup" -msgstr "" +msgstr "Vizuální nastavení" #: ../../enterprise/meta/advanced/metasetup.php:63 #: ../../enterprise/meta/advanced/metasetup.php:91 msgid "Performance setup" -msgstr "" +msgstr "Nastavení výkonu" #: ../../enterprise/meta/advanced/metasetup.php:67 #: ../../enterprise/meta/advanced/metasetup.php:94 @@ -10913,81 +10922,81 @@ msgstr "Správce souborů" #: ../../enterprise/meta/advanced/metasetup.php:71 #: ../../enterprise/meta/advanced/metasetup.php:97 msgid "Strings translation" -msgstr "" +msgstr "Překlad řetězců" #: ../../enterprise/meta/advanced/metasetup.php:79 msgid "Consoles setup" -msgstr "" +msgstr "Nastavení konzolí" #: ../../enterprise/meta/advanced/synchronizing.tag.php:122 #, php-format msgid "Error creating/updating %s/%s tags" -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s značek" #: ../../enterprise/meta/advanced/synchronizing.tag.php:125 #, php-format msgid "Created/Updated %s/%s tags" -msgstr "" +msgstr "Vytovřeno/aktualizováno %s/%s značek" #: ../../enterprise/meta/advanced/policymanager.sync.php:253 #, php-format msgid "Error creating %s policies" -msgstr "" +msgstr "Chyba při vytváření %s zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:256 #, php-format msgid "Created %s policies" -msgstr "" +msgstr "Vytvořeno %s zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:261 #, php-format msgid "Error creating/updating %s/%s policy modules" -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s modulů zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:264 #, php-format msgid "Created/Updated %s/%s policy modules" -msgstr "" +msgstr "Vytvořeno/Aktualizováno %s/%s modulů zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:269 #, php-format msgid "Error deleting %s policy modules" -msgstr "" +msgstr "Chyba při mazání %s modulů zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:272 #, php-format msgid "Deleted %s policy modules" -msgstr "" +msgstr "Smazáno %s modulů zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:277 #, php-format msgid "Error creating %s policy alerts" -msgstr "" +msgstr "Chyba při vytváření %s výstrah zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:280 #, php-format msgid "Created %s policy alerts" -msgstr "" +msgstr "Vytvořeno %s výstrah zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:285 #, php-format msgid "Error deleting %s policy alerts" -msgstr "" +msgstr "Chyba při mazání %s výstrah zásad" #: ../../enterprise/meta/advanced/policymanager.sync.php:288 #, php-format msgid "Deleted %s policy alerts" -msgstr "" +msgstr "Smazáno %s výstrah zásad" #: ../../enterprise/meta/advanced/synchronizing.group.php:137 #, php-format msgid "Error creating/updating %s/%s groups" -msgstr "" +msgstr "Chyba při vytváření/aktualizaci %s/%s skupin" #: ../../enterprise/meta/advanced/synchronizing.group.php:140 #, php-format msgid "Created/Updated %s/%s groups" -msgstr "" +msgstr "Vytvořeno/Aktualizováno %s/%s skupin" #: ../../enterprise/meta/advanced/metasetup.setup.php:68 #: ../../enterprise/meta/include/functions_meta.php:33 @@ -11054,57 +11063,57 @@ msgstr "Adresář kde jsou uložena dočasná data." #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Africa" -msgstr "" +msgstr "Afrika" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "America" -msgstr "" +msgstr "Amerika" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Antarctica" -msgstr "" +msgstr "Antarktida" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Arctic" -msgstr "" +msgstr "Arktida" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Asia" -msgstr "" +msgstr "Asie" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Atlantic" -msgstr "" +msgstr "Atlantické" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Australia" -msgstr "" +msgstr "Austrálie" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Europe" -msgstr "" +msgstr "Evropa" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Indian" -msgstr "" +msgstr "Indické" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Pacific" -msgstr "" +msgstr "Pacifické" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "UTC" -msgstr "" +msgstr "UTC" #: ../../enterprise/meta/advanced/metasetup.setup.php:120 #: ../../enterprise/meta/include/functions_meta.php:93 @@ -11142,7 +11151,7 @@ msgstr "Informace o licenci" #: ../../include/functions_config.php:175 #: ../../godmode/setup/setup_general.php:216 msgid "Public URL" -msgstr "" +msgstr "Veřejná URL" #: ../../enterprise/meta/advanced/metasetup.setup.php:140 #: ../../godmode/setup/setup_general.php:217 @@ -11150,12 +11159,14 @@ msgid "" "Set this value when your PandoraFMS across inverse proxy or for example with " "mod_proxy of Apache." msgstr "" +"Nastavte tuto hodnotu když PandoraFMS je za inverzním proxy, nebo například " +"při použití mod_proxy z Apache." #: ../../enterprise/meta/advanced/metasetup.setup.php:143 #: ../../include/functions_config.php:461 #: ../../godmode/setup/setup_netflow.php:56 msgid "Disable custom live view filters" -msgstr "" +msgstr "Zakázat vlastní živé filtry zobrazení" #: ../../enterprise/meta/advanced/metasetup.setup.php:143 #: ../../godmode/setup/setup_netflow.php:57 @@ -11163,6 +11174,8 @@ msgid "" "Disable the definition of custom filters in the live view. Only existing " "filters can be used." msgstr "" +"Zakázat určení vlastních filtrů v živém zobrazení. Jsou použity pouze " +"existující filtry." #: ../../enterprise/meta/advanced/metasetup.setup.php:151 #: ../../enterprise/godmode/modules/configure_local_component.php:129 @@ -11170,7 +11183,7 @@ msgstr "" #: ../../godmode/users/configure_user.php:474 #: ../../godmode/alerts/configure_alert_template.php:639 msgid "Basic" -msgstr "" +msgstr "Základní" #: ../../enterprise/meta/advanced/synchronizing.user.php:194 #, php-format @@ -11199,6 +11212,8 @@ msgid "" "Error creating/updating the followings elements groups/profiles/user " "profiles (%d/%d/%d)" msgstr "" +"Chyba při vytváření/aktualizaci následujících prvků " +"skupin/profilů/uživatelských profilů (%d/%d/%d)" #: ../../enterprise/meta/advanced/synchronizing.user.php:342 #: ../../enterprise/meta/advanced/synchronizing.user.php:475 @@ -11207,6 +11222,8 @@ msgid "" "The followings elements groups/profiles/user profiles were created/updated " "sucessfully (%d/%d/%d)" msgstr "" +"Následující prvky skupin/profilů/uživatelských profilů byly úspěšně " +"vytvořeny/aktualizovány (%d/%d/%d)" #: ../../enterprise/meta/advanced/synchronizing.user.php:530 #: ../../enterprise/godmode/agentes/inventory_manager.php:168 @@ -11220,7 +11237,7 @@ msgstr "Režim profilu" #: ../../enterprise/meta/advanced/synchronizing.user.php:545 msgid "Profile synchronization mode." -msgstr "" +msgstr "Režim synchronizace profilu." #: ../../enterprise/meta/advanced/synchronizing.user.php:546 msgid "New profile" @@ -11260,15 +11277,15 @@ msgstr "Síťové komponenty" #: ../../enterprise/meta/include/functions_components_meta.php:60 #: ../../enterprise/meta/include/functions_components_meta.php:75 msgid "Plugin management" -msgstr "" +msgstr "Správa zásuvných modulů" #: ../../enterprise/meta/include/functions_components_meta.php:81 msgid "Create plugin" -msgstr "" +msgstr "Vytvořit zásuvný modul" #: ../../enterprise/meta/include/functions_components_meta.php:84 msgid "Edit plugin" -msgstr "" +msgstr "Upravit zásuvný modul" #: ../../enterprise/meta/include/functions_ui_meta.php:54 #: ../../include/functions_ui.php:1146 @@ -11290,35 +11307,35 @@ msgstr "Příkazy" #: ../../enterprise/meta/include/functions_networkmap_meta.php:271 msgid "Successful update the networkmap." -msgstr "" +msgstr "Úspěšná aktualizace síťové mapy." #: ../../enterprise/meta/include/functions_networkmap_meta.php:272 msgid "Unsuccessful update the networkmap." -msgstr "" +msgstr "Neúspěšná aktualizace síťové mapy." #: ../../enterprise/meta/include/functions_networkmap_meta.php:277 msgid "Unnamed " -msgstr "" +msgstr "Nepojmenováno " #: ../../enterprise/meta/include/functions_networkmap_meta.php:324 msgid "Show detailed agent" -msgstr "" +msgstr "Zobrazit podrobnosti agenta" #: ../../enterprise/meta/include/functions_networkmap_meta.php:363 msgid "Show modules" -msgstr "" +msgstr "Zobrazit moduly" #: ../../enterprise/meta/include/functions_networkmap_meta.php:363 msgid "Only the network modules." -msgstr "" +msgstr "Pouze síťové moduly" #: ../../enterprise/meta/include/functions_networkmap_meta.php:373 msgid "Show children Metaconsole" -msgstr "" +msgstr "Zobrazit podřazenou metakonzoli" #: ../../enterprise/meta/include/functions_networkmap_meta.php:404 msgid "Show modulegroup" -msgstr "" +msgstr "Zobrazit skupinu modulu" #: ../../enterprise/meta/include/functions_networkmap_meta.php:411 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:73 @@ -11350,24 +11367,24 @@ msgstr "Uložit" #: ../../enterprise/meta/include/functions_networkmap_meta.php:443 msgid "There is no group selected" -msgstr "" +msgstr "Není vybrána žádní skupina" #: ../../enterprise/meta/include/functions_networkmap_meta.php:638 #, php-format msgid "Cannot connect to %s Pandora to generate networkmap." -msgstr "" +msgstr "Nelze se připojit k %s Pandora pro vytvoření síťové mapy." #: ../../enterprise/meta/include/functions_wizard_meta.php:229 msgid "Latency" -msgstr "" +msgstr "Zpoždění" #: ../../enterprise/meta/include/functions_wizard_meta.php:230 msgid "Response" -msgstr "" +msgstr "Odpověď" #: ../../enterprise/meta/include/functions_wizard_meta.php:232 msgid "Check type" -msgstr "" +msgstr "Zkontrolovat typ" #: ../../enterprise/meta/include/functions_wizard_meta.php:249 #: ../../enterprise/meta/include/functions_wizard_meta.php:299 @@ -11377,21 +11394,21 @@ msgstr "Internetové kontroly" #: ../../enterprise/meta/include/functions_wizard_meta.php:280 msgid "String to check" -msgstr "" +msgstr "Řetězec ke kontrole" #: ../../enterprise/meta/include/functions_wizard_meta.php:285 msgid "Add check" -msgstr "" +msgstr "Přidat kontrolu" #: ../../enterprise/meta/include/functions_wizard_meta.php:293 msgid "Delete check" -msgstr "" +msgstr "Smazat kontrolu" #: ../../enterprise/meta/include/functions_wizard_meta.php:398 #: ../../enterprise/meta/include/functions_wizard_meta.php:487 #: ../../enterprise/meta/include/functions_wizard_meta.php:668 msgid "Various" -msgstr "" +msgstr "Různé" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:850 @@ -11402,13 +11419,13 @@ msgstr "Komunita SNMP" #: ../../enterprise/meta/include/functions_wizard_meta.php:413 #: ../../enterprise/meta/include/functions_wizard_meta.php:495 msgid "Credentials" -msgstr "" +msgstr "Přihlašovací údaje" #: ../../enterprise/meta/include/functions_wizard_meta.php:435 #: ../../enterprise/meta/include/functions_wizard_meta.php:517 #: ../../enterprise/meta/include/functions_wizard_meta.php:689 msgid "Thresholds" -msgstr "" +msgstr "Prahy" #: ../../enterprise/meta/include/functions_wizard_meta.php:523 #: ../../enterprise/meta/include/functions_wizard_meta.php:974 @@ -11418,11 +11435,11 @@ msgstr "URL proxy serveru" #: ../../enterprise/meta/include/functions_wizard_meta.php:528 msgid "Web configuration" -msgstr "" +msgstr "Nastavení stránky" #: ../../enterprise/meta/include/functions_wizard_meta.php:744 msgid "Alerts in module" -msgstr "" +msgstr "Výstrahy v modulu" #: ../../enterprise/meta/include/functions_wizard_meta.php:752 #: ../../include/functions_reporting.php:1646 @@ -11431,7 +11448,7 @@ msgstr "Popis výstrahy" #: ../../enterprise/meta/include/functions_wizard_meta.php:970 msgid "Checks" -msgstr "" +msgstr "Kontroly" #: ../../enterprise/meta/include/functions_wizard_meta.php:1238 #: ../../enterprise/meta/include/functions_wizard_meta.php:1342 @@ -11448,14 +11465,14 @@ msgstr "Již existuje jiný modul se stejným názvem" #: ../../enterprise/meta/include/functions_wizard_meta.php:1493 #, php-format msgid "Error adding module %s" -msgstr "" +msgstr "Chyba při přidávání modulu %s" #: ../../enterprise/meta/include/functions_wizard_meta.php:1260 #: ../../enterprise/meta/include/functions_wizard_meta.php:1362 #: ../../enterprise/meta/include/functions_wizard_meta.php:1503 msgid "" "There was an error creating the alerts, the operation has been cancelled" -msgstr "" +msgstr "Při vytváření výstrahy došlo k chybě, operace byla přerušena" #: ../../enterprise/meta/include/functions_wizard_meta.php:1293 #: ../../enterprise/meta/include/functions_wizard_meta.php:1392 @@ -11476,21 +11493,21 @@ msgstr "Chyba při aktualizaci modulu %s" #: ../../enterprise/meta/include/functions_wizard_meta.php:1841 msgid "" "There was an error updating the alerts, the operation has been cancelled" -msgstr "" +msgstr "Při aktualizaci výstrahy došlo k chybě, operace byla přerušena" #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 #: ../../enterprise/meta/include/functions_wizard_meta.php:1864 msgid "Successfully updated module." -msgstr "" +msgstr "Modul úspěšně aktualizován." #: ../../enterprise/meta/include/functions_meta.php:25 msgid "No admin user" -msgstr "" +msgstr "Žádný správce" #: ../../enterprise/meta/include/functions_meta.php:123 msgid "Netflow disable custom live view filters" -msgstr "" +msgstr "Zakázat vlastní filtry živého zobrazení toku sítě" #: ../../enterprise/meta/include/functions_users_meta.php:172 #: ../../enterprise/meta/include/functions_users_meta.php:196 @@ -11508,11 +11525,11 @@ msgstr "Správa skupiny" #: ../../enterprise/meta/include/functions_users_meta.php:187 msgid "User synchronization" -msgstr "" +msgstr "Synchornizace uživatele" #: ../../enterprise/meta/include/functions_users_meta.php:202 msgid "Group synchronization" -msgstr "" +msgstr "Synchornizace skupiny" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:118 #: ../../godmode/alerts/alert_templates.php:60 @@ -11637,7 +11654,7 @@ msgstr "Vykonat" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1197 msgid "Create new module" -msgstr "" +msgstr "Vytvořit nový modul" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1244 #: ../../godmode/groups/configure_modu_group.php:47 @@ -11664,11 +11681,11 @@ msgstr "Ikona" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1335 #: ../../include/functions_treeview.php:47 msgid "There was a problem loading module" -msgstr "" +msgstr "Při načítání modulu nastal problém" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1398 msgid "Go to module detail" -msgstr "" +msgstr "Přejít na podrobnosti modulu" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1411 #: ../../godmode/agentes/module_manager_editor_common.php:137 @@ -11677,7 +11694,7 @@ msgstr "Smazat modul" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1416 msgid "Create new alert" -msgstr "" +msgstr "Vytvořit novou výstrahu" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1457 msgid "There was a problem loading alert" @@ -11692,19 +11709,19 @@ msgstr "Název šablony" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 msgid "Stand By" -msgstr "" +msgstr "Pohotovostní režim" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1574 msgid "Go to Alert detail" -msgstr "" +msgstr "Přejít na podrobnosti výstrahy" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1580 msgid "Delete alert" -msgstr "" +msgstr "Smazat výstrahu" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1624 msgid "There was a problem loading tag" -msgstr "" +msgstr "Při načítání značky nastal problém" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1639 #: ../../godmode/tag/tag.php:159 @@ -11713,7 +11730,7 @@ msgstr "Název značky" #: ../../enterprise/meta/screens/screens.visualmap.php:54 msgid "Create visualmap" -msgstr "" +msgstr "Vytvořit vizuální mapu" #: ../../enterprise/meta/screens/screens.visualmap.php:95 #: ../../godmode/reporting/visual_console_builder.php:107 @@ -11733,15 +11750,15 @@ msgstr "Editor" #: ../../enterprise/meta/screens/screens.visualmap.php:174 #: ../../godmode/reporting/visual_console_builder.php:437 msgid "New visual console" -msgstr "" +msgstr "Nová vizuální konzole" #: ../../enterprise/meta/screens/screens.visualmap.php:185 msgid "Visualmap" -msgstr "" +msgstr "Vizuální mapa" #: ../../enterprise/meta/screens/screens.main.php:73 msgid "Welcome to the Pandora FMS screens." -msgstr "" +msgstr "Vítejte v obrazovkách Pandora FMS" #: ../../enterprise/meta/index.php:305 ../../enterprise/meta/index.php:315 #: ../../index.php:462 @@ -11754,7 +11771,7 @@ msgstr "Kopie nástěnky" #: ../../enterprise/dashboard/dashboard_replicate.php:41 msgid "Not copyed. Error copying data. You must select a dashboard" -msgstr "" +msgstr "Nezkopírováno. Chyba při kopírování dat. Musíte zvolit nástěnku." #: ../../enterprise/dashboard/dashboard_replicate.php:63 #: ../../enterprise/dashboard/dashboard_replicate.php:83 @@ -11767,15 +11784,15 @@ msgstr "Úspěšně zkopírováno" #: ../../enterprise/dashboard/dashboard_replicate.php:108 msgid "Source user's group" -msgstr "" +msgstr "Skupina zdrojového uživatele" #: ../../enterprise/dashboard/dashboard_replicate.php:132 msgid "Destination user's group" -msgstr "" +msgstr "Skupina cílového uživatele" #: ../../enterprise/dashboard/dashboard_replicate.php:146 msgid "Group Dashboards" -msgstr "" +msgstr "Seskupit nástěnky" #: ../../enterprise/dashboard/dashboard_replicate.php:165 msgid "Replicate Dashboard" @@ -12522,7 +12539,7 @@ msgstr " Bajtů" #: ../../enterprise/godmode/setup/setup.php:56 #: ../../include/functions_config.php:197 msgid "Replication interval" -msgstr "" +msgstr "Interval replikace" #: ../../enterprise/godmode/setup/setup.php:57 msgid "Seconds" @@ -12531,68 +12548,70 @@ msgstr "Sekundy" #: ../../enterprise/godmode/setup/setup.php:60 #: ../../include/functions_config.php:199 msgid "Replication DB host" -msgstr "" +msgstr "Hostitel replikované DB" #: ../../enterprise/godmode/setup/setup.php:64 #: ../../include/functions_config.php:201 msgid "Replication DB database" -msgstr "" +msgstr "Databáze replikované DB" #: ../../enterprise/godmode/setup/setup.php:68 #: ../../include/functions_config.php:203 msgid "Replication DB user" -msgstr "" +msgstr "Uživatel replikované DB" #: ../../enterprise/godmode/setup/setup.php:72 #: ../../include/functions_config.php:205 msgid "Replication DB password" -msgstr "" +msgstr "Heslo replikované DB" #: ../../enterprise/godmode/setup/setup.php:76 #: ../../include/functions_config.php:207 msgid "Replication DB port" -msgstr "" +msgstr "Port replikované DB" #: ../../enterprise/godmode/setup/setup.php:80 #: ../../include/functions_config.php:209 msgid "Replication mode" -msgstr "" +msgstr "Režim replikace" #: ../../enterprise/godmode/setup/setup.php:81 msgid "Only validated events" -msgstr "" +msgstr "Pouze ověřené události" #: ../../enterprise/godmode/setup/setup.php:85 #: ../../include/functions_config.php:218 msgid "Inventory changes blacklist" -msgstr "" +msgstr "Černá listina změn inventáře" #: ../../enterprise/godmode/setup/setup.php:85 msgid "" "The inventory modules included in the changes blacklist will not generate " "events when change." msgstr "" +"Moduly inventáře uvedené na černé listině změn nebudou vytvářet události při " +"změně." #: ../../enterprise/godmode/setup/setup.php:114 msgid "Out of black list" -msgstr "" +msgstr "Mimo černou listinu" #: ../../enterprise/godmode/setup/setup.php:116 msgid "In black list" -msgstr "" +msgstr "V černé listině" #: ../../enterprise/godmode/setup/setup.php:122 msgid "Push selected modules into blacklist" -msgstr "" +msgstr "Odeslat zvolené moduly do černé listiny" #: ../../enterprise/godmode/setup/setup.php:124 msgid "Pop selected modules out of blacklist" -msgstr "" +msgstr "Vyjmouot vybrané moduly z černé listiny" #: ../../enterprise/godmode/setup/setup.php:133 #: ../../include/functions_config.php:214 msgid "Activate Log Collector" -msgstr "" +msgstr "Aktivovat shromažďovatele záznamu" #: ../../enterprise/godmode/setup/setup.php:158 msgid "Enterprise options" @@ -12612,7 +12631,7 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:87 msgid "Local component management" -msgstr "" +msgstr "Správa místních součástí" #: ../../enterprise/godmode/modules/local_components.php:103 #: ../../godmode/modules/manage_network_components.php:128 @@ -12679,7 +12698,7 @@ msgstr "Kopírovat" #: ../../godmode/modules/manage_network_components_form_common.php:56 #: ../../godmode/alerts/configure_alert_template.php:638 msgid "Wizard level" -msgstr "" +msgstr "Úroveň průvodce" #: ../../enterprise/godmode/modules/configure_local_component.php:169 #: ../../include/functions_alerts.php:554 @@ -12739,7 +12758,7 @@ msgstr "Str." #: ../../godmode/massive/massive_edit_modules.php:307 #: ../../godmode/massive/massive_edit_modules.php:344 msgid "Inverse interval" -msgstr "" +msgstr "Interval inverze" #: ../../enterprise/godmode/modules/configure_local_component.php:182 #: ../../include/functions_alerts.php:555 @@ -12777,42 +12796,42 @@ msgstr "Po procesu" #: ../../godmode/agentes/module_manager_editor_common.php:410 #: ../../godmode/massive/massive_edit_modules.php:420 msgid "Critical instructions" -msgstr "" +msgstr "Kritické pokyny" #: ../../enterprise/godmode/modules/configure_local_component.php:218 #: ../../godmode/modules/manage_network_components_form_common.php:146 #: ../../godmode/agentes/module_manager_editor_common.php:410 #: ../../godmode/massive/massive_edit_modules.php:420 msgid "Instructions when the status is critical" -msgstr "" +msgstr "Pokyny když je stav kritický" #: ../../enterprise/godmode/modules/configure_local_component.php:221 #: ../../godmode/modules/manage_network_components_form_common.php:150 #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Warning instructions" -msgstr "" +msgstr "Varovné pokyny" #: ../../enterprise/godmode/modules/configure_local_component.php:221 #: ../../godmode/modules/manage_network_components_form_common.php:150 #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Instructions when the status is warning" -msgstr "" +msgstr "Pokyny když je stav varovný" #: ../../enterprise/godmode/modules/configure_local_component.php:224 #: ../../godmode/modules/manage_network_components_form_common.php:154 #: ../../godmode/agentes/module_manager_editor_common.php:418 #: ../../godmode/massive/massive_edit_modules.php:428 msgid "Unknown instructions" -msgstr "" +msgstr "Pokyny při stavu neznámé" #: ../../enterprise/godmode/modules/configure_local_component.php:224 #: ../../godmode/modules/manage_network_components_form_common.php:154 #: ../../godmode/agentes/module_manager_editor_common.php:418 #: ../../godmode/massive/massive_edit_modules.php:428 msgid "Instructions when the status is unknown" -msgstr "" +msgstr "Pokyny když stav je neznámý" #: ../../enterprise/godmode/modules/configure_local_component.php:231 #: ../../godmode/modules/manage_network_components_form_common.php:161 @@ -12846,12 +12865,12 @@ msgstr "Zvolené značky" #: ../../enterprise/godmode/modules/configure_local_component.php:274 msgid "Macros" -msgstr "" +msgstr "Makra" #: ../../enterprise/godmode/modules/configure_local_component.php:310 #: ../../godmode/servers/plugin.php:229 msgid "Default value" -msgstr "" +msgstr "Výchozí hodnota" #: ../../enterprise/godmode/modules/configure_local_component.php:316 #: ../../include/functions_ui.php:952 ../../godmode/servers/plugin.php:242 @@ -12861,12 +12880,12 @@ msgstr "Nápověda" #: ../../enterprise/godmode/modules/configure_local_component.php:326 #: ../../godmode/servers/plugin.php:256 msgid "Add macro" -msgstr "" +msgstr "Přidat makro" #: ../../enterprise/godmode/modules/configure_local_component.php:333 #: ../../godmode/servers/plugin.php:263 msgid "Delete macro" -msgstr "" +msgstr "Smazat makro" #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 #: ../../enterprise/godmode/agentes/inventory_manager.php:128 @@ -13315,20 +13334,21 @@ msgstr "Čas do" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1083 msgid "Match by regular expression or selection" -msgstr "" +msgstr "Shoda podle regulárního výrazu nebo výběru" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1083 msgid "" "You can select agents and modules by regular expression or direct selection" msgstr "" +"Agenty a moduly můžete vybrat pomocí regulárního výrazu nebo přímým výběrem" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1086 msgid "Reg expression" -msgstr "" +msgstr "Reg výraz" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1087 msgid "Direct selection" -msgstr "" +msgstr "Přímý výběr" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1096 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1098 @@ -13342,6 +13362,8 @@ msgid "" "Case insensitive regular expression for agent name. For example: Network.* " "will match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" +"Regulární výraz názvu agenta bez citlivosti na velikost písmen. Například " +"Network.* odpovídá následujícím názvům agentů: network_agent1, NetworK CHECKS" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1161 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 @@ -13353,6 +13375,11 @@ msgid "" "can use a regular expression. Example: .*usage.* will match: cpu_usage, vram " "usage in matchine 1." msgstr "" +"Regulární výraz bez citlivosti na velikost písmen nebo název modulu. " +"Například: Pokud použijete pole a \"Přesná shoda modulu\" je zapnuta, pak " +"toto pole musí být vyplněno přesným řetězcem názvu modulu. Pokud ne, můžete " +"použít regulární výraz. Příklad: .*usage.* odpovídá: cpu_usage, vram usage " +"in matchine 1." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1171 msgid "Module exact match" @@ -13372,11 +13399,11 @@ msgstr "Dotaz SQL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1211 msgid "Also you can add agents from this list" -msgstr "" +msgstr "Agenty také můžete přidat z tohoto seznamu" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1250 msgid "You can add modules from this list" -msgstr "" +msgstr "Z tohoto seznamu můžete přidat moduly" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1267 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2389 @@ -13517,37 +13544,37 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1355 #: ../../godmode/reporting/reporting_builder.item_editor.php:1011 msgid "Event filter" -msgstr "" +msgstr "Filtr událostí" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1358 #: ../../godmode/reporting/reporting_builder.item_editor.php:1014 msgid "No Validated" -msgstr "" +msgstr "Neověřeno" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1370 #: ../../godmode/reporting/reporting_builder.item_editor.php:1027 msgid "Event graphs" -msgstr "" +msgstr "Grafy událostí" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1373 #: ../../godmode/reporting/reporting_builder.item_editor.php:1030 msgid "By agent" -msgstr "" +msgstr "Podle agenta" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1375 #: ../../godmode/reporting/reporting_builder.item_editor.php:1032 msgid "By user validator" -msgstr "" +msgstr "Podle ověřovatele uživatele" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1377 #: ../../godmode/reporting/reporting_builder.item_editor.php:1034 msgid "By criticity" -msgstr "" +msgstr "Podle vážnosti" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1379 #: ../../godmode/reporting/reporting_builder.item_editor.php:1036 msgid "Validated vs unvalidated" -msgstr "" +msgstr "Ověřeno/neověřeno" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1385 #: ../../godmode/reporting/reporting_builder.item_editor.php:1042 @@ -13567,29 +13594,32 @@ msgstr "Zobrazit na šířku" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1401 msgid "Modules to match" -msgstr "" +msgstr "Moduly ke shodě" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1403 msgid "Select the modules to match when create a report for agents" -msgstr "" +msgstr "Vyberte moduly ke shodě při vytváření hlášení pro agenty" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1479 msgid "Modules to match (Free text)" -msgstr "" +msgstr "Moduly ke shodě (Freetext)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1481 msgid "Free text to filter the modules of agents when apply this template." -msgstr "" +msgstr "Freetext k filtrování modulů agentů při použití této šablony." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1494 msgid "Create a graph for each agent" -msgstr "" +msgstr "Vytvořit graf pro každého agenta" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1496 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 "" +"Při zaškrtnutí bude regulární výraz nebo název modulů porovnáván pouze s " +"jednotlivými agenty místo vytvoření velkého grafu se všemi moduly od všech " +"agentů." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1520 #: ../../godmode/netflow/nf_item_list.php:258 @@ -13627,6 +13657,9 @@ msgid "" "Case insensitive regular expression for agent name. For example: Network* " "will match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" +"Regulární výrazy bez citlivosti na velikost písmen pro název agenta. " +"Například: Network* odpovídá následujícím názvům agentů: network_agent1, " +"NetworK CHECKS" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784 @@ -13738,7 +13771,7 @@ msgstr "1 rok" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:91 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:115 msgid "Elements to apply" -msgstr "" +msgstr "Prvky k použití" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:142 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 @@ -13910,47 +13943,47 @@ msgstr "Krátký název" #: ../../enterprise/godmode/agentes/plugins_manager.php:41 msgid "Plug-in deleted succesfully" -msgstr "" +msgstr "Zásuvný modul úspěšně smazán" #: ../../enterprise/godmode/agentes/plugins_manager.php:41 msgid "Plug-in cannot be deleted" -msgstr "" +msgstr "Zásuvný modul nelze smazat" #: ../../enterprise/godmode/agentes/plugins_manager.php:47 #: ../../enterprise/godmode/policies/policy_plugins.php:43 msgid "Plug-in added succesfully" -msgstr "" +msgstr "Zásuvný modul úspěšně přidán" #: ../../enterprise/godmode/agentes/plugins_manager.php:47 #: ../../enterprise/godmode/policies/policy_plugins.php:43 msgid "Plug-in cannot be added" -msgstr "" +msgstr "Zásuvný modul nelze přidat" #: ../../enterprise/godmode/agentes/plugins_manager.php:58 msgid "Plug-in disabled succesfully" -msgstr "" +msgstr "Zásuvný modul úspěšně zakázán" #: ../../enterprise/godmode/agentes/plugins_manager.php:58 msgid "Plug-in cannot be disabled" -msgstr "" +msgstr "Zásuvný modul nelze zakázat" #: ../../enterprise/godmode/agentes/plugins_manager.php:69 msgid "Plug-in enabled succesfully" -msgstr "" +msgstr "Zásuvný modul úspěšně povolen" #: ../../enterprise/godmode/agentes/plugins_manager.php:69 msgid "Plug-in cannot be enabled" -msgstr "" +msgstr "Zásuvný modul nelze povolit" #: ../../enterprise/godmode/agentes/plugins_manager.php:78 #: ../../enterprise/godmode/policies/policy_plugins.php:52 msgid "New plug-in" -msgstr "" +msgstr "Nový zásuvný modul" #: ../../enterprise/godmode/agentes/plugins_manager.php:95 #: ../../enterprise/godmode/policies/policy_plugins.php:68 msgid "Plugins" -msgstr "" +msgstr "Zásuvné moduly" #: ../../enterprise/godmode/agentes/plugins_manager.php:97 #: ../../enterprise/godmode/agentes/plugins_manager.php:117 @@ -14044,7 +14077,7 @@ msgstr "Chyba při vynucování modulu inventáře" #: ../../enterprise/godmode/agentes/inventory_manager.php:178 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 msgid "7 days" -msgstr "" +msgstr "7 dní" #: ../../enterprise/godmode/agentes/inventory_manager.php:180 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:200 @@ -14232,7 +14265,7 @@ msgstr "Vytvořit nový modul internetového serveru" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:40 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:41 msgid "The changes on this field are linked with the configuration data." -msgstr "" +msgstr "Změny v tomto poli jsou propojeny s daty nastavení." #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:46 msgid "Using local component" @@ -14252,11 +14285,11 @@ msgstr "Komponenta nebyla nalezena" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:118 msgid "Show configuration data" -msgstr "" +msgstr "Zobrazit data nastavení" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:128 msgid "Hide configuration data" -msgstr "" +msgstr "Skrýt data nastavení" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:136 msgid "Data configuration" @@ -14264,48 +14297,52 @@ msgstr "Nastavení dat" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:141 msgid "Load basic" -msgstr "" +msgstr "Načíst základní" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:141 msgid "Load a basic structure on data configuration" -msgstr "" +msgstr "Načíst základní strukturu nastavení dat" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:144 msgid "Check the correct structure of the data configuration" -msgstr "" +msgstr "Zkontrolovat správnost struktury nastavení dat" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:154 msgid "First line must be \"module_begin\"" -msgstr "" +msgstr "První řádek musí být \"module_begin\"" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 msgid "Data configuration is empty" -msgstr "" +msgstr "Nastavení dat je prázdné" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:156 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:160 msgid "Last line must be \"module_end\"" -msgstr "" +msgstr "Poslední řádek musí být \"module_end\"" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:157 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to " "data configuration" msgstr "" +"Chybí název. Prosím přidejte řádek \"module_name názevvašehomodulu\" do " +"nastavení dat" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:158 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to " "data configuration" msgstr "" +"Typ chybí Prosím přidejte řádek \"module_type typvašehomodulu\" do nastavení " +"dat" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:159 msgid "Type is wrong. Please set a correct type" -msgstr "" +msgstr "Typ je špatný. Prosím nastavte správný typ" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:161 msgid "Data configuration are built correctly" -msgstr "" +msgstr "Data nastavení jsou správně sestavena" #: ../../enterprise/godmode/agentes/module_manager_editor_web.php:29 msgid "Web server module" @@ -14397,7 +14434,7 @@ msgstr "Výstrahy událostí" #: ../../enterprise/godmode/menu.php:90 msgid "Log Collector" -msgstr "" +msgstr "Sběratel záznamů" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 #: ../../enterprise/godmode/policies/policy_modules.php:251 @@ -14480,10 +14517,12 @@ msgid "" "Successfully added to delete pending plugins. Will be deleted in the next " "policy application." msgstr "" +"Úspěšně přidáno do nevyřízených smazání zásuvných modulů. Bud smazáno při " +"příštím použití zásad." #: ../../enterprise/godmode/policies/policy_plugins.php:31 msgid "Cannot be added to delete pending plugins." -msgstr "" +msgstr "Nelze přidat do nevyřízených smazání zásuvných modulů." #: ../../enterprise/godmode/policies/policy_modules.php:22 #: ../../enterprise/godmode/policies/policy_modules.php:755 @@ -14503,7 +14542,7 @@ msgstr "Moduly v zásadě" #: ../../enterprise/godmode/policies/policy_modules.php:275 msgid "Could not be added module(s). You must select a policy" -msgstr "" +msgstr "Nelze přidat modul(y). Musíte zvolit zásadu" #: ../../enterprise/godmode/policies/policy_modules.php:423 msgid "Could not be added module." @@ -14533,7 +14572,7 @@ msgstr "Kopírovat moduly" #: ../../enterprise/godmode/policies/policy_modules.php:704 msgid "Copy selected modules to policy: " -msgstr "" +msgstr "Kopírovat zvolené moduly do zásady: " #: ../../enterprise/godmode/policies/policy_modules.php:738 #: ../../godmode/agentes/module_manager_editor.php:457 @@ -14556,11 +14595,11 @@ msgstr "Proměnná" #: ../../enterprise/godmode/policies/policy_modules.php:854 msgid "Are you sure to copy modules into policy?\\n" -msgstr "" +msgstr "Opravdu chcete zkopírovat moduly do zásady?\\n" #: ../../enterprise/godmode/policies/policy_modules.php:874 msgid "Please select any module to copy" -msgstr "" +msgstr "Prosím zvolte moduly ke kopírování" #: ../../enterprise/godmode/policies/policy_queue.php:101 msgid "Operations successfully deleted from the queue" @@ -14643,7 +14682,7 @@ msgstr "Smazat nevyřízené sbírky souborů" #: ../../enterprise/godmode/policies/policy_queue.php:261 msgid "Delete pending plugins" -msgstr "" +msgstr "Nevyřízená smazání zásuvných modulů" #: ../../enterprise/godmode/policies/policy_queue.php:273 msgid "Advices" @@ -14998,39 +15037,40 @@ msgstr "Zásada agentů" #: ../../enterprise/godmode/policies/policy.php:53 msgid "Plugins policy" -msgstr "" +msgstr "Zásada zásuvných modulů" #: ../../enterprise/godmode/services/services.elements.php:51 #: ../../enterprise/godmode/services/services.service.php:126 msgid "" "This values are by default because the service is auto calculate mode." msgstr "" +"Tyto hodnoty jsou výchozí protože služb je v režimu automatického výpočtu." #: ../../enterprise/godmode/services/services.elements.php:76 #: ../../enterprise/godmode/services/services.service.php:148 msgid "Config Service" -msgstr "" +msgstr "Nastavit službu" #: ../../enterprise/godmode/services/services.elements.php:81 #: ../../enterprise/godmode/services/services.service.php:153 msgid "Config Elements" -msgstr "" +msgstr "Nastavit prvky" #: ../../enterprise/godmode/services/services.elements.php:85 msgid "Edit service elements" -msgstr "" +msgstr "Upravit prvky služby" #: ../../enterprise/godmode/services/services.elements.php:99 msgid "Error empty module" -msgstr "" +msgstr "Chyba při vyprazdňování modulů" #: ../../enterprise/godmode/services/services.elements.php:108 msgid "Error empty agent" -msgstr "" +msgstr "Chyba při vyprazdňování agenta" #: ../../enterprise/godmode/services/services.elements.php:117 msgid "Error empty service" -msgstr "" +msgstr "Chyba při vyprazdňování služby" #: ../../enterprise/godmode/services/services.elements.php:137 msgid "Service element created successfully" @@ -15058,11 +15098,11 @@ msgstr "Chyba při mazání prvku služby" #: ../../enterprise/godmode/services/services.elements.php:207 msgid "Edit element service" -msgstr "" +msgstr "Upravit prvek služby" #: ../../enterprise/godmode/services/services.elements.php:210 msgid "Create element service" -msgstr "" +msgstr "Vytvořit prvek služby" #: ../../enterprise/godmode/services/services.elements.php:260 msgid "First select an agent" @@ -15078,7 +15118,7 @@ msgstr "Váha upozornění" #: ../../enterprise/godmode/services/services.elements.php:288 msgid "Unknown weight" -msgstr "" +msgstr "Neznámá váha" #: ../../enterprise/godmode/services/services.elements.php:293 msgid "Ok weight" @@ -15102,31 +15142,31 @@ msgstr "Chyba při aktualizaci služby" #: ../../enterprise/godmode/services/services.service.php:100 msgid "New Service" -msgstr "" +msgstr "Nová služba" #: ../../enterprise/godmode/services/services.service.php:193 msgid "Auto calculate" -msgstr "" +msgstr "Automatický výpočet" #: ../../enterprise/godmode/services/services.service.php:208 msgid "Agent to store data" -msgstr "" +msgstr "Agent k uložení dat" #: ../../enterprise/godmode/services/services.service.php:228 msgid "S.L.A. interval" -msgstr "" +msgstr "Interval S.L.A." #: ../../enterprise/godmode/services/services.service.php:233 msgid "S.L.A. limit" -msgstr "" +msgstr "Limit S.L.A." #: ../../enterprise/godmode/services/services.service.php:235 msgid "Please set limit between 0 to 100." -msgstr "" +msgstr "Limit prosím nastavte na hodnotu mezi 0 a 100." #: ../../enterprise/godmode/services/services.service.php:246 msgid "Warning Service alert" -msgstr "" +msgstr "Výstraha varovné služby" #: ../../enterprise/godmode/services/services.service.php:251 msgid "Critical Service alert" @@ -16116,7 +16156,7 @@ msgstr "" #: ../../include/functions_events.php:1477 msgid "Agent id" -msgstr "" +msgstr "ID agenta" #: ../../include/functions_events.php:1478 #: ../../godmode/events/custom_events.php:65 @@ -16126,62 +16166,62 @@ msgstr "ID události" #: ../../include/functions_events.php:1554 msgid "Change owner" -msgstr "" +msgstr "Změnit vlastníka" #: ../../include/functions_events.php:1584 ../../include/functions_xml.php:125 msgid "New" -msgstr "" +msgstr "Nový" #: ../../include/functions_events.php:1584 #: ../../include/functions_events.php:1590 ../../include/functions_xml.php:129 msgid "In process" -msgstr "" +msgstr "Zpracovává se" #: ../../include/functions_events.php:1636 msgid "Custom responses" -msgstr "" +msgstr "Vlastní odpovědi" #: ../../include/functions_events.php:1837 msgid "Agent details" -msgstr "" +msgstr "Podrobnosti agenta" #: ../../include/functions_events.php:1869 msgid "View custom fields" -msgstr "" +msgstr "Zobrazit vlastní pole" #: ../../include/functions_events.php:1881 msgid "Module details" -msgstr "" +msgstr "Podrobnosti modulu" #: ../../include/functions_events.php:1899 msgid "No assigned" -msgstr "" +msgstr "Nepřiděleno" #: ../../include/functions_events.php:1932 msgid "Alert details" -msgstr "" +msgstr "Podrobnosti výstrahy" #: ../../include/functions_events.php:2073 msgid "First event" -msgstr "" +msgstr "První událost" #: ../../include/functions_events.php:2073 msgid "Last event" -msgstr "" +msgstr "Poslední událost" #: ../../include/functions_events.php:2149 #: ../../mobile/operation/events.php:440 msgid "Acknowledged by" -msgstr "" +msgstr "Uznáno" #: ../../include/functions_events.php:2235 msgid "There are no comments" -msgstr "" +msgstr "Žádné komentáře" #: ../../include/functions_events.php:2320 #: ../../include/functions_reporting.php:2625 msgid "Pandora System" -msgstr "" +msgstr "Systém Pandora" #: ../../include/functions_reporting.php:882 #: ../../include/functions_reporting.php:898 @@ -16192,7 +16232,7 @@ msgstr "" #: ../../include/functions_reporting.php:957 #: ../../include/functions_reporting.php:969 msgid "Ratio" -msgstr "" +msgstr "Poměr" #: ../../include/functions_reporting.php:882 #: ../../include/functions_reporting.php:898 @@ -16203,81 +16243,81 @@ msgstr "" #: ../../include/functions_reporting.php:957 #: ../../include/functions_reporting.php:969 msgid "Modules by second" -msgstr "" +msgstr "Moduly po vteřině" #: ../../include/functions_reporting.php:917 msgid "Network modules" -msgstr "" +msgstr "Síťové moduly" #: ../../include/functions_reporting.php:929 msgid "Plugin modules" -msgstr "" +msgstr "Zásuvné moduly" #: ../../include/functions_reporting.php:941 msgid "Prediction modules" -msgstr "" +msgstr "Moduly předpovědi" #: ../../include/functions_reporting.php:953 msgid "WMI modules" -msgstr "" +msgstr "Moduly WMI" #: ../../include/functions_reporting.php:965 msgid "Web modules" -msgstr "" +msgstr "Internetové moduly" #: ../../include/functions_reporting.php:1022 msgid "Monitor normal" -msgstr "" +msgstr "Monitor ve stavu normální" #: ../../include/functions_reporting.php:1026 msgid "Monitor unknown" -msgstr "" +msgstr "Neznámý monitor" #: ../../include/functions_reporting.php:1033 msgid "Monitor not init" -msgstr "" +msgstr "Nezavedený monitor" #: ../../include/functions_reporting.php:1052 msgid "Monitors by status" -msgstr "" +msgstr "Monitory podle stavu" #: ../../include/functions_reporting.php:1070 msgid "Module status" -msgstr "" +msgstr "Stav modulu" #: ../../include/functions_reporting.php:1143 msgid "Defined and fired alerts" -msgstr "" +msgstr "Zadané a vyslané výstrahy" #: ../../include/functions_reporting.php:1166 msgid "Defined users" -msgstr "" +msgstr "Zadaní uživatelé" #: ../../include/functions_reporting.php:1221 msgid "Total agents and monitors" -msgstr "" +msgstr "Celkem agentů a monitorů" #: ../../include/functions_reporting.php:1245 #, php-format msgid "%d Downed servers" -msgstr "" +msgstr "%d serverů mimo provoz" #: ../../include/functions_reporting.php:1253 #, php-format msgid "%d Not Normal monitors" -msgstr "" +msgstr "%d nenormálních monitorů" #: ../../include/functions_reporting.php:1261 #, php-format msgid "%d Not inited monitors" -msgstr "" +msgstr "%d nezavedených monitorů" #: ../../include/functions_reporting.php:1269 #: ../../include/functions_reporting.php:6745 #: ../../include/functions_reporting.php:6753 #, php-format msgid "%d Fired alerts" -msgstr "" +msgstr "%d vyslaných výstrah" #: ../../include/functions_reporting.php:1647 #: ../../include/functions_reporting.php:2229 @@ -16312,7 +16352,7 @@ msgstr "Monitory NE OK" #: ../../include/functions_reporting.php:2202 #, php-format msgid "Agents in group: %s" -msgstr "" +msgstr "Agenti ve skupinách: %s" #: ../../include/functions_reporting.php:2295 msgid "Last failure" @@ -16320,7 +16360,7 @@ msgstr "Poslední selhání" #: ../../include/functions_reporting.php:2359 msgid "N/A(*)" -msgstr "" +msgstr "N/A(*)" #: ../../include/functions_reporting.php:2391 #: ../../include/functions_reporting.php:4351 @@ -16352,7 +16392,7 @@ msgstr "Max/Min hodnoty" #: ../../include/functions_reporting.php:3254 #: ../../include/functions_reporting.php:3338 msgid "Plannified downtime" -msgstr "" +msgstr "Plánovaná údržba" #: ../../include/functions_reporting.php:3842 msgid "" @@ -16390,12 +16430,12 @@ msgstr "Nedostatečná data" #: ../../include/functions_reporting.php:5187 msgid "Modules under or equal to" -msgstr "" +msgstr "Moduly pod nebo rovně" #: ../../include/functions_reporting.php:5193 #: ../../include/functions_reporting.php:5394 msgid "Modules over" -msgstr "" +msgstr "Moduly přes" #: ../../include/functions_reporting.php:5196 #: ../../include/functions_alerts.php:552 @@ -16409,23 +16449,23 @@ msgstr "Není rovno" #: ../../include/functions_reporting.php:5388 msgid "Modules less or equal to" -msgstr "" +msgstr "Moduly menší nebo rovné" #: ../../include/functions_reporting.php:5391 msgid "Modules less" -msgstr "" +msgstr "Moduly menší" #: ../../include/functions_reporting.php:5397 msgid "Modules equal to" -msgstr "" +msgstr "Moduly rovné" #: ../../include/functions_reporting.php:5400 msgid "Modules not equal to" -msgstr "" +msgstr "Moduly nerovnající se" #: ../../include/functions_reporting.php:5403 msgid "Modules normal status" -msgstr "" +msgstr "Moduly v normálním stavu" #: ../../include/functions_reporting.php:5592 #: ../../extensions/agents_modules.php:167 @@ -16434,66 +16474,66 @@ msgstr "Neexistují žádní agenti s moduly" #: ../../include/functions_reporting.php:5800 msgid "Agent configuration: " -msgstr "" +msgstr "Nastavení agenta: " #: ../../include/functions_reporting.php:5849 #: ../../include/functions_reporting.php:5995 msgid " MODULES" -msgstr "" +msgstr " MODULŮ" #: ../../include/functions_reporting.php:5929 msgid "Group configuration: " -msgstr "" +msgstr "Nastavení skupiny: " #: ../../include/functions_reporting.php:6740 #, php-format msgid "%d Total modules" -msgstr "" +msgstr "%d modulů celkem" #: ../../include/functions_reporting.php:6741 #, php-format msgid "%d Normal modules" -msgstr "" +msgstr "%d normálních modulů" #: ../../include/functions_reporting.php:6742 #, php-format msgid "%d Critical modules" -msgstr "" +msgstr "%d modulů v kritickém stavu" #: ../../include/functions_reporting.php:6743 #, php-format msgid "%d Warning modules" -msgstr "" +msgstr "%d modulů ve varovném stavu" #: ../../include/functions_reporting.php:6744 #, php-format msgid "%d Unknown modules" -msgstr "" +msgstr "%d neznámých modulů" #: ../../include/functions_reporting.php:6748 #, php-format msgid "%d Total agents" -msgstr "" +msgstr "%d agentů celkem" #: ../../include/functions_reporting.php:6749 #, php-format msgid "%d Normal agents" -msgstr "" +msgstr "%d normálních agentů" #: ../../include/functions_reporting.php:6750 #, php-format msgid "%d Critical agents" -msgstr "" +msgstr "%d agentů v kritickém stavu" #: ../../include/functions_reporting.php:6751 #, php-format msgid "%d Warning agents" -msgstr "" +msgstr "%d agentů ve varovném stavu" #: ../../include/functions_reporting.php:6752 #, php-format msgid "%d Unknown agents" -msgstr "" +msgstr "%d Neznámých agentů" #: ../../include/functions_db.php:74 #, php-format @@ -16622,12 +16662,12 @@ msgstr "vlastní" #: ../../include/functions.php:1669 ../../include/functions.php:1670 #, php-format msgid "%s minutes" -msgstr "" +msgstr "%s minut" #: ../../include/functions.php:1672 ../../include/functions.php:1673 #, php-format msgid "%s hours" -msgstr "" +msgstr "%s hodin" #: ../../include/functions.php:1675 ../../include/functions_netflow.php:888 #: ../../include/ajax/module.php:82 @@ -16637,16 +16677,16 @@ msgstr "1 týden" #: ../../include/functions.php:1678 ../../include/functions.php:1679 #, php-format msgid "%s months" -msgstr "" +msgstr "%s měsíců" #: ../../include/functions.php:1681 ../../include/functions.php:1682 #, php-format msgid "%s years" -msgstr "" +msgstr "%s let" #: ../../include/functions.php:1685 msgid "Default values will be used" -msgstr "" +msgstr "Budou použity výchozí hodnoty" #: ../../include/get_file.php:47 msgid "Security error. Please contact the administrator." @@ -16707,27 +16747,27 @@ msgstr "Podnikový server SNMP" #: ../../include/functions_netflow.php:356 msgid "Total flows" -msgstr "" +msgstr "Celkem toků" #: ../../include/functions_netflow.php:358 msgid "Total bytes" -msgstr "" +msgstr "Celkem bajtů" #: ../../include/functions_netflow.php:360 msgid "Total packets" -msgstr "" +msgstr "Celkem paketů" #: ../../include/functions_netflow.php:362 msgid "Average bits per second" -msgstr "" +msgstr "Průměr bitů za vteřinu" #: ../../include/functions_netflow.php:364 msgid "Average packets per second" -msgstr "" +msgstr "Průměr paketů za vteřinu" #: ../../include/functions_netflow.php:366 msgid "Average bytes per packet" -msgstr "" +msgstr "Prměrně bajtů za paket" #: ../../include/functions_netflow.php:828 msgid "Area graph" @@ -16735,7 +16775,7 @@ msgstr "Plošný graf" #: ../../include/functions_netflow.php:829 msgid "Pie graph and Summary table" -msgstr "" +msgstr "Koláčový graf a souhrnná tabulka" #: ../../include/functions_netflow.php:830 msgid "Statistics table" @@ -16775,15 +16815,15 @@ msgstr "2 roky" #: ../../include/functions_netflow.php:874 msgid "1 min" -msgstr "" +msgstr "1 min" #: ../../include/functions_netflow.php:875 msgid "2 mins" -msgstr "" +msgstr "2 min" #: ../../include/functions_netflow.php:876 msgid "5 mins" -msgstr "" +msgstr "5 min" #: ../../include/functions_netflow.php:921 #: ../../include/functions_netflow.php:930 @@ -16792,47 +16832,47 @@ msgstr "" #: ../../include/functions_netflow.php:1041 #: ../../include/functions_netflow.php:1074 msgid "Aggregate" -msgstr "" +msgstr "Shrnout" #: ../../include/functions_netflow.php:1113 msgid "Error generating report" -msgstr "" +msgstr "Chyba při vytváření hlášení" #: ../../include/functions_netflow.php:1310 msgid "MB" -msgstr "" +msgstr "MB" #: ../../include/functions_netflow.php:1312 msgid "MB/s" -msgstr "" +msgstr "MB/s" #: ../../include/functions_netflow.php:1314 msgid "kB" -msgstr "" +msgstr "kB" #: ../../include/functions_netflow.php:1316 msgid "kB/s" -msgstr "" +msgstr "kB/s" #: ../../include/functions_netflow.php:1320 msgid "B/s" -msgstr "" +msgstr "B/s" #: ../../include/functions_netflow.php:1334 msgid "Dst port" -msgstr "" +msgstr "Port DST" #: ../../include/functions_netflow.php:1336 msgid "Dst IP" -msgstr "" +msgstr "Dst IP" #: ../../include/functions_netflow.php:1340 msgid "Src IP" -msgstr "" +msgstr "Zdrojová IP" #: ../../include/functions_netflow.php:1342 msgid "Src port" -msgstr "" +msgstr "Zdrojový port" #: ../../include/functions_alerts.php:549 msgid "Max and min" @@ -16952,7 +16992,7 @@ msgstr "Obrázek" #: ../../include/functions_visual_map_editor.php:102 msgid "Enable link" -msgstr "" +msgstr "Povolit propojení" #: ../../include/functions_visual_map_editor.php:156 #: ../../godmode/reporting/visual_console_builder.wizard.php:114 @@ -17192,7 +17232,7 @@ msgstr "Pruhový graf SQL" #: ../../include/functions_reports.php:513 msgid "Automatic combined Graph" -msgstr "" +msgstr "Automaticky zkombinovaný graf" #: ../../include/functions_reports.php:518 #: ../../include/functions_reports.php:520 @@ -17239,23 +17279,23 @@ msgstr "Skupina záznamu události" #: ../../include/functions_reports.php:613 msgid "Netflow area chart" -msgstr "" +msgstr "Graf oblasti toku sítě" #: ../../include/functions_reports.php:615 msgid "Netflow pie chart" -msgstr "" +msgstr "Koláčový graf toku sítě" #: ../../include/functions_reports.php:617 msgid "Netflow data table" -msgstr "" +msgstr "Tabulka dat toku sítě" #: ../../include/functions_reports.php:619 msgid "Netflow statistics table" -msgstr "" +msgstr "Tabulka statistik toku sítě" #: ../../include/functions_reports.php:621 msgid "Netflow summary table" -msgstr "" +msgstr "Souhrnná tabulka toku sítě" #: ../../include/functions_graph.php:639 msgid "Units. Value" @@ -17324,11 +17364,11 @@ msgstr "Jednotky" #: ../../include/functions_graph.php:3070 msgid "Avg." -msgstr "" +msgstr "Prům." #: ../../include/functions_graph.php:3862 msgid "No data to show" -msgstr "" +msgstr "Žádná data k zobrazení" #: ../../include/functions_custom_graphs.php:101 msgid "Empty graph" @@ -17362,19 +17402,19 @@ msgstr "" #: ../../include/functions_treeview.php:140 msgid "There was a problem loading alerts" -msgstr "" +msgstr "Při načítání výstrah nastal problém" #: ../../include/functions_treeview.php:178 msgid "Go to alerts detail" -msgstr "" +msgstr "Přejít na podrobnosti výstrahy" #: ../../include/functions_treeview.php:416 msgid "There aren't agents in this agrupation" -msgstr "" +msgstr "V tomto uskupení nejsou žádní agenti" #: ../../include/auth/mysql.php:471 msgid "Your installation of PHP does not support LDAP" -msgstr "" +msgstr "Vaše instalace PHP nepodporuje LDAP" #: ../../include/functions_visual_map.php:435 msgid "Agent successfully added to layout" @@ -17414,11 +17454,11 @@ msgstr "týdnů" #: ../../include/functions_html.php:716 msgid "Month day" -msgstr "" +msgstr "Měsíc den" #: ../../include/functions_html.php:718 msgid "Week day" -msgstr "" +msgstr "Týden den" #: ../../include/functions_html.php:1910 msgid "Type at least two characters to search the module." @@ -17434,11 +17474,11 @@ msgstr "Vytvořit novou mapu skupiny" #: ../../include/functions_config.php:85 msgid "Failed updated: User did not login." -msgstr "" +msgstr "Nelze aktualizovat: Uživatel nepřihlášen." #: ../../include/functions_config.php:93 msgid "Failed updated: User is not admin." -msgstr "" +msgstr "Nelze aktualizovat: Uživatel není správce." #: ../../include/functions_config.php:122 #: ../../godmode/setup/setup_general.php:53 diff --git a/pandora_console/include/languages/da.mo b/pandora_console/include/languages/da.mo index d5935ad255..122d7283fa 100644 Binary files a/pandora_console/include/languages/da.mo and b/pandora_console/include/languages/da.mo differ diff --git a/pandora_console/include/languages/da.po b/pandora_console/include/languages/da.po index 0f0475fede..3d10703784 100644 --- a/pandora_console/include/languages/da.po +++ b/pandora_console/include/languages/da.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/de.mo b/pandora_console/include/languages/de.mo index e462d32225..32cc79c6b5 100644 Binary files a/pandora_console/include/languages/de.mo and b/pandora_console/include/languages/de.mo differ diff --git a/pandora_console/include/languages/de.po b/pandora_console/include/languages/de.po index cdfaae04b5..aac3b2c7ac 100644 --- a/pandora_console/include/languages/de.po +++ b/pandora_console/include/languages/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-22 18:49+0200\n" -"PO-Revision-Date: 2013-02-08 12:47+0000\n" -"Last-Translator: Marco Eggersmann \n" +"PO-Revision-Date: 2013-06-26 20:19+0000\n" +"Last-Translator: Daniel Winzen \n" "Language-Team: de \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/users/user_edit.php:229 @@ -16877,7 +16877,7 @@ msgstr "Verlauf der Agenten" #: ../../godmode/reporting/visual_console_builder.data.php:90 #: ../../godmode/reporting/visual_console_builder.elements.php:85 msgid "Background" -msgstr "Hintergund" +msgstr "Hintergrund" #: ../../include/functions_visual_map_editor.php:54 #: ../../include/functions_visual_map_editor.php:351 @@ -24308,9 +24308,6 @@ msgstr "Wert" #~ msgid " to " #~ msgstr " nach " -#~ msgid "Download file" -#~ msgstr "Download Datei" - #~ msgid "No module has been selected" #~ msgstr "Kein Modul selektiert" @@ -24922,3 +24919,6 @@ msgstr "Wert" #~ msgid "Database Information" #~ msgstr "Datenbank Information" + +#~ msgid "Download file" +#~ msgstr "Datei herunterladen" diff --git a/pandora_console/include/languages/el.mo b/pandora_console/include/languages/el.mo index 50d4c1274e..b55e6865aa 100644 Binary files a/pandora_console/include/languages/el.mo and b/pandora_console/include/languages/el.mo differ diff --git a/pandora_console/include/languages/el.po b/pandora_console/include/languages/el.po index f54bfd5268..e1b0850f7f 100644 --- a/pandora_console/include/languages/el.po +++ b/pandora_console/include/languages/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: el\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/en.mo b/pandora_console/include/languages/en.mo index a1e84e1e91..8cccd7f64b 100644 Binary files a/pandora_console/include/languages/en.mo and b/pandora_console/include/languages/en.mo differ diff --git a/pandora_console/include/languages/en.po b/pandora_console/include/languages/en.po index 724a75c643..706a7b91b8 100644 --- a/pandora_console/include/languages/en.po +++ b/pandora_console/include/languages/en.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/en_AU.mo b/pandora_console/include/languages/en_AU.mo index 5282ea6179..957daf2c41 100644 Binary files a/pandora_console/include/languages/en_AU.mo and b/pandora_console/include/languages/en_AU.mo differ diff --git a/pandora_console/include/languages/en_AU.po b/pandora_console/include/languages/en_AU.po index 959c3240c8..ad44c5671a 100644 --- a/pandora_console/include/languages/en_AU.po +++ b/pandora_console/include/languages/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/en_GB.mo b/pandora_console/include/languages/en_GB.mo index 39759845d6..0098baaef1 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 66d6c4393b..dd5d3162e4 100644 --- a/pandora_console/include/languages/en_GB.po +++ b/pandora_console/include/languages/en_GB.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-22 18:49+0200\n" -"PO-Revision-Date: 2013-05-10 13:00+0000\n" +"PO-Revision-Date: 2013-06-12 12:15+0000\n" "Last-Translator: Inches \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: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:15+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 @@ -2880,7 +2880,7 @@ msgstr "Ok" #: ../../operation/gis_maps/render_view.php:126 msgid "Show agents by state: " -msgstr "Show agents by state: " +msgstr "Show agents by status: " #: ../../operation/gis_maps/render_view.php:128 #: ../../enterprise/dashboard/widgets/network_map.php:35 @@ -4983,7 +4983,7 @@ msgstr "At least one monitor fails" #: ../../operation/agentes/bulbs.php:23 msgid "Change between Green/Red state" -msgstr "Change between Green/Red state" +msgstr "Change between Green/Red status" #: ../../operation/agentes/bulbs.php:26 #: ../../enterprise/operation/agentes/policy_view.php:269 @@ -5332,7 +5332,7 @@ msgstr "Reset" #: ../../operation/agentes/estado_monitores.php:636 msgid "Form filter" -msgstr "" +msgstr "Filter form" #: ../../operation/agentes/exportdata.php:36 ../../operation/menu.php:168 msgid "Export data" @@ -7041,7 +7041,7 @@ msgstr "Delete event" #: ../../operation/events/events.build_table.php:546 msgid "Validate selected" -msgstr "" +msgstr "Validate selection" #: ../../operation/events/events.build_table.php:549 #: ../../godmode/agentes/agent_manager.php:187 @@ -7253,7 +7253,7 @@ msgstr "Event graphs by agent" #: ../../include/functions_reporting.php:3755 #: ../../include/functions_reporting.php:4000 msgid "Amount events validated" -msgstr "" +msgstr "Amount of validated events" #: ../../general/footer.php:30 ../../mobile/include/functions_web.php:81 #: ../../mobile/include/ui.class.php:253 @@ -7589,16 +7589,16 @@ msgstr "Critical events" #: ../../general/shortcut_bar.php:204 ../../general/shortcut_bar.php:224 msgid "Incidents opened" -msgstr "Incidents opened" +msgstr "Open Incidents" #: ../../general/shortcut_bar.php:234 #: ../../godmode/users/configure_profile.php:168 msgid "View reports" -msgstr "View reports" +msgstr "See reports" #: ../../general/shortcut_bar.php:240 msgid "Create new message" -msgstr "Create new message" +msgstr "Create a new message" #: ../../general/shortcut_bar.php:267 msgid "Shortcut: " @@ -7799,7 +7799,7 @@ msgstr "Networkmap generation method" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:191 msgid "Refresh networkmap state" -msgstr "Refresh networkmap state" +msgstr "Refresh networkmap status" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:193 msgid "Resize the networkmap" @@ -8517,7 +8517,7 @@ msgstr "There are no Modules at normal status" #: ../../enterprise/include/functions_reporting_csv.php:1139 msgid "There are no Modules at critial or warning status" -msgstr "There are no Modules at critial or warning status" +msgstr "There are no Modules at critical or warning status" #: ../../enterprise/include/functions_reporting_csv.php:1142 msgid "There are no Modules under those conditions" @@ -8555,24 +8555,24 @@ msgstr "The agent where the SLA service is stored does not exist" #: ../../enterprise/include/functions_services.php:57 msgid "Alert critical SLA service does not exist." -msgstr "" +msgstr "The critical SLA service alert does not exist" #: ../../enterprise/include/functions_services.php:68 msgid "Alert warning service does not exist." -msgstr "" +msgstr "The warning service alert does not exist" #: ../../enterprise/include/functions_services.php:79 msgid "Alert critical service does not exist." -msgstr "" +msgstr "The critical service alert does not exist" #: ../../enterprise/include/functions_services.php:90 msgid "Alert unknown service does not exist." -msgstr "" +msgstr "The unknown service alert does not exist" #: ../../enterprise/include/functions_services.php:240 #, php-format msgid "Module automatic create for the service %s" -msgstr "" +msgstr "Automatic module created for the %s service" #: ../../enterprise/include/functions_services.php:701 msgid "Critical (Alert)" @@ -8811,7 +8811,7 @@ msgstr "Avg." #: ../../include/functions_reporting.php:4032 #: ../../include/functions_reports.php:587 msgid "Alert report group" -msgstr "" +msgstr "Alert group report" #: ../../enterprise/include/functions_reporting_pdf.php:2056 msgid "There are no alerts for this module." @@ -9539,7 +9539,7 @@ msgstr "Error connecting to the specified host" #: ../../enterprise/include/ajax/metaconsole.ajax.php:61 msgid "Connected to the host, but cannot found the specified database" -msgstr "Connected to the host, but cannot found the specified database" +msgstr "Connected to the host, but the specified database cannot be found" #: ../../enterprise/include/ajax/metaconsole.ajax.php:72 #: ../../enterprise/include/ajax/metaconsole.ajax.php:94 @@ -9580,8 +9580,8 @@ msgid "" "The server seems to be configurated to replicate events, but no events has " "been received yet" msgstr "" -"The server seems to be configurated to replicate events, but no event has " -"been received yet" +"The server seems to be configured to replicate events, but no event has been " +"received yet" #: ../../enterprise/include/ajax/metaconsole.ajax.php:110 msgid "Unknown error" @@ -9795,7 +9795,7 @@ msgstr "String" #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:152 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:131 msgid "Can't connect to Pandora FMS instance" -msgstr "" +msgstr "Impossible to connect to Pandora FMS instance" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 @@ -9958,16 +9958,16 @@ msgstr "Agent and monitor information" #: ../../enterprise/meta/monitoring/tactical.php:130 msgid "State of agents" -msgstr "State of agents" +msgstr "Status of agents" #: ../../enterprise/meta/monitoring/tactical.php:188 #: ../../enterprise/meta/monitoring/tactical.php:262 msgid "State of modules" -msgstr "State of modules" +msgstr "Status of modules" #: ../../enterprise/meta/monitoring/tactical.php:250 msgid "State of Agents" -msgstr "State of Agents" +msgstr "Status of agents" #: ../../enterprise/meta/monitoring/tactical.php:283 msgid "No servers" @@ -10289,16 +10289,16 @@ msgstr "Group synchronization" #: ../../enterprise/meta/advanced/synchronizing.php:66 #: ../../enterprise/meta/advanced/synchronizing.php:82 msgid "Alerts synchronization" -msgstr "" +msgstr "Alert synchronization" #: ../../enterprise/meta/advanced/synchronizing.php:70 #: ../../enterprise/meta/advanced/synchronizing.php:85 msgid "Tags synchronization" -msgstr "" +msgstr "Tag synchronization" #: ../../enterprise/meta/advanced/policymanager.php:35 msgid "Policy Manager" -msgstr "" +msgstr "Policy Manager" #: ../../enterprise/meta/advanced/policymanager.php:64 msgid "Apply policies" @@ -10317,37 +10317,37 @@ msgstr "Policies apply" #: ../../enterprise/meta/advanced/propagation.component.php:255 #, php-format msgid "Error creating %s components groups " -msgstr "" +msgstr "Error creating %s component groups " #: ../../enterprise/meta/advanced/synchronizing.component.php:258 #: ../../enterprise/meta/advanced/propagation.component.php:258 #, php-format msgid "Created %s component groups" -msgstr "" +msgstr "Created %s component groups" #: ../../enterprise/meta/advanced/synchronizing.component.php:263 #: ../../enterprise/meta/advanced/propagation.component.php:263 #, php-format msgid "Error creating/updating %s/%s local components " -msgstr "" +msgstr "Error creating/updating %s/%s local components " #: ../../enterprise/meta/advanced/synchronizing.component.php:266 #: ../../enterprise/meta/advanced/propagation.component.php:266 #, php-format msgid "Created/Updated %s/%s local components" -msgstr "" +msgstr "Created/Updated %s/%s local components" #: ../../enterprise/meta/advanced/synchronizing.component.php:271 #: ../../enterprise/meta/advanced/propagation.component.php:271 #, php-format msgid "Error creating/updating %s/%s network components " -msgstr "" +msgstr "Error creating/updating %s/%s network components " #: ../../enterprise/meta/advanced/synchronizing.component.php:274 #: ../../enterprise/meta/advanced/propagation.component.php:274 #, php-format msgid "Created/Updated %s/%s network components" -msgstr "" +msgstr "Created/Updated %s/%s network components" #: ../../enterprise/meta/advanced/synchronizing.component.php:280 #: ../../enterprise/meta/advanced/propagation.component.php:280 @@ -10369,7 +10369,7 @@ msgstr "Error connecting to %s" #: ../../enterprise/meta/advanced/synchronizing.group.php:153 #: ../../enterprise/meta/advanced/synchronizing.user.php:507 msgid "This metaconsole" -msgstr "" +msgstr "This metaconsole" #: ../../enterprise/meta/advanced/synchronizing.component.php:304 #: ../../enterprise/meta/advanced/propagation.component.php:304 @@ -10490,24 +10490,24 @@ msgstr "Use round corners" #: ../../enterprise/meta/advanced/metasetup.visual.php:127 #: ../../enterprise/meta/include/functions_meta.php:333 msgid "Show Visual Console" -msgstr "" +msgstr "Show Visual Console" #: ../../enterprise/meta/advanced/metasetup.visual.php:127 msgid "Switch to show or hide Visual Console." -msgstr "" +msgstr "Switch to show or hide Visual Console." #: ../../enterprise/meta/advanced/metasetup.visual.php:131 #: ../../enterprise/meta/include/functions_meta.php:343 msgid "Metaconsole elements" -msgstr "" +msgstr "Metaconsole elements" #: ../../enterprise/meta/advanced/metasetup.visual.php:131 msgid "The number of elements retrieved for each instance in some views." -msgstr "" +msgstr "The number of retrieved elements for each instance in some views." #: ../../enterprise/meta/advanced/metasetup.visual.php:138 msgid "Visual" -msgstr "" +msgstr "Visual" #: ../../enterprise/meta/advanced/policymanager.queue.php:60 #: ../../enterprise/godmode/policies/policy_queue.php:59 @@ -10564,12 +10564,12 @@ msgstr "Empty queue" #: ../../enterprise/meta/advanced/propagation.php:58 #: ../../enterprise/meta/advanced/propagation.php:68 msgid "Components propagation" -msgstr "" +msgstr "Component propagation" #: ../../enterprise/meta/advanced/propagation.php:62 #: ../../enterprise/meta/advanced/propagation.php:71 msgid "Agents movement" -msgstr "" +msgstr "Agent movement" #: ../../enterprise/meta/advanced/synchronizing.agent.php:80 #: ../../enterprise/meta/advanced/propagation.agent.php:80 @@ -10641,7 +10641,7 @@ msgstr "Group filter" #: ../../enterprise/meta/advanced/synchronizing.agent.php:153 #: ../../enterprise/meta/advanced/propagation.agent.php:153 msgid "Add agents to destination server" -msgstr "" +msgstr "Add agents to destination server" #: ../../enterprise/meta/advanced/synchronizing.agent.php:163 #: ../../enterprise/meta/advanced/propagation.agent.php:163 @@ -10651,32 +10651,32 @@ msgstr "Move" #: ../../enterprise/meta/advanced/synchronizing.alert.php:286 #, php-format msgid "Error creating/updating %s/%s comamnds" -msgstr "" +msgstr "Error creating/updating %s/%s commands" #: ../../enterprise/meta/advanced/synchronizing.alert.php:289 #, php-format msgid "Created/Updated %s/%s commands" -msgstr "" +msgstr "Created/Updated %s/%s commands" #: ../../enterprise/meta/advanced/synchronizing.alert.php:294 #, php-format msgid "Error creating/updating %s/%s actions" -msgstr "" +msgstr "Error creating/updating %s/%s actions" #: ../../enterprise/meta/advanced/synchronizing.alert.php:297 #, php-format msgid "Created/Updated %s/%s actions" -msgstr "" +msgstr "Created/Updated %s/%s actions" #: ../../enterprise/meta/advanced/synchronizing.alert.php:302 #, php-format msgid "Error creating/updating %s/%s templates" -msgstr "" +msgstr "Error creating/updating %s/%s templates" #: ../../enterprise/meta/advanced/synchronizing.alert.php:305 #, php-format msgid "Created/Updated %s/%s templates" -msgstr "" +msgstr "Created/Updated %s/%s templates" #: ../../enterprise/meta/advanced/metasetup.performance.php:70 #: ../../enterprise/meta/include/functions_meta.php:353 @@ -10688,7 +10688,7 @@ msgstr "Max. days before delete events" #: ../../enterprise/meta/advanced/metasetup.performance.php:74 #: ../../enterprise/meta/include/functions_meta.php:363 msgid "Active events history" -msgstr "" +msgstr "Active event history" #: ../../enterprise/meta/advanced/metasetup.performance.php:79 #: ../../enterprise/meta/include/functions_meta.php:373 @@ -10839,6 +10839,7 @@ msgstr "Console URL" msgid "" "Complete path to Pandora console without last \"/\" character. Example " msgstr "" +"Complete path to Pandora console without last \"/\" character. Example " #: ../../enterprise/meta/advanced/metasetup.consoles.php:207 #: ../../enterprise/godmode/setup/setup_metaconsole.php:183 @@ -10897,7 +10898,7 @@ msgstr "Compatibility" #: ../../enterprise/godmode/setup/setup.php:50 #: ../../include/functions_config.php:194 msgid "Events replication" -msgstr "" +msgstr "Event replication" #: ../../enterprise/meta/advanced/metasetup.consoles.php:328 msgid "There aren't server added to metaconsole" @@ -10905,27 +10906,27 @@ msgstr "There aren't any servers added to metaconsole" #: ../../enterprise/meta/advanced/metasetup.php:47 msgid "Consoles Setup" -msgstr "" +msgstr "Console Setup" #: ../../enterprise/meta/advanced/metasetup.php:51 #: ../../enterprise/meta/advanced/metasetup.php:82 msgid "General setup" -msgstr "" +msgstr "General setup" #: ../../enterprise/meta/advanced/metasetup.php:55 #: ../../enterprise/meta/advanced/metasetup.php:85 msgid "Passwords setup" -msgstr "" +msgstr "Passwords setup" #: ../../enterprise/meta/advanced/metasetup.php:59 #: ../../enterprise/meta/advanced/metasetup.php:88 msgid "Visual setup" -msgstr "" +msgstr "Visual setup" #: ../../enterprise/meta/advanced/metasetup.php:63 #: ../../enterprise/meta/advanced/metasetup.php:91 msgid "Performance setup" -msgstr "" +msgstr "Performance setup" #: ../../enterprise/meta/advanced/metasetup.php:67 #: ../../enterprise/meta/advanced/metasetup.php:94 @@ -10936,81 +10937,81 @@ msgstr "File manager" #: ../../enterprise/meta/advanced/metasetup.php:71 #: ../../enterprise/meta/advanced/metasetup.php:97 msgid "Strings translation" -msgstr "" +msgstr "String translation" #: ../../enterprise/meta/advanced/metasetup.php:79 msgid "Consoles setup" -msgstr "" +msgstr "Console setup" #: ../../enterprise/meta/advanced/synchronizing.tag.php:122 #, php-format msgid "Error creating/updating %s/%s tags" -msgstr "" +msgstr "Error creating/updating %s/%s tags" #: ../../enterprise/meta/advanced/synchronizing.tag.php:125 #, php-format msgid "Created/Updated %s/%s tags" -msgstr "" +msgstr "Created/Updated %s/%s tags" #: ../../enterprise/meta/advanced/policymanager.sync.php:253 #, php-format msgid "Error creating %s policies" -msgstr "" +msgstr "Error creating %s policies" #: ../../enterprise/meta/advanced/policymanager.sync.php:256 #, php-format msgid "Created %s policies" -msgstr "" +msgstr "Created %s policies" #: ../../enterprise/meta/advanced/policymanager.sync.php:261 #, php-format msgid "Error creating/updating %s/%s policy modules" -msgstr "" +msgstr "Error creating/updating %s/%s policy modules" #: ../../enterprise/meta/advanced/policymanager.sync.php:264 #, php-format msgid "Created/Updated %s/%s policy modules" -msgstr "" +msgstr "Created/Updated %s/%s policy modules" #: ../../enterprise/meta/advanced/policymanager.sync.php:269 #, php-format msgid "Error deleting %s policy modules" -msgstr "" +msgstr "Error deleting %s policy modules" #: ../../enterprise/meta/advanced/policymanager.sync.php:272 #, php-format msgid "Deleted %s policy modules" -msgstr "" +msgstr "Deleted %s policy modules" #: ../../enterprise/meta/advanced/policymanager.sync.php:277 #, php-format msgid "Error creating %s policy alerts" -msgstr "" +msgstr "Error creating %s policy alerts" #: ../../enterprise/meta/advanced/policymanager.sync.php:280 #, php-format msgid "Created %s policy alerts" -msgstr "" +msgstr "Created %s policy alerts" #: ../../enterprise/meta/advanced/policymanager.sync.php:285 #, php-format msgid "Error deleting %s policy alerts" -msgstr "" +msgstr "Error deleting %s policy alerts" #: ../../enterprise/meta/advanced/policymanager.sync.php:288 #, php-format msgid "Deleted %s policy alerts" -msgstr "" +msgstr "Deleted %s policy alerts" #: ../../enterprise/meta/advanced/synchronizing.group.php:137 #, php-format msgid "Error creating/updating %s/%s groups" -msgstr "" +msgstr "Error creating/updating %s/%s groups" #: ../../enterprise/meta/advanced/synchronizing.group.php:140 #, php-format msgid "Created/Updated %s/%s groups" -msgstr "" +msgstr "Created/Updated %s/%s groups" #: ../../enterprise/meta/advanced/metasetup.setup.php:68 #: ../../enterprise/meta/include/functions_meta.php:33 @@ -11077,57 +11078,57 @@ msgstr "Directory where temporary data is stored." #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Africa" -msgstr "" +msgstr "Africa" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "America" -msgstr "" +msgstr "America" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Antarctica" -msgstr "" +msgstr "Antarctica" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Arctic" -msgstr "" +msgstr "Arctic" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Asia" -msgstr "" +msgstr "Asia" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Atlantic" -msgstr "" +msgstr "Atlantic Ocean" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Australia" -msgstr "" +msgstr "Australia" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Europe" -msgstr "" +msgstr "Europe" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Indian" -msgstr "" +msgstr "Indian" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "Pacific" -msgstr "" +msgstr "Pacific" #: ../../enterprise/meta/advanced/metasetup.setup.php:101 #: ../../godmode/setup/setup_general.php:165 msgid "UTC" -msgstr "" +msgstr "UTC" #: ../../enterprise/meta/advanced/metasetup.setup.php:120 #: ../../enterprise/meta/include/functions_meta.php:93 @@ -11165,7 +11166,7 @@ msgstr "License info" #: ../../include/functions_config.php:175 #: ../../godmode/setup/setup_general.php:216 msgid "Public URL" -msgstr "" +msgstr "Public URL" #: ../../enterprise/meta/advanced/metasetup.setup.php:140 #: ../../godmode/setup/setup_general.php:217 @@ -11173,12 +11174,14 @@ msgid "" "Set this value when your PandoraFMS across inverse proxy or for example with " "mod_proxy of Apache." msgstr "" +"Set this value when your PandoraFMS is behind the inverse proxy or, for " +"example, with Apache mod_proxy." #: ../../enterprise/meta/advanced/metasetup.setup.php:143 #: ../../include/functions_config.php:461 #: ../../godmode/setup/setup_netflow.php:56 msgid "Disable custom live view filters" -msgstr "" +msgstr "Disable live view custom filters" #: ../../enterprise/meta/advanced/metasetup.setup.php:143 #: ../../godmode/setup/setup_netflow.php:57 @@ -11186,6 +11189,8 @@ 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:151 #: ../../enterprise/godmode/modules/configure_local_component.php:129 @@ -11193,7 +11198,7 @@ msgstr "" #: ../../godmode/users/configure_user.php:474 #: ../../godmode/alerts/configure_alert_template.php:639 msgid "Basic" -msgstr "" +msgstr "Basic" #: ../../enterprise/meta/advanced/synchronizing.user.php:194 #, php-format @@ -11222,6 +11227,8 @@ msgid "" "Error creating/updating the followings elements groups/profiles/user " "profiles (%d/%d/%d)" msgstr "" +"Error creating/updating the followings element groups/profiles/user profiles " +"(%d/%d/%d)" #: ../../enterprise/meta/advanced/synchronizing.user.php:342 #: ../../enterprise/meta/advanced/synchronizing.user.php:475 @@ -11230,6 +11237,8 @@ msgid "" "The followings elements groups/profiles/user profiles were created/updated " "sucessfully (%d/%d/%d)" msgstr "" +"The following elements groups/profiles/user profiles were created/updated " +"successfully (%d/%d/%d)" #: ../../enterprise/meta/advanced/synchronizing.user.php:530 #: ../../enterprise/godmode/agentes/inventory_manager.php:168 @@ -11243,7 +11252,7 @@ msgstr "Profile mode" #: ../../enterprise/meta/advanced/synchronizing.user.php:545 msgid "Profile synchronization mode." -msgstr "" +msgstr "Profile synchronization mode." #: ../../enterprise/meta/advanced/synchronizing.user.php:546 msgid "New profile" @@ -11283,15 +11292,15 @@ msgstr "Network components" #: ../../enterprise/meta/include/functions_components_meta.php:60 #: ../../enterprise/meta/include/functions_components_meta.php:75 msgid "Plugin management" -msgstr "" +msgstr "Plugin management" #: ../../enterprise/meta/include/functions_components_meta.php:81 msgid "Create plugin" -msgstr "" +msgstr "Create plugin" #: ../../enterprise/meta/include/functions_components_meta.php:84 msgid "Edit plugin" -msgstr "" +msgstr "Edit plugin" #: ../../enterprise/meta/include/functions_ui_meta.php:54 #: ../../include/functions_ui.php:1146 @@ -11313,35 +11322,35 @@ msgstr "Commands" #: ../../enterprise/meta/include/functions_networkmap_meta.php:271 msgid "Successful update the networkmap." -msgstr "" +msgstr "The networkmap has been successfully updated." #: ../../enterprise/meta/include/functions_networkmap_meta.php:272 msgid "Unsuccessful update the networkmap." -msgstr "" +msgstr "The networkmap could not be updated successfully." #: ../../enterprise/meta/include/functions_networkmap_meta.php:277 msgid "Unnamed " -msgstr "" +msgstr "Unnamed " #: ../../enterprise/meta/include/functions_networkmap_meta.php:324 msgid "Show detailed agent" -msgstr "" +msgstr "Show agent details" #: ../../enterprise/meta/include/functions_networkmap_meta.php:363 msgid "Show modules" -msgstr "" +msgstr "Show modules" #: ../../enterprise/meta/include/functions_networkmap_meta.php:363 msgid "Only the network modules." -msgstr "" +msgstr "Only network modules." #: ../../enterprise/meta/include/functions_networkmap_meta.php:373 msgid "Show children Metaconsole" -msgstr "" +msgstr "Show Metaconsole children" #: ../../enterprise/meta/include/functions_networkmap_meta.php:404 msgid "Show modulegroup" -msgstr "" +msgstr "Show modulegroup" #: ../../enterprise/meta/include/functions_networkmap_meta.php:411 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:73 @@ -11373,24 +11382,24 @@ msgstr "Save" #: ../../enterprise/meta/include/functions_networkmap_meta.php:443 msgid "There is no group selected" -msgstr "" +msgstr "No group has been selected" #: ../../enterprise/meta/include/functions_networkmap_meta.php:638 #, php-format msgid "Cannot connect to %s Pandora to generate networkmap." -msgstr "" +msgstr "Impossible to connect to %s Pandora to generate networkmap." #: ../../enterprise/meta/include/functions_wizard_meta.php:229 msgid "Latency" -msgstr "" +msgstr "Latency" #: ../../enterprise/meta/include/functions_wizard_meta.php:230 msgid "Response" -msgstr "" +msgstr "Response" #: ../../enterprise/meta/include/functions_wizard_meta.php:232 msgid "Check type" -msgstr "" +msgstr "Check type" #: ../../enterprise/meta/include/functions_wizard_meta.php:249 #: ../../enterprise/meta/include/functions_wizard_meta.php:299 @@ -11400,21 +11409,21 @@ msgstr "Web checks" #: ../../enterprise/meta/include/functions_wizard_meta.php:280 msgid "String to check" -msgstr "" +msgstr "String to check" #: ../../enterprise/meta/include/functions_wizard_meta.php:285 msgid "Add check" -msgstr "" +msgstr "Add check" #: ../../enterprise/meta/include/functions_wizard_meta.php:293 msgid "Delete check" -msgstr "" +msgstr "Delete check" #: ../../enterprise/meta/include/functions_wizard_meta.php:398 #: ../../enterprise/meta/include/functions_wizard_meta.php:487 #: ../../enterprise/meta/include/functions_wizard_meta.php:668 msgid "Various" -msgstr "" +msgstr "Various" #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:850 @@ -11425,13 +11434,13 @@ msgstr "SNMP Community" #: ../../enterprise/meta/include/functions_wizard_meta.php:413 #: ../../enterprise/meta/include/functions_wizard_meta.php:495 msgid "Credentials" -msgstr "" +msgstr "Credentials" #: ../../enterprise/meta/include/functions_wizard_meta.php:435 #: ../../enterprise/meta/include/functions_wizard_meta.php:517 #: ../../enterprise/meta/include/functions_wizard_meta.php:689 msgid "Thresholds" -msgstr "" +msgstr "Thresholds" #: ../../enterprise/meta/include/functions_wizard_meta.php:523 #: ../../enterprise/meta/include/functions_wizard_meta.php:974 @@ -11441,11 +11450,11 @@ msgstr "Proxy URL" #: ../../enterprise/meta/include/functions_wizard_meta.php:528 msgid "Web configuration" -msgstr "" +msgstr "Web configuration" #: ../../enterprise/meta/include/functions_wizard_meta.php:744 msgid "Alerts in module" -msgstr "" +msgstr "Alerts in module" #: ../../enterprise/meta/include/functions_wizard_meta.php:752 #: ../../include/functions_reporting.php:1646 @@ -11454,7 +11463,7 @@ msgstr "Alert description" #: ../../enterprise/meta/include/functions_wizard_meta.php:970 msgid "Checks" -msgstr "" +msgstr "Checks" #: ../../enterprise/meta/include/functions_wizard_meta.php:1238 #: ../../enterprise/meta/include/functions_wizard_meta.php:1342 @@ -11471,7 +11480,7 @@ msgstr "Another module already exists with the same name" #: ../../enterprise/meta/include/functions_wizard_meta.php:1493 #, php-format msgid "Error adding module %s" -msgstr "" +msgstr "Error adding module %s" #: ../../enterprise/meta/include/functions_wizard_meta.php:1260 #: ../../enterprise/meta/include/functions_wizard_meta.php:1362 @@ -11479,6 +11488,7 @@ msgstr "" 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:1293 #: ../../enterprise/meta/include/functions_wizard_meta.php:1392 @@ -11500,20 +11510,21 @@ msgstr "Error updating module %s" 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:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 #: ../../enterprise/meta/include/functions_wizard_meta.php:1864 msgid "Successfully updated module." -msgstr "" +msgstr "The module has been updated successfully." #: ../../enterprise/meta/include/functions_meta.php:25 msgid "No admin user" -msgstr "" +msgstr "No admin user" #: ../../enterprise/meta/include/functions_meta.php:123 msgid "Netflow disable custom live view filters" -msgstr "" +msgstr "Netflow disable custom live view filters" #: ../../enterprise/meta/include/functions_users_meta.php:172 #: ../../enterprise/meta/include/functions_users_meta.php:196 @@ -11531,11 +11542,11 @@ msgstr "Group management" #: ../../enterprise/meta/include/functions_users_meta.php:187 msgid "User synchronization" -msgstr "" +msgstr "User synchronization" #: ../../enterprise/meta/include/functions_users_meta.php:202 msgid "Group synchronization" -msgstr "" +msgstr "Group synchronization" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:118 #: ../../godmode/alerts/alert_templates.php:60 @@ -11660,7 +11671,7 @@ msgstr "Go" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1197 msgid "Create new module" -msgstr "" +msgstr "Create a new module" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1244 #: ../../godmode/groups/configure_modu_group.php:47 @@ -11687,11 +11698,11 @@ msgstr "Icon" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1335 #: ../../include/functions_treeview.php:47 msgid "There was a problem loading module" -msgstr "" +msgstr "A problem occurred while loading module" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1398 msgid "Go to module detail" -msgstr "" +msgstr "Go to module details" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1411 #: ../../godmode/agentes/module_manager_editor_common.php:137 @@ -11700,11 +11711,11 @@ msgstr "Delete module" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1416 msgid "Create new alert" -msgstr "" +msgstr "Create a new alert" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1457 msgid "There was a problem loading alert" -msgstr "" +msgstr "A problem occurred while loading alerts" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1472 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:217 @@ -11715,19 +11726,19 @@ msgstr "Template name" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 msgid "Stand By" -msgstr "" +msgstr "Stand By" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1574 msgid "Go to Alert detail" -msgstr "" +msgstr "Go to alert details" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1580 msgid "Delete alert" -msgstr "" +msgstr "Delete alert" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1624 msgid "There was a problem loading tag" -msgstr "" +msgstr "A problem occurred while loading tag" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1639 #: ../../godmode/tag/tag.php:159 @@ -11736,7 +11747,7 @@ msgstr "Tag name" #: ../../enterprise/meta/screens/screens.visualmap.php:54 msgid "Create visualmap" -msgstr "" +msgstr "Create Visualmap" #: ../../enterprise/meta/screens/screens.visualmap.php:95 #: ../../godmode/reporting/visual_console_builder.php:107 @@ -11756,15 +11767,15 @@ msgstr "Editor" #: ../../enterprise/meta/screens/screens.visualmap.php:174 #: ../../godmode/reporting/visual_console_builder.php:437 msgid "New visual console" -msgstr "" +msgstr "New visual console" #: ../../enterprise/meta/screens/screens.visualmap.php:185 msgid "Visualmap" -msgstr "" +msgstr "Visualmap" #: ../../enterprise/meta/screens/screens.main.php:73 msgid "Welcome to the Pandora FMS screens." -msgstr "" +msgstr "Welcome to Pandora FMS screens." #: ../../enterprise/meta/index.php:305 ../../enterprise/meta/index.php:315 #: ../../index.php:462 @@ -11777,7 +11788,7 @@ msgstr "Copy the dashboard" #: ../../enterprise/dashboard/dashboard_replicate.php:41 msgid "Not copyed. Error copying data. You must select a dashboard" -msgstr "" +msgstr "Not copied. Error copying data. You must select a dashboard" #: ../../enterprise/dashboard/dashboard_replicate.php:63 #: ../../enterprise/dashboard/dashboard_replicate.php:83 @@ -11790,15 +11801,15 @@ msgstr "Successfully copied" #: ../../enterprise/dashboard/dashboard_replicate.php:108 msgid "Source user's group" -msgstr "" +msgstr "User's group Source" #: ../../enterprise/dashboard/dashboard_replicate.php:132 msgid "Destination user's group" -msgstr "" +msgstr "User's group Destination" #: ../../enterprise/dashboard/dashboard_replicate.php:146 msgid "Group Dashboards" -msgstr "" +msgstr "Group Dashboards" #: ../../enterprise/dashboard/dashboard_replicate.php:165 msgid "Replicate Dashboard" @@ -12545,77 +12556,79 @@ msgstr " Bytes" #: ../../enterprise/godmode/setup/setup.php:56 #: ../../include/functions_config.php:197 msgid "Replication interval" -msgstr "" +msgstr "Replication interval" #: ../../enterprise/godmode/setup/setup.php:57 msgid "Seconds" -msgstr "" +msgstr "Seconds" #: ../../enterprise/godmode/setup/setup.php:60 #: ../../include/functions_config.php:199 msgid "Replication DB host" -msgstr "" +msgstr "DB host Replication" #: ../../enterprise/godmode/setup/setup.php:64 #: ../../include/functions_config.php:201 msgid "Replication DB database" -msgstr "" +msgstr "Replication DB database" #: ../../enterprise/godmode/setup/setup.php:68 #: ../../include/functions_config.php:203 msgid "Replication DB user" -msgstr "" +msgstr "Replication DB user" #: ../../enterprise/godmode/setup/setup.php:72 #: ../../include/functions_config.php:205 msgid "Replication DB password" -msgstr "" +msgstr "Replication DB password" #: ../../enterprise/godmode/setup/setup.php:76 #: ../../include/functions_config.php:207 msgid "Replication DB port" -msgstr "" +msgstr "Replication DB port" #: ../../enterprise/godmode/setup/setup.php:80 #: ../../include/functions_config.php:209 msgid "Replication mode" -msgstr "" +msgstr "Replication mode" #: ../../enterprise/godmode/setup/setup.php:81 msgid "Only validated events" -msgstr "" +msgstr "Only validated events" #: ../../enterprise/godmode/setup/setup.php:85 #: ../../include/functions_config.php:218 msgid "Inventory changes blacklist" -msgstr "" +msgstr "Inventory changes blacklist" #: ../../enterprise/godmode/setup/setup.php:85 msgid "" "The inventory modules included in the changes blacklist will not generate " "events when change." msgstr "" +"The inventory modules included in the change blacklist will not generate " +"events when they change." #: ../../enterprise/godmode/setup/setup.php:114 msgid "Out of black list" -msgstr "" +msgstr "Out of black list" #: ../../enterprise/godmode/setup/setup.php:116 msgid "In black list" -msgstr "" +msgstr "In black list" #: ../../enterprise/godmode/setup/setup.php:122 msgid "Push selected modules into blacklist" -msgstr "" +msgstr "Push selected modules into blacklist" #: ../../enterprise/godmode/setup/setup.php:124 msgid "Pop selected modules out of blacklist" -msgstr "" +msgstr "Pop selected modules out of blacklist" #: ../../enterprise/godmode/setup/setup.php:133 #: ../../include/functions_config.php:214 msgid "Activate Log Collector" -msgstr "" +msgstr "Activate Log Collector" #: ../../enterprise/godmode/setup/setup.php:158 msgid "Enterprise options" @@ -12635,7 +12648,7 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:87 msgid "Local component management" -msgstr "" +msgstr "Local component management" #: ../../enterprise/godmode/modules/local_components.php:103 #: ../../godmode/modules/manage_network_components.php:128 @@ -12702,7 +12715,7 @@ msgstr "Duplicate" #: ../../godmode/modules/manage_network_components_form_common.php:56 #: ../../godmode/alerts/configure_alert_template.php:638 msgid "Wizard level" -msgstr "" +msgstr "Wizard level" #: ../../enterprise/godmode/modules/configure_local_component.php:169 #: ../../include/functions_alerts.php:554 @@ -12762,7 +12775,7 @@ msgstr "Str." #: ../../godmode/massive/massive_edit_modules.php:307 #: ../../godmode/massive/massive_edit_modules.php:344 msgid "Inverse interval" -msgstr "" +msgstr "Inverse interval" #: ../../enterprise/godmode/modules/configure_local_component.php:182 #: ../../include/functions_alerts.php:555 @@ -12800,42 +12813,42 @@ msgstr "Post process" #: ../../godmode/agentes/module_manager_editor_common.php:410 #: ../../godmode/massive/massive_edit_modules.php:420 msgid "Critical instructions" -msgstr "" +msgstr "Critical instructions" #: ../../enterprise/godmode/modules/configure_local_component.php:218 #: ../../godmode/modules/manage_network_components_form_common.php:146 #: ../../godmode/agentes/module_manager_editor_common.php:410 #: ../../godmode/massive/massive_edit_modules.php:420 msgid "Instructions when the status is critical" -msgstr "" +msgstr "Instructions when the status is critical" #: ../../enterprise/godmode/modules/configure_local_component.php:221 #: ../../godmode/modules/manage_network_components_form_common.php:150 #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Warning instructions" -msgstr "" +msgstr "Warning instructions" #: ../../enterprise/godmode/modules/configure_local_component.php:221 #: ../../godmode/modules/manage_network_components_form_common.php:150 #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Instructions when the status is warning" -msgstr "" +msgstr "Instructions for warning status" #: ../../enterprise/godmode/modules/configure_local_component.php:224 #: ../../godmode/modules/manage_network_components_form_common.php:154 #: ../../godmode/agentes/module_manager_editor_common.php:418 #: ../../godmode/massive/massive_edit_modules.php:428 msgid "Unknown instructions" -msgstr "" +msgstr "Unknown instructions" #: ../../enterprise/godmode/modules/configure_local_component.php:224 #: ../../godmode/modules/manage_network_components_form_common.php:154 #: ../../godmode/agentes/module_manager_editor_common.php:418 #: ../../godmode/massive/massive_edit_modules.php:428 msgid "Instructions when the status is unknown" -msgstr "" +msgstr "Instructions for unknown status" #: ../../enterprise/godmode/modules/configure_local_component.php:231 #: ../../godmode/modules/manage_network_components_form_common.php:161 @@ -12869,12 +12882,12 @@ msgstr "Tags selected" #: ../../enterprise/godmode/modules/configure_local_component.php:274 msgid "Macros" -msgstr "" +msgstr "Macros" #: ../../enterprise/godmode/modules/configure_local_component.php:310 #: ../../godmode/servers/plugin.php:229 msgid "Default value" -msgstr "" +msgstr "Default value" #: ../../enterprise/godmode/modules/configure_local_component.php:316 #: ../../include/functions_ui.php:952 ../../godmode/servers/plugin.php:242 @@ -12884,12 +12897,12 @@ msgstr "Help" #: ../../enterprise/godmode/modules/configure_local_component.php:326 #: ../../godmode/servers/plugin.php:256 msgid "Add macro" -msgstr "" +msgstr "Add macro" #: ../../enterprise/godmode/modules/configure_local_component.php:333 #: ../../godmode/servers/plugin.php:263 msgid "Delete macro" -msgstr "" +msgstr "Delete macro" #: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 #: ../../enterprise/godmode/agentes/inventory_manager.php:128 @@ -13339,20 +13352,21 @@ msgstr "Time to" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1083 msgid "Match by regular expression or selection" -msgstr "" +msgstr "Match by regular expression or selection" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1083 msgid "" "You can select agents and modules by regular expression or direct selection" msgstr "" +"You can select agents and modules by regular expression or direct selection" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1086 msgid "Reg expression" -msgstr "" +msgstr "Reg expression" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1087 msgid "Direct selection" -msgstr "" +msgstr "Direct selection" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1096 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1098 @@ -13366,6 +13380,8 @@ 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:1161 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 @@ -13377,6 +13393,11 @@ msgid "" "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. 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, otherwise " +"you can use a regular expression. Example: .*usage.* will match: cpu_usage, " +"vram usage in machine 1." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1171 msgid "Module exact match" @@ -13396,11 +13417,11 @@ msgstr "SQL query" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1211 msgid "Also you can add agents from this list" -msgstr "" +msgstr "Also you can add agents from this list" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1250 msgid "You can add modules from this list" -msgstr "" +msgstr "You can add modules from this list" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1267 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2389 @@ -13541,37 +13562,37 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1355 #: ../../godmode/reporting/reporting_builder.item_editor.php:1011 msgid "Event filter" -msgstr "" +msgstr "Event filter" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1358 #: ../../godmode/reporting/reporting_builder.item_editor.php:1014 msgid "No Validated" -msgstr "" +msgstr "No Validated" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1370 #: ../../godmode/reporting/reporting_builder.item_editor.php:1027 msgid "Event graphs" -msgstr "" +msgstr "Event graphs" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1373 #: ../../godmode/reporting/reporting_builder.item_editor.php:1030 msgid "By agent" -msgstr "" +msgstr "By agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1375 #: ../../godmode/reporting/reporting_builder.item_editor.php:1032 msgid "By user validator" -msgstr "" +msgstr "By validator user" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1377 #: ../../godmode/reporting/reporting_builder.item_editor.php:1034 msgid "By criticity" -msgstr "" +msgstr "By criticity" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1379 #: ../../godmode/reporting/reporting_builder.item_editor.php:1036 msgid "Validated vs unvalidated" -msgstr "" +msgstr "Validated vs unvalidated" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1385 #: ../../godmode/reporting/reporting_builder.item_editor.php:1042 @@ -13591,29 +13612,31 @@ msgstr "Show in landscape" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1401 msgid "Modules to match" -msgstr "" +msgstr "Modules to match" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1403 msgid "Select the modules to match when create a report for agents" -msgstr "" +msgstr "Select modules to match when creating reports for agents" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1479 msgid "Modules to match (Free text)" -msgstr "" +msgstr "Modules to match (Free text)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1481 msgid "Free text to filter the modules of agents when apply this template." -msgstr "" +msgstr "Free text to filter modules of agents when applying this template." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1494 msgid "Create a graph for each agent" -msgstr "" +msgstr "Create a graph for each agent" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1496 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 checked, the regexp or every name of modules will match an agent module. " +"Otherwise, it will create a graph with all the agent modules." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1520 #: ../../godmode/netflow/nf_item_list.php:258 @@ -13650,6 +13673,8 @@ 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:1673 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784 @@ -13700,14 +13725,14 @@ msgstr "Height" #: ../../enterprise/godmode/reporting/graph_template_editor.php:181 msgid "3 hours" -msgstr "" +msgstr "3 hours" #: ../../enterprise/godmode/reporting/graph_template_editor.php:182 #: ../../enterprise/godmode/agentes/inventory_manager.php:174 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:194 #: ../../include/ajax/module.php:79 msgid "6 hours" -msgstr "" +msgstr "6 hours" #: ../../enterprise/godmode/reporting/graph_template_editor.php:185 #: ../../enterprise/godmode/agentes/inventory_manager.php:177 @@ -13720,7 +13745,7 @@ msgstr "2 days" #: ../../enterprise/godmode/reporting/graph_template_editor.php:186 msgid "4 days" -msgstr "" +msgstr "4 days" #: ../../enterprise/godmode/reporting/graph_template_editor.php:187 #: ../../include/functions_netflow.php:855 @@ -13761,7 +13786,7 @@ msgstr "1 year" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:91 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:115 msgid "Elements to apply" -msgstr "" +msgstr "Elements to apply" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:142 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 @@ -13935,47 +13960,47 @@ msgstr "Short Name" #: ../../enterprise/godmode/agentes/plugins_manager.php:41 msgid "Plug-in deleted succesfully" -msgstr "" +msgstr "Plug-in deleted successfully" #: ../../enterprise/godmode/agentes/plugins_manager.php:41 msgid "Plug-in cannot be deleted" -msgstr "" +msgstr "Plug-in cannot be deleted" #: ../../enterprise/godmode/agentes/plugins_manager.php:47 #: ../../enterprise/godmode/policies/policy_plugins.php:43 msgid "Plug-in added succesfully" -msgstr "" +msgstr "Plug-in added successfully" #: ../../enterprise/godmode/agentes/plugins_manager.php:47 #: ../../enterprise/godmode/policies/policy_plugins.php:43 msgid "Plug-in cannot be added" -msgstr "" +msgstr "Plug-in cannot be added" #: ../../enterprise/godmode/agentes/plugins_manager.php:58 msgid "Plug-in disabled succesfully" -msgstr "" +msgstr "Plug-in disabled successfully" #: ../../enterprise/godmode/agentes/plugins_manager.php:58 msgid "Plug-in cannot be disabled" -msgstr "" +msgstr "Plug-in cannot be disabled" #: ../../enterprise/godmode/agentes/plugins_manager.php:69 msgid "Plug-in enabled succesfully" -msgstr "" +msgstr "Plug-in enabled successfully" #: ../../enterprise/godmode/agentes/plugins_manager.php:69 msgid "Plug-in cannot be enabled" -msgstr "" +msgstr "Plug-in cannot be enabled" #: ../../enterprise/godmode/agentes/plugins_manager.php:78 #: ../../enterprise/godmode/policies/policy_plugins.php:52 msgid "New plug-in" -msgstr "" +msgstr "New plug-in" #: ../../enterprise/godmode/agentes/plugins_manager.php:95 #: ../../enterprise/godmode/policies/policy_plugins.php:68 msgid "Plugins" -msgstr "" +msgstr "Plugins" #: ../../enterprise/godmode/agentes/plugins_manager.php:97 #: ../../enterprise/godmode/agentes/plugins_manager.php:117 @@ -14069,7 +14094,7 @@ msgstr "Error forcing inventory module" #: ../../enterprise/godmode/agentes/inventory_manager.php:178 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 msgid "7 days" -msgstr "" +msgstr "7 days" #: ../../enterprise/godmode/agentes/inventory_manager.php:180 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:200 @@ -14257,7 +14282,7 @@ msgstr "Create a new web Server module" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:40 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:41 msgid "The changes on this field are linked with the configuration data." -msgstr "" +msgstr "The changes on this field are linked to the configuration data." #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:46 msgid "Using local component" @@ -14277,11 +14302,11 @@ msgstr "No component was found" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:118 msgid "Show configuration data" -msgstr "" +msgstr "Show configuration data" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:128 msgid "Hide configuration data" -msgstr "" +msgstr "Hide configuration data" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:136 msgid "Data configuration" @@ -14289,48 +14314,52 @@ msgstr "Data configuration" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:141 msgid "Load basic" -msgstr "" +msgstr "Load basics" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:141 msgid "Load a basic structure on data configuration" -msgstr "" +msgstr "Load a basic structure on data configuration" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:144 msgid "Check the correct structure of the data configuration" -msgstr "" +msgstr "Check the correct structure of data configuration" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:154 msgid "First line must be \"module_begin\"" -msgstr "" +msgstr "First line must be \"module_begin\"" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 msgid "Data configuration is empty" -msgstr "" +msgstr "Data configuration is empty" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:156 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:160 msgid "Last line must be \"module_end\"" -msgstr "" +msgstr "Last line must be \"module_end\"" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:157 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to " "data configuration" msgstr "" +"The Name is missing. Please add a line with \"module_name yourmodulename\" " +"to data configuration" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:158 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to " "data configuration" msgstr "" +"The Type is missing. Please add a line with \"module_type yourmoduletype\" " +"to data configuration" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:159 msgid "Type is wrong. Please set a correct type" -msgstr "" +msgstr "The Type is wrong. Please set a correct type" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:161 msgid "Data configuration are built correctly" -msgstr "" +msgstr "Data configuration has been built correctly" #: ../../enterprise/godmode/agentes/module_manager_editor_web.php:29 msgid "Web server module" @@ -14422,7 +14451,7 @@ msgstr "Event alerts" #: ../../enterprise/godmode/menu.php:90 msgid "Log Collector" -msgstr "" +msgstr "Log Collector" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 #: ../../enterprise/godmode/policies/policy_modules.php:251 @@ -14437,11 +14466,11 @@ msgstr "" #: ../../enterprise/godmode/policies/policy.php:50 #: ../../enterprise/godmode/policies/policy.php:53 msgid "Policies Management" -msgstr "Policies Management" +msgstr "Policy Management" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 msgid "Inventory modules policy" -msgstr "Inventory modules policy" +msgstr "Inventory module policy" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:53 #: ../../enterprise/godmode/policies/policy_modules.php:296 @@ -14465,7 +14494,7 @@ msgid "" "Successfully added to delete pending modules. Will be deleted in the next " "policy application." msgstr "" -"Successfully added to delete pending modules. Will be deleted in the next " +"Successfully added to delete pending modules. It will be deleted in the next " "policy application." #: ../../enterprise/godmode/policies/policy_inventory_modules.php:100 @@ -14505,10 +14534,12 @@ msgid "" "Successfully added to delete pending plugins. Will be deleted in the next " "policy application." msgstr "" +"Successfully added to delete pending plugins. It will be deleted in the next " +"policy application." #: ../../enterprise/godmode/policies/policy_plugins.php:31 msgid "Cannot be added to delete pending plugins." -msgstr "" +msgstr "It cannot be added to delete pending plugins." #: ../../enterprise/godmode/policies/policy_modules.php:22 #: ../../enterprise/godmode/policies/policy_modules.php:755 @@ -14530,7 +14561,7 @@ msgstr "Modules in policy" #: ../../enterprise/godmode/policies/policy_modules.php:275 msgid "Could not be added module(s). You must select a policy" -msgstr "" +msgstr "These modules could not be added. You must select a policy" #: ../../enterprise/godmode/policies/policy_modules.php:423 msgid "Could not be added module." @@ -14559,7 +14590,7 @@ msgstr "Copy modules" #: ../../enterprise/godmode/policies/policy_modules.php:704 msgid "Copy selected modules to policy: " -msgstr "" +msgstr "Copy selected modules to policy: " #: ../../enterprise/godmode/policies/policy_modules.php:738 #: ../../godmode/agentes/module_manager_editor.php:457 @@ -14582,11 +14613,11 @@ msgstr "Variable" #: ../../enterprise/godmode/policies/policy_modules.php:854 msgid "Are you sure to copy modules into policy?\\n" -msgstr "" +msgstr "Are you sure to copy modules into policy?\\n" #: ../../enterprise/godmode/policies/policy_modules.php:874 msgid "Please select any module to copy" -msgstr "" +msgstr "Please select any module to copy" #: ../../enterprise/godmode/policies/policy_queue.php:101 msgid "Operations successfully deleted from the queue" @@ -14669,7 +14700,7 @@ msgstr "Delete pending file collections" #: ../../enterprise/godmode/policies/policy_queue.php:261 msgid "Delete pending plugins" -msgstr "" +msgstr "Delete pending plugins" #: ../../enterprise/godmode/policies/policy_queue.php:273 msgid "Advices" @@ -14712,12 +14743,12 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_external_alerts.php:121 #: ../../enterprise/godmode/policies/policy_alerts.php:173 msgid "Added action successfuly" -msgstr "Action added successfuly" +msgstr "Action added successfully" #: ../../enterprise/godmode/policies/policy_external_alerts.php:141 #: ../../enterprise/godmode/policies/policy_alerts.php:191 msgid "Deleted action successfuly" -msgstr "Action deleted successfuly" +msgstr "Action deleted successfully" #: ../../enterprise/godmode/policies/policy_external_alerts.php:170 #: ../../enterprise/godmode/policies/policy_external_alerts.php:306 @@ -14781,7 +14812,7 @@ msgid "" "Successfully added to delete pending agents. Will be deleted in the next " "policy application." msgstr "" -"Successfully added to delete pending agents. Will be deleted in the next " +"Successfully added to delete pending agents. It will be deleted in the next " "policy application." #: ../../enterprise/godmode/policies/policy_agents.php:121 @@ -15025,39 +15056,40 @@ msgstr "Agents policy" #: ../../enterprise/godmode/policies/policy.php:53 msgid "Plugins policy" -msgstr "" +msgstr "Plugin policy" #: ../../enterprise/godmode/services/services.elements.php:51 #: ../../enterprise/godmode/services/services.service.php:126 msgid "" "This values are by default because the service is auto calculate mode." msgstr "" +"These are default values because the service is on autocalculate mode" #: ../../enterprise/godmode/services/services.elements.php:76 #: ../../enterprise/godmode/services/services.service.php:148 msgid "Config Service" -msgstr "" +msgstr "Config Service" #: ../../enterprise/godmode/services/services.elements.php:81 #: ../../enterprise/godmode/services/services.service.php:153 msgid "Config Elements" -msgstr "" +msgstr "Config Elements" #: ../../enterprise/godmode/services/services.elements.php:85 msgid "Edit service elements" -msgstr "" +msgstr "Edit service elements" #: ../../enterprise/godmode/services/services.elements.php:99 msgid "Error empty module" -msgstr "" +msgstr "Error: empty module" #: ../../enterprise/godmode/services/services.elements.php:108 msgid "Error empty agent" -msgstr "" +msgstr "Error: empty agent" #: ../../enterprise/godmode/services/services.elements.php:117 msgid "Error empty service" -msgstr "" +msgstr "Error: empty service" #: ../../enterprise/godmode/services/services.elements.php:137 msgid "Service element created successfully" @@ -15085,11 +15117,11 @@ msgstr "Error deleting service element" #: ../../enterprise/godmode/services/services.elements.php:207 msgid "Edit element service" -msgstr "" +msgstr "Edit element service" #: ../../enterprise/godmode/services/services.elements.php:210 msgid "Create element service" -msgstr "" +msgstr "Create element service" #: ../../enterprise/godmode/services/services.elements.php:260 msgid "First select an agent" @@ -15105,7 +15137,7 @@ msgstr "Warning weight" #: ../../enterprise/godmode/services/services.elements.php:288 msgid "Unknown weight" -msgstr "" +msgstr "Unknown weight" #: ../../enterprise/godmode/services/services.elements.php:293 msgid "Ok weight" @@ -15129,39 +15161,39 @@ msgstr "Error updating service" #: ../../enterprise/godmode/services/services.service.php:100 msgid "New Service" -msgstr "" +msgstr "New Service" #: ../../enterprise/godmode/services/services.service.php:193 msgid "Auto calculate" -msgstr "" +msgstr "Auto calculate" #: ../../enterprise/godmode/services/services.service.php:208 msgid "Agent to store data" -msgstr "" +msgstr "Agent to store data" #: ../../enterprise/godmode/services/services.service.php:228 msgid "S.L.A. interval" -msgstr "" +msgstr "S.L.A. interval" #: ../../enterprise/godmode/services/services.service.php:233 msgid "S.L.A. limit" -msgstr "" +msgstr "S.L.A. limit" #: ../../enterprise/godmode/services/services.service.php:235 msgid "Please set limit between 0 to 100." -msgstr "" +msgstr "Please set a limit between 0 to 100." #: ../../enterprise/godmode/services/services.service.php:246 msgid "Warning Service alert" -msgstr "" +msgstr "Warning Service alert" #: ../../enterprise/godmode/services/services.service.php:251 msgid "Critical Service alert" -msgstr "" +msgstr "Critical Service alert" #: ../../enterprise/godmode/services/services.service.php:264 msgid "SLA critical service alert" -msgstr "" +msgstr "SLA critical service alert" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:52 msgid "Error parsing MIB" @@ -15876,6 +15908,7 @@ msgid "" "Is possible that this view uses part of information which your user has not " "access" msgstr "" +"This view may use information to which your user does not have access" #: ../../include/functions_ui.php:875 #: ../../godmode/alerts/configure_alert_template.php:717 @@ -15948,11 +15981,11 @@ msgstr "Type at least two characters to search." #: ../../include/functions_ui.php:3068 msgid "Does not exist agent with this name." -msgstr "" +msgstr "No matches found for this agent name" #: ../../include/functions_ui.php:3214 msgid "Problem with Pandora FMS database" -msgstr "" +msgstr "A problem with Pandora FMS occurred" #: ../../include/functions_ui.php:3215 msgid "" @@ -15962,10 +15995,15 @@ msgid "" "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:3219 msgid "DB ERROR" -msgstr "" +msgstr "DB ERROR" #: ../../include/functions_ui.php:3225 msgid "" @@ -15974,10 +16012,14 @@ msgid "" "them from your database by executing:
DELETE FROM tconfig WHERE "
 "token = \"auth\";
" msgstr "" +"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\";
" #: ../../include/functions_ui.php:3229 msgid "Empty configuration table" -msgstr "" +msgstr "Empty configuration table" #: ../../include/functions_ui.php:3230 msgid "" @@ -15992,10 +16034,20 @@ msgid "" "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " "to fix this problem.
" msgstr "" +"Impossible to 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 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 the " +"documentation to fix this problem.
" #: ../../include/functions_ui.php:3237 msgid "No configuration file found" -msgstr "" +msgstr "No configuration file found" #: ../../include/functions_ui.php:3238 msgid "" @@ -16004,15 +16056,19 @@ msgid "" "\t\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\t\tpermissions and HTTP server cannot read it. Please read the " +"documentation to fix this problem." #: ../../include/functions_ui.php:3249 #, php-format msgid "You may try to run the %sinstallation wizard%s to create one." -msgstr "" +msgstr "You can try to run the %sinstallation wizard%s to create one." #: ../../include/functions_ui.php:3252 msgid "Installer active" -msgstr "" +msgstr "Installer activated" #: ../../include/functions_ui.php:3253 msgid "" @@ -16021,10 +16077,14 @@ msgid "" "\t\t\tPlease delete the ./install.php file before running Pandora FMS " "Console." msgstr "" +"For security reasons, normal operations can not be executed until you delete " +"the installer file.\n" +"\t\t\tPlease, delete the ./install.php file before running Pandora " +"FMS Console." #: ../../include/functions_ui.php:3257 msgid "Bad permission for include/config.php" -msgstr "" +msgstr "Bad permission for include/config.php" #: ../../include/functions_ui.php:3258 msgid "" @@ -16037,6 +16097,14 @@ msgid "" "\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 on it. It should be written only for 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_events.php:784 msgid "Latest events" @@ -16044,11 +16112,11 @@ msgstr "Latest events" #: ../../include/functions_events.php:914 msgid "Events -by module-" -msgstr "" +msgstr "Events -by module-" #: ../../include/functions_events.php:1034 msgid "Going to unknown" -msgstr "" +msgstr "Going to unknown" #: ../../include/functions_events.php:1037 #: ../../include/functions_events.php:1320 ../../include/functions.php:879 @@ -16065,11 +16133,11 @@ msgstr "Going from critical to warning" #: ../../include/functions_events.php:1047 msgid "Going down to critical state" -msgstr "Going down to critical state" +msgstr "Going down to critical status" #: ../../include/functions_events.php:1051 msgid "Going up to normal state" -msgstr "Going up to normal state" +msgstr "Going up to normal status" #: ../../include/functions_events.php:1054 msgid "Going down from normal to warning" @@ -16141,11 +16209,11 @@ msgstr "Informational" #: ../../include/functions_events.php:1476 msgid "Agent address" -msgstr "" +msgstr "Agent address" #: ../../include/functions_events.php:1477 msgid "Agent id" -msgstr "" +msgstr "Agent id" #: ../../include/functions_events.php:1478 #: ../../godmode/events/custom_events.php:65 @@ -16155,62 +16223,62 @@ msgstr "Event ID" #: ../../include/functions_events.php:1554 msgid "Change owner" -msgstr "" +msgstr "Change owner" #: ../../include/functions_events.php:1584 ../../include/functions_xml.php:125 msgid "New" -msgstr "" +msgstr "New" #: ../../include/functions_events.php:1584 #: ../../include/functions_events.php:1590 ../../include/functions_xml.php:129 msgid "In process" -msgstr "" +msgstr "In process" #: ../../include/functions_events.php:1636 msgid "Custom responses" -msgstr "" +msgstr "Custom responses" #: ../../include/functions_events.php:1837 msgid "Agent details" -msgstr "" +msgstr "Agent details" #: ../../include/functions_events.php:1869 msgid "View custom fields" -msgstr "" +msgstr "See custom fields" #: ../../include/functions_events.php:1881 msgid "Module details" -msgstr "" +msgstr "Module details" #: ../../include/functions_events.php:1899 msgid "No assigned" -msgstr "" +msgstr "No assigned" #: ../../include/functions_events.php:1932 msgid "Alert details" -msgstr "" +msgstr "Alert details" #: ../../include/functions_events.php:2073 msgid "First event" -msgstr "" +msgstr "First event" #: ../../include/functions_events.php:2073 msgid "Last event" -msgstr "" +msgstr "Last event" #: ../../include/functions_events.php:2149 #: ../../mobile/operation/events.php:440 msgid "Acknowledged by" -msgstr "" +msgstr "Acknowledged by" #: ../../include/functions_events.php:2235 msgid "There are no comments" -msgstr "" +msgstr "No comments" #: ../../include/functions_events.php:2320 #: ../../include/functions_reporting.php:2625 msgid "Pandora System" -msgstr "" +msgstr "Pandora System" #: ../../include/functions_reporting.php:882 #: ../../include/functions_reporting.php:898 @@ -16221,7 +16289,7 @@ msgstr "" #: ../../include/functions_reporting.php:957 #: ../../include/functions_reporting.php:969 msgid "Ratio" -msgstr "" +msgstr "Ratio" #: ../../include/functions_reporting.php:882 #: ../../include/functions_reporting.php:898 @@ -16232,81 +16300,81 @@ msgstr "" #: ../../include/functions_reporting.php:957 #: ../../include/functions_reporting.php:969 msgid "Modules by second" -msgstr "" +msgstr "Modules by second" #: ../../include/functions_reporting.php:917 msgid "Network modules" -msgstr "" +msgstr "Network modules" #: ../../include/functions_reporting.php:929 msgid "Plugin modules" -msgstr "" +msgstr "Plugin modules" #: ../../include/functions_reporting.php:941 msgid "Prediction modules" -msgstr "" +msgstr "Prediction modules" #: ../../include/functions_reporting.php:953 msgid "WMI modules" -msgstr "" +msgstr "WMI modules" #: ../../include/functions_reporting.php:965 msgid "Web modules" -msgstr "" +msgstr "Web modules" #: ../../include/functions_reporting.php:1022 msgid "Monitor normal" -msgstr "" +msgstr "Normal monitor" #: ../../include/functions_reporting.php:1026 msgid "Monitor unknown" -msgstr "" +msgstr "Unknown monitor" #: ../../include/functions_reporting.php:1033 msgid "Monitor not init" -msgstr "" +msgstr "Not initialized monitor" #: ../../include/functions_reporting.php:1052 msgid "Monitors by status" -msgstr "" +msgstr "Monitors by status" #: ../../include/functions_reporting.php:1070 msgid "Module status" -msgstr "" +msgstr "Module status" #: ../../include/functions_reporting.php:1143 msgid "Defined and fired alerts" -msgstr "" +msgstr "Defined and fired alerts" #: ../../include/functions_reporting.php:1166 msgid "Defined users" -msgstr "" +msgstr "Defined users" #: ../../include/functions_reporting.php:1221 msgid "Total agents and monitors" -msgstr "" +msgstr "Total number of agents and monitors" #: ../../include/functions_reporting.php:1245 #, php-format msgid "%d Downed servers" -msgstr "" +msgstr "%d Downed servers" #: ../../include/functions_reporting.php:1253 #, php-format msgid "%d Not Normal monitors" -msgstr "" +msgstr "%d Not Normal monitors" #: ../../include/functions_reporting.php:1261 #, php-format msgid "%d Not inited monitors" -msgstr "" +msgstr "%d Not inited monitors" #: ../../include/functions_reporting.php:1269 #: ../../include/functions_reporting.php:6745 #: ../../include/functions_reporting.php:6753 #, php-format msgid "%d Fired alerts" -msgstr "" +msgstr "%d Fired alerts" #: ../../include/functions_reporting.php:1647 #: ../../include/functions_reporting.php:2229 @@ -16341,7 +16409,7 @@ msgstr "Monitors BAD" #: ../../include/functions_reporting.php:2202 #, php-format msgid "Agents in group: %s" -msgstr "" +msgstr "Agents in group: %s" #: ../../include/functions_reporting.php:2295 msgid "Last failure" @@ -16349,7 +16417,7 @@ msgstr "Last failure" #: ../../include/functions_reporting.php:2359 msgid "N/A(*)" -msgstr "" +msgstr "N/A(*)" #: ../../include/functions_reporting.php:2391 #: ../../include/functions_reporting.php:4351 @@ -16360,7 +16428,7 @@ msgstr "Monitors" #: ../../include/functions_agents.php:2015 #: ../../include/functions_agents.php:2032 msgid "At least one module in CRITICAL status" -msgstr "At least one module in CRITICAL status" +msgstr "At least one module is on CRITICAL status" #: ../../include/functions_reporting.php:2797 #: ../../include/functions_agents.php:2018 @@ -16372,7 +16440,7 @@ msgstr "At least one module in WARNING status" #: ../../include/functions_agents.php:2021 #: ../../include/functions_agents.php:2038 msgid "At least one module is in UKNOWN status" -msgstr "At least one module is in UKNOWN status" +msgstr "At least one module is on UKNOWN status" #: ../../include/functions_reporting.php:3234 msgid "Max/Min Values" @@ -16381,7 +16449,7 @@ msgstr "Max/Min Values" #: ../../include/functions_reporting.php:3254 #: ../../include/functions_reporting.php:3338 msgid "Plannified downtime" -msgstr "" +msgstr "Planned downtime" #: ../../include/functions_reporting.php:3842 msgid "" @@ -16418,12 +16486,12 @@ msgstr "Insuficient data" #: ../../include/functions_reporting.php:5187 msgid "Modules under or equal to" -msgstr "" +msgstr "Modules under or equal to" #: ../../include/functions_reporting.php:5193 #: ../../include/functions_reporting.php:5394 msgid "Modules over" -msgstr "" +msgstr "Modules over" #: ../../include/functions_reporting.php:5196 #: ../../include/functions_alerts.php:552 @@ -16437,23 +16505,23 @@ msgstr "Not equal to" #: ../../include/functions_reporting.php:5388 msgid "Modules less or equal to" -msgstr "" +msgstr "Modules under or equal to" #: ../../include/functions_reporting.php:5391 msgid "Modules less" -msgstr "" +msgstr "Modules under" #: ../../include/functions_reporting.php:5397 msgid "Modules equal to" -msgstr "" +msgstr "Modules equal to" #: ../../include/functions_reporting.php:5400 msgid "Modules not equal to" -msgstr "" +msgstr "Modules not equal to" #: ../../include/functions_reporting.php:5403 msgid "Modules normal status" -msgstr "" +msgstr "Normal status modules" #: ../../include/functions_reporting.php:5592 #: ../../extensions/agents_modules.php:167 @@ -16462,66 +16530,66 @@ msgstr "There are no agents with modules" #: ../../include/functions_reporting.php:5800 msgid "Agent configuration: " -msgstr "" +msgstr "Agent configuration: " #: ../../include/functions_reporting.php:5849 #: ../../include/functions_reporting.php:5995 msgid " MODULES" -msgstr "" +msgstr " MODULES" #: ../../include/functions_reporting.php:5929 msgid "Group configuration: " -msgstr "" +msgstr "Group configuration: " #: ../../include/functions_reporting.php:6740 #, php-format msgid "%d Total modules" -msgstr "" +msgstr "%d Total modules" #: ../../include/functions_reporting.php:6741 #, php-format msgid "%d Normal modules" -msgstr "" +msgstr "%d Normal modules" #: ../../include/functions_reporting.php:6742 #, php-format msgid "%d Critical modules" -msgstr "" +msgstr "%d Critical modules" #: ../../include/functions_reporting.php:6743 #, php-format msgid "%d Warning modules" -msgstr "" +msgstr "%d Warning modules" #: ../../include/functions_reporting.php:6744 #, php-format msgid "%d Unknown modules" -msgstr "" +msgstr "%d Unknown modules" #: ../../include/functions_reporting.php:6748 #, php-format msgid "%d Total agents" -msgstr "" +msgstr "%d Total agents" #: ../../include/functions_reporting.php:6749 #, php-format msgid "%d Normal agents" -msgstr "" +msgstr "%d Normal agents" #: ../../include/functions_reporting.php:6750 #, php-format msgid "%d Critical agents" -msgstr "" +msgstr "%d Critical agents" #: ../../include/functions_reporting.php:6751 #, php-format msgid "%d Warning agents" -msgstr "" +msgstr "%d Warning agents" #: ../../include/functions_reporting.php:6752 #, php-format msgid "%d Unknown agents" -msgstr "" +msgstr "%d Unknown agents" #: ../../include/functions_db.php:74 #, php-format @@ -16637,11 +16705,11 @@ msgstr "Major" #: ../../include/functions.php:876 msgid "Monitor Unknown" -msgstr "" +msgstr "Unknown Monitor" #: ../../include/functions.php:885 msgid "Configuration change " -msgstr "Changes on configuration " +msgstr "Configuration change " #: ../../include/functions.php:1664 msgid "custom" @@ -16650,12 +16718,12 @@ msgstr "custom" #: ../../include/functions.php:1669 ../../include/functions.php:1670 #, php-format msgid "%s minutes" -msgstr "" +msgstr "%s minutes" #: ../../include/functions.php:1672 ../../include/functions.php:1673 #, php-format msgid "%s hours" -msgstr "" +msgstr "%s hours" #: ../../include/functions.php:1675 ../../include/functions_netflow.php:888 #: ../../include/ajax/module.php:82 @@ -16665,20 +16733,20 @@ msgstr "1 week" #: ../../include/functions.php:1678 ../../include/functions.php:1679 #, php-format msgid "%s months" -msgstr "" +msgstr "%s Months" #: ../../include/functions.php:1681 ../../include/functions.php:1682 #, php-format msgid "%s years" -msgstr "" +msgstr "%s Years" #: ../../include/functions.php:1685 msgid "Default values will be used" -msgstr "" +msgstr "Default values will be used" #: ../../include/get_file.php:47 msgid "Security error. Please contact the administrator." -msgstr "Security error. Please contact the administrator." +msgstr "Security error. Please contact your administrator." #: ../../include/get_file.php:55 msgid "File is missing in disk storage. Please contact the administrator." @@ -16735,27 +16803,27 @@ msgstr "Enterprise SNMP server" #: ../../include/functions_netflow.php:356 msgid "Total flows" -msgstr "" +msgstr "Total flows" #: ../../include/functions_netflow.php:358 msgid "Total bytes" -msgstr "" +msgstr "Total bytes" #: ../../include/functions_netflow.php:360 msgid "Total packets" -msgstr "" +msgstr "Total packets" #: ../../include/functions_netflow.php:362 msgid "Average bits per second" -msgstr "" +msgstr "Average bits per second" #: ../../include/functions_netflow.php:364 msgid "Average packets per second" -msgstr "" +msgstr "Average packets per second" #: ../../include/functions_netflow.php:366 msgid "Average bytes per packet" -msgstr "" +msgstr "Average bytes per packet" #: ../../include/functions_netflow.php:828 msgid "Area graph" @@ -16763,7 +16831,7 @@ msgstr "Area graph" #: ../../include/functions_netflow.php:829 msgid "Pie graph and Summary table" -msgstr "" +msgstr "Pie graph and Summary table" #: ../../include/functions_netflow.php:830 msgid "Statistics table" @@ -16803,15 +16871,15 @@ msgstr "2 years" #: ../../include/functions_netflow.php:874 msgid "1 min" -msgstr "" +msgstr "1 min" #: ../../include/functions_netflow.php:875 msgid "2 mins" -msgstr "" +msgstr "2 mins" #: ../../include/functions_netflow.php:876 msgid "5 mins" -msgstr "" +msgstr "5 mins" #: ../../include/functions_netflow.php:921 #: ../../include/functions_netflow.php:930 @@ -16820,47 +16888,47 @@ msgstr "" #: ../../include/functions_netflow.php:1041 #: ../../include/functions_netflow.php:1074 msgid "Aggregate" -msgstr "" +msgstr "Aggregate" #: ../../include/functions_netflow.php:1113 msgid "Error generating report" -msgstr "" +msgstr "Error generating report" #: ../../include/functions_netflow.php:1310 msgid "MB" -msgstr "" +msgstr "MB" #: ../../include/functions_netflow.php:1312 msgid "MB/s" -msgstr "" +msgstr "MB/s" #: ../../include/functions_netflow.php:1314 msgid "kB" -msgstr "" +msgstr "kB" #: ../../include/functions_netflow.php:1316 msgid "kB/s" -msgstr "" +msgstr "kB/s" #: ../../include/functions_netflow.php:1320 msgid "B/s" -msgstr "" +msgstr "B/s" #: ../../include/functions_netflow.php:1334 msgid "Dst port" -msgstr "" +msgstr "Dst port" #: ../../include/functions_netflow.php:1336 msgid "Dst IP" -msgstr "" +msgstr "Dst IP" #: ../../include/functions_netflow.php:1340 msgid "Src IP" -msgstr "" +msgstr "Src IP" #: ../../include/functions_netflow.php:1342 msgid "Src port" -msgstr "" +msgstr "Src port" #: ../../include/functions_alerts.php:549 msgid "Max and min" @@ -16986,7 +17054,7 @@ msgstr "Image" #: ../../include/functions_visual_map_editor.php:102 msgid "Enable link" -msgstr "" +msgstr "Enable link" #: ../../include/functions_visual_map_editor.php:156 #: ../../godmode/reporting/visual_console_builder.wizard.php:114 @@ -17224,7 +17292,7 @@ msgstr "SQL horizonal bar graph" #: ../../include/functions_reports.php:513 msgid "Automatic combined Graph" -msgstr "" +msgstr "Automatic combined Graph" #: ../../include/functions_reports.php:518 #: ../../include/functions_reports.php:520 @@ -17271,23 +17339,23 @@ msgstr "Event report group" #: ../../include/functions_reports.php:613 msgid "Netflow area chart" -msgstr "" +msgstr "Netflow area chart" #: ../../include/functions_reports.php:615 msgid "Netflow pie chart" -msgstr "" +msgstr "Netflow pie chart" #: ../../include/functions_reports.php:617 msgid "Netflow data table" -msgstr "" +msgstr "Netflow data table" #: ../../include/functions_reports.php:619 msgid "Netflow statistics table" -msgstr "" +msgstr "Netflow statistic table" #: ../../include/functions_reports.php:621 msgid "Netflow summary table" -msgstr "" +msgstr "Netflow summary table" #: ../../include/functions_graph.php:639 msgid "Units. Value" @@ -17356,11 +17424,11 @@ msgstr "Units" #: ../../include/functions_graph.php:3070 msgid "Avg." -msgstr "" +msgstr "Avg." #: ../../include/functions_graph.php:3862 msgid "No data to show" -msgstr "" +msgstr "No data to show" #: ../../include/functions_custom_graphs.php:101 msgid "Empty graph" @@ -17395,19 +17463,19 @@ msgstr "" #: ../../include/functions_treeview.php:140 msgid "There was a problem loading alerts" -msgstr "" +msgstr "A problem occurred while loading alerts" #: ../../include/functions_treeview.php:178 msgid "Go to alerts detail" -msgstr "" +msgstr "Go to alert details" #: ../../include/functions_treeview.php:416 msgid "There aren't agents in this agrupation" -msgstr "" +msgstr "No agents in this group" #: ../../include/auth/mysql.php:471 msgid "Your installation of PHP does not support LDAP" -msgstr "" +msgstr "Your installation of PHP does not support LDAP" #: ../../include/functions_visual_map.php:435 msgid "Agent successfully added to layout" @@ -17447,11 +17515,11 @@ msgstr "weeks" #: ../../include/functions_html.php:716 msgid "Month day" -msgstr "" +msgstr "Month day" #: ../../include/functions_html.php:718 msgid "Week day" -msgstr "" +msgstr "Week day" #: ../../include/functions_html.php:1910 msgid "Type at least two characters to search the module." @@ -17467,11 +17535,11 @@ msgstr "Create a new group map" #: ../../include/functions_config.php:85 msgid "Failed updated: User did not login." -msgstr "" +msgstr "Failed update: User did not login." #: ../../include/functions_config.php:93 msgid "Failed updated: User is not admin." -msgstr "" +msgstr "Failed update: User is not admin." #: ../../include/functions_config.php:122 #: ../../godmode/setup/setup_general.php:53 @@ -17537,21 +17605,21 @@ msgstr "Sound for Monitor warning" #: ../../include/functions_config.php:177 #: ../../godmode/setup/setup_general.php:220 msgid "Referer security" -msgstr "" +msgstr "Referer security" #: ../../include/functions_config.php:179 #: ../../godmode/setup/setup_general.php:228 msgid "Event storm protection" -msgstr "" +msgstr "Event storm protection" #: ../../include/functions_config.php:181 #: ../../godmode/setup/setup_general.php:237 msgid "Command Snapshot" -msgstr "" +msgstr "Command Snapshot" #: ../../include/functions_config.php:211 msgid "Show events list in local console (read only)" -msgstr "" +msgstr "Show event list in the local console (read only)" #: ../../include/functions_config.php:252 #: ../../godmode/setup/setup_auth.php:37 @@ -17656,7 +17724,7 @@ msgstr "Batch statistics period (secs)" #: ../../include/functions_config.php:354 #: ../../godmode/setup/performance.php:107 msgid "Max. recommended number of files in attachment directory" -msgstr "" +msgstr "Max. recommended number of files in attachment directory" #: ../../include/functions_config.php:376 #: ../../godmode/setup/setup_visuals.php:116 @@ -17703,17 +17771,17 @@ msgstr "Item title size text" #: ../../include/functions_config.php:406 #: ../../godmode/setup/setup_visuals.php:215 msgid "GIS Labels" -msgstr "" +msgstr "GIS Labels" #: ../../include/functions_config.php:408 #: ../../godmode/setup/setup_visuals.php:228 msgid "Default icon in GIS" -msgstr "" +msgstr "Default icon in GIS" #: ../../include/functions_config.php:444 #: ../../godmode/setup/setup_visuals.php:106 msgid "Delete interval" -msgstr "" +msgstr "Delete interval" #: ../../include/functions_config.php:449 #: ../../godmode/setup/setup_netflow.php:43 @@ -17733,32 +17801,32 @@ msgstr "Daemon binary path" #: ../../include/functions_config.php:455 #: ../../godmode/setup/setup_netflow.php:50 msgid "Nfdump binary path" -msgstr "" +msgstr "Nfdump binary path" #: ../../include/functions_config.php:457 #: ../../godmode/setup/setup_netflow.php:52 msgid "Nfexpire binary path" -msgstr "" +msgstr "Nfexpire binary path" #: ../../include/functions_config.php:459 #: ../../godmode/setup/setup_netflow.php:54 msgid "Maximum chart resolution" -msgstr "" +msgstr "Maximum chart resolution" #: ../../include/functions_config.php:463 #: ../../include/functions_config.php:467 #: ../../godmode/setup/setup_netflow.php:60 msgid "Netflow max lifetime" -msgstr "" +msgstr "Netflow max lifetime" #: ../../include/functions_config.php:469 msgid "Log max lifetime" -msgstr "" +msgstr "Log max lifetime" #: ../../include/functions_config.php:501 #, php-format msgid "Failed updated: the next values cannot update: %s" -msgstr "" +msgstr "Update failed: the next values cannot be updated: %s" #: ../../include/functions_config.php:1096 msgid "Default password for \"Admin\" user has not been changed." @@ -17870,11 +17938,11 @@ msgstr "" #: ../../include/functions_menu.php:385 msgid "Configure user" -msgstr "" +msgstr "Configure user" #: ../../include/functions_menu.php:386 msgid "Configure profile" -msgstr "" +msgstr "Configure profile" #: ../../include/functions_menu.php:388 #: ../../godmode/servers/manage_recontask_form.php:125 @@ -17884,15 +17952,15 @@ msgstr "Manage recontask" #: ../../include/functions_menu.php:390 msgid "Module templates management" -msgstr "" +msgstr "Module template management" #: ../../include/functions_menu.php:391 msgid "Inventory modules management" -msgstr "" +msgstr "Inventory module management" #: ../../include/functions_menu.php:392 msgid "Tags management" -msgstr "" +msgstr "Tag management" #: ../../include/functions_menu.php:394 #: ../../godmode/users/profile_list.php:206 @@ -17901,7 +17969,7 @@ msgstr "Agents management" #: ../../include/functions_menu.php:396 msgid "View agent" -msgstr "" +msgstr "See agent" #: ../../include/functions_menu.php:398 #: ../../godmode/alerts/configure_alert_template.php:68 @@ -17912,35 +17980,35 @@ msgstr "Configure alert template" #: ../../include/functions_menu.php:400 msgid "Manage network map" -msgstr "" +msgstr "Manage network map" #: ../../include/functions_menu.php:402 msgid "View reporting" -msgstr "" +msgstr "See reporting" #: ../../include/functions_menu.php:403 msgid "View visual console" -msgstr "" +msgstr "See visual console" #: ../../include/functions_menu.php:404 msgid "Manage custom graphs" -msgstr "" +msgstr "Manage custom graphs" #: ../../include/functions_menu.php:405 msgid "Copy dashboard" -msgstr "" +msgstr "Copy dashboard" #: ../../include/functions_menu.php:408 msgid "Manage GIS Maps" -msgstr "" +msgstr "Manage GIS Maps" #: ../../include/functions_menu.php:410 msgid "Incidents statistics" -msgstr "" +msgstr "Incident statistics" #: ../../include/functions_menu.php:411 msgid "Manage messages" -msgstr "" +msgstr "Manage messages" #: ../../include/functions_menu.php:413 ../../godmode/menu.php:41 msgid "Manage groups" @@ -17948,39 +18016,39 @@ msgstr "Manage groups" #: ../../include/functions_menu.php:414 msgid "Manage module groups" -msgstr "" +msgstr "Manage module groups" #: ../../include/functions_menu.php:415 msgid "Manage custom field" -msgstr "" +msgstr "Manage custom field" #: ../../include/functions_menu.php:417 msgid "Manage alert actions" -msgstr "" +msgstr "Manage alert actions" #: ../../include/functions_menu.php:418 msgid "Manage commands" -msgstr "" +msgstr "Manage commands" #: ../../include/functions_menu.php:419 msgid "Manage event alerts" -msgstr "" +msgstr "Manage event alerts" #: ../../include/functions_menu.php:421 msgid "Manage export targets" -msgstr "" +msgstr "Manage export targets" #: ../../include/functions_menu.php:423 msgid "Manage services" -msgstr "" +msgstr "Manage services" #: ../../include/functions_menu.php:429 msgid "Manage incident" -msgstr "" +msgstr "Manage incident" #: ../../include/functions_menu.php:431 msgid "Manage visual console" -msgstr "" +msgstr "Manage visual console" #: ../../include/functions_users.php:361 #, php-format @@ -18004,76 +18072,76 @@ msgstr "Map summary" #: ../../include/ajax/module.php:89 msgid "3 years" -msgstr "" +msgstr "3 years" #: ../../include/ajax/module.php:91 msgid "Select period:" -msgstr "" +msgstr "Select period:" #: ../../include/ajax/events.php:145 #, php-format msgid "Executing command: %s" -msgstr "" +msgstr "Executing command: %s" #: ../../include/ajax/events.php:152 msgid "Execute again" -msgstr "" +msgstr "Execute it again" #: ../../include/ajax/events.php:285 msgid "Agent fields" -msgstr "" +msgstr "Agent fields" #: ../../include/ajax/events.php:289 ../../godmode/events/events.php:61 msgid "Responses" -msgstr "" +msgstr "Responses" #: ../../include/ajax/events.php:349 msgid "Error adding comment" -msgstr "" +msgstr "Error adding comment" #: ../../include/ajax/events.php:350 msgid "Comment added successfully" -msgstr "" +msgstr "Comment added successfully" #: ../../include/ajax/events.php:351 msgid "Error changing event status" -msgstr "" +msgstr "Error changing event status" #: ../../include/ajax/events.php:352 msgid "Event status changed successfully" -msgstr "" +msgstr "Event status changed successfully" #: ../../include/ajax/events.php:353 msgid "Error changing event owner" -msgstr "" +msgstr "Error changing event owner" #: ../../include/ajax/events.php:354 msgid "Event owner changed successfully" -msgstr "" +msgstr "Event owner changed successfully" #: ../../include/ajax/events.php:449 msgid "Auto" -msgstr "" +msgstr "Auto" #: ../../include/functions_snmp_browser.php:145 msgid "Target IP cannot be blank." -msgstr "" +msgstr "Target IP cannot be blank." #: ../../include/functions_snmp_browser.php:307 msgid "Numeric OID" -msgstr "" +msgstr "Numeric OID" #: ../../include/functions_snmp_browser.php:323 msgid "Syntax" -msgstr "" +msgstr "Syntax" #: ../../include/functions_snmp_browser.php:328 msgid "Display hint" -msgstr "" +msgstr "Display hint" #: ../../include/functions_snmp_browser.php:333 msgid "Max access" -msgstr "" +msgstr "Max access" #: ../../include/functions_snmp_browser.php:380 #: ../../godmode/agentes/module_manager_editor_wmi.php:42 @@ -18089,48 +18157,48 @@ msgstr "Community" #: ../../include/functions_snmp_browser.php:384 msgid "Expand the tree" -msgstr "" +msgstr "Expand the tree" #: ../../include/functions_snmp_browser.php:384 msgid "can be slow" -msgstr "" +msgstr "can be slow" #: ../../include/functions_snmp_browser.php:385 msgid "Collapse the tree" -msgstr "" +msgstr "Collapse tree" #: ../../include/functions_snmp_browser.php:386 msgid "Starting OID" -msgstr "" +msgstr "Starting OID" #: ../../include/functions_snmp_browser.php:388 msgid "Search text" -msgstr "" +msgstr "Search text" #: ../../include/functions_snmp_browser.php:391 msgid "First match" -msgstr "" +msgstr "First match" #: ../../include/functions_snmp_browser.php:392 msgid "Previous match" -msgstr "" +msgstr "Previous match" #: ../../include/functions_snmp_browser.php:393 msgid "Next match" -msgstr "" +msgstr "Next match" #: ../../include/functions_snmp_browser.php:394 msgid "Last match" -msgstr "" +msgstr "Last match" #: ../../include/functions_snmp_browser.php:403 msgid "Browse" -msgstr "" +msgstr "Browse" #: ../../include/functions_snmp_browser.php:413 #: ../../godmode/agentes/module_manager_editor_network.php:22 msgid "Search matches" -msgstr "" +msgstr "Search matches" #: ../../include/functions_api.php:73 msgid "No set or get or help operation." @@ -18852,27 +18920,27 @@ msgstr "Error creating group." #: ../../include/functions_api.php:3907 msgid "Error in netflow filter creation. Filter name cannot be left blank." -msgstr "" +msgstr "Error creating netflow filter. Filter name cannot be left blank." #: ../../include/functions_api.php:3912 msgid "Error in netflow filter creation. Group id cannot be left blank." -msgstr "" +msgstr "Error creating netflow filter. Group id cannot be left blank." #: ../../include/functions_api.php:3925 msgid "Error in netflow filter creation. Filter cannot be left blank." -msgstr "" +msgstr "Error creating netflow filter. Filter cannot be left blank." #: ../../include/functions_api.php:3930 msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." -msgstr "" +msgstr "Error creating netflow filter. Aggregate_by cannot be left blank." #: ../../include/functions_api.php:3935 msgid "Error in netflow filter creation. Output_format cannot be left blank." -msgstr "" +msgstr "Error creating netflow filter. Output_format cannot be left blank." #: ../../include/functions_api.php:3953 msgid "Error in netflow filter creation." -msgstr "" +msgstr "Error creating netflow filter." #: ../../include/functions_api.php:4073 msgid "Create user." @@ -18924,7 +18992,7 @@ msgstr "Successfully disabled module" #: ../../include/functions_api.php:5426 msgid "Error disabling module" -msgstr "" +msgstr "Error disabling module" #: ../../include/functions_api.php:5447 msgid "Correct module enable" @@ -18932,7 +19000,7 @@ msgstr "Successfully enabled module" #: ../../include/functions_api.php:5450 msgid "Error enabling module" -msgstr "" +msgstr "Error enabling module" #: ../../include/functions_groups.php:59 msgid "Alert Actions" @@ -18972,38 +19040,38 @@ msgstr "Network maps" #: ../../mobile/operation/home.php:30 msgid "PandoraFMS: Home" -msgstr "" +msgstr "PandoraFMS: Home" #: ../../mobile/operation/home.php:45 msgid "Tactical" -msgstr "" +msgstr "Tactical" #: ../../mobile/operation/modules.php:171 msgid "PandoraFMS: Modules" -msgstr "" +msgstr "PandoraFMS: Modules" #: ../../mobile/operation/modules.php:174 #, php-format msgid "Filter Modules by %s" -msgstr "" +msgstr "Filter Modules by %s" #: ../../mobile/operation/modules.php:234 #: ../../mobile/operation/events.php:581 ../../mobile/operation/alerts.php:199 #: ../../mobile/operation/agents.php:190 msgid "Apply Filter" -msgstr "" +msgstr "Apply Filter" #: ../../mobile/operation/modules.php:437 msgid "Interval." -msgstr "" +msgstr "Interval." #: ../../mobile/operation/modules.php:443 msgid "Last update." -msgstr "" +msgstr "Last update." #: ../../mobile/operation/modules.php:522 msgid "No modules" -msgstr "" +msgstr "No modules" #: ../../mobile/operation/modules.php:544 #: ../../mobile/operation/events.php:768 @@ -19017,226 +19085,227 @@ msgstr "Loading..." #: ../../mobile/operation/events.php:997 ../../mobile/operation/alerts.php:292 #: ../../mobile/operation/agents.php:392 msgid "(Default)" -msgstr "" +msgstr "(Default)" #: ../../mobile/operation/modules.php:627 #, php-format msgid "" "(Status: %s - Group: %s - Module group: %s - Tag: %s - Free Search: %s)" msgstr "" +"(Status: %s - Group: %s - Module group: %s - Tag: %s - Free Search: %s)" #: ../../mobile/operation/groups.php:66 msgid "PandoraFMS: Groups" -msgstr "" +msgstr "PandoraFMS: Groups" #: ../../mobile/operation/events.php:335 ../../mobile/operation/events.php:336 #: ../../mobile/operation/events.php:513 ../../mobile/operation/events.php:514 msgid "Preset Filters" -msgstr "" +msgstr "Preset Filters" #: ../../mobile/operation/events.php:401 msgid "Event detail" -msgstr "" +msgstr "Event details" #: ../../mobile/operation/events.php:474 msgid "Sucessful validate" -msgstr "" +msgstr "Validated successfully" #: ../../mobile/operation/events.php:476 msgid "Fail validate" -msgstr "" +msgstr "validation failed" #: ../../mobile/operation/events.php:486 msgid "ERROR: Event detail" -msgstr "" +msgstr "ERROR: Event details" #: ../../mobile/operation/events.php:488 msgid "Error connecting to DB pandora." -msgstr "" +msgstr "Error connecting to Pandora FMS DB" #: ../../mobile/operation/events.php:492 msgid "PandoraFMS: Events" -msgstr "" +msgstr "PandoraFMS: Events" #: ../../mobile/operation/events.php:498 #, php-format msgid "Filter Events by %s" -msgstr "" +msgstr "Filter Events by %s" #: ../../mobile/operation/events.php:1003 #, php-format msgid "Filter: %s" -msgstr "" +msgstr "Filter: %s" #: ../../mobile/operation/events.php:1018 #, php-format msgid "(Status: %s - Hours: %s - Type: %s - Severity: %s - Free Search: %s)" -msgstr "" +msgstr "(Status: %s - Hours: %s - Type: %s - Severity: %s - Free Search: %s)" #: ../../mobile/operation/alerts.php:86 ../../mobile/operation/alerts.php:87 #: ../../mobile/operation/alerts.php:189 ../../mobile/operation/alerts.php:190 msgid "Stand by" -msgstr "" +msgstr "Stand by" #: ../../mobile/operation/alerts.php:145 msgid "PandoraFMS: Alerts" -msgstr "" +msgstr "PandoraFMS: Alerts" #: ../../mobile/operation/alerts.php:148 #, php-format msgid "Filter Alerts by %s" -msgstr "" +msgstr "Filter Alerts by %s" #: ../../mobile/operation/alerts.php:259 msgid "Last Fired" -msgstr "" +msgstr "Last Fired" #: ../../mobile/operation/alerts.php:269 msgid "No alerts" -msgstr "" +msgstr "No alerts" #: ../../mobile/operation/alerts.php:299 #, php-format msgid "(Status: %s - Standby: %s - Group: %s - Free Search: %s)" -msgstr "" +msgstr "(Status: %s - Standby: %s - Group: %s - Free Search: %s)" #: ../../mobile/operation/module_graph.php:298 #: ../../mobile/operation/agent.php:77 #, php-format msgid "PandoraFMS: %s" -msgstr "" +msgstr "PandoraFMS: %s" #: ../../mobile/operation/module_graph.php:312 msgid "Show Alerts" -msgstr "" +msgstr "Show Alerts" #: ../../mobile/operation/module_graph.php:320 msgid "Show Events" -msgstr "" +msgstr "Show Events" #: ../../mobile/operation/module_graph.php:328 msgid "Time compare (Separated)" -msgstr "" +msgstr "Time comparison (Separated)" #: ../../mobile/operation/module_graph.php:336 msgid "Time compare (Overlapped)" -msgstr "" +msgstr "Time comparison (Overlapped)" #: ../../mobile/operation/module_graph.php:352 msgid "Avg Only" -msgstr "" +msgstr "Only Avg" #: ../../mobile/operation/module_graph.php:357 msgid "Time range (hours)" -msgstr "" +msgstr "Time range (hours)" #: ../../mobile/operation/module_graph.php:391 msgid "Update graph" -msgstr "" +msgstr "Update graph" #: ../../mobile/operation/module_graph.php:400 msgid "Error get the graph" -msgstr "" +msgstr "Error getting the graph" #: ../../mobile/operation/tactical.php:58 msgid "PandoraFMS: Tactical" -msgstr "" +msgstr "PandoraFMS: Tactical" #: ../../mobile/operation/tactical.php:133 msgid "Last activity" -msgstr "" +msgstr "Last activity" #: ../../mobile/operation/agent.php:80 ../../mobile/operation/agents.php:152 msgid "PandoraFMS: Agents" -msgstr "" +msgstr "PandoraFMS: Agents" #: ../../mobile/operation/agent.php:85 msgid "No agent found" -msgstr "" +msgstr "No agents found" #: ../../mobile/operation/agent.php:159 #, php-format msgid "Last %s Events" -msgstr "" +msgstr "Last %s Events" #: ../../mobile/operation/agents.php:155 #, php-format msgid "Filter Agents by %s" -msgstr "" +msgstr "Filter Agents by %s" #: ../../mobile/operation/agents.php:262 msgid "I." -msgstr "" +msgstr "I." #: ../../mobile/operation/agents.php:268 msgid "M." -msgstr "" +msgstr "M." #: ../../mobile/operation/agents.php:281 msgid "L." -msgstr "" +msgstr "L." #: ../../mobile/operation/agents.php:310 msgid "No agents" -msgstr "" +msgstr "No agents" #: ../../mobile/operation/agents.php:400 #, php-format msgid "(Status: %s - Group: %s - Free Search: %s)" -msgstr "" +msgstr "(Status: %s - Group: %s - Free Search: %s)" #: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:126 #: ../../mobile/include/ui.class.php:168 msgid "Pandora FMS mobile" -msgstr "" +msgstr "Pandora FMS mobile" #: ../../mobile/include/ui.class.php:181 msgid "Home" -msgstr "" +msgstr "Home" #: ../../mobile/include/ui.class.php:619 msgid "Not found header." -msgstr "" +msgstr "Header not found." #: ../../mobile/include/ui.class.php:622 msgid "Not found content." -msgstr "" +msgstr "Content not found." #: ../../mobile/include/ui.class.php:625 msgid "Not found footer." -msgstr "" +msgstr "Footer not found." #: ../../mobile/include/ui.class.php:628 msgid "Incorrect form." -msgstr "" +msgstr "Incorrect form." #: ../../mobile/include/ui.class.php:631 msgid "Incorrect grid." -msgstr "" +msgstr "Incorrect grid." #: ../../mobile/include/ui.class.php:634 msgid "Incorrect collapsible." -msgstr "" +msgstr "Wrong collapsible." #: ../../mobile/include/user.class.php:143 msgid "Login Failed" -msgstr "" +msgstr "Login Failed" #: ../../mobile/include/user.class.php:144 msgid "User not found in database or incorrect password." -msgstr "" +msgstr "User not found in database or wrong password." #: ../../mobile/include/user.class.php:151 msgid "Login out" -msgstr "" +msgstr "Log out" #: ../../mobile/include/user.class.php:168 msgid "user" -msgstr "" +msgstr "User" #: ../../mobile/include/user.class.php:175 msgid "password" -msgstr "" +msgstr "Password" #: ../../mobile/include/user.class.php:180 msgid "Login" @@ -19701,7 +19770,7 @@ msgstr "Last day" #: ../../godmode/setup/performance.php:85 msgid "10 days" -msgstr "" +msgstr "10 days" #: ../../godmode/setup/performance.php:87 msgid "2 weeks" @@ -19725,6 +19794,9 @@ msgid "" "number is reached then a warning message will appear in the header " "notification space." msgstr "" +"This number is the maximum number of files allowed in the attachment " +"directory. If this number is reached, a warning message will appear in the " +"header notification space." #: ../../godmode/setup/performance.php:112 msgid "Database maintenance options" @@ -19756,28 +19828,35 @@ msgid "" "Must have the same time zone as the system or database to avoid mismatches " "of time." msgstr "" +"The time zone must be the same as the system or database to avoid mismatches " +"of time." #: ../../godmode/setup/setup_general.php:195 #: ../../godmode/setup/setup_general.php:200 #: ../../godmode/setup/setup_general.php:205 msgid "Play sound" -msgstr "" +msgstr "Play sound" #: ../../godmode/setup/setup_general.php:221 msgid "" "When it is set as \"yes\" in some important sections check if the user have " "gone from url Pandora." msgstr "" +"When it is set as \"yes\", checks will be performed in some important " +"sections to check if the user has logged out from Pandora url." #: ../../godmode/setup/setup_general.php:229 msgid "" "If set to yes no events or alerts will be generated, but agents will " "continue receiving data." msgstr "" +"If set to \"yes\" no events or alerts will be generated, but agents will " +"continue receiving data." #: ../../godmode/setup/setup_general.php:238 msgid "The string modules with several lines show as command output" msgstr "" +"The string modules with several lines will be shown as a command output" #: ../../godmode/setup/setup_general.php:245 msgid "General options" @@ -19837,7 +19916,7 @@ msgstr "Visual styles" #: ../../godmode/setup/setup.php:136 msgid "Correct update the setup options" -msgstr "" +msgstr "Correct update the setup options" #: ../../godmode/setup/setup_netflow.php:44 msgid "Directory where netflow data will be stored." @@ -19848,18 +19927,21 @@ 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. The higher " +"the resolution, the higher the performance. Values between 50 and 100 are " +"recommended." #: ../../godmode/setup/setup_netflow.php:60 msgid "Sets the maximum lifetime for netflow data in days." -msgstr "" +msgstr "This parameter sets the maximum lifetime for netflow data in days." #: ../../godmode/setup/setup_visuals.php:90 msgid "Interval values" -msgstr "" +msgstr "Interval values" #: ../../godmode/setup/setup_visuals.php:100 msgid "Add new custom value to intervals" -msgstr "" +msgstr "Add new custom values to intervals" #: ../../godmode/setup/setup_visuals.php:133 msgid "Colors" @@ -19924,10 +20006,13 @@ 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 "" +"You will get a label with agent name in GIS maps by enabling this. If you " +"have lots of agents in the map, it will be unreadable. Disabled by default." #: ../../godmode/setup/setup_visuals.php:228 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\", the group icon will be used" #: ../../godmode/setup/news.php:28 msgid "Site news management" @@ -20320,11 +20405,11 @@ msgstr "Create a new WMI component" #: ../../godmode/modules/manage_network_components_form_common.php:139 msgid "Any value below this number is discarted" -msgstr "" +msgstr "Any value below this number is discarded" #: ../../godmode/modules/manage_network_components_form_common.php:141 msgid "Any value over this number is discarted" -msgstr "" +msgstr "Any value over this number is discarded" #: ../../godmode/modules/manage_network_components_form_wmi.php:32 #: ../../godmode/modules/manage_network_components_form_wmi.php:150 @@ -20362,7 +20447,7 @@ msgstr "Max. timeout" #: ../../godmode/modules/manage_network_components_form_wmi.php:144 #: ../../godmode/servers/plugin.php:121 msgid "Max. retries" -msgstr "" +msgstr "Max. retries" #: ../../godmode/modules/manage_network_components_form_wmi.php:194 msgid "Minimum Data" @@ -20411,11 +20496,11 @@ msgstr "Edit report" #: ../../godmode/netflow/nf_item_list.php:58 msgid "Netflow reports" -msgstr "" +msgstr "Netflow reports" #: ../../godmode/netflow/nf_item_list.php:59 msgid "Item list" -msgstr "" +msgstr "Item list" #: ../../godmode/netflow/nf_item_list.php:149 msgid "Chart type" @@ -20433,7 +20518,7 @@ msgstr "Manage Netflow Filter" #: ../../godmode/netflow/nf_edit_form.php:63 #: ../../godmode/netflow/nf_edit_form.php:68 ../../godmode/menu.php:226 msgid "Netflow filters" -msgstr "" +msgstr "Netflow filters" #: ../../godmode/netflow/nf_edit.php:160 #: ../../godmode/events/event_filter.php:151 @@ -20530,7 +20615,7 @@ msgstr "Mode" #: ../../godmode/servers/manage_recontask_form.php:177 msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "" +msgstr "The recommended minimum interval for Recon Task is 5 minutes" #: ../../godmode/servers/manage_recontask_form.php:181 msgid "Module template" @@ -20575,6 +20660,8 @@ msgid "" "several networks separated by comma. For example: " "192.168.100.0/24,192.168.50.0/24" msgstr "" +"Several networks separated by comma. For example: " +"192.168.100.0/24,192.168.50.0/24" #: ../../godmode/servers/manage_recontask_form.php:231 msgid "Script field #2" @@ -20585,6 +20672,8 @@ msgid "" "several communities separated by comma. For example: " "snmp_community,public,private " msgstr "" +"Several communities separated by comma. For example: " +"snmp_community,public,private " #: ../../godmode/servers/manage_recontask_form.php:235 msgid "Script field #3" @@ -20659,11 +20748,14 @@ msgid "" "This value only will be applied if is minor than the server general " "configuration plugin timeout" msgstr "" +"This value only will be applied if it's smaller than the server general " +"configuration plugin timeout" #: ../../godmode/servers/plugin.php:119 msgid "" "If you set a 0 seconds timeout, the server plugin timeout will be used" msgstr "" +"If you set a 0 seconds timeout, the server plugin timeout will be used" #: ../../godmode/servers/plugin.php:162 msgid "Plugin command" @@ -20671,7 +20763,7 @@ msgstr "Plug-in command" #: ../../godmode/servers/plugin.php:170 msgid "Plug-in parameters" -msgstr "" +msgstr "Plug-in parameters" #: ../../godmode/servers/plugin.php:178 #: ../../godmode/alerts/configure_alert_action.php:143 @@ -20690,7 +20782,7 @@ msgstr "Command" #: ../../godmode/servers/plugin.php:271 msgid "Parameters macros" -msgstr "" +msgstr "Parameter macros" #: ../../godmode/servers/plugin.php:294 msgid "Plugins registered in Pandora FMS" @@ -20722,7 +20814,7 @@ msgstr "Plug-in deleted successfully" #: ../../godmode/servers/plugin.php:463 msgid "All the modules that are using this plugin will be deleted" -msgstr "" +msgstr "All the modules that this plugin is using will be deleted" #: ../../godmode/servers/plugin.php:469 msgid "There are no plugins in the system" @@ -20733,6 +20825,8 @@ 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/manage_recontask.php:43 msgid "Successfully deleted recon task" @@ -20755,7 +20849,7 @@ msgstr "Error updating recon task" #: ../../godmode/servers/manage_recontask.php:138 #: ../../godmode/servers/manage_recontask.php:193 msgid "Incorrect format in Subnet field" -msgstr "" +msgstr "Incorrect format in Subnet field" #: ../../godmode/servers/manage_recontask.php:186 msgid "Network provided is not correct" @@ -20898,7 +20992,7 @@ msgstr "Edit agents" #: ../../godmode/users/configure_profile.php:158 msgid "Disable agents" -msgstr "" +msgstr "Disable agents" #: ../../godmode/users/configure_profile.php:160 msgid "Edit alerts" @@ -20914,7 +21008,7 @@ msgstr "Manage Database" #: ../../godmode/users/configure_profile.php:170 msgid "Edit reports" -msgstr "" +msgstr "Edit reports" #: ../../godmode/users/configure_profile.php:172 msgid "Manage reports" @@ -20922,7 +21016,7 @@ msgstr "Manage reports" #: ../../godmode/users/configure_profile.php:176 msgid "Edit events" -msgstr "" +msgstr "Edit events" #: ../../godmode/users/configure_profile.php:180 msgid "Pandora management" @@ -20988,35 +21082,37 @@ msgstr "Use global conf" #: ../../godmode/users/configure_user.php:473 msgid "Metaconsole access" -msgstr "" +msgstr "Metaconsole access" #: ../../godmode/users/configure_user.php:481 msgid "Not Login" -msgstr "" +msgstr "Not logged in" #: ../../godmode/users/configure_user.php:482 msgid "The user with not login set only can access to API." msgstr "" +"Every user that has set the \"not login parameter\" only can access to API" #: ../../godmode/users/configure_user.php:488 msgid "Enable agents managment" -msgstr "" +msgstr "Enable agents management" #: ../../godmode/users/configure_user.php:495 msgid "Assigned node" -msgstr "" +msgstr "Assigned node" #: ../../godmode/users/configure_user.php:495 msgid "Server where the agents managed of this user will be placed" -msgstr "" +msgstr "Server where the agents managed by this user will be placed" #: ../../godmode/users/configure_user.php:507 msgid "Enable node access" -msgstr "" +msgstr "Enable node access" #: ../../godmode/users/configure_user.php:507 msgid "With this option enabled, the user will can access to nodes console" msgstr "" +"With this option enabled, the user will have access to the nodes console" #: ../../godmode/users/profile_list.php:150 msgid "There was a problem updating this profile" @@ -21049,7 +21145,7 @@ msgstr "Agents reading" #: ../../godmode/users/profile_list.php:207 msgid "Agents disable" -msgstr "" +msgstr "Disable agents" #: ../../godmode/users/profile_list.php:208 msgid "Alerts editing" @@ -21069,27 +21165,27 @@ msgstr "Alerts management" #: ../../godmode/users/profile_list.php:212 msgid "Reports reading" -msgstr "" +msgstr "Report reading" #: ../../godmode/users/profile_list.php:213 msgid "Reports writing" -msgstr "" +msgstr "Report writing" #: ../../godmode/users/profile_list.php:214 msgid "Reports management" -msgstr "" +msgstr "Report management" #: ../../godmode/users/profile_list.php:215 msgid "Events reading" -msgstr "" +msgstr "Event reading" #: ../../godmode/users/profile_list.php:216 msgid "Events writing" -msgstr "" +msgstr "Event writing" #: ../../godmode/users/profile_list.php:217 msgid "Events management" -msgstr "" +msgstr "Event management" #: ../../godmode/users/profile_list.php:218 msgid "Systems management" @@ -21336,15 +21432,15 @@ msgstr "Items" #: ../../godmode/reporting/reporting_builder.php:297 msgid "Free text for search: " -msgstr "" +msgstr "Free text for search: " #: ../../godmode/reporting/reporting_builder.php:409 msgid "HTML view" -msgstr "" +msgstr "HTML view" #: ../../godmode/reporting/reporting_builder.php:410 msgid "Export to XML" -msgstr "" +msgstr "Export to XML" #: ../../godmode/reporting/reporting_builder.php:475 msgid "Create report" @@ -21376,19 +21472,19 @@ msgstr "Move after to" #: ../../godmode/reporting/reporting_builder.list_items.php:444 msgid "Delete items" -msgstr "" +msgstr "Delete items" #: ../../godmode/reporting/reporting_builder.list_items.php:445 msgid "Delete selected items from position: " -msgstr "" +msgstr "Delete selected items from position: " #: ../../godmode/reporting/reporting_builder.list_items.php:447 msgid "Delete above to" -msgstr "" +msgstr "Delete above" #: ../../godmode/reporting/reporting_builder.list_items.php:447 msgid "Delete below to" -msgstr "" +msgstr "Delete below" #: ../../godmode/reporting/reporting_builder.list_items.php:475 msgid "" @@ -21404,11 +21500,11 @@ msgstr "Please select any item to order" #: ../../godmode/reporting/reporting_builder.list_items.php:521 msgid "Are you sure to delete the items into the report?\\n" -msgstr "" +msgstr "Are you sure you want to delete the report agents?\\n" #: ../../godmode/reporting/reporting_builder.list_items.php:543 msgid "Please select any item to delete" -msgstr "" +msgstr "Please select any item to delete" #: ../../godmode/reporting/visual_console_builder.wizard.php:94 msgid "Range between elements (px)" @@ -21433,7 +21529,7 @@ msgstr "Agent - Module" #: ../../godmode/reporting/visual_console_builder.wizard.php:182 msgid "Enable link agent" -msgstr "" +msgstr "Enable agent link" #: ../../godmode/reporting/visual_console_builder.wizard.php:191 #: ../../godmode/reporting/visual_console_builder.wizard.php:196 @@ -21450,7 +21546,7 @@ msgstr "Number of Graphs" #: ../../godmode/reporting/graphs.php:193 msgid "There are no defined graphs" -msgstr "" +msgstr "There are no defined graphs" #: ../../godmode/reporting/graphs.php:199 msgid "Create graph" @@ -21503,25 +21599,27 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.main.php:65 msgid "Only the group can view the report" -msgstr "" +msgstr "Only the group can see the report" #: ../../godmode/reporting/reporting_builder.main.php:66 msgid "The next group can edit the report" -msgstr "" +msgstr "The next group can edit the report" #: ../../godmode/reporting/reporting_builder.main.php:67 msgid "Only the user and admin user can edit the report" -msgstr "" +msgstr "Only the user and the admin user can edit the report" #: ../../godmode/reporting/reporting_builder.main.php:69 msgid "Write Access" -msgstr "" +msgstr "Write Access" #: ../../godmode/reporting/reporting_builder.main.php:70 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 people from \"All\" groups to see the report but you " +"just want you or your group to have permissions to edit it." #: ../../godmode/reporting/visual_console_builder.php:89 msgid "Successfully update." @@ -21561,7 +21659,7 @@ msgstr "Simple Value (Process Avg)" #: ../../godmode/reporting/reporting_builder.item_editor.php:470 msgid "Not valid" -msgstr "" +msgstr "Not valid" #: ../../godmode/reporting/reporting_builder.item_editor.php:868 msgid "Target server" @@ -21569,27 +21667,27 @@ msgstr "Target server" #: ../../godmode/reporting/reporting_builder.item_editor.php:978 msgid "Greater or equal (>=)" -msgstr "" +msgstr "Greater or equal (>=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:979 msgid "Less or equal (<=)" -msgstr "" +msgstr "Smaller or equal (<=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:980 msgid "Less (<)" -msgstr "" +msgstr "Smaller (<)" #: ../../godmode/reporting/reporting_builder.item_editor.php:981 msgid "Greater (>)" -msgstr "" +msgstr "Greater (>)" #: ../../godmode/reporting/reporting_builder.item_editor.php:982 msgid "Equal (=)" -msgstr "" +msgstr "Equal (=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:983 msgid "Not equal (!=)" -msgstr "" +msgstr "Not equal (!=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:1106 msgid "Please save the SLA for start to add items in this list." @@ -21600,6 +21698,8 @@ 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 in their life, " +"the summatory may get bad result." #: ../../godmode/reporting/reporting_builder.item_editor.php:1231 msgid "Please save the report to start adding items into the list." @@ -21627,16 +21727,16 @@ msgstr "Remote agent configuration" #: ../../godmode/agentes/modificar_agente.php:525 msgid "Enable agent" -msgstr "" +msgstr "Enable agent" #: ../../godmode/agentes/modificar_agente.php:530 msgid "Disable agent" -msgstr "" +msgstr "Disable agent" #: ../../godmode/agentes/module_manager_editor.php:390 #, php-format msgid "DEBUG: Invalid module type specified in %s:%s" -msgstr "" +msgstr "DEBUG: Invalid module type specified in %s:%s" #: ../../godmode/agentes/module_manager_editor.php:392 msgid "" @@ -21647,6 +21747,12 @@ msgid "" "#2124706 for the solution)
\n" "\t\t\t\t3) found a new bug - please report a way to duplicate this error" msgstr "" +"Most likely you 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" #: ../../godmode/agentes/module_manager_editor.php:460 msgid "No module to predict" @@ -21682,15 +21788,15 @@ msgstr "Created by template " #: ../../godmode/agentes/agent_template.php:120 msgid "Error adding modules" -msgstr "" +msgstr "Error adding modules" #: ../../godmode/agentes/agent_template.php:122 msgid "Error adding modules. The following errors already exists: " -msgstr "" +msgstr "Error adding modules. The following errors already exist: " #: ../../godmode/agentes/agent_template.php:125 msgid "Modules successfully added" -msgstr "" +msgstr "Modules successfully added" #: ../../godmode/agentes/agent_template.php:153 msgid "Assign" @@ -21722,11 +21828,11 @@ msgstr "Module execution flip flop time interval (in secs)." #: ../../godmode/agentes/module_manager_editor_common.php:314 msgid "Any value below this number is discarted." -msgstr "" +msgstr "Any value below this number will be discarded." #: ../../godmode/agentes/module_manager_editor_common.php:316 msgid "Any value over this number is discarted." -msgstr "" +msgstr "Any value over this number will be discarded." #: ../../godmode/agentes/module_manager_editor_common.php:318 #: ../../godmode/massive/massive_edit_modules.php:398 @@ -21743,17 +21849,19 @@ msgstr "" #: ../../godmode/agentes/module_manager_editor_common.php:405 msgid "The module still stores data but the alerts and events will be stop" -msgstr "" +msgstr "The module still stores data but the alerts and events will stop" #: ../../godmode/agentes/module_manager_editor_common.php:422 msgid "Cron" -msgstr "" +msgstr "Cron" #: ../../godmode/agentes/module_manager_editor_common.php:422 msgid "" "If cron is set the module interval is ignored and the module runs on the " "specified date and time" msgstr "" +"If cron is set, the module interval will be ignored and the module will run " +"on the specified date and time" #: ../../godmode/agentes/module_manager_editor_common.php:426 msgid "Timeout" @@ -21761,15 +21869,15 @@ msgstr "Timeout" #: ../../godmode/agentes/module_manager_editor_common.php:427 msgid "Seconds that agent will wait for the execution of the module." -msgstr "" +msgstr "Seconds that agent will wait for the execution of the module." #: ../../godmode/agentes/module_manager_editor_common.php:429 msgid "Retries" -msgstr "" +msgstr "Retries" #: ../../godmode/agentes/module_manager_editor_common.php:430 msgid "Number of retries that the module will attempt to run." -msgstr "" +msgstr "Number of retries that the module will attempt to run." #: ../../godmode/agentes/agent_conf_gis.php:46 msgid "" @@ -21858,19 +21966,23 @@ msgid "" "There was a problem updating module. Another module already exists with the " "same name." msgstr "" +"A problem occurred while updating the module. Another module with the same " +"name already exists." #: ../../godmode/agentes/configurar_agente.php:912 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" +"A problem occurred while updating module. Some required fields are missing: " +"(name)" #: ../../godmode/agentes/configurar_agente.php:915 msgid "There was a problem updating module. \"No change\"" -msgstr "" +msgstr "A problem occurred while updating module. \"No change\"" #: ../../godmode/agentes/configurar_agente.php:920 msgid "There was a problem updating module. Processing error" -msgstr "" +msgstr "A problem occurred while updating module. Processing error" #: ../../godmode/agentes/configurar_agente.php:939 msgid "Module successfully updated" @@ -21881,15 +21993,19 @@ msgid "" "There was a problem adding module. Another module already exists with the " "same name." msgstr "" +"A problem occurred while adding module. There's another module with the same " +"name." #: ../../godmode/agentes/configurar_agente.php:1032 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" +"A problem occurred while adding module. Some required fields are missing: " +"(name)" #: ../../godmode/agentes/configurar_agente.php:1037 msgid "There was a problem adding module. Processing error" -msgstr "" +msgstr "A problem occurred while adding module. Processing error" #: ../../godmode/agentes/configurar_agente.php:1201 msgid "There was a problem deleting the module" @@ -21902,29 +22018,29 @@ msgstr "Module deleted succesfully" #: ../../godmode/agentes/configurar_agente.php:1219 #, php-format msgid "copy of %s" -msgstr "" +msgstr "copy of %s" #: ../../godmode/agentes/configurar_agente.php:1228 #, php-format msgid "copy of %s (%d)" -msgstr "" +msgstr "copy of %s (%d)" #: ../../godmode/agentes/configurar_agente.php:1302 msgid "Save by Pandora Console" -msgstr "" +msgstr "Saved by Pandora Console" #: ../../godmode/agentes/configurar_agente.php:1317 msgid "Update by Pandora Console" -msgstr "" +msgstr "Updated by Pandora Console" #: ../../godmode/agentes/configurar_agente.php:1330 msgid "Insert by Pandora Console" -msgstr "" +msgstr "Inserted by Pandora Console" #: ../../godmode/agentes/configurar_agente.php:1382 #: ../../godmode/agentes/configurar_agente.php:1389 msgid "Invalid tab specified" -msgstr "" +msgstr "Invalid tab specified" #: ../../godmode/agentes/fields_manager.php:31 msgid "Agents custom fields manager" @@ -21983,51 +22099,51 @@ msgstr "Planned downtime must have a name" #: ../../godmode/agentes/planned_downtime.editor.php:314 #: ../../godmode/agentes/planned_downtime.list.php:234 msgid "Disabled Agents" -msgstr "" +msgstr "Disabled Agents" #: ../../godmode/agentes/planned_downtime.editor.php:315 #: ../../godmode/agentes/planned_downtime.list.php:235 msgid "Disabled only Alerts" -msgstr "" +msgstr "Only Disabled Alerts" #: ../../godmode/agentes/planned_downtime.editor.php:318 #: ../../godmode/agentes/planned_downtime.list.php:196 msgid "Execution" -msgstr "" +msgstr "Execution" #: ../../godmode/agentes/planned_downtime.editor.php:319 #: ../../godmode/agentes/planned_downtime.list.php:239 msgid "once" -msgstr "" +msgstr "once" #: ../../godmode/agentes/planned_downtime.editor.php:320 #: ../../godmode/agentes/planned_downtime.list.php:240 msgid "Periodically" -msgstr "" +msgstr "Periodically" #: ../../godmode/agentes/planned_downtime.editor.php:324 msgid "Configure the time" -msgstr "" +msgstr "Configure the time" #: ../../godmode/agentes/planned_downtime.editor.php:347 msgid "Type Periodicity:" -msgstr "" +msgstr "Type of periodicity:" #: ../../godmode/agentes/planned_downtime.editor.php:384 msgid "From day:" -msgstr "" +msgstr "From day:" #: ../../godmode/agentes/planned_downtime.editor.php:389 msgid "To day:" -msgstr "" +msgstr "To day:" #: ../../godmode/agentes/planned_downtime.editor.php:398 msgid "From hour:" -msgstr "" +msgstr "From hour:" #: ../../godmode/agentes/planned_downtime.editor.php:404 msgid "To hour:" -msgstr "" +msgstr "To hour:" #: ../../godmode/agentes/planned_downtime.editor.php:445 msgid "Available agents" @@ -22039,11 +22155,11 @@ msgstr "Filter by group" #: ../../godmode/agentes/planned_downtime.editor.php:488 msgid "Available modules:" -msgstr "" +msgstr "Available modules:" #: ../../godmode/agentes/planned_downtime.editor.php:489 msgid "Only for type Quiet for downtimes." -msgstr "" +msgstr "Only for Quiet type for downtimes." #: ../../godmode/agentes/planned_downtime.editor.php:503 msgid "Agents planned for this downtime" @@ -22055,43 +22171,43 @@ msgstr "There are no scheduled downtimes" #: ../../godmode/agentes/planned_downtime.editor.php:545 msgid "All alerts" -msgstr "" +msgstr "All alerts" #: ../../godmode/agentes/planned_downtime.editor.php:548 msgid "Entire agent" -msgstr "" +msgstr "Entire agent" #: ../../godmode/agentes/planned_downtime.editor.php:552 #: ../../godmode/agentes/planned_downtime.editor.php:658 msgid "All modules" -msgstr "" +msgstr "All modules" #: ../../godmode/agentes/planned_downtime.editor.php:555 #: ../../godmode/agentes/planned_downtime.editor.php:650 #: ../../godmode/agentes/planned_downtime.editor.php:654 msgid "Some modules" -msgstr "" +msgstr "Some modules" #: ../../godmode/agentes/planned_downtime.editor.php:622 msgid "Add Module:" -msgstr "" +msgstr "Add Module:" #: ../../godmode/agentes/planned_downtime.editor.php:833 msgid "Please select a module." -msgstr "" +msgstr "Please select a module." #: ../../godmode/agentes/planned_downtime.list.php:65 msgid "Succesful stopped the Downtime" -msgstr "" +msgstr "Downtime Successfully stopped" #: ../../godmode/agentes/planned_downtime.list.php:66 msgid "Unsuccesful stopped the Downtime" -msgstr "" +msgstr "Downtime Unsuccessfully stopped" #: ../../godmode/agentes/planned_downtime.list.php:166 #, php-format msgid "Enabled %s elements from the downtime" -msgstr "" +msgstr "Enabled %s elements from the downtime" #: ../../godmode/agentes/planned_downtime.list.php:192 msgid "Name #Ag." @@ -22108,19 +22224,19 @@ msgstr "No planned downtime" #: ../../godmode/agentes/planned_downtime.list.php:253 msgid "Weekly:" -msgstr "" +msgstr "Weekly:" #: ../../godmode/agentes/planned_downtime.list.php:287 msgid "Monthly:" -msgstr "" +msgstr "Monthly:" #: ../../godmode/agentes/planned_downtime.list.php:288 msgid "From day" -msgstr "" +msgstr "From day" #: ../../godmode/agentes/planned_downtime.list.php:289 msgid "To day" -msgstr "" +msgstr "To day" #: ../../godmode/agentes/planned_downtime.list.php:313 msgid "Executed" @@ -22169,25 +22285,25 @@ msgstr "Create a new prediction server module" #: ../../godmode/agentes/module_manager.php:119 msgid "Get more modules in Pandora FMS Library" -msgstr "" +msgstr "Get more modules in Pandora FMS Library" #: ../../godmode/agentes/module_manager.php:152 msgid "Nice try buddy" -msgstr "" +msgstr "Nice try, buddy!" #: ../../godmode/agentes/module_manager.php:261 #, php-format msgid "There was a problem deleting %s modules, none deleted." -msgstr "" +msgstr "A problem occurred while deleting %s modules: none deleted." #: ../../godmode/agentes/module_manager.php:266 msgid "All Modules deleted succesfully" -msgstr "" +msgstr "All Modules have been successfully deleted" #: ../../godmode/agentes/module_manager.php:270 #, php-format msgid "There was a problem only deleted %s modules of %s total." -msgstr "" +msgstr "A problem occurred: only %s modules of %s total deleted" #: ../../godmode/agentes/module_manager.php:586 msgid "(Adopt) (Unlinked) " @@ -22195,11 +22311,11 @@ msgstr "(Adopt) (Unlinked) " #: ../../godmode/agentes/module_manager.php:637 msgid "Enable module" -msgstr "" +msgstr "Enable module" #: ../../godmode/agentes/module_manager.php:641 msgid "Disable module" -msgstr "" +msgstr "Disable module" #: ../../godmode/agentes/module_manager.php:656 msgid "Normalize" @@ -22207,19 +22323,19 @@ msgstr "Normalise" #: ../../godmode/agentes/module_manager.php:662 msgid "Normalize (Disabled)" -msgstr "" +msgstr "Normalize (Disabled)" #: ../../godmode/agentes/module_manager.php:671 msgid "Create network component" -msgstr "" +msgstr "Create network component" #: ../../godmode/agentes/module_manager.php:676 msgid "Create network component (Disabled)" -msgstr "" +msgstr "Create network component (Disabled)" #: ../../godmode/agentes/module_manager_editor_network.php:25 msgid "Use this OID" -msgstr "" +msgstr "Use this OID" #: ../../godmode/agentes/module_manager_editor_network.php:53 msgid "Network server module" @@ -22291,7 +22407,7 @@ msgstr "Agent icon for GIS Maps." #: ../../godmode/agentes/agent_manager.php:320 #: ../../godmode/massive/massive_edit_agents.php:360 msgid "The agent still runs but the alerts and events will be stop" -msgstr "" +msgstr "The agent will keep running but the alerts and events will stop" #: ../../godmode/agentes/agent_incidents.php:58 msgid "No incidents associated to this agent" @@ -22351,7 +22467,7 @@ msgstr "Manage tags" #: ../../godmode/menu.php:92 msgid "Manage categories" -msgstr "" +msgstr "Manage categories" #: ../../godmode/menu.php:95 msgid "Module types" @@ -22367,7 +22483,7 @@ msgstr "Manage profiles" #: ../../godmode/menu.php:159 msgid "Event filters" -msgstr "" +msgstr "Event filters" #: ../../godmode/menu.php:162 msgid "Custom events" @@ -22375,7 +22491,7 @@ msgstr "Custom events" #: ../../godmode/menu.php:163 ../../godmode/events/events.php:44 msgid "Event responses" -msgstr "" +msgstr "Event responses" #: ../../godmode/menu.php:172 msgid "Manage servers" @@ -22517,63 +22633,63 @@ msgstr "Propagate the same ACL security into the child subgroups." #: ../../godmode/groups/configure_group.php:142 msgid "Contact" -msgstr "" +msgstr "Contact" #: ../../godmode/groups/configure_group.php:142 msgid "Contact information accessible through the _groupcontact_ macro" -msgstr "" +msgstr "Contact information accessible through the _groupcontact_ macro" #: ../../godmode/groups/configure_group.php:145 msgid "Information accessible through the _group_other_ macro" -msgstr "" +msgstr "Information accessible through the _group_other_ macro" #: ../../godmode/category/edit_category.php:40 #: ../../godmode/category/category.php:41 msgid "List categories" -msgstr "" +msgstr "Category list" #: ../../godmode/category/edit_category.php:46 #: ../../godmode/category/edit_category.php:49 #: ../../godmode/category/category.php:47 #: ../../godmode/category/category.php:50 msgid "Categories configuration" -msgstr "" +msgstr "Category configuration" #: ../../godmode/category/edit_category.php:65 msgid "Error updating category" -msgstr "" +msgstr "Error updating category" #: ../../godmode/category/edit_category.php:69 msgid "Successfully updated category" -msgstr "" +msgstr "Category Updated Successfully" #: ../../godmode/category/edit_category.php:88 msgid "Error creating category" -msgstr "" +msgstr "Error creating category" #: ../../godmode/category/edit_category.php:94 msgid "Successfully created category" -msgstr "" +msgstr "Category Created Successfully" #: ../../godmode/category/category.php:60 msgid "Error deleting category" -msgstr "" +msgstr "Error deleting category" #: ../../godmode/category/category.php:64 msgid "Successfully deleted category" -msgstr "" +msgstr "Category successfully deleted" #: ../../godmode/category/category.php:85 msgid "Create category" -msgstr "" +msgstr "Create category" #: ../../godmode/category/category.php:107 msgid "Category name" -msgstr "" +msgstr "Category name" #: ../../godmode/category/category.php:130 msgid "No categories found" -msgstr "" +msgstr "No categories found" #: ../../godmode/snmpconsole/snmp_alert.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:38 @@ -22760,7 +22876,7 @@ msgstr "" #: ../../godmode/massive/massive_operations.php:162 msgid "Please wait..." -msgstr "" +msgstr "Please wait..." #: ../../godmode/massive/massive_operations.php:210 msgid "The blank fields will not be updated" @@ -23001,15 +23117,15 @@ msgstr "Without status" #: ../../godmode/massive/massive_delete_action_alerts.php:56 msgid "Could not be deleted. No agents selected" -msgstr "" +msgstr "Could not be deleted. No agents selected" #: ../../godmode/massive/massive_delete_action_alerts.php:72 msgid "Could not be deleted. No alerts selected" -msgstr "" +msgstr "Could not be deleted. No alerts selected" #: ../../godmode/massive/massive_delete_action_alerts.php:111 msgid "Could not be deleted. No action selected" -msgstr "" +msgstr "Could not be deleted. No action selected" #: ../../godmode/massive/massive_edit_modules.php:359 msgid "SMNP community" @@ -23018,30 +23134,31 @@ msgstr "SMNP community" #: ../../godmode/massive/massive_edit_modules.php:433 msgid "The module still store data but the alerts and events will be stop" msgstr "" +"The module will keep storing data but the alerts and events will stop" #: ../../godmode/events/event_responses.editor.php:72 msgid "Location" -msgstr "" +msgstr "Location" #: ../../godmode/events/event_responses.editor.php:72 msgid "For Command type Modal Window mode is enforced" -msgstr "" +msgstr "For Command type Modal Window mode is enforced" #: ../../godmode/events/event_responses.editor.php:73 msgid "Modal window" -msgstr "" +msgstr "Modal window" #: ../../godmode/events/event_responses.editor.php:73 msgid "New window" -msgstr "" +msgstr "New window" #: ../../godmode/events/event_responses.list.php:30 msgid "Create response" -msgstr "" +msgstr "Create response" #: ../../godmode/events/event_responses.list.php:44 msgid "No responses found" -msgstr "" +msgstr "No responses found" #: ../../godmode/events/event_edit_filter.php:166 msgid "" @@ -23051,31 +23168,31 @@ msgstr "" #: ../../godmode/events/event_edit_filter.php:221 msgid "Choose between the users who have validated an event. " -msgstr "" +msgstr "Choose between the users who have validated an event. " #: ../../godmode/events/event_responses.php:52 msgid "Response added succesfully" -msgstr "" +msgstr "Response added successfully" #: ../../godmode/events/event_responses.php:55 msgid "Response cannot be added" -msgstr "" +msgstr "Response cannot be added" #: ../../godmode/events/event_responses.php:81 msgid "Response updated succesfully" -msgstr "" +msgstr "Response successfully updated" #: ../../godmode/events/event_responses.php:84 msgid "Response cannot be updated" -msgstr "" +msgstr "The response cannot be updated" #: ../../godmode/events/event_responses.php:93 msgid "Response deleted succesfully" -msgstr "" +msgstr "Response successfully deleted" #: ../../godmode/events/event_responses.php:96 msgid "Response cannot be deleted" -msgstr "" +msgstr "Response cannot be deleted" #: ../../godmode/events/custom_events.php:128 msgid "Show event fields" @@ -23164,6 +23281,7 @@ msgstr "Hyperlink to help information that has to exist previously." #: ../../godmode/tag/edit_tag.php:174 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "" +"This is the email address that will be used in alerts related to tags." #: ../../godmode/alerts/alert_templates.php:321 msgid "No alert templates defined" @@ -23193,12 +23311,12 @@ msgstr "Configure alert command" #: ../../godmode/alerts/configure_alert_command.php:86 #, php-format msgid "Field %s description" -msgstr "" +msgstr "Field %s description" #: ../../godmode/alerts/configure_alert_command.php:101 #, php-format msgid "Field %s values" -msgstr "" +msgstr "Field %s values" #: ../../godmode/alerts/alert_special_days.php:220 msgid "No special days configured" @@ -23227,7 +23345,7 @@ msgstr "Use special days list" #: ../../godmode/alerts/configure_alert_template.php:527 msgid "Advanced fields management" -msgstr "" +msgstr "Advanced field management" #: ../../godmode/alerts/configure_alert_template.php:540 #: ../../godmode/alerts/configure_alert_template.php:580 @@ -23235,7 +23353,7 @@ msgstr "" #: ../../godmode/alerts/alert_commands.php:73 #, php-format msgid "Field %s" -msgstr "" +msgstr "Field %s" #: ../../godmode/alerts/configure_alert_template.php:544 msgid "Default action" @@ -23274,14 +23392,15 @@ msgid "" "The alert would fire when the value doesn\\'t match " msgstr "" +"The alert will fire when the value doesn't match " #: ../../godmode/alerts/configure_alert_template.php:721 msgid "The alert would fire when the value is below " -msgstr "" +msgstr "The alert will fire when the value is below " #: ../../godmode/alerts/configure_alert_template.php:722 msgid "The alert would fire when the value is above " -msgstr "" +msgstr "The alert will fire when the value is above " #: ../../godmode/alerts/configure_alert_template.php:725 msgid "The alert would fire when the module value changes" @@ -23418,7 +23537,7 @@ msgstr "Generate file" #: ../../extensions/system_info.php:328 msgid "download here" -msgstr "" +msgstr "download it here" #: ../../extensions/system_info.php:331 msgid "File:" @@ -23459,7 +23578,7 @@ msgstr "You need to specify a user and a host address" #: ../../extensions/ssh_gateway.php:61 msgid "Port (use 0 for default)" -msgstr "" +msgstr "Port (use 0 by default)" #: ../../extensions/ssh_gateway.php:63 msgid "Connect mode" @@ -23535,11 +23654,11 @@ msgstr "SNMPget executable does not exist." #: ../../extensions/net_tools.php:150 msgid "Uptime" -msgstr "" +msgstr "Uptime" #: ../../extensions/net_tools.php:154 msgid "Device info" -msgstr "" +msgstr "Device info" #: ../../extensions/net_tools.php:162 msgid "Interface" @@ -23646,6 +23765,8 @@ msgid "" "Blue cell when the module group and agent have all modules in not init " "status." msgstr "" +"The blue cell appears when all the modules from an agent or a group are in " +"not init status" #: ../../extensions/module_groups.php:317 msgid "There are no defined groups or module groups" @@ -23857,11 +23978,11 @@ msgstr "There's a new update for Pandora FMS" #: ../../extensions/update_manager/lib/functions.php:77 msgid "Unsuccesful store conf data in DB." -msgstr "Unsuccesful store conf data in DB." +msgstr "Unsuccessful storing of conf data in DB." #: ../../extensions/update_manager/lib/functions.php:88 msgid "Unsuccesful create a dir to save package in Pandora Console" -msgstr "Unsuccesful create a dir to save package in Pandora Console" +msgstr "Unsuccessful creation of a dir to save package to in Pandora Console" #: ../../extensions/update_manager/lib/functions.php:119 #, php-format @@ -24040,6 +24161,9 @@ msgid "" "of agents and modules running). To disable it, remove remote server address " "from Update Manager plugin setup." msgstr "" +"The Update Manager sends anonymous information about Pandora FMS usage " +"(number of agents and modules running). To disable it, remove the remote " +"server address from Update Manager plugin setup." #: ../../extensions/update_manager/main.php:137 msgid "Checking for an update" @@ -24059,7 +24183,7 @@ msgstr "Offline packages loader" #: ../../extensions/update_manager/main.php:177 msgid "Apply, in order, the packets corresponding to your current version" -msgstr "" +msgstr "Apply, in order, the packages corresponding to your current version" #: ../../extensions/extension_uploader.php:28 msgid "Uploader extension" diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index 8e9416ab49..a71b743d85 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 d59478dee6..e547ec5dda 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: index.es\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-22 18:49+0200\n" -"PO-Revision-Date: 2013-05-09 11:47+0000\n" +"PO-Revision-Date: 2013-06-17 13:14+0000\n" "Last-Translator: Inches \n" "Language-Team: Español; Castellano <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:15+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 @@ -334,7 +334,7 @@ msgstr "Constructor" #: ../../godmode/agentes/modificar_agente.php:488 #: ../../godmode/agentes/configurar_agente.php:240 msgid "View" -msgstr "vista" +msgstr "Vista" #: ../../operation/visual_console/render_view.php:109 #: ../../operation/gis_maps/render_view.php:91 @@ -5631,7 +5631,7 @@ msgstr "Ocurrió un problema al añadir la unidad de trabajo" msgid "" "There is a error in the message from your Integria or there is not " "connection." -msgstr "Hay un error en el mensaje desde tu Intergia o no hay conexión" +msgstr "Hay un error en el mensaje desde tu Integria o no hay conexión" #: ../../operation/integria_incidents/incident.files.php:23 #: ../../godmode/extensions.php:143 @@ -7118,7 +7118,7 @@ msgstr "Filtrar grupo" #: ../../operation/events/events_list.php:226 msgid "Overwrite filter" -msgstr "Filtro sobreescrito" +msgstr "Filtro sobrescrito" #: ../../operation/events/events_list.php:293 #: ../../godmode/events/event_edit_filter.php:267 @@ -7163,7 +7163,7 @@ msgstr "Máx. horas de antiguedad" #: ../../mobile/operation/events.php:428 #: ../../godmode/events/event_edit_filter.php:227 msgid "Repeated" -msgstr "EL no" +msgstr "Repetido" #: ../../operation/events/events_list.php:376 #: ../../enterprise/meta/event/event_view.php:521 @@ -7188,7 +7188,7 @@ msgstr "Eventos agrupados" #: ../../enterprise/meta/event/event_view.php:470 #: ../../godmode/events/event_edit_filter.php:194 msgid "Agent search" -msgstr "El nombre del filtro no se puede dejar en blanco" +msgstr "Búsqueda de agente" #: ../../operation/events/events_list.php:402 #: ../../enterprise/meta/event/event_view.php:511 @@ -7318,7 +7318,7 @@ msgid "" "free of charge and only takes a couple of minutes." msgstr "" "Le recomendamos encarecidamente que escoja e instale un navegador más " -"Pomoderno. Es gratis y solo le tomará un par de minutos." +"moderno. Es gratis y solo le tomará un par de minutos." #: ../../general/login_page.php:233 msgid "Why is it recommended to upgrade the web browser?" @@ -8520,7 +8520,7 @@ msgstr "No hay módulos en estado normal" #: ../../enterprise/include/functions_reporting_csv.php:1139 msgid "There are no Modules at critial or warning status" -msgstr "No hay módulos en estado crítico o en estado de alerta" +msgstr "No hay módulos en estado crítico o en estado de advertencia" #: ../../enterprise/include/functions_reporting_csv.php:1142 msgid "There are no Modules under those conditions" @@ -9580,7 +9580,7 @@ msgstr "Última replicación de eventos" #: ../../enterprise/include/ajax/metaconsole.ajax.php:98 msgid "Events replication is not enabled" -msgstr "La replicación no está habilitada" +msgstr "La replicación de eventos no está habilitada" #: ../../enterprise/include/ajax/metaconsole.ajax.php:102 msgid "Events replication is not properly configured for this metaconsole" @@ -9635,7 +9635,8 @@ msgid "" "system administrator if you need assistance.
" msgstr "" "La metaconsola tiene que ser activada previamente desde la consola regular. " -"Por favor, contacte con su administrador de sistemas si necesita asistencia" +"Por favor, contacte con su administrador de sistemas si necesita asistencia. " +"
" #: ../../enterprise/meta/general/main_header.php:110 #: ../../enterprise/meta/screens/screens.php:83 @@ -9808,7 +9809,7 @@ msgstr "Cadena de texto" #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:152 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:131 msgid "Can't connect to Pandora FMS instance" -msgstr "No se puede conectar a la instancia d Pandora FMS" +msgstr "No se puede conectar a la instancia de Pandora FMS" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 @@ -11526,8 +11527,8 @@ msgstr "Error al actualizar el módulo %s" msgid "" "There was an error updating the alerts, the operation has been cancelled" msgstr "" -"Se ha producido un error al actualizar las alertas. La operación ha sido " -"cancenlada." +"Se produjo un error al actualizar las alertas. La operación ha sido " +"cancelada." #: ../../enterprise/meta/include/functions_wizard_meta.php:1632 #: ../../enterprise/meta/include/functions_wizard_meta.php:1727 @@ -12856,14 +12857,14 @@ msgstr "Instrucciones cuando el estado es crítico" #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Warning instructions" -msgstr "Instrucciones para estados de alerta" +msgstr "Instrucciones para estados de advertencia" #: ../../enterprise/godmode/modules/configure_local_component.php:221 #: ../../godmode/modules/manage_network_components_form_common.php:150 #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Instructions when the status is warning" -msgstr "Instrucciones para cuando el estado es de alerta" +msgstr "Instrucciones para estados de advertencia" #: ../../enterprise/godmode/modules/configure_local_component.php:224 #: ../../godmode/modules/manage_network_components_form_common.php:154 @@ -12926,7 +12927,7 @@ msgstr "Ayuda" #: ../../enterprise/godmode/modules/configure_local_component.php:326 #: ../../godmode/servers/plugin.php:256 msgid "Add macro" -msgstr "Añador macro" +msgstr "Añadir macro" #: ../../enterprise/godmode/modules/configure_local_component.php:333 #: ../../godmode/servers/plugin.php:263 @@ -13443,8 +13444,7 @@ msgstr "Coincidencia exacta de módulo" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1771 msgid "Check it if you want to match module name literally" msgstr "" -"Por favor, compruebe si ha escrito correctamente el nombre del módulo para " -"que coincida." +"Compruebe si ha escrito correctamente el nombre del módulo para que coincida." #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1207 msgid "Query SQL" @@ -13656,17 +13656,17 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1479 msgid "Modules to match (Free text)" -msgstr "Módulos a coincidir texto libre)" +msgstr "Módulos a coincidir (texto libre)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1481 msgid "Free text to filter the modules of agents when apply this template." msgstr "" "Texto libre para filtrar los módulos de los agente cuando se aplique esta " -"política" +"plantilla" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1494 msgid "Create a graph for each agent" -msgstr "Crear una gráfica para cada agentes" +msgstr "Crear una gráfica para cada agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1496 msgid "" @@ -13713,7 +13713,7 @@ msgid "" "will match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" "Caso insensible expresiones regulares para el nombre del agente. Por " -"ejemple: Red* (Network*) coincidirá con los siguientes nombre de agente * " +"ejemple: Red* (Network*) coincidirá con los siguientes nombres de agentes * " "network_agent1, NetworK CHECKS" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1673 @@ -14346,11 +14346,11 @@ msgstr "No se encontró ningún componente" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:118 msgid "Show configuration data" -msgstr "Mostrar los datos de la configuración" +msgstr "Mostrar datos de configuración" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:128 msgid "Hide configuration data" -msgstr "Ocultar los datos de la configuración" +msgstr "Ocultar datos de configuración" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:136 msgid "Data configuration" @@ -16065,7 +16065,7 @@ msgstr "" #: ../../include/functions_ui.php:3219 msgid "DB ERROR" -msgstr "ERROR en su base de datos" +msgstr "ERROR en BD" #: ../../include/functions_ui.php:3225 msgid "" @@ -16179,7 +16179,7 @@ msgstr "Eventos -por módulo-" #: ../../include/functions_events.php:1034 msgid "Going to unknown" -msgstr "Yendo a lo desconocido" +msgstr "Pasando a estado desconocido" #: ../../include/functions_events.php:1037 #: ../../include/functions_events.php:1320 ../../include/functions.php:879 @@ -16622,7 +16622,7 @@ msgstr "%d Módulos críticos" #: ../../include/functions_reporting.php:6743 #, php-format msgid "%d Warning modules" -msgstr "%d Módulos en estado de alerta" +msgstr "%d Módulos en estado de advertencia" #: ../../include/functions_reporting.php:6744 #, php-format @@ -16647,7 +16647,7 @@ msgstr "%d Agentes en estado crítico" #: ../../include/functions_reporting.php:6751 #, php-format msgid "%d Warning agents" -msgstr "%d Agentes en estado de alerta" +msgstr "%d Agentes en estado de advertencia" #: ../../include/functions_reporting.php:6752 #, php-format @@ -18173,7 +18173,7 @@ msgstr "Error al añadir comentario" #: ../../include/ajax/events.php:350 msgid "Comment added successfully" -msgstr "El comentario ha sido añadido correctamente" +msgstr "Comentario añadido correctamente" #: ../../include/ajax/events.php:351 msgid "Error changing event status" @@ -18181,7 +18181,7 @@ msgstr "Error al cambiar el estatus del evento" #: ../../include/ajax/events.php:352 msgid "Event status changed successfully" -msgstr "El estatus del evento ha sido cambiado correctamente" +msgstr "Estatus del evento cambiado correctamente" #: ../../include/ajax/events.php:353 msgid "Error changing event owner" @@ -19262,7 +19262,7 @@ msgstr "ERROR: Detalles del evento" #: ../../mobile/operation/events.php:488 msgid "Error connecting to DB pandora." -msgstr "Error al conectar con la base de datos de Pandora" +msgstr "Error al conectar con la BD de Pandora" #: ../../mobile/operation/events.php:492 msgid "PandoraFMS: Events" @@ -21823,7 +21823,7 @@ msgstr "Mayor o igual que (>=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:979 msgid "Less or equal (<=)" -msgstr "Menor o igual que (>=)" +msgstr "Menor o igual que (<=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:980 msgid "Less (<)" @@ -22007,7 +22007,7 @@ msgstr "" #: ../../godmode/agentes/module_manager_editor_common.php:405 msgid "The module still stores data but the alerts and events will be stop" msgstr "" -"El módulo seguirá almacenando datos pero las alertas y eventos pararán" +"El módulo seguirá almacenando datos pero las alertas y eventos se detendrán" #: ../../godmode/agentes/module_manager_editor_common.php:422 msgid "Cron" @@ -22189,11 +22189,11 @@ msgstr "Guardado por la consola de Pandora" #: ../../godmode/agentes/configurar_agente.php:1317 msgid "Update by Pandora Console" -msgstr "Actualizar por la consola de Pandora" +msgstr "Actualizado por la consola de Pandora" #: ../../godmode/agentes/configurar_agente.php:1330 msgid "Insert by Pandora Console" -msgstr "Insertar por la consola de Pandora" +msgstr "Insertado por la consola de Pandora" #: ../../godmode/agentes/configurar_agente.php:1382 #: ../../godmode/agentes/configurar_agente.php:1389 diff --git a/pandora_console/include/languages/et.mo b/pandora_console/include/languages/et.mo index 9928a666cb..f70966271e 100644 Binary files a/pandora_console/include/languages/et.mo and b/pandora_console/include/languages/et.mo differ diff --git a/pandora_console/include/languages/et.po b/pandora_console/include/languages/et.po index 53ce3402a1..3c8b601236 100644 --- a/pandora_console/include/languages/et.po +++ b/pandora_console/include/languages/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: et\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/eu.mo b/pandora_console/include/languages/eu.mo index 89c24bc573..c329cc6f08 100644 Binary files a/pandora_console/include/languages/eu.mo and b/pandora_console/include/languages/eu.mo differ diff --git a/pandora_console/include/languages/eu.po b/pandora_console/include/languages/eu.po index 6dfec6af0c..d2c120b930 100644 --- a/pandora_console/include/languages/eu.po +++ b/pandora_console/include/languages/eu.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: eu\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/fi.mo b/pandora_console/include/languages/fi.mo index 3d38053b23..cea6b059ab 100644 Binary files a/pandora_console/include/languages/fi.mo and b/pandora_console/include/languages/fi.mo differ diff --git a/pandora_console/include/languages/fi.po b/pandora_console/include/languages/fi.po index 8a46d77dcb..d3f73006ff 100644 --- a/pandora_console/include/languages/fi.po +++ b/pandora_console/include/languages/fi.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: fi\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo index 0ac6c7e60b..ceef9fe52d 100644 Binary files a/pandora_console/include/languages/fr.mo and b/pandora_console/include/languages/fr.mo differ diff --git a/pandora_console/include/languages/fr.po b/pandora_console/include/languages/fr.po index f5b508940f..2db00faeea 100644 --- a/pandora_console/include/languages/fr.po +++ b/pandora_console/include/languages/fr.po @@ -9,14 +9,14 @@ msgstr "" "Project-Id-Version: pandora-fr\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-22 18:49+0200\n" -"PO-Revision-Date: 2013-03-29 14:48+0000\n" -"Last-Translator: joris \n" +"PO-Revision-Date: 2013-07-05 19:24+0000\n" +"Last-Translator: Teromene \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: fr\n" #: ../../operation/events/events.php:344 ../../operation/events/events.php:353 @@ -96,14 +96,14 @@ msgstr "Agents" #: ../../operation/search_main.php:82 #, php-format msgid "%d results found" -msgstr "" +msgstr "%d résultats trouvés" #: ../../operation/search_main.php:34 ../../operation/search_main.php:42 #: ../../operation/search_main.php:50 ../../operation/search_main.php:58 #: ../../operation/search_main.php:66 ../../operation/search_main.php:74 #: ../../operation/search_main.php:82 msgid "Show results" -msgstr "" +msgstr "Montrer les résultats" #: ../../operation/search_main.php:41 ../../operation/agentes/graphs.php:63 #: ../../operation/agentes/estado_agente.php:394 @@ -295,13 +295,13 @@ msgstr "Rafraîchir" #: ../../operation/visual_console/render_view.php:83 #: ../../godmode/reporting/visual_console_builder.php:413 msgid "Visual consoles list" -msgstr "" +msgstr "Liste des consoles Visuel" #: ../../operation/visual_console/render_view.php:91 #: ../../enterprise/meta/screens/screens.visualmap.php:157 #: ../../godmode/reporting/visual_console_builder.php:416 msgid "Show link to public Visual Console" -msgstr "" +msgstr "Afficher lien aux public Console Visual" #: ../../operation/visual_console/render_view.php:95 #: ../../operation/reporting/graph_viewer.php:114 @@ -310,7 +310,7 @@ msgstr "" #: ../../godmode/reporting/graph_builder.php:184 #: ../../godmode/reporting/visual_console_builder.php:419 msgid "Main data" -msgstr "" +msgstr "Principales données" #: ../../operation/visual_console/render_view.php:97 #: ../../enterprise/meta/screens/screens.visualmap.php:126 @@ -392,7 +392,7 @@ msgstr "vue Netflow actuelle" #: ../../operation/netflow/nf_live_view.php:109 #, php-format msgid "nfdump binary (%s) not found!" -msgstr "" +msgstr "nfdump binaire (% s) introuvable !" #: ../../operation/netflow/nf_live_view.php:114 #: ../../operation/agentes/ver_agente.php:702 @@ -517,6 +517,7 @@ msgstr "Résolution" #: ../../operation/netflow/nf_live_view.php:186 msgid "The interval will be divided in chunks the length of the resolution." msgstr "" +"L'intervalle sera divisé en morceaux de la longueur de la résolution." #: ../../operation/netflow/nf_live_view.php:192 #: ../../operation/agentes/ver_agente.php:551 @@ -987,11 +988,14 @@ msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
80,22" msgstr "" +"Port source. Liste séparée par des virgules des ports source. Si nous " +"laissez le champ vide, affiche tous les ports. Filtre d'exemple par les " +"ports 80 et 22 :
80,22" #: ../../operation/netflow/nf_live_view.php:340 #: ../../godmode/netflow/nf_edit_form.php:211 msgid "Aggregate by" -msgstr "" +msgstr "Regrouper par" #: ../../operation/netflow/nf_live_view.php:342 #: ../../operation/users/user_edit.php:308 @@ -1183,7 +1187,7 @@ msgstr "Octets" #: ../../operation/netflow/nf_live_view.php:346 msgid "Bytes per second" -msgstr "" +msgstr "Octets par seconde" #: ../../operation/netflow/nf_live_view.php:346 #: ../../godmode/netflow/nf_edit_form.php:217 @@ -1841,6 +1845,8 @@ msgstr "Taille pour la pagination" #: ../../operation/users/user_edit.php:252 msgid "If checkbox is clicked then block size global configuration is used" msgstr "" +"Si vous cliquez sur case à cocher configuration globale de taille de bloc " +"est utilisée" #: ../../operation/users/user_edit.php:253 #: ../../enterprise/meta/advanced/metasetup.visual.php:123 @@ -1849,14 +1855,14 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:168 #: ../../godmode/users/configure_user.php:458 msgid "Interactive charts" -msgstr "" +msgstr "Graphiques interactifs" #: ../../operation/users/user_edit.php:253 #: ../../enterprise/meta/advanced/metasetup.visual.php:123 #: ../../godmode/setup/setup_visuals.php:168 #: ../../godmode/users/configure_user.php:458 msgid "Whether to use Javascript or static PNG graphs" -msgstr "" +msgstr "Si vous souhaitez utiliser Javascript ou statiques graphiques PNG" #: ../../operation/users/user_edit.php:254 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 @@ -2026,13 +2032,15 @@ msgstr "Non" #: ../../operation/users/user_edit.php:288 msgid "Shortcut bar" -msgstr "" +msgstr "Barre de raccourcis" #: ../../operation/users/user_edit.php:288 msgid "" "This will activate a shortcut bar with alerts, events, messages... " "information" msgstr "" +"Cela activera un raccourci avec une barre d' alertes, événements, " +"messages... informations" #: ../../operation/users/user_edit.php:289 msgid "Home screen" @@ -2044,6 +2052,9 @@ msgid "" "Example: Select 'Other' and type " "sec=estado&sec2=operation/agentes/estado_agente to show agent detail view" msgstr "" +"L'utilisateur peut personnaliser la page d'accueil. Par défaut, affiche « " +"Détail de l'Agent ». Exemple : Sélectionnez « Autre » et tapez sec = estado " +"& S2 = opération/agentes/estado_agente pour afficher le détail de l'agent vue" #: ../../operation/users/user_edit.php:292 #: ../../godmode/users/configure_user.php:452 @@ -3553,7 +3564,7 @@ msgstr "Changements d'inventaire" #: ../../operation/reporting/reporting_xml.php:1106 #: ../../enterprise/include/functions_reporting_xml.php:1008 msgid "Configuration report for agent " -msgstr "" +msgstr "Rapport de configuration pour l'agent " #: ../../operation/reporting/reporting_xml.php:1262 #: ../../enterprise/include/functions_reporting_xml.php:1162 @@ -3583,7 +3594,7 @@ msgstr "Rapport" #: ../../operation/reporting/reporting_viewer.php:154 msgid "Set initial date" -msgstr "" +msgstr "Date initiale fixée" #: ../../operation/reporting/reporting_viewer.php:161 #: ../../operation/agentes/gis_view.php:119 @@ -3960,11 +3971,11 @@ msgstr "" #: ../../operation/agentes/stat_win.php:304 #: ../../operation/agentes/stat_win.php:310 msgid "Time compare" -msgstr "" +msgstr "Comparez le temps" #: ../../operation/agentes/stat_win.php:304 msgid "Overlapped" -msgstr "" +msgstr "Se chevaucher" #: ../../operation/agentes/stat_win.php:310 msgid "Separated" @@ -3973,7 +3984,7 @@ msgstr "" #: ../../operation/agentes/stat_win.php:316 #: ../../mobile/operation/module_graph.php:344 msgid "Show unknown graph" -msgstr "" +msgstr "Afficher graphique inconnu" #: ../../operation/agentes/stat_win.php:339 msgid "Reload" @@ -4499,7 +4510,7 @@ msgstr "Police" #: ../../operation/agentes/networkmap.php:367 #: ../../operation/agentes/estado_monitores.php:624 msgid "Free text for search (*):" -msgstr "" +msgstr "Texte libre pour rechercher (*) :" #: ../../operation/agentes/networkmap.php:370 msgid "Don't show subgroups:" @@ -4507,7 +4518,7 @@ msgstr "" #: ../../operation/agentes/networkmap.php:371 msgid "Only run with it is filter for any group" -msgstr "" +msgstr "Exécuter seul avec elle est filtre pour tout groupe" #: ../../operation/agentes/networkmap.php:380 #: ../../enterprise/meta/advanced/policymanager.apply.php:214 @@ -4592,7 +4603,7 @@ msgstr "" #: ../../operation/agentes/estado_generalagente.php:170 msgid "Next contact" -msgstr "" +msgstr "Prochain contact" #: ../../operation/agentes/estado_generalagente.php:186 msgid "Agent info" @@ -4655,7 +4666,7 @@ msgstr "Actualisation des données" #: ../../operation/agentes/estado_generalagente.php:309 #: ../../mobile/operation/agent.php:132 msgid "Events (24h)" -msgstr "" +msgstr "Événements (24h)" #: ../../operation/agentes/estado_generalagente.php:320 #: ../../include/functions_treeview.php:350 @@ -4716,7 +4727,7 @@ msgstr "Aucun agent n'a été désigné" #: ../../operation/agentes/status_monitor.php:45 #: ../../enterprise/meta/general/main_header.php:124 msgid "Monitor view" -msgstr "" +msgstr "Moniteur" #: ../../operation/agentes/status_monitor.php:332 msgid "Monitor status" @@ -5086,7 +5097,7 @@ msgstr "Agent supprimé avec succès" #: ../../operation/agentes/estado_agente.php:149 msgid "There was an error message deleting the agent" -msgstr "" +msgstr "Il y avait un message d'erreur à la suppression de l'agent" #: ../../operation/agentes/estado_agente.php:162 #: ../../godmode/agentes/modificar_agente.php:154 @@ -5309,7 +5320,7 @@ msgstr "Liste complète des moniteurs" #: ../../operation/agentes/estado_monitores.php:575 msgid "Any monitors aren't with this filter." -msgstr "" +msgstr "Tous les moniteurs ne sont pas avec ce filtre." #: ../../operation/agentes/estado_monitores.php:578 msgid "This agent doesn't have any active monitors." diff --git a/pandora_console/include/languages/gl.mo b/pandora_console/include/languages/gl.mo index 88d2421bb6..aea8a147cb 100644 Binary files a/pandora_console/include/languages/gl.mo and b/pandora_console/include/languages/gl.mo differ diff --git a/pandora_console/include/languages/gl.po b/pandora_console/include/languages/gl.po index 689df2b76a..7cda93eb9a 100644 --- a/pandora_console/include/languages/gl.po +++ b/pandora_console/include/languages/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/he.mo b/pandora_console/include/languages/he.mo index d87b34c1e4..fc9c849389 100644 Binary files a/pandora_console/include/languages/he.mo and b/pandora_console/include/languages/he.mo differ diff --git a/pandora_console/include/languages/he.po b/pandora_console/include/languages/he.po index e86a8ba862..3f28e2df7b 100644 --- a/pandora_console/include/languages/he.po +++ b/pandora_console/include/languages/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: he\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/hi.mo b/pandora_console/include/languages/hi.mo index e6ef0f9694..f0e24c1050 100644 Binary files a/pandora_console/include/languages/hi.mo and b/pandora_console/include/languages/hi.mo differ diff --git a/pandora_console/include/languages/hi.po b/pandora_console/include/languages/hi.po index 2a72cea920..d3348ecb49 100644 --- a/pandora_console/include/languages/hi.po +++ b/pandora_console/include/languages/hi.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:56+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: hi\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/hu.mo b/pandora_console/include/languages/hu.mo index 59fea7d363..796b840ed8 100644 Binary files a/pandora_console/include/languages/hu.mo and b/pandora_console/include/languages/hu.mo differ diff --git a/pandora_console/include/languages/hu.po b/pandora_console/include/languages/hu.po index 97e001aa55..edddd570ef 100644 --- a/pandora_console/include/languages/hu.po +++ b/pandora_console/include/languages/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: hu\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/index.pot b/pandora_console/include/languages/index.pot index 0716df1c7f..1a8c99a49c 100644 --- a/pandora_console/include/languages/index.pot +++ b/pandora_console/include/languages/index.pot @@ -1,587 +1,7333 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-15 15:43+0100\n" +"POT-Creation-Date: 2013-04-22 18:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-07-11 07:12+0000\n" +"X-Generator: Launchpad (build 16696)\n" -#: ../../general/logon_ok.php:31 -msgid "Welcome to Pandora FMS Web Console" +#: ../../operation/search_main.php:33 +#: ../../operation/agentes/networkmap.php:318 +#: ../../operation/agentes/networkmap.php:324 +#: ../../operation/agentes/group_view.php:93 +#: ../../operation/search_results.php:68 +#: ../../enterprise/operation/services/services.service_map.php:97 +#: ../../enterprise/include/functions_reporting_pdf.php:617 +#: ../../enterprise/include/functions_reporting_pdf.php:794 +#: ../../enterprise/include/functions_policies.php:2827 +#: ../../enterprise/meta/monitoring/group_view.php:62 +#: ../../enterprise/meta/advanced/policymanager.queue.php:263 +#: ../../enterprise/meta/advanced/synchronizing.agent.php:147 +#: ../../enterprise/meta/advanced/synchronizing.agent.php:149 +#: ../../enterprise/meta/advanced/propagation.agent.php:147 +#: ../../enterprise/meta/advanced/propagation.agent.php:149 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1211 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:132 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:111 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:133 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:83 +#: ../../enterprise/godmode/policies/policy_queue.php:398 +#: ../../enterprise/godmode/policies/policy_agents.php:255 +#: ../../enterprise/godmode/policies/policy_agents.php:311 +#: ../../enterprise/godmode/policies/policies.php:308 +#: ../../include/functions_reporting.php:4328 +#: ../../include/functions_reporting.php:5598 +#: ../../include/ajax/networkmap.ajax.php:93 +#: ../../include/ajax/networkmap.ajax.php:98 +#: ../../include/ajax/networkmap.ajax.php:156 +#: ../../include/ajax/networkmap.ajax.php:161 +#: ../../include/functions_groups.php:44 +#: ../../include/functions_groups.php:734 +#: ../../include/functions_groups.php:735 +#: ../../include/functions_groups.php:736 ../../mobile/operation/home.php:65 +#: ../../mobile/operation/groups.php:87 ../../mobile/operation/groups.php:88 +#: ../../mobile/include/functions_web.php:22 +#: ../../godmode/reporting/reporting_builder.list_items.php:152 +#: ../../godmode/reporting/visual_console_builder.wizard.php:166 +#: ../../godmode/reporting/graph_builder.graph_editor.php:127 +#: ../../godmode/reporting/reporting_builder.item_editor.php:780 +#: ../../godmode/massive/massive_add_alerts.php:127 +#: ../../godmode/massive/massive_delete_agents.php:113 +#: ../../godmode/massive/massive_delete_alerts.php:181 +#: ../../godmode/massive/massive_standby_alerts.php:136 +#: ../../godmode/massive/massive_delete_modules.php:293 +#: ../../godmode/massive/massive_enable_disable_alerts.php:135 +#: ../../godmode/massive/massive_edit_agents.php:201 +#: ../../godmode/massive/massive_edit_modules.php:263 +#: ../../godmode/alerts/alert_list.list.php:61 +#: ../../extensions/agents_alerts.php:168 +#: ../../extensions/agents_modules.php:173 +msgid "Agents" msgstr "" -#: ../../general/logon_ok.php:55 -msgid "ago" +#: ../../operation/search_main.php:34 ../../operation/search_main.php:42 +#: ../../operation/search_main.php:50 ../../operation/search_main.php:58 +#: ../../operation/search_main.php:66 ../../operation/search_main.php:74 +#: ../../operation/search_main.php:82 +#, php-format +msgid "%d results found" msgstr "" -#: ../../general/logon_ok.php:59 ../../include/functions_events.php:192 -msgid "by" +#: ../../operation/search_main.php:34 ../../operation/search_main.php:42 +#: ../../operation/search_main.php:50 ../../operation/search_main.php:58 +#: ../../operation/search_main.php:66 ../../operation/search_main.php:74 +#: ../../operation/search_main.php:82 +msgid "Show results" msgstr "" -#: ../../general/logon_ok.php:66 -msgid "No news articles at this moment" +#: ../../operation/search_main.php:41 ../../operation/agentes/graphs.php:63 +#: ../../operation/agentes/estado_agente.php:394 +#: ../../operation/agentes/exportdata.php:227 ../../operation/tree.php:519 +#: ../../operation/search_agents.php:49 ../../operation/search_results.php:116 +#: ../../enterprise/operation/services/services.service_map.php:101 +#: ../../enterprise/include/functions_reporting_pdf.php:617 +#: ../../enterprise/include/functions_reporting_pdf.php:811 +#: ../../enterprise/include/functions_policies.php:2762 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:125 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:285 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:386 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 +#: ../../enterprise/meta/agentsearch.php:92 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1250 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:133 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:135 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:95 +#: ../../enterprise/godmode/policies/policies.php:292 +#: ../../include/functions_reporting.php:2365 +#: ../../include/functions_reporting.php:5598 +#: ../../include/functions_reports.php:541 +#: ../../include/functions_reports.php:543 +#: ../../include/functions_reports.php:545 +#: ../../include/functions_reports.php:547 +#: ../../include/functions_reports.php:549 +#: ../../include/functions_reports.php:551 +#: ../../include/ajax/networkmap.ajax.php:104 +#: ../../mobile/operation/home.php:70 ../../mobile/operation/agent.php:142 +#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:268 +#: ../../godmode/db/db_refine.php:80 +#: ../../godmode/servers/servers.build_table.php:58 +#: ../../godmode/reporting/reporting_builder.list_items.php:154 +#: ../../godmode/reporting/visual_console_builder.wizard.php:169 +#: ../../godmode/reporting/graph_builder.graph_editor.php:129 +#: ../../godmode/reporting/reporting_builder.item_editor.php:795 +#: ../../godmode/agentes/modificar_agente.php:480 +#: ../../godmode/agentes/configurar_agente.php:261 +#: ../../godmode/agentes/configurar_agente.php:418 +#: ../../godmode/agentes/planned_downtime.editor.php:526 +#: ../../godmode/agentes/planned_downtime.editor.php:597 +#: ../../godmode/massive/massive_copy_modules.php:116 +#: ../../godmode/massive/massive_delete_modules.php:280 +#: ../../godmode/massive/massive_edit_modules.php:247 +#: ../../extensions/snmp_explorer.php:375 +#: ../../extensions/agents_modules.php:173 +msgid "Modules" msgstr "" -#: ../../general/logon_ok.php:84 ../../mobile/operation/agents/tactical.php:47 -#: ../../operation/agentes/tactical.php:92 -#: ../../enterprise/dashboard/widgets/tactical.php:86 -#: ../../enterprise/dashboard/widgets/monitor_health.php:48 -msgid "Monitor health" +#: ../../operation/search_main.php:49 +#: ../../operation/agentes/ver_agente.php:712 +#: ../../operation/agentes/ver_agente.php:881 +#: ../../operation/agentes/estado_agente.php:396 +#: ../../operation/search_agents.php:51 ../../operation/search_results.php:84 +#: ../../enterprise/include/functions_reporting_pdf.php:828 +#: ../../enterprise/include/functions_policies.php:2780 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:73 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:103 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:467 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:83 +#: ../../enterprise/meta/agentsearch.php:94 +#: ../../enterprise/meta/include/functions_wizard_meta.php:898 +#: ../../enterprise/meta/include/functions_wizard_meta.php:983 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071 +#: ../../enterprise/godmode/policies/policies.php:296 +#: ../../enterprise/godmode/services/services.service.php:238 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:60 +#: ../../enterprise/godmode/alerts/alert_events_list.php:57 +#: ../../enterprise/godmode/alerts/alert_events_list.php:102 +#: ../../enterprise/godmode/alerts/alert_events_list.php:116 +#: ../../enterprise/godmode/alerts/alert_events_list.php:128 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 +#: ../../enterprise/godmode/alerts/alert_events.php:60 +#: ../../include/functions_reporting.php:2374 +#: ../../include/functions_reporting.php:4374 +#: ../../include/functions_reports.php:582 +#: ../../include/functions_reports.php:584 +#: ../../include/functions_reports.php:586 +#: ../../include/functions_graph.php:666 +#: ../../include/functions_graph.php:2798 +#: ../../include/functions_graph.php:3346 ../../mobile/operation/home.php:60 +#: ../../mobile/operation/agent.php:150 ../../mobile/operation/agents.php:82 +#: ../../mobile/operation/agents.php:266 +#: ../../mobile/include/functions_web.php:25 +#: ../../godmode/agentes/modificar_agente.php:484 +#: ../../godmode/agentes/configurar_agente.php:271 +#: ../../godmode/groups/group_list.php:256 +#: ../../godmode/groups/configure_group.php:130 +#: ../../godmode/massive/massive_copy_modules.php:125 +#: ../../godmode/alerts/alert_templates.php:130 +#: ../../godmode/alerts/alert_templates.php:170 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:203 +#: ../../godmode/alerts/configure_alert_special_days.php:52 +#: ../../godmode/alerts/configure_alert_command.php:60 +#: ../../godmode/alerts/alert_special_days.php:43 +#: ../../godmode/alerts/configure_alert_template.php:68 +#: ../../godmode/alerts/configure_alert_template.php:87 +#: ../../godmode/alerts/configure_alert_template.php:105 +#: ../../godmode/alerts/configure_alert_action.php:57 +#: ../../godmode/alerts/configure_alert_action.php:73 +#: ../../godmode/alerts/configure_alert_action.php:88 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/alert_actions.php:64 +#: ../../godmode/alerts/alert_actions.php:89 +#: ../../godmode/alerts/alert_actions.php:107 +#: ../../godmode/alerts/alert_actions.php:124 +#: ../../godmode/alerts/alert_actions.php:202 +#: ../../godmode/alerts/alert_actions.php:213 +#: ../../godmode/alerts/alert_actions.php:280 +#: ../../godmode/alerts/alert_actions.php:299 +#: ../../godmode/alerts/alert_actions.php:312 +#: ../../godmode/alerts/alert_list.php:291 +#: ../../godmode/alerts/alert_list.php:294 +#: ../../extensions/agents_alerts.php:234 +msgid "Alerts" msgstr "" -#: ../../general/logon_ok.php:86 ../../operation/agentes/tactical.php:96 -#: ../../enterprise/dashboard/widgets/tactical.php:88 -#: ../../enterprise/dashboard/widgets/monitor_health.php:50 -msgid "of monitors up" +#: ../../operation/search_main.php:57 ../../operation/search_results.php:76 +#: ../../enterprise/meta/advanced/synchronizing.user.php:528 +#: ../../include/functions_reporting.php:1176 +#: ../../godmode/massive/massive_delete_profiles.php:104 +#: ../../godmode/massive/massive_add_profiles.php:89 +msgid "Users" msgstr "" -#: ../../general/logon_ok.php:87 ../../mobile/operation/agents/tactical.php:50 -#: ../../operation/agentes/tactical.php:99 -#: ../../enterprise/dashboard/widgets/tactical.php:89 -#: ../../enterprise/dashboard/widgets/monitor_health.php:52 -msgid "Module sanity" +#: ../../operation/search_main.php:65 +#: ../../operation/agentes/ver_agente.php:790 +#: ../../operation/agentes/ver_agente.php:896 +#: ../../operation/search_results.php:92 +#: ../../include/functions_reports.php:493 +#: ../../include/functions_reports.php:495 +#: ../../include/functions_reports.php:498 +#: ../../include/functions_reports.php:500 +#: ../../include/functions_reports.php:504 +#: ../../include/functions_reports.php:506 +#: ../../include/functions_reports.php:508 +#: ../../include/functions_reports.php:512 +#: ../../include/functions_groups.php:102 +#: ../../include/functions_groups.php:159 +msgid "Graphs" msgstr "" -#: ../../general/logon_ok.php:89 ../../operation/agentes/tactical.php:103 -#: ../../enterprise/dashboard/widgets/tactical.php:91 -#: ../../enterprise/dashboard/widgets/monitor_health.php:54 -msgid "of total modules inited" +#: ../../operation/search_main.php:73 ../../operation/search_results.php:100 +#: ../../enterprise/meta/general/main_header.php:129 +#: ../../enterprise/meta/general/main_header.php:131 +#: ../../enterprise/mobile/include/functions_web.php:15 +#: ../../include/functions_groups.php:116 +msgid "Reports" msgstr "" -#: ../../general/logon_ok.php:90 ../../mobile/operation/agents/tactical.php:53 -#: ../../operation/agentes/tactical.php:106 -#: ../../enterprise/dashboard/widgets/tactical.php:92 -#: ../../enterprise/dashboard/widgets/monitor_health.php:56 -msgid "Alert level" +#: ../../operation/search_main.php:81 ../../operation/search_results.php:108 +#: ../../enterprise/dashboard/widgets/maps_status.php:28 +msgid "Maps" msgstr "" -#: ../../general/logon_ok.php:92 ../../operation/agentes/tactical.php:110 -#: ../../enterprise/dashboard/widgets/tactical.php:94 -#: ../../enterprise/dashboard/widgets/monitor_health.php:58 -msgid "of defined alerts not fired" +#: ../../operation/search_main.php:88 ../../operation/search_alerts.php:27 +#: ../../operation/search_agents.php:28 ../../operation/search_reports.php:29 +#: ../../operation/search_maps.php:22 ../../operation/search_users.php:26 +#: ../../operation/search_graphs.php:24 ../../operation/search_modules.php:26 +msgid "Zero results found" msgstr "" -#: ../../general/logon_ok.php:98 -msgid "Pandora FMS Overview" +#: ../../operation/visual_console/public_console.php:93 +#: ../../operation/visual_console/render_view.php:147 +msgid "Autorefresh time" msgstr "" -#: ../../general/logon_ok.php:101 -#: ../../mobile/operation/agents/tactical.php:109 -#: ../../operation/agentes/tactical.php:201 ../../godmode/db/db_main.php:99 -#: ../../enterprise/dashboard/widgets/tactical.php:154 -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Total agents" +#: ../../operation/visual_console/public_console.php:101 +#: ../../operation/visual_console/render_view.php:155 +#: ../../operation/agentes/estado_monitores.php:332 +#: ../../general/login_page.php:45 ../../general/login_page.php:117 +#: ../../enterprise/include/functions_networkmap_enterprise.php:382 +#: ../../enterprise/include/functions_networkmap_enterprise.php:402 +#: ../../enterprise/meta/advanced/policymanager.queue.php:71 +#: ../../enterprise/godmode/policies/policy_queue.php:288 +#: ../../extensions/agents_alerts.php:78 +#: ../../extensions/agents_modules.php:86 +msgid "Refresh" msgstr "" -#: ../../general/logon_ok.php:106 -#: ../../mobile/operation/agents/tactical.php:61 -#: ../../mobile/operation/agents/tactical.php:62 -#: ../../operation/agentes/tactical.php:116 -#: ../../operation/agentes/tactical.php:119 -#: ../../enterprise/dashboard/widgets/tactical.php:33 -#: ../../enterprise/dashboard/widgets/tactical.php:96 -#: ../../enterprise/dashboard/widgets/tactical.php:97 -msgid "Monitor checks" +#: ../../operation/visual_console/public_console.php:142 +#: ../../operation/visual_console/render_view.php:205 +msgid "Until refresh" msgstr "" -#: ../../general/logon_ok.php:111 -#: ../../mobile/operation/agents/tactical.php:64 -#: ../../operation/agentes/tactical.php:124 -#: ../../enterprise/dashboard/widgets/tactical.php:99 -msgid "Monitors critical" +#: ../../operation/visual_console/render_view.php:83 +#: ../../godmode/reporting/visual_console_builder.php:413 +msgid "Visual consoles list" msgstr "" -#: ../../general/logon_ok.php:116 -#: ../../mobile/operation/agents/tactical.php:66 -#: ../../operation/agentes/tactical.php:129 -#: ../../enterprise/dashboard/widgets/tactical.php:101 -msgid "Monitors warning" +#: ../../operation/visual_console/render_view.php:91 +#: ../../enterprise/meta/screens/screens.visualmap.php:157 +#: ../../godmode/reporting/visual_console_builder.php:416 +msgid "Show link to public Visual Console" msgstr "" -#: ../../general/logon_ok.php:121 -#: ../../mobile/operation/agents/tactical.php:68 -#: ../../operation/agentes/tactical.php:134 -#: ../../enterprise/dashboard/widgets/tactical.php:103 -msgid "Monitors normal" +#: ../../operation/visual_console/render_view.php:95 +#: ../../operation/reporting/graph_viewer.php:114 +#: ../../operation/reporting/reporting_viewer.php:67 +#: ../../godmode/reporting/reporting_builder.php:1399 +#: ../../godmode/reporting/graph_builder.php:184 +#: ../../godmode/reporting/visual_console_builder.php:419 +msgid "Main data" msgstr "" -#: ../../general/logon_ok.php:126 -#: ../../mobile/operation/agents/tactical.php:70 -#: ../../operation/agentes/tactical.php:139 -#: ../../enterprise/dashboard/widgets/tactical.php:105 -msgid "Monitors unknown" +#: ../../operation/visual_console/render_view.php:97 +#: ../../enterprise/meta/screens/screens.visualmap.php:126 +#: ../../godmode/reporting/visual_console_builder.php:422 +msgid "List elements" msgstr "" -#: ../../general/logon_ok.php:131 -#: ../../mobile/operation/agents/tactical.php:74 -#: ../../operation/agentes/tactical.php:149 -#: ../../enterprise/dashboard/widgets/tactical.php:109 -msgid "Alerts defined" +#: ../../operation/visual_console/render_view.php:99 +#: ../../enterprise/include/functions_reporting.php:27 +#: ../../enterprise/include/functions_reporting.php:2747 +#: ../../enterprise/include/functions_reporting.php:2769 +#: ../../enterprise/meta/general/main_header.php:127 +#: ../../enterprise/meta/general/logon_ok.php:29 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:57 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:130 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:40 +#: ../../enterprise/meta/screens/screens.visualmap.php:129 +#: ../../enterprise/godmode/setup/setup_acl.php:93 +#: ../../godmode/reporting/visual_console_builder.php:425 +msgid "Wizard" msgstr "" -#: ../../general/logon_ok.php:136 -msgid "Users defined" +#: ../../operation/visual_console/render_view.php:101 +#: ../../godmode/reporting/visual_console_builder.php:428 +msgid "Builder" msgstr "" -#: ../../general/logon_ok.php:157 -msgid "This is your last activity in Pandora FMS console" +#: ../../operation/visual_console/render_view.php:104 +#: ../../operation/agentes/estado_agente.php:447 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../enterprise/meta/screens/screens.visualmap.php:135 +#: ../../enterprise/godmode/services/services.elements.php:70 +#: ../../enterprise/godmode/services/services.service.php:142 +#: ../../godmode/gis_maps/index.php:70 +#: ../../godmode/reporting/visual_console_builder.php:431 +#: ../../godmode/agentes/modificar_agente.php:51 +#: ../../godmode/agentes/modificar_agente.php:488 +#: ../../godmode/agentes/configurar_agente.php:240 +msgid "View" msgstr "" -#: ../../general/logon_ok.php:165 ../../mobile/include/user.class.php:95 -#: ../../extensions/users_connected.php:65 -#: ../../operation/search_users.php:213 -#: ../../operation/integria_incidents/incident.tracking.php:22 -#: ../../godmode/users/user_list.php:211 -#: ../../godmode/admin_access_logs.php:62 -#: ../../godmode/admin_access_logs.php:175 -#: ../../enterprise/extensions/cron/main.php:180 -#: ../../enterprise/godmode/servers/manage_export_form.php:95 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:191 -#: ../../enterprise/godmode/setup/setup_auth.php:67 -#: ../../enterprise/godmode/setup/setup_auth.php:83 -#: ../../enterprise/godmode/setup/setup_auth.php:99 -msgid "User" +#: ../../operation/visual_console/render_view.php:109 +#: ../../operation/gis_maps/render_view.php:91 +#: ../../operation/reporting/graph_viewer.php:127 +#: ../../operation/reporting/reporting_viewer.php:86 +#: ../../enterprise/dashboard/main_dashboard.php:277 +#: ../../extensions/agents_alerts.php:90 +#: ../../extensions/agents_modules.php:98 +msgid "Full screen mode" msgstr "" -#: ../../general/logon_ok.php:166 -#: ../../mobile/operation/agents/view_alerts.php:36 -#: ../../operation/incidents/incident.php:272 -#: ../../operation/incidents/incident.php:320 -#: ../../operation/extensions.php:48 ../../operation/search_alerts.php:221 -#: ../../operation/events/events_list.php:400 -#: ../../operation/agentes/alerts_status.php:273 -#: ../../operation/agentes/alerts_status.php:301 -#: ../../operation/agentes/alerts_status.php:334 -#: ../../operation/agentes/alerts_status.php:360 -#: ../../operation/integria_incidents/incident.list.php:103 -#: ../../operation/snmpconsole/snmp_view.php:407 -#: ../../operation/snmpconsole/snmp_view.php:569 -#: ../../godmode/massive/massive_delete_action_alerts.php:202 -#: ../../godmode/massive/massive_enable_disable_alerts.php:156 -#: ../../godmode/massive/massive_add_action_alerts.php:195 -#: ../../godmode/massive/massive_standby_alerts.php:158 -#: ../../godmode/modules/manage_network_components.php:351 -#: ../../godmode/modules/manage_network_templates.php:173 -#: ../../godmode/modules/manage_nc_groups.php:147 -#: ../../godmode/servers/manage_recontask.php:217 -#: ../../godmode/users/configure_user.php:448 -#: ../../godmode/agentes/module_manager.php:349 -#: ../../godmode/agentes/agent_template.php:162 -#: ../../godmode/snmpconsole/snmp_filters.php:128 -#: ../../godmode/snmpconsole/snmp_alert.php:305 -#: ../../godmode/admin_access_logs.php:60 -#: ../../godmode/admin_access_logs.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:641 -#: ../../godmode/reporting/reporting_builder.item_editor.php:734 -#: ../../godmode/reporting/visual_console_builder.elements.php:73 -#: ../../enterprise/operation/agentes/policy_view.php:198 -#: ../../enterprise/operation/metaconsole/eventview.php:584 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:140 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:444 -#: ../../enterprise/godmode/alerts/alert_events.php:511 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/policies/policy_modules.php:543 -#: ../../enterprise/include/functions_policies.php:59 -#: ../../include/functions_ui_renders.php:97 -msgid "Action" +#: ../../operation/visual_console/render_view.php:114 +#: ../../operation/gis_maps/render_view.php:95 +#: ../../operation/reporting/graph_viewer.php:132 +#: ../../operation/reporting/reporting_viewer.php:91 +#: ../../operation/events/events.php:380 +#: ../../enterprise/dashboard/main_dashboard.php:282 +#: ../../extensions/agents_alerts.php:95 +#: ../../extensions/agents_modules.php:103 +msgid "Back to normal mode" msgstr "" -#: ../../general/logon_ok.php:167 ../../extensions/users_connected.php:67 -#: ../../extensions/insert_data.php:162 +#: ../../operation/visual_console/render_view.php:129 +#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:417 ../../operation/menu.php:105 +#: ../../enterprise/meta/screens/screens.visualmap.php:178 +#: ../../enterprise/meta/screens/screens.visualmap.php:180 +#: ../../godmode/reporting/visual_console_builder.php:443 +#: ../../extensions/resource_exportation.php:360 +msgid "Visual console" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:106 +#: ../../operation/netflow/nf_live_view.php:115 +#: ../../operation/netflow/nf_live_view.php:119 +msgid "Netflow live view" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:109 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:114 +#: ../../operation/agentes/ver_agente.php:702 +#: ../../enterprise/meta/general/logon_ok.php:15 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:35 +#: ../../enterprise/meta/monitoring/group_view.php:30 +#: ../../enterprise/meta/monitoring/tactical.php:30 +#: ../../enterprise/meta/agentsearch.php:26 +#: ../../enterprise/meta/event/event_view.php:191 +#: ../../enterprise/meta/advanced/synchronizing.php:31 +#: ../../enterprise/meta/advanced/policymanager.php:33 +#: ../../enterprise/meta/advanced/propagation.php:31 +#: ../../enterprise/meta/screens/screens.main.php:30 +#: ../../enterprise/meta/index.php:276 +#: ../../godmode/netflow/nf_item_list.php:57 +#: ../../godmode/netflow/nf_edit.php:40 +#: ../../godmode/netflow/nf_edit_form.php:62 +#: ../../godmode/reporting/reporting_builder.php:236 +#: ../../godmode/reporting/reporting_builder.php:1350 +msgid "Main" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:131 +#: ../../operation/events/events_list.php:699 +#: ../../enterprise/meta/event/event_view.php:1436 +msgid "Error creating filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:134 +msgid "Filter created successfully" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:149 +msgid "Filter updated successfully" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:150 +#: ../../operation/events/events_list.php:772 +#: ../../enterprise/meta/event/event_view.php:1510 +msgid "Error updating filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:173 +#: ../../operation/reporting/graph_viewer.php:151 #: ../../operation/integria_incidents/incident.tracking.php:23 -#: ../../operation/reporting/reporting_viewer.php:107 -#: ../../operation/reporting/reporting_viewer.php:112 -#: ../../operation/reporting/graph_viewer.php:130 -#: ../../godmode/admin_access_logs.php:177 -#: ../../godmode/reporting/reporting_builder.preview.php:97 -#: ../../godmode/reporting/reporting_builder.preview.php:102 -#: ../../godmode/reporting/graph_builder.preview.php:155 +#: ../../general/logon_ok.php:97 +#: ../../enterprise/operation/agentes/agent_inventory.php:61 +#: ../../enterprise/operation/inventory/inventory.php:133 +#: ../../enterprise/include/functions_inventory.php:385 +#: ../../enterprise/include/functions_reporting_csv.php:243 +#: ../../enterprise/include/functions_reporting_csv.php:1231 +#: ../../enterprise/include/functions_reporting_pdf.php:1869 +#: ../../enterprise/include/functions_log.php:290 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1259 #: ../../enterprise/extensions/backup/main.php:60 -#: ../../enterprise/operation/agentes/agent_inventory.php:67 -#: ../../enterprise/operation/inventory/inventory.php:153 -#: ../../enterprise/include/functions_reporting_csv.php:1102 -#: ../../enterprise/include/functions_reporting_pdf.php:1477 -#: ../../include/functions_reporting.php:2876 +#: ../../include/functions_reporting.php:4133 +#: ../../mobile/operation/tactical.php:191 +#: ../../godmode/reporting/reporting_builder.item_editor.php:810 +#: ../../godmode/admin_access_logs.php:189 +#: ../../godmode/alerts/configure_alert_special_days.php:60 +#: ../../godmode/alerts/alert_special_days.php:151 +#: ../../extensions/users_connected.php:79 +#: ../../extensions/insert_data.php:169 msgid "Date" msgstr "" -#: ../../general/logon_ok.php:168 ../../godmode/admin_access_logs.php:178 -msgid "Source IP" +#: ../../operation/netflow/nf_live_view.php:183 +#: ../../operation/servers/recon_view.php:87 +#: ../../operation/agentes/estado_generalagente.php:152 +#: ../../operation/agentes/status_monitor.php:794 +#: ../../operation/agentes/estado_agente.php:388 +#: ../../operation/search_agents.php:43 ../../operation/search_modules.php:50 +#: ../../enterprise/include/functions_reporting_pdf.php:3659 +#: ../../enterprise/include/functions_reporting_pdf.php:3798 +#: ../../enterprise/meta/agentsearch.php:90 +#: ../../enterprise/meta/include/functions_wizard_meta.php:360 +#: ../../enterprise/meta/include/functions_wizard_meta.php:475 +#: ../../enterprise/meta/include/functions_wizard_meta.php:624 +#: ../../enterprise/meta/include/functions_wizard_meta.php:884 +#: ../../enterprise/meta/include/functions_wizard_meta.php:960 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1061 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1098 +#: ../../enterprise/dashboard/widgets/events_list.php:35 +#: ../../enterprise/godmode/modules/configure_local_component.php:166 +#: ../../enterprise/godmode/servers/manage_export.php:129 +#: ../../enterprise/godmode/servers/manage_export_form.php:78 +#: ../../enterprise/godmode/agentes/inventory_manager.php:170 +#: ../../enterprise/godmode/agentes/inventory_manager.php:224 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:190 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:246 +#: ../../include/functions_reporting.php:5862 +#: ../../include/functions_reporting.php:6010 +#: ../../include/functions_treeview.php:259 +#: ../../mobile/operation/modules.php:434 +#: ../../mobile/operation/modules.php:437 +#: ../../mobile/operation/modules.php:438 +#: ../../mobile/operation/modules.php:593 ../../mobile/operation/agents.php:76 +#: ../../mobile/operation/agents.php:262 +#: ../../godmode/modules/manage_network_components_form_common.php:102 +#: ../../godmode/servers/manage_recontask_form.php:175 +#: ../../godmode/servers/manage_recontask.php:227 +#: ../../godmode/agentes/module_manager_editor_common.php:302 +#: ../../godmode/agentes/module_manager.php:475 +#: ../../godmode/agentes/agent_manager.php:206 +#: ../../godmode/massive/massive_edit_agents.php:251 +#: ../../godmode/massive/massive_edit_modules.php:352 +msgid "Interval" msgstr "" -#: ../../general/logon_ok.php:169 ../../operation/events/events_list.php:706 -#: ../../operation/users/user_edit.php:162 -#: ../../godmode/modules/manage_network_components_form_wmi.php:201 -#: ../../godmode/servers/manage_recontask_form.php:251 -#: ../../godmode/users/configure_user.php:376 -#: ../../godmode/admin_access_logs.php:179 -#: ../../enterprise/operation/metaconsole/eventview.php:871 -msgid "Comments" +#: ../../operation/netflow/nf_live_view.php:186 +#: ../../operation/integria_incidents/incident.list.php:97 +#: ../../operation/integria_incidents/incident.incident.php:104 +#: ../../include/functions_netflow.php:923 +#: ../../include/functions_netflow.php:932 +#: ../../include/functions_netflow.php:949 +#: ../../include/functions_netflow.php:957 +#: ../../include/functions_netflow.php:981 +#: ../../godmode/reporting/reporting_builder.item_editor.php:516 +msgid "Resolution" msgstr "" -#: ../../general/footer.php:29 ../../mobile/include/functions_web.php:81 -#, php-format -msgid "Pandora FMS %s - Build %s" +#: ../../operation/netflow/nf_live_view.php:186 +msgid "The interval will be divided in chunks the length of the resolution." msgstr "" -#: ../../general/footer.php:31 -msgid "Page generated at" +#: ../../operation/netflow/nf_live_view.php:192 +#: ../../operation/agentes/ver_agente.php:551 +#: ../../operation/agentes/networkmap_list.php:66 +#: ../../operation/agentes/networkmap_list.php:110 +#: ../../operation/agentes/status_monitor.php:777 +#: ../../operation/agentes/estado_monitores.php:276 +#: ../../operation/snmpconsole/snmp_view.php:353 +#: ../../operation/events/sound_events.php:76 +#: ../../operation/events/events.php:78 ../../operation/search_modules.php:49 +#: ../../enterprise/operation/agentes/ver_agente.php:30 +#: ../../enterprise/operation/agentes/policy_view.php:306 +#: ../../enterprise/include/functions_services.php:818 +#: ../../enterprise/include/functions_reporting_pdf.php:2537 +#: ../../enterprise/include/functions_reporting_pdf.php:3654 +#: ../../enterprise/include/functions_reporting_pdf.php:3793 +#: ../../enterprise/meta/event/event_view.php:981 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:94 +#: ../../enterprise/godmode/modules/configure_local_component.php:148 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:995 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:87 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/policies/policy_modules.php:631 +#: ../../enterprise/godmode/services/services.elements.php:221 +#: ../../include/functions_events.php:802 +#: ../../include/functions_events.php:2095 +#: ../../include/functions_reporting.php:2224 +#: ../../include/functions_reporting.php:2469 +#: ../../include/functions_reporting.php:2575 +#: ../../include/functions_reporting.php:5857 +#: ../../include/functions_reporting.php:6005 +#: ../../include/functions_visual_map_editor.php:200 +#: ../../include/functions_snmp_browser.php:313 +#: ../../mobile/operation/events.php:308 ../../mobile/operation/events.php:309 +#: ../../mobile/operation/events.php:424 ../../mobile/operation/events.php:545 +#: ../../mobile/operation/events.php:546 +#: ../../godmode/setup/gis_step_2.php:170 +#: ../../godmode/modules/manage_network_templates_form.php:197 +#: ../../godmode/modules/manage_network_components.php:485 +#: ../../godmode/modules/manage_network_components_form_common.php:67 +#: ../../godmode/servers/servers.build_table.php:56 +#: ../../godmode/servers/plugin.php:435 +#: ../../godmode/reporting/reporting_builder.list_items.php:156 +#: ../../godmode/reporting/reporting_builder.list_items.php:243 +#: ../../godmode/reporting/visual_console_builder.wizard.php:84 +#: ../../godmode/reporting/visual_console_builder.wizard.php:132 +#: ../../godmode/reporting/reporting_builder.item_editor.php:459 +#: ../../godmode/agentes/agent_template.php:193 +#: ../../godmode/agentes/module_manager_editor_common.php:151 +#: ../../godmode/agentes/planned_downtime.editor.php:312 +#: ../../godmode/agentes/planned_downtime.list.php:195 +#: ../../godmode/agentes/module_manager.php:472 +#: ../../godmode/events/event_responses.editor.php:93 +#: ../../godmode/alerts/alert_templates.php:36 +#: ../../godmode/alerts/alert_templates.php:233 +#: ../../godmode/alerts/alert_templates.php:273 +msgid "Type" msgstr "" -#: ../../general/login_page.php:38 -msgid "Login failed" +#: ../../operation/netflow/nf_live_view.php:195 +#: ../../godmode/netflow/nf_item_list.php:148 +#: ../../godmode/reporting/reporting_builder.item_editor.php:953 +msgid "Max. values" msgstr "" -#: ../../general/login_page.php:62 -msgid "Build" +#: ../../operation/netflow/nf_live_view.php:233 +msgid "Connection" msgstr "" -#: ../../general/login_page.php:67 ../../mobile/include/user.class.php:89 -msgid "Login" +#: ../../operation/netflow/nf_live_view.php:255 +#: ../../operation/extensions.php:47 ../../operation/gis_maps/index.php:33 +#: ../../operation/agentes/networkmap_list.php:109 +#: ../../operation/search_maps.php:31 ../../operation/search_users.php:41 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:163 +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:166 +#: ../../enterprise/operation/agentes/policy_view.php:131 +#: ../../enterprise/operation/agentes/policy_view.php:305 +#: ../../enterprise/operation/agentes/collection_view.php:59 +#: ../../enterprise/operation/services/services.list.php:82 +#: ../../enterprise/operation/services/services.service.php:97 +#: ../../enterprise/include/functions_services.php:819 +#: ../../enterprise/include/functions_reporting_pdf.php:2536 +#: ../../enterprise/include/functions_networkmap_enterprise.php:197 +#: ../../enterprise/include/functions_networkmap_enterprise.php:815 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:125 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:315 +#: ../../enterprise/meta/include/functions_wizard_meta.php:119 +#: ../../enterprise/meta/include/functions_wizard_meta.php:220 +#: ../../enterprise/meta/include/functions_wizard_meta.php:568 +#: ../../enterprise/meta/include/functions_wizard_meta.php:826 +#: ../../enterprise/meta/include/functions_wizard_meta.php:938 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1024 +#: ../../enterprise/dashboard/main_dashboard.php:493 +#: ../../enterprise/dashboard/main_dashboard.php:529 +#: ../../enterprise/mobile/include/enterprise.class.php:41 +#: ../../enterprise/godmode/setup/edit_skin.php:213 +#: ../../enterprise/godmode/setup/setup_skins.php:82 +#: ../../enterprise/godmode/modules/local_components.php:416 +#: ../../enterprise/godmode/modules/configure_local_component.php:123 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:70 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:150 +#: ../../enterprise/godmode/servers/manage_export.php:129 +#: ../../enterprise/godmode/servers/manage_export_form.php:65 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:105 +#: ../../enterprise/godmode/reporting/mysql_builder.php:41 +#: ../../enterprise/godmode/reporting/mysql_builder.php:138 +#: ../../enterprise/godmode/reporting/mysql_builder.php:139 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:151 +#: ../../enterprise/godmode/agentes/collection_manager.php:86 +#: ../../enterprise/godmode/agentes/collection_manager.php:123 +#: ../../enterprise/godmode/agentes/inventory_manager.php:221 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:244 +#: ../../enterprise/godmode/policies/policy_modules.php:630 +#: ../../enterprise/godmode/policies/configure_policy.php:58 +#: ../../enterprise/godmode/policies/policy_agents.php:341 +#: ../../enterprise/godmode/policies/policy_collections.php:119 +#: ../../enterprise/godmode/policies/policy_collections.php:187 +#: ../../enterprise/godmode/policies/policies.php:220 +#: ../../enterprise/godmode/services/services.service.php:181 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:117 +#: ../../enterprise/godmode/alerts/alert_events_list.php:370 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:397 +#: ../../enterprise/godmode/alerts/alert_events.php:485 +#: ../../include/functions_events.php:1843 +#: ../../include/functions_events.php:1888 +#: ../../include/functions_reporting.php:2468 +#: ../../include/functions_reporting.php:2574 +#: ../../include/functions_reporting.php:5856 +#: ../../include/functions_reporting.php:6004 +#: ../../include/functions_filemanager.php:495 +#: ../../godmode/setup/os.list.php:32 ../../godmode/setup/os.builder.php:34 +#: ../../godmode/modules/manage_network_templates.php:188 +#: ../../godmode/modules/manage_nc_groups_form.php:52 +#: ../../godmode/modules/manage_network_templates_form.php:144 +#: ../../godmode/modules/manage_network_components_form_common.php:52 +#: ../../godmode/modules/manage_nc_groups.php:193 +#: ../../godmode/modules/module_list.php:59 +#: ../../godmode/netflow/nf_edit.php:116 +#: ../../godmode/netflow/nf_edit_form.php:176 +#: ../../godmode/servers/servers.build_table.php:54 +#: ../../godmode/servers/modificar_server.php:44 +#: ../../godmode/servers/plugin.php:107 ../../godmode/servers/plugin.php:434 +#: ../../godmode/servers/manage_recontask.php:227 +#: ../../godmode/servers/recon_script.php:85 +#: ../../godmode/servers/recon_script.php:181 +#: ../../godmode/users/user_list.php:191 +#: ../../godmode/reporting/graph_builder.main.php:97 +#: ../../godmode/reporting/reporting_builder.main.php:55 +#: ../../godmode/reporting/reporting_builder.main.php:57 +#: ../../godmode/agentes/configure_field.php:44 +#: ../../godmode/agentes/module_manager_editor_common.php:130 +#: ../../godmode/agentes/planned_downtime.editor.php:305 +#: ../../godmode/agentes/planned_downtime.editor.php:522 +#: ../../godmode/agentes/module_manager.php:460 +#: ../../godmode/groups/modu_group_list.php:181 +#: ../../godmode/groups/configure_modu_group.php:63 +#: ../../godmode/groups/group_list.php:253 +#: ../../godmode/groups/configure_group.php:99 +#: ../../godmode/category/edit_category.php:118 +#: ../../godmode/events/event_responses.editor.php:57 +#: ../../godmode/events/event_responses.list.php:59 +#: ../../godmode/events/event_filter.php:96 ../../godmode/tag/tag.php:121 +#: ../../godmode/tag/edit_tag.php:148 +#: ../../godmode/alerts/alert_templates.php:270 +#: ../../godmode/alerts/configure_alert_command.php:72 +#: ../../godmode/alerts/configure_alert_template.php:616 +#: ../../godmode/alerts/configure_alert_action.php:115 +#: ../../godmode/alerts/alert_commands.php:256 +#: ../../godmode/alerts/alert_actions.php:332 +msgid "Name" msgstr "" -#: ../../general/login_page.php:71 ../../mobile/include/user.class.php:99 -#: ../../godmode/massive/massive_edit_modules.php:348 -#: ../../godmode/modules/manage_network_components_form_plugin.php:41 -#: ../../godmode/modules/manage_network_components_form_wmi.php:52 -#: ../../godmode/modules/manage_network_components_form_wmi.php:183 -#: ../../godmode/users/configure_user.php:345 -#: ../../godmode/agentes/module_manager_editor_wmi.php:52 -#: ../../godmode/agentes/module_manager_editor_plugin.php:61 -#: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/godmode/agentes/inventory_manager.php:171 -#: ../../enterprise/godmode/setup/setup_auth.php:69 -#: ../../enterprise/godmode/setup/setup_auth.php:85 -#: ../../enterprise/godmode/setup/setup_auth.php:101 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:202 -msgid "Password" -msgstr "" - -#: ../../general/login_page.php:80 ../../mobile/include/user.class.php:120 -msgid "Your IP" -msgstr "" - -#: ../../general/ui/agents_list.php:69 -#: ../../mobile/operation/events/events.php:52 -#: ../../mobile/operation/agents/monitor_status.php:46 -#: ../../mobile/operation/agents/view_agents.php:87 -#: ../../extensions/agents_modules.php:81 ../../operation/search_maps.php:65 -#: ../../operation/incidents/incident.php:268 -#: ../../operation/incidents/incident_detail.php:279 -#: ../../operation/events/events_list.php:172 -#: ../../operation/events/events_list.php:677 -#: ../../operation/events/sound_events.php:74 -#: ../../operation/users/user_edit.php:220 -#: ../../operation/agentes/group_view.php:87 -#: ../../operation/agentes/ver_agente.php:281 -#: ../../operation/agentes/ver_agente.php:564 -#: ../../operation/agentes/estado_agente.php:149 -#: ../../operation/agentes/estado_agente.php:426 -#: ../../operation/agentes/alerts_status.functions.php:45 -#: ../../operation/agentes/status_monitor.php:62 -#: ../../operation/agentes/networkmap.php:276 -#: ../../operation/agentes/exportdata.php:308 -#: ../../operation/agentes/estado_generalagente.php:136 -#: ../../operation/integria_incidents/incident.incident.php:93 +#: ../../operation/netflow/nf_live_view.php:258 +#: ../../operation/users/user_edit.php:359 +#: ../../operation/gis_maps/ajax.php:187 ../../operation/gis_maps/index.php:34 +#: ../../operation/agentes/ver_agente.php:407 +#: ../../operation/agentes/networkmap_list.php:57 +#: ../../operation/agentes/networkmap_list.php:111 +#: ../../operation/agentes/group_view.php:91 +#: ../../operation/agentes/status_monitor.php:316 +#: ../../operation/agentes/status_monitor.php:325 +#: ../../operation/agentes/estado_agente.php:155 +#: ../../operation/agentes/estado_agente.php:391 +#: ../../operation/agentes/alerts_status.functions.php:42 +#: ../../operation/agentes/exportdata.php:187 #: ../../operation/integria_incidents/incident.list.php:61 #: ../../operation/integria_incidents/incident.list.php:96 -#: ../../operation/integria_incidents/incident_detail.php:269 -#: ../../operation/gis_maps/ajax.php:180 ../../operation/gis_maps/index.php:34 -#: ../../operation/visual_console/index.php:35 -#: ../../operation/search_agents.php:225 -#: ../../godmode/massive/massive_add_profiles.php:88 -#: ../../godmode/massive/massive_delete_action_alerts.php:159 -#: ../../godmode/massive/massive_copy_modules.php:72 -#: ../../godmode/massive/massive_copy_modules.php:161 -#: ../../godmode/massive/massive_edit_agents.php:195 -#: ../../godmode/massive/massive_edit_agents.php:245 -#: ../../godmode/massive/massive_enable_disable_alerts.php:129 -#: ../../godmode/massive/massive_delete_agents.php:100 -#: ../../godmode/massive/massive_add_action_alerts.php:150 -#: ../../godmode/massive/massive_delete_alerts.php:147 -#: ../../godmode/massive/massive_add_alerts.php:121 -#: ../../godmode/massive/massive_delete_profiles.php:104 -#: ../../godmode/massive/massive_delete_modules.php:126 -#: ../../godmode/massive/massive_standby_alerts.php:130 -#: ../../godmode/modules/manage_network_components.php:309 -#: ../../godmode/modules/manage_network_components.php:349 -#: ../../godmode/modules/manage_network_components_form_wmi.php:109 -#: ../../godmode/modules/manage_network_components_form_common.php:64 -#: ../../godmode/modules/manage_network_templates_form.php:185 -#: ../../godmode/modules/manage_network_templates_form.php:250 -#: ../../godmode/modules/manage_network_templates_form.php:275 -#: ../../godmode/servers/manage_recontask_form.php:209 -#: ../../godmode/servers/manage_recontask.php:217 -#: ../../godmode/users/configure_user.php:447 -#: ../../godmode/agentes/modificar_agente.php:110 -#: ../../godmode/agentes/modificar_agente.php:362 -#: ../../godmode/agentes/configurar_agente.php:278 -#: ../../godmode/agentes/agent_manager.php:197 -#: ../../godmode/agentes/planned_downtime.php:222 -#: ../../godmode/agentes/planned_downtime.php:321 -#: ../../godmode/agentes/planned_downtime.php:359 -#: ../../godmode/alerts/alert_actions.php:268 -#: ../../godmode/alerts/configure_alert_action.php:98 -#: ../../godmode/alerts/configure_alert_template.php:572 -#: ../../godmode/alerts/alert_templates.php:236 -#: ../../godmode/alerts/configure_alert_compound.php:584 -#: ../../godmode/alerts/alert_compounds.php:117 -#: ../../godmode/gis_maps/configure_gis_map.php:342 -#: ../../godmode/gis_maps/index.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:425 -#: ../../godmode/reporting/reporting_builder.main.php:56 -#: ../../godmode/reporting/graph_builder.main.php:107 -#: ../../godmode/reporting/graphs.php:83 -#: ../../godmode/reporting/map_builder.php:133 -#: ../../godmode/reporting/reporting_builder.php:76 -#: ../../godmode/setup/gis.php:63 ../../godmode/setup/gis_step_2.php:152 +#: ../../operation/integria_incidents/incident_detail.php:273 +#: ../../operation/integria_incidents/incident.incident.php:97 +#: ../../operation/search_agents.php:46 ../../operation/search_maps.php:32 +#: ../../operation/incidents/incident.php:302 +#: ../../operation/incidents/incident_detail.php:302 +#: ../../operation/events/sound_events.php:74 +#: ../../operation/events/events.build_table.php:74 +#: ../../operation/events/events_list.php:353 +#: ../../general/ui/agents_list.php:69 +#: ../../enterprise/operation/log/log_viewer.php:93 #: ../../enterprise/operation/agentes/ver_agente.php:50 #: ../../enterprise/operation/agentes/ver_agente.php:71 #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:168 #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:175 -#: ../../enterprise/operation/metaconsole/groupview.php:42 -#: ../../enterprise/operation/metaconsole/agentsearch.php:75 -#: ../../enterprise/operation/metaconsole/usermanager.php:162 -#: ../../enterprise/operation/metaconsole/eventview.php:309 -#: ../../enterprise/operation/metaconsole/eventview.php:839 -#: ../../enterprise/operation/services/services.php:80 -#: ../../enterprise/operation/inventory/inventory.php:101 -#: ../../enterprise/godmode/modules/configure_local_component.php:63 -#: ../../enterprise/godmode/modules/local_components.php:220 -#: ../../enterprise/godmode/modules/local_components.php:245 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:118 -#: ../../enterprise/godmode/agentes/collections.php:220 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 -#: ../../enterprise/godmode/alerts/alert_events_list.php:392 -#: ../../enterprise/godmode/alerts/alert_events_list.php:443 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:176 -#: ../../enterprise/godmode/alerts/alert_events.php:488 -#: ../../enterprise/godmode/services/manage_services.setup.php:47 -#: ../../enterprise/godmode/services/manage_services.main.php:53 -#: ../../enterprise/godmode/policies/policies.php:189 -#: ../../enterprise/godmode/policies/policies.php:207 -#: ../../enterprise/godmode/policies/policy_agents.php:323 -#: ../../enterprise/godmode/policies/configure_policy.php:59 +#: ../../enterprise/operation/inventory/inventory.php:68 +#: ../../enterprise/operation/services/services.list.php:84 +#: ../../enterprise/operation/services/services.service.php:99 +#: ../../enterprise/include/functions_alert_event.php:921 +#: ../../enterprise/include/functions_reporting_pdf.php:3612 +#: ../../enterprise/include/functions_reporting_pdf.php:3657 +#: ../../enterprise/include/functions_reporting_pdf.php:3747 +#: ../../enterprise/include/functions_reporting_pdf.php:3796 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:210 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:377 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:455 +#: ../../enterprise/meta/monitoring/group_view.php:61 +#: ../../enterprise/meta/agentsearch.php:91 +#: ../../enterprise/meta/event/event_view.php:432 +#: ../../enterprise/meta/event/event_view.php:1134 +#: ../../enterprise/meta/advanced/synchronizing.user.php:550 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:55 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:126 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:318 #: ../../enterprise/dashboard/widgets/single_graph.php:47 -#: ../../enterprise/include/functions_alert_event.php:930 -#: ../../include/functions_ui.php:1468 +#: ../../enterprise/dashboard/main_dashboard.php:495 +#: ../../enterprise/godmode/modules/local_components.php:361 +#: ../../enterprise/godmode/modules/local_components.php:418 +#: ../../enterprise/godmode/modules/configure_local_component.php:163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:107 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1103 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:156 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:220 +#: ../../enterprise/godmode/reporting/graph_template_list.php:133 +#: ../../enterprise/godmode/agentes/collections.php:220 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:149 +#: ../../enterprise/godmode/policies/configure_policy.php:61 +#: ../../enterprise/godmode/policies/policy_agents.php:328 +#: ../../enterprise/godmode/policies/policies.php:203 +#: ../../enterprise/godmode/policies/policies.php:221 +#: ../../enterprise/godmode/services/services.service.php:189 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:141 +#: ../../enterprise/godmode/alerts/alert_events_list.php:320 +#: ../../enterprise/godmode/alerts/alert_events_list.php:371 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:399 +#: ../../enterprise/godmode/alerts/alert_events.php:488 +#: ../../include/functions_events.php:2165 +#: ../../include/functions_reporting.php:5810 +#: ../../include/functions_reporting.php:5860 +#: ../../include/functions_reporting.php:5951 +#: ../../include/functions_reporting.php:6008 +#: ../../include/functions_networkmap.php:1061 +#: ../../include/functions_groups.php:689 +#: ../../mobile/operation/modules.php:115 +#: ../../mobile/operation/modules.php:119 +#: ../../mobile/operation/modules.php:183 +#: ../../mobile/operation/modules.php:184 +#: ../../mobile/operation/events.php:316 ../../mobile/operation/events.php:320 +#: ../../mobile/operation/events.php:444 ../../mobile/operation/events.php:527 +#: ../../mobile/operation/events.php:528 ../../mobile/operation/alerts.php:75 +#: ../../mobile/operation/alerts.php:79 ../../mobile/operation/alerts.php:164 +#: ../../mobile/operation/alerts.php:165 ../../mobile/operation/agents.php:74 +#: ../../mobile/operation/agents.php:113 ../../mobile/operation/agents.php:117 +#: ../../mobile/operation/agents.php:164 ../../mobile/operation/agents.php:165 +#: ../../mobile/operation/agents.php:261 +#: ../../godmode/setup/gis_step_2.php:152 ../../godmode/setup/gis.php:63 +#: ../../godmode/modules/manage_network_templates_form.php:200 +#: ../../godmode/modules/manage_network_templates_form.php:265 +#: ../../godmode/modules/manage_network_templates_form.php:290 +#: ../../godmode/modules/manage_network_components.php:414 +#: ../../godmode/modules/manage_network_components.php:487 +#: ../../godmode/modules/manage_network_components_form_common.php:99 +#: ../../godmode/modules/manage_network_components_form_wmi.php:108 +#: ../../godmode/netflow/nf_edit.php:117 +#: ../../godmode/netflow/nf_edit_form.php:180 +#: ../../godmode/servers/manage_recontask_form.php:202 +#: ../../godmode/servers/manage_recontask.php:227 +#: ../../godmode/users/configure_user.php:549 +#: ../../godmode/gis_maps/configure_gis_map.php:353 +#: ../../godmode/gis_maps/index.php:69 +#: ../../godmode/reporting/map_builder.php:144 +#: ../../godmode/reporting/reporting_builder.php:293 +#: ../../godmode/reporting/reporting_builder.php:375 +#: ../../godmode/reporting/graph_builder.main.php:110 +#: ../../godmode/reporting/graphs.php:146 +#: ../../godmode/reporting/reporting_builder.main.php:59 +#: ../../godmode/reporting/reporting_builder.item_editor.php:633 +#: ../../godmode/agentes/modificar_agente.php:139 +#: ../../godmode/agentes/modificar_agente.php:410 +#: ../../godmode/agentes/configurar_agente.php:318 +#: ../../godmode/agentes/planned_downtime.editor.php:307 +#: ../../godmode/agentes/planned_downtime.editor.php:523 +#: ../../godmode/agentes/planned_downtime.list.php:194 +#: ../../godmode/agentes/agent_manager.php:203 +#: ../../godmode/agentes/agent_incidents.php:80 +#: ../../godmode/massive/massive_add_action_alerts.php:131 +#: ../../godmode/massive/massive_add_alerts.php:121 +#: ../../godmode/massive/massive_delete_agents.php:107 +#: ../../godmode/massive/massive_delete_alerts.php:175 +#: ../../godmode/massive/massive_delete_profiles.php:103 +#: ../../godmode/massive/massive_copy_modules.php:72 +#: ../../godmode/massive/massive_copy_modules.php:161 +#: ../../godmode/massive/massive_standby_alerts.php:130 +#: ../../godmode/massive/massive_enable_disable_alerts.php:130 +#: ../../godmode/massive/massive_add_profiles.php:88 +#: ../../godmode/massive/massive_edit_agents.php:195 +#: ../../godmode/massive/massive_edit_agents.php:248 +#: ../../godmode/massive/massive_delete_action_alerts.php:132 +#: ../../godmode/events/event_responses.editor.php:61 +#: ../../godmode/events/event_responses.list.php:61 +#: ../../godmode/events/event_edit_filter.php:171 +#: ../../godmode/events/custom_events.php:77 +#: ../../godmode/events/custom_events.php:151 +#: ../../godmode/alerts/alert_templates.php:271 +#: ../../godmode/alerts/configure_alert_special_days.php:63 +#: ../../godmode/alerts/alert_special_days.php:154 +#: ../../godmode/alerts/configure_alert_template.php:619 +#: ../../godmode/alerts/configure_alert_action.php:118 +#: ../../godmode/alerts/alert_actions.php:333 +#: ../../extensions/agents_alerts.php:73 +#: ../../extensions/agents_modules.php:81 msgid "Group" msgstr "" -#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 -#: ../../operation/incidents/incident.php:225 -#: ../../operation/search_results.php:116 -#: ../../operation/agentes/estado_agente.php:179 -#: ../../operation/agentes/status_monitor.php:190 -#: ../../operation/integria_incidents/incident.list.php:76 -#: ../../godmode/modules/manage_network_components.php:312 -#: ../../godmode/modules/manage_network_components.php:316 -#: ../../godmode/agentes/modificar_agente.php:136 -#: ../../godmode/alerts/alert_templates.php:204 -#: ../../godmode/alerts/alert_templates.php:208 -#: ../../godmode/alerts/alert_compounds.php:135 -#: ../../enterprise/extensions/translate_string.php:226 -#: ../../enterprise/operation/agentes/agent_inventory.php:85 -#: ../../enterprise/operation/agentes/agent_inventory.php:90 -#: ../../enterprise/operation/metaconsole/agentsearch.php:50 -#: ../../enterprise/operation/inventory/inventory.php:116 -#: ../../enterprise/operation/inventory/inventory.php:146 -#: ../../enterprise/godmode/modules/local_components.php:224 -#: ../../enterprise/godmode/modules/local_components.php:231 -#: ../../enterprise/godmode/agentes/collection_manager.php:49 -#: ../../enterprise/godmode/agentes/collections.php:203 -#: ../../enterprise/godmode/alerts/alert_events_list.php:395 -#: ../../enterprise/godmode/alerts/alert_events_list.php:399 -#: ../../enterprise/godmode/policies/policy_agents.php:326 -#: ../../enterprise/godmode/policies/policy_agents.php:331 -#: ../../enterprise/godmode/policies/policy_collections.php:175 -msgid "Search" +#: ../../operation/netflow/nf_live_view.php:269 +#: ../../operation/agentes/networkmap_list.php:77 +#: ../../operation/agentes/graphs.php:99 +#: ../../operation/agentes/alerts_status.functions.php:65 +#: ../../operation/agentes/estado_monitores.php:626 +#: ../../operation/agentes/estado_monitores.php:631 +#: ../../operation/incidents/incident.php:205 +#: ../../enterprise/meta/advanced/policymanager.queue.php:242 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:65 +#: ../../enterprise/godmode/setup/setup_acl.php:123 +#: ../../enterprise/godmode/setup/setup_skins.php:88 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:148 +#: ../../enterprise/godmode/policies/policy_queue.php:378 +#: ../../enterprise/godmode/policies/policy_linking.php:71 +#: ../../enterprise/godmode/policies/policies.php:207 +#: ../../godmode/modules/manage_network_templates_form.php:240 +#: ../../godmode/modules/manage_network_templates_form.php:288 +#: ../../godmode/netflow/nf_item_list.php:146 +#: ../../godmode/reporting/reporting_builder.list_items.php:165 +#: ../../godmode/reporting/reporting_builder.item_editor.php:477 +#: ../../godmode/agentes/module_manager.php:41 +#: ../../godmode/admin_access_logs.php:45 +#: ../../godmode/admin_access_logs.php:72 +#: ../../godmode/snmpconsole/snmp_filters.php:95 +#: ../../godmode/snmpconsole/snmp_filters.php:129 +#: ../../godmode/tag/tag.php:128 +msgid "Filter" msgstr "" +#: ../../operation/netflow/nf_live_view.php:271 +#: ../../operation/agentes/group_view.php:97 +#: ../../operation/agentes/status_monitor.php:339 +#: ../../operation/agentes/estado_agente.php:175 +#: ../../operation/agentes/estado_monitores.php:618 +#: ../../operation/tree.php:593 +#: ../../enterprise/include/functions_services.php:698 +#: ../../enterprise/include/functions_reporting_pdf.php:804 +#: ../../enterprise/meta/monitoring/group_view.php:64 +#: ../../enterprise/meta/monitoring/tactical.php:78 +#: ../../include/functions_events.php:1378 +#: ../../include/functions_reporting.php:4339 ../../include/functions.php:715 +#: ../../include/functions.php:911 ../../include/functions.php:947 +#: ../../include/functions_graph.php:2169 +#: ../../include/functions_graph.php:2170 +#: ../../include/functions_groups.php:754 +#: ../../include/functions_groups.php:755 +#: ../../include/functions_groups.php:756 +#: ../../mobile/operation/modules.php:37 ../../mobile/operation/groups.php:103 +#: ../../mobile/operation/groups.php:104 ../../mobile/operation/agents.php:33 +#: ../../godmode/netflow/nf_edit_form.php:193 +msgid "Normal" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:272 +#: ../../enterprise/meta/general/main_header.php:149 +#: ../../enterprise/meta/general/main_header.php:163 +#: ../../enterprise/meta/general/logon_ok.php:39 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 +#: ../../enterprise/godmode/modules/configure_local_component.php:130 +#: ../../godmode/modules/manage_network_components_form_common.php:58 +#: ../../godmode/netflow/nf_edit_form.php:194 +#: ../../godmode/users/configure_user.php:475 +#: ../../godmode/alerts/configure_alert_template.php:640 +msgid "Advanced" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:278 +#: ../../operation/events/events_list.php:188 +#: ../../operation/events/events_list.php:248 +#: ../../operation/events/events_list.php:250 +#: ../../operation/events/events_list.php:433 +#: ../../enterprise/meta/event/event_view.php:541 +msgid "Load filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:284 +#: ../../operation/events/events_list.php:710 +#: ../../operation/events/events_list.php:779 +#: ../../enterprise/meta/event/event_view.php:546 +#: ../../enterprise/meta/event/event_view.php:1296 +#: ../../enterprise/meta/event/event_view.php:1448 +#: ../../enterprise/meta/event/event_view.php:1517 +msgid "none" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:297 +#: ../../godmode/netflow/nf_edit_form.php:196 +msgid "Dst Ip" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:297 +#: ../../godmode/netflow/nf_edit_form.php:196 +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:306 +#: ../../godmode/netflow/nf_edit_form.php:199 +msgid "Src Ip" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:306 +#: ../../godmode/netflow/nf_edit_form.php:199 +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:318 +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../godmode/netflow/nf_edit_form.php:202 +#: ../../godmode/netflow/nf_edit_form.php:212 +msgid "Dst Port" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:318 +#: ../../godmode/netflow/nf_edit_form.php:202 +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:327 +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../godmode/netflow/nf_edit_form.php:205 +#: ../../godmode/netflow/nf_edit_form.php:212 +msgid "Src Port" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:327 +#: ../../godmode/netflow/nf_edit_form.php:205 +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:340 +#: ../../godmode/netflow/nf_edit_form.php:211 +msgid "Aggregate by" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../operation/users/user_edit.php:308 +#: ../../operation/agentes/ver_agente.php:558 +#: ../../operation/agentes/ver_agente.php:601 +#: ../../operation/agentes/ver_agente.php:611 +#: ../../operation/integria_incidents/incident.list.php:42 +#: ../../operation/integria_incidents/incident.incident.php:25 +#: ../../operation/snmpconsole/snmp_view.php:354 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:547 +#: ../../operation/events/events_list.php:249 +#: ../../operation/events/events_list.php:548 +#: ../../enterprise/operation/agentes/ver_agente.php:36 +#: ../../enterprise/include/functions_networkmap_enterprise.php:161 +#: ../../enterprise/include/functions_networkmap_enterprise.php:163 +#: ../../enterprise/include/functions_networkmap_enterprise.php:183 +#: ../../enterprise/include/functions_networkmap_enterprise.php:465 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:79 +#: ../../enterprise/dashboard/dashboard_replicate.php:154 +#: ../../enterprise/godmode/setup/setup.php:272 +#: ../../enterprise/godmode/setup/setup.php:278 +#: ../../enterprise/godmode/setup/setup.php:286 +#: ../../enterprise/godmode/setup/setup.php:292 +#: ../../enterprise/godmode/modules/configure_local_component.php:232 +#: ../../enterprise/godmode/modules/configure_local_component.php:365 +#: ../../enterprise/godmode/modules/configure_local_component.php:371 +#: ../../enterprise/godmode/modules/configure_local_component.php:379 +#: ../../enterprise/godmode/modules/configure_local_component.php:385 +#: ../../enterprise/godmode/servers/manage_export_form.php:71 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:197 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:488 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:509 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:524 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:534 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:578 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:135 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:337 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:356 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:367 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:382 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:414 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1253 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1391 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1457 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:79 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:214 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:313 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:79 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:190 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:201 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:218 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:305 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:354 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:368 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:349 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:479 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:575 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:272 +#: ../../enterprise/godmode/policies/policy_agents.php:214 +#: ../../enterprise/godmode/policies/policy_agents.php:590 +#: ../../enterprise/godmode/policies/policy_alerts.php:395 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:102 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:124 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 +#: ../../enterprise/godmode/alerts/alert_events_list.php:543 +#: ../../enterprise/godmode/alerts/alert_events.php:522 +#: ../../include/functions_events.php:1563 +#: ../../include/functions_events.php:1570 ../../include/functions.php:751 +#: ../../include/functions_visual_map_editor.php:159 +#: ../../include/functions_visual_map_editor.php:304 +#: ../../include/functions_html.php:299 ../../include/functions_html.php:458 +#: ../../include/ajax/planned_downtime.ajax.php:58 +#: ../../mobile/operation/events.php:510 ../../godmode/setup/os.builder.php:39 +#: ../../godmode/setup/setup_general.php:131 +#: ../../godmode/setup/setup_visuals.php:250 +#: ../../godmode/modules/manage_nc_groups_form.php:57 +#: ../../godmode/modules/manage_network_components_form_plugin.php:24 +#: ../../godmode/modules/manage_network_components_form_common.php:162 +#: ../../godmode/modules/manage_network_components_form.php:390 +#: ../../godmode/modules/manage_network_components_form.php:396 +#: ../../godmode/modules/manage_network_components_form.php:404 +#: ../../godmode/modules/manage_network_components_form.php:410 +#: ../../godmode/netflow/nf_edit_form.php:212 +#: ../../godmode/servers/manage_recontask_form.php:183 +#: ../../godmode/users/configure_user.php:453 +#: ../../godmode/users/configure_user.php:606 +#: ../../godmode/users/configure_user.php:610 +#: ../../godmode/users/configure_user.php:615 +#: ../../godmode/gis_maps/configure_gis_map.php:420 +#: ../../godmode/reporting/visual_console_builder.wizard.php:116 +#: ../../godmode/reporting/visual_console_builder.wizard.php:170 +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +#: ../../godmode/reporting/visual_console_builder.wizard.php:215 +#: ../../godmode/reporting/visual_console_builder.wizard.php:361 +#: ../../godmode/reporting/visual_console_builder.wizard.php:365 +#: ../../godmode/reporting/visual_console_builder.wizard.php:376 +#: ../../godmode/reporting/graph_builder.graph_editor.php:118 +#: ../../godmode/reporting/graph_builder.graph_editor.php:195 +#: ../../godmode/reporting/graph_builder.graph_editor.php:209 +#: ../../godmode/reporting/reporting_builder.item_editor.php:798 +#: ../../godmode/reporting/reporting_builder.item_editor.php:834 +#: ../../godmode/reporting/reporting_builder.item_editor.php:846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:869 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1048 +#: ../../godmode/agentes/module_manager_editor_common.php:320 +#: ../../godmode/agentes/module_manager_editor_common.php:434 +#: ../../godmode/agentes/module_manager_editor_common.php:452 +#: ../../godmode/agentes/module_manager_editor_common.php:458 +#: ../../godmode/agentes/module_manager_editor_common.php:466 +#: ../../godmode/agentes/module_manager_editor_common.php:472 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/agentes/agent_manager.php:224 +#: ../../godmode/agentes/agent_manager.php:298 +#: ../../godmode/groups/configure_group.php:151 +#: ../../godmode/snmpconsole/snmp_alert.php:274 +#: ../../godmode/massive/massive_add_action_alerts.php:235 +#: ../../godmode/massive/massive_add_alerts.php:161 +#: ../../godmode/massive/massive_delete_alerts.php:205 +#: ../../godmode/massive/massive_delete_modules.php:289 +#: ../../godmode/massive/massive_delete_modules.php:356 +#: ../../godmode/massive/massive_delete_modules.php:395 +#: ../../godmode/massive/massive_delete_modules.php:396 +#: ../../godmode/massive/massive_delete_modules.php:397 +#: ../../godmode/massive/massive_delete_modules.php:398 +#: ../../godmode/massive/massive_delete_modules.php:456 +#: ../../godmode/massive/massive_edit_agents.php:265 +#: ../../godmode/massive/massive_edit_modules.php:259 +#: ../../godmode/massive/massive_edit_modules.php:402 +#: ../../godmode/massive/massive_edit_modules.php:418 +#: ../../godmode/massive/massive_edit_modules.php:449 +#: ../../godmode/massive/massive_edit_modules.php:490 +#: ../../godmode/massive/massive_edit_modules.php:535 +#: ../../godmode/massive/massive_edit_modules.php:536 +#: ../../godmode/massive/massive_edit_modules.php:537 +#: ../../godmode/massive/massive_edit_modules.php:538 +#: ../../godmode/massive/massive_edit_modules.php:624 +#: ../../godmode/events/event_edit_filter.php:336 +#: ../../godmode/events/custom_events.php:201 +#: ../../godmode/events/custom_events.php:212 +#: ../../godmode/alerts/alert_list.list.php:531 +#: ../../godmode/alerts/alert_list.builder.php:111 +#: ../../godmode/alerts/alert_list.builder.php:137 +#: ../../godmode/alerts/configure_alert_template.php:556 +#: ../../godmode/alerts/configure_alert_action.php:131 +#: ../../extensions/snmp_explorer.php:270 +#: ../../extensions/snmp_explorer.php:349 +msgid "None" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../include/functions_netflow.php:1338 +#: ../../godmode/netflow/nf_edit_form.php:212 +msgid "Protocol" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../godmode/netflow/nf_edit_form.php:212 +msgid "Src Ip Address" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../godmode/netflow/nf_edit_form.php:212 +msgid "Dst Ip Address" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:345 +#: ../../godmode/netflow/nf_edit_form.php:216 +msgid "Output format" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:346 +#: ../../include/functions_netflow.php:1318 +msgid "Bytes" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:346 +msgid "Bytes per second" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:346 +#: ../../godmode/netflow/nf_edit_form.php:217 +msgid "Kilobytes" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:346 +#: ../../godmode/netflow/nf_edit_form.php:217 +msgid "Megabytes" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:346 +#: ../../godmode/netflow/nf_edit_form.php:217 +msgid "Kilobytes per second" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:346 +#: ../../godmode/netflow/nf_edit_form.php:217 +msgid "Megabytes per second" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:360 +msgid "Draw" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:364 +msgid "Save as new filter" +msgstr "" + +#: ../../operation/netflow/nf_live_view.php:366 +msgid "Update current filter" +msgstr "" + +#: ../../operation/search_alerts.php:39 ../../operation/gis_maps/ajax.php:141 +#: ../../operation/gis_maps/ajax.php:159 +#: ../../operation/agentes/ver_agente.php:563 +#: ../../operation/agentes/ver_agente.php:909 +#: ../../operation/agentes/alerts_status.php:287 +#: ../../operation/agentes/alerts_status.php:332 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/status_monitor.php:771 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/estado_agente.php:381 +#: ../../operation/agentes/exportdata.php:87 +#: ../../operation/search_agents.php:37 +#: ../../operation/incidents/incident_detail.php:343 +#: ../../operation/snmpconsole/snmp_view.php:313 +#: ../../operation/search_modules.php:42 +#: ../../enterprise/operation/log/log_viewer.php:112 +#: ../../enterprise/operation/inventory/inventory.php:110 +#: ../../enterprise/include/functions_inventory.php:162 +#: ../../enterprise/include/functions_inventory.php:383 +#: ../../enterprise/include/functions_inventory.php:439 +#: ../../enterprise/include/functions_reporting_csv.php:179 +#: ../../enterprise/include/functions_reporting_csv.php:211 +#: ../../enterprise/include/functions_reporting_csv.php:243 +#: ../../enterprise/include/functions_reporting_csv.php:324 +#: ../../enterprise/include/functions_reporting_csv.php:413 +#: ../../enterprise/include/functions_reporting_csv.php:444 +#: ../../enterprise/include/functions_reporting_csv.php:475 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting_csv.php:537 +#: ../../enterprise/include/functions_reporting_csv.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:673 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../enterprise/include/functions_reporting_csv.php:783 +#: ../../enterprise/include/functions_reporting_csv.php:897 +#: ../../enterprise/include/functions_reporting_csv.php:1041 +#: ../../enterprise/include/functions_services.php:841 +#: ../../enterprise/include/functions_alert_event.php:918 +#: ../../enterprise/include/functions_reporting_pdf.php:874 +#: ../../enterprise/include/functions_reporting_pdf.php:996 +#: ../../enterprise/include/functions_reporting_pdf.php:1235 +#: ../../enterprise/include/functions_reporting_pdf.php:1516 +#: ../../enterprise/include/functions_reporting_pdf.php:2953 +#: ../../enterprise/include/functions_log.php:290 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:127 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:129 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:159 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:214 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:282 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:383 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:138 +#: ../../enterprise/meta/agentsearch.php:88 +#: ../../enterprise/dashboard/widgets/single_graph.php:49 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:76 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:199 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1148 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1555 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1683 +#: ../../enterprise/godmode/policies/policy_linking.php:122 +#: ../../enterprise/godmode/services/services.elements.php:219 +#: ../../enterprise/godmode/services/services.elements.php:227 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:132 +#: ../../enterprise/extensions/dict.php:81 +#: ../../include/functions_reporting.php:1645 +#: ../../include/functions_reporting.php:1807 +#: ../../include/functions_reporting.php:2153 +#: ../../include/functions_reporting.php:2364 +#: ../../include/functions_reporting.php:2576 +#: ../../include/functions_reporting.php:3232 +#: ../../include/functions_reporting.php:4433 +#: ../../include/functions_reporting.php:4650 +#: ../../include/functions_reporting.php:4951 +#: ../../include/functions_reporting.php:5236 +#: ../../include/functions_visual_map_editor.php:114 +#: ../../mobile/operation/modules.php:387 +#: ../../mobile/operation/events.php:103 ../../mobile/operation/events.php:685 +#: ../../mobile/operation/alerts.php:252 ../../mobile/operation/agents.php:68 +#: ../../mobile/operation/agents.php:255 +#: ../../godmode/gis_maps/configure_gis_map.php:426 +#: ../../godmode/reporting/reporting_builder.list_items.php:248 +#: ../../godmode/reporting/visual_console_builder.wizard.php:177 +#: ../../godmode/reporting/visual_console_builder.wizard.php:364 +#: ../../godmode/reporting/visual_console_builder.wizard.php:373 +#: ../../godmode/reporting/visual_console_builder.elements.php:58 +#: ../../godmode/reporting/graph_builder.graph_editor.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:652 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1093 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1219 +#: ../../godmode/agentes/module_manager_editor_prediction.php:105 +#: ../../godmode/massive/massive_copy_modules.php:77 +#: ../../godmode/massive/massive_copy_modules.php:166 +#: ../../godmode/massive/massive_standby_alerts.php:149 +#: ../../godmode/massive/massive_standby_alerts.php:166 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_enable_disable_alerts.php:165 +#: ../../godmode/alerts/alert_list.list.php:331 +#: ../../godmode/alerts/alert_list.builder.php:55 +#: ../../extensions/module_groups.php:41 +#: ../../extensions/agents_alerts.php:319 ../../extensions/insert_data.php:150 +msgid "Agent" +msgstr "" + +#. //////////////// +#. +#. $params = array(); +#. $params['show_helptip'] = false; +#. $params['input_name'] = 'agent'; +#. // Input id is only used in metaconsole events +#. if ($meta) { +#. $params['input_id'] = 'agent_autocomplete'; +#. } +#. $params['value'] = $agent_name; +#. +#. $params['javascript_is_function_select'] = true; +#. $params['selectbox_id'] = 'id_agent_module'; +#. $params['add_none_module'] = false; +#. $params['use_hidden_input_idagent'] = true; +#. $params['hidden_input_idagent_id'] = 'hidden-id_agent'; +#. if ($meta) { +#. $params['use_input_server'] = true; +#. $params['input_server_id'] = 'hidden-server_name'; +#. //It is a page in the new metaconsole. +#. $params['metaconsole_enabled'] = true; +#. } +#. +#. //ui_print_agent_autocomplete_input($params); +#. +#. // Print a specific control to metaconsole events +#. if ($meta) { +#. $params['input_id'] = 'agent_autocomplete_events'; +#. $params['javascript_page'] = 'include/ajax/agent'; //'enterprise/meta/include/ajax/events.ajax'; +#. $params['javascript_is_function_select'] = false; +#. //$params['use_hidden_input_idagent'] = false; +#. $params['use_input_server'] = false; +#. $params['input_name'] = 'agent_text'; +#. +#. ui_print_agent_autocomplete_input($params); +#. } +#. +#: ../../operation/search_alerts.php:42 +#: ../../operation/agentes/alerts_status.php:290 +#: ../../operation/agentes/alerts_status.php:310 +#: ../../operation/agentes/alerts_status.php:335 +#: ../../operation/agentes/alerts_status.php:353 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/exportdata.php:87 +#: ../../operation/search_modules.php:35 +#: ../../enterprise/operation/agentes/agent_inventory.php:55 +#: ../../enterprise/operation/agentes/policy_view.php:194 +#: ../../enterprise/operation/inventory/inventory.php:73 +#: ../../enterprise/include/functions_inventory.php:384 +#: ../../enterprise/include/functions_inventory.php:440 +#: ../../enterprise/include/functions_reporting_csv.php:179 +#: ../../enterprise/include/functions_reporting_csv.php:211 +#: ../../enterprise/include/functions_reporting_csv.php:243 +#: ../../enterprise/include/functions_reporting_csv.php:324 +#: ../../enterprise/include/functions_reporting_csv.php:413 +#: ../../enterprise/include/functions_reporting_csv.php:444 +#: ../../enterprise/include/functions_reporting_csv.php:475 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting_csv.php:537 +#: ../../enterprise/include/functions_reporting_csv.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:673 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../enterprise/include/functions_reporting_csv.php:783 +#: ../../enterprise/include/functions_reporting_csv.php:897 +#: ../../enterprise/include/functions_reporting_csv.php:1041 +#: ../../enterprise/include/functions_services.php:860 +#: ../../enterprise/include/functions_alert_event.php:919 +#: ../../enterprise/include/functions_reporting_pdf.php:875 +#: ../../enterprise/include/functions_reporting_pdf.php:1236 +#: ../../enterprise/include/functions_reporting_pdf.php:1517 +#: ../../enterprise/include/functions_reporting_pdf.php:2954 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:129 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:160 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:139 +#: ../../enterprise/dashboard/widgets/single_graph.php:52 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:149 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1159 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1556 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1684 +#: ../../enterprise/godmode/agentes/inventory_manager.php:145 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:155 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:20 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 +#: ../../enterprise/godmode/policies/policy_linking.php:123 +#: ../../enterprise/godmode/policies/policy_alerts.php:224 +#: ../../enterprise/godmode/services/services.elements.php:218 +#: ../../enterprise/godmode/services/services.elements.php:248 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:135 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:398 +#: ../../include/functions_reporting.php:1697 +#: ../../include/functions_reporting.php:1808 +#: ../../include/functions_reporting.php:3233 +#: ../../include/functions_reporting.php:4434 +#: ../../include/functions_reporting.php:4952 +#: ../../include/functions_reporting.php:5237 +#: ../../include/functions_visual_map_editor.php:148 +#: ../../mobile/operation/modules.php:393 +#: ../../mobile/operation/alerts.php:255 +#: ../../godmode/reporting/reporting_builder.list_items.php:253 +#: ../../godmode/reporting/visual_console_builder.wizard.php:176 +#: ../../godmode/reporting/visual_console_builder.wizard.php:375 +#: ../../godmode/reporting/visual_console_builder.elements.php:59 +#: ../../godmode/reporting/graph_builder.graph_editor.php:81 +#: ../../godmode/reporting/reporting_builder.item_editor.php:739 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1094 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1220 +#: ../../godmode/agentes/planned_downtime.editor.php:605 +#: ../../godmode/agentes/module_manager_editor_prediction.php:130 +#: ../../godmode/massive/massive_standby_alerts.php:149 +#: ../../godmode/massive/massive_standby_alerts.php:166 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_enable_disable_alerts.php:165 +#: ../../godmode/alerts/alert_list.list.php:357 +#: ../../godmode/alerts/alert_list.builder.php:67 +#: ../../extensions/module_groups.php:43 +#: ../../extensions/agents_alerts.php:260 ../../extensions/insert_data.php:161 +msgid "Module" +msgstr "" + +#: ../../operation/search_alerts.php:45 +#: ../../operation/servers/recon_view.php:96 +#: ../../operation/agentes/alerts_status.php:293 +#: ../../operation/agentes/alerts_status.php:313 +#: ../../operation/agentes/alerts_status.php:338 +#: ../../operation/agentes/alerts_status.php:356 +#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../include/functions_reporting.php:1698 +#: ../../include/functions_reporting.php:1809 +#: ../../include/functions_reporting.php:1948 +#: ../../include/functions_treeview.php:148 +#: ../../mobile/operation/alerts.php:257 +#: ../../godmode/alerts/alert_list.list.php:360 +#: ../../godmode/alerts/alert_list.builder.php:79 +#: ../../extensions/agents_alerts.php:319 +msgid "Template" +msgstr "" + +#: ../../operation/search_alerts.php:48 ../../operation/extensions.php:49 +#: ../../operation/agentes/alerts_status.php:296 +#: ../../operation/agentes/alerts_status.php:316 +#: ../../operation/agentes/alerts_status.php:341 +#: ../../operation/agentes/alerts_status.php:359 +#: ../../operation/integria_incidents/incident.list.php:103 +#: ../../operation/incidents/incident.php:306 +#: ../../operation/incidents/incident.php:356 +#: ../../operation/snmpconsole/snmp_view.php:420 +#: ../../operation/snmpconsole/snmp_view.php:619 +#: ../../operation/events/events.build_table.php:130 +#: ../../general/logon_ok.php:96 +#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../enterprise/include/functions_services.php:831 +#: ../../enterprise/meta/event/event_view.php:778 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:154 +#: ../../enterprise/godmode/servers/manage_export.php:129 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:155 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1560 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1686 +#: ../../enterprise/godmode/reporting/graph_template_list.php:137 +#: ../../enterprise/godmode/admin_access_logs.php:25 +#: ../../enterprise/godmode/policies/policy_modules.php:632 +#: ../../enterprise/godmode/alerts/alert_events_list.php:372 +#: ../../enterprise/godmode/alerts/alert_events.php:511 +#: ../../include/functions_ui_renders.php:97 +#: ../../mobile/operation/tactical.php:189 +#: ../../mobile/operation/tactical.php:190 +#: ../../godmode/modules/manage_network_templates.php:190 +#: ../../godmode/modules/manage_network_components.php:489 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/netflow/nf_item_list.php:150 +#: ../../godmode/netflow/nf_edit.php:118 +#: ../../godmode/servers/manage_recontask.php:227 +#: ../../godmode/users/configure_user.php:551 +#: ../../godmode/reporting/visual_console_builder.elements.php:63 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1223 +#: ../../godmode/agentes/agent_template.php:195 +#: ../../godmode/agentes/planned_downtime.editor.php:606 +#: ../../godmode/agentes/module_manager.php:483 +#: ../../godmode/admin_access_logs.php:61 +#: ../../godmode/admin_access_logs.php:188 +#: ../../godmode/snmpconsole/snmp_alert.php:474 +#: ../../godmode/snmpconsole/snmp_filters.php:130 +#: ../../godmode/massive/massive_operations.php:204 +#: ../../godmode/massive/massive_add_action_alerts.php:150 +#: ../../godmode/massive/massive_standby_alerts.php:158 +#: ../../godmode/massive/massive_enable_disable_alerts.php:157 +#: ../../godmode/massive/massive_delete_action_alerts.php:157 +#: ../../godmode/events/event_filter.php:101 +#: ../../extensions/agents_alerts.php:261 +msgid "Action" +msgstr "" + +#: ../../operation/servers/recon_view.php:28 +msgid "Recon View" +msgstr "" + +#: ../../operation/servers/recon_view.php:81 +#: ../../operation/servers/recon_view.php:113 +#: ../../operation/agentes/estado_generalagente.php:300 +#: ../../operation/agentes/estado_monitores.php:329 +#: ../../enterprise/godmode/agentes/inventory_manager.php:258 +#: ../../include/functions_ui.php:731 ../../include/functions_groups.php:715 +#: ../../include/functions_groups.php:848 +#: ../../extensions/update_manager/main.php:141 +msgid "Force" +msgstr "" + +#: ../../operation/servers/recon_view.php:84 +#: ../../godmode/servers/manage_recontask_form.php:149 +msgid "Task name" +msgstr "" + +#: ../../operation/servers/recon_view.php:90 +#: ../../godmode/servers/manage_recontask_form.php:169 +#: ../../godmode/servers/manage_recontask.php:227 +msgid "Network" +msgstr "" + +#: ../../operation/servers/recon_view.php:93 +#: ../../operation/agentes/alerts_status.php:298 +#: ../../operation/agentes/alerts_status.php:318 +#: ../../operation/agentes/alerts_status.php:343 +#: ../../operation/agentes/alerts_status.php:361 +#: ../../operation/agentes/status_monitor.php:802 +#: ../../operation/agentes/estado_agente.php:395 +#: ../../operation/agentes/alerts_status.functions.php:57 +#: ../../operation/agentes/estado_monitores.php:283 +#: ../../operation/integria_incidents/incident.list.php:58 +#: ../../operation/integria_incidents/incident.list.php:97 +#: ../../operation/integria_incidents/incident_detail.php:245 +#: ../../operation/integria_incidents/incident.incident.php:105 +#: ../../operation/search_agents.php:50 +#: ../../operation/messages/message_list.php:123 +#: ../../operation/incidents/incident.php:214 +#: ../../operation/incidents/incident.php:299 +#: ../../operation/incidents/incident_detail.php:270 +#: ../../operation/snmpconsole/snmp_view.php:342 +#: ../../operation/snmpconsole/snmp_view.php:388 +#: ../../operation/snmpconsole/snmp_view.php:607 +#: ../../operation/events/events.build_table.php:39 +#: ../../operation/search_modules.php:51 +#: ../../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/collection_view.php:62 +#: ../../enterprise/operation/services/services.list.php:88 +#: ../../enterprise/operation/services/services.service.php:103 +#: ../../enterprise/include/functions_reporting_csv.php:324 +#: ../../enterprise/include/functions_services.php:828 +#: ../../enterprise/include/functions_reporting_pdf.php:2534 +#: ../../enterprise/include/functions_reporting_pdf.php:2831 +#: ../../enterprise/include/functions_reporting_pdf.php:3616 +#: ../../enterprise/include/functions_reporting_pdf.php:3661 +#: ../../enterprise/include/functions_reporting_pdf.php:3751 +#: ../../enterprise/include/functions_reporting_pdf.php:3800 +#: ../../enterprise/meta/agentsearch.php:93 +#: ../../enterprise/meta/event/event_view.php:767 +#: ../../enterprise/meta/event/event_view.php:986 +#: ../../enterprise/meta/advanced/policymanager.queue.php:236 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 +#: ../../enterprise/dashboard/widgets/tactical.php:33 +#: ../../enterprise/dashboard/widgets/tactical.php:82 +#: ../../enterprise/godmode/agentes/collection_manager.php:89 +#: ../../enterprise/godmode/agentes/collection_manager.php:126 +#: ../../enterprise/godmode/admin_access_logs.php:22 +#: ../../enterprise/godmode/policies/policy_queue.php:372 +#: ../../enterprise/godmode/policies/policy_agents.php:343 +#: ../../enterprise/godmode/policies/policy_collections.php:122 +#: ../../enterprise/godmode/policies/policy_collections.php:190 +#: ../../enterprise/godmode/policies/policies.php:219 +#: ../../enterprise/godmode/alerts/alert_events_list.php:373 +#: ../../enterprise/extensions/backup/main.php:62 +#: ../../include/functions_events.php:2143 +#: ../../include/functions_reporting.php:1589 +#: ../../include/functions_reporting.php:2466 +#: ../../include/functions_reporting.php:2573 +#: ../../include/functions_reporting.php:3237 +#: ../../include/functions_reporting.php:5814 +#: ../../include/functions_reporting.php:5864 +#: ../../include/functions_reporting.php:5955 +#: ../../include/functions_reporting.php:6012 +#: ../../include/functions_snmp_browser.php:338 +#: ../../mobile/operation/modules.php:107 +#: ../../mobile/operation/modules.php:108 +#: ../../mobile/operation/modules.php:192 +#: ../../mobile/operation/modules.php:193 +#: ../../mobile/operation/modules.php:397 +#: ../../mobile/operation/modules.php:401 +#: ../../mobile/operation/modules.php:405 +#: ../../mobile/operation/modules.php:409 +#: ../../mobile/operation/modules.php:417 +#: ../../mobile/operation/modules.php:422 +#: ../../mobile/operation/modules.php:427 +#: ../../mobile/operation/modules.php:490 +#: ../../mobile/operation/modules.php:592 +#: ../../mobile/operation/events.php:125 ../../mobile/operation/events.php:300 +#: ../../mobile/operation/events.php:301 ../../mobile/operation/events.php:436 +#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:537 +#: ../../mobile/operation/events.php:686 ../../mobile/operation/alerts.php:67 +#: ../../mobile/operation/alerts.php:68 ../../mobile/operation/alerts.php:180 +#: ../../mobile/operation/alerts.php:181 ../../mobile/operation/alerts.php:261 +#: ../../mobile/operation/agents.php:80 ../../mobile/operation/agents.php:105 +#: ../../mobile/operation/agents.php:106 ../../mobile/operation/agents.php:173 +#: ../../mobile/operation/agents.php:174 ../../mobile/operation/agents.php:264 +#: ../../godmode/servers/servers.build_table.php:55 +#: ../../godmode/agentes/module_manager.php:479 +#: ../../godmode/agentes/agent_manager.php:251 +#: ../../godmode/agentes/agent_incidents.php:77 +#: ../../godmode/massive/massive_edit_agents.php:305 +#: ../../godmode/events/custom_events.php:80 +#: ../../godmode/events/custom_events.php:152 +#: ../../godmode/alerts/alert_list.list.php:367 +#: ../../extensions/net_tools.php:163 ../../extensions/agents_alerts.php:263 +msgid "Status" +msgstr "" + +#: ../../operation/servers/recon_view.php:99 +#: ../../operation/servers/recon_view.php:153 +#: ../../enterprise/meta/advanced/policymanager.queue.php:265 +#: ../../enterprise/godmode/policies/policy_queue.php:400 +msgid "Progress" +msgstr "" + +#: ../../operation/servers/recon_view.php:102 +#: ../../operation/integria_incidents/incident_detail.php:235 +#: ../../operation/incidents/incident_detail.php:255 +msgid "Updated at" +msgstr "" + +#: ../../operation/servers/recon_view.php:105 +#: ../../operation/agentes/networkmap_list.php:113 +#: ../../operation/agentes/estado_agente.php:452 +#: ../../operation/agentes/estado_monitores.php:389 +#: ../../operation/search_reports.php:52 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:300 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:482 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1294 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1392 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1531 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1407 +#: ../../enterprise/meta/screens/screens.visualmap.php:57 +#: ../../enterprise/godmode/reporting/mysql_builder.php:152 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:293 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:256 +#: ../../enterprise/godmode/agentes/collections.editor.php:138 +#: ../../enterprise/godmode/alerts/alert_events_list.php:582 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:465 +#: ../../enterprise/extensions/cron/main.php:246 +#: ../../godmode/servers/servers.build_table.php:115 +#: ../../godmode/servers/plugin.php:462 ../../godmode/users/user_list.php:307 +#: ../../godmode/users/profile_list.php:250 +#: ../../godmode/gis_maps/index.php:108 +#: ../../godmode/reporting/reporting_builder.php:455 +#: ../../godmode/reporting/reporting_builder.list_items.php:384 +#: ../../godmode/reporting/reporting_builder.item_editor.php:882 +#: ../../godmode/agentes/modificar_agente.php:475 +#: ../../godmode/agentes/fields_manager.php:115 +#: ../../godmode/groups/group_list.php:355 +#: ../../godmode/events/event_responses.list.php:72 +msgid "Edit" +msgstr "" + +#: ../../operation/servers/recon_view.php:128 +#: ../../operation/agentes/estado_generalagente.php:112 +#: ../../operation/agentes/estado_generalagente.php:131 +#: ../../operation/agentes/estado_generalagente.php:199 +#: ../../operation/agentes/estado_generalagente.php:275 +#: ../../operation/snmpconsole/snmp_view.php:467 +#: ../../operation/snmpconsole/snmp_view.php:478 +#: ../../operation/snmpconsole/snmp_view.php:486 +#: ../../enterprise/include/functions_services.php:578 +#: ../../enterprise/include/functions_services.php:959 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:848 +#: ../../include/functions_ui.php:1719 ../../include/functions_ui.php:1728 +#: ../../include/functions_events.php:1640 +#: ../../include/functions_events.php:1781 +#: ../../include/functions_events.php:1838 +#: ../../include/functions_events.php:1849 +#: ../../include/functions_events.php:1859 +#: ../../include/functions_events.php:1864 +#: ../../include/functions_events.php:1882 +#: ../../include/functions_events.php:1933 +#: ../../include/functions_events.php:1987 +#: ../../include/functions_events.php:1999 +#: ../../include/functions_events.php:2011 +#: ../../include/functions_events.php:2023 +#: ../../include/functions_events.php:2033 +#: ../../include/functions_events.php:2083 +#: ../../include/functions_events.php:2160 +#: ../../include/functions_events.php:2179 +#: ../../include/functions_reporting.php:2292 +#: ../../include/functions_reporting.php:2330 +#: ../../include/functions_db.php:134 ../../include/functions.php:788 +#: ../../include/functions.php:794 ../../include/functions.php:797 +#: ../../include/functions_treeview.php:159 +#: ../../mobile/operation/events.php:156 ../../mobile/operation/events.php:228 +#: ../../mobile/operation/events.php:253 ../../mobile/operation/agent.php:108 +#: ../../mobile/operation/agent.php:117 +#: ../../godmode/modules/manage_network_components.php:500 +#: ../../godmode/servers/manage_recontask.php:244 +msgid "N/A" +msgstr "" + +#: ../../operation/servers/recon_view.php:132 +msgid "Done" +msgstr "" + +#: ../../operation/servers/recon_view.php:135 +msgid "Pending" +msgstr "" + +#: ../../operation/servers/recon_view.php:140 +#: ../../godmode/servers/manage_recontask.php:249 +msgid "Network recon task" +msgstr "" + +#: ../../operation/servers/recon_view.php:169 +msgid "This server has no recon tasks assigned" +msgstr "" + +#: ../../operation/users/user_edit.php:82 +#: ../../godmode/users/configure_user.php:88 +msgid "User detail editor" +msgstr "" + +#: ../../operation/users/user_edit.php:138 +#: ../../operation/users/user_edit.php:145 +msgid "Password successfully updated" +msgstr "" + +#: ../../operation/users/user_edit.php:139 +#: ../../operation/users/user_edit.php:146 +#, php-format +msgid "Error updating passwords: %s" +msgstr "" + +#: ../../operation/users/user_edit.php:151 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" +msgstr "" + +#: ../../operation/users/user_edit.php:162 +#: ../../operation/users/user_edit.php:172 +#: ../../godmode/users/configure_user.php:277 +#: ../../godmode/users/configure_user.php:287 +#: ../../godmode/users/configure_user.php:315 +#: ../../godmode/users/configure_user.php:321 +#: ../../godmode/users/configure_user.php:330 +msgid "User info successfully updated" +msgstr "" + +#: ../../operation/users/user_edit.php:163 +#: ../../operation/users/user_edit.php:173 +msgid "Error updating user info" +msgstr "" + +#: ../../operation/users/user_edit.php:183 ../../operation/search_users.php:38 +#: ../../operation/snmpconsole/snmp_view.php:408 +#: ../../include/functions_reporting.php:1591 +#: ../../godmode/users/user_list.php:188 +#: ../../godmode/users/configure_user.php:384 +msgid "User ID" +msgstr "" + +#: ../../operation/users/user_edit.php:184 +#: ../../godmode/users/configure_user.php:388 +msgid "Full (display) name" +msgstr "" + +#: ../../operation/users/user_edit.php:212 +#: ../../godmode/users/user_list.php:269 +#: ../../godmode/users/configure_user.php:420 +msgid "E-mail" +msgstr "" + +#: ../../operation/users/user_edit.php:213 +#: ../../godmode/users/configure_user.php:424 +msgid "Phone number" +msgstr "" + +#: ../../operation/users/user_edit.php:228 +msgid "New Password" +msgstr "" + +#: ../../operation/users/user_edit.php:229 +#: ../../godmode/users/configure_user.php:400 +msgid "Password confirmation" +msgstr "" + +#: ../../operation/users/user_edit.php:243 +msgid "" +"You can not change your password from Pandora FMS under the current " +"authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:252 +#: ../../operation/snmpconsole/snmp_view.php:329 +#: ../../operation/events/events_list.php:412 +#: ../../enterprise/meta/event/event_view.php:492 +#: ../../enterprise/meta/advanced/metasetup.visual.php:112 +#: ../../enterprise/meta/include/functions_meta.php:303 +#: ../../include/functions_config.php:378 +#: ../../godmode/setup/setup_visuals.php:121 +#: ../../godmode/users/configure_user.php:461 +#: ../../godmode/events/event_edit_filter.php:215 +msgid "Block size for pagination" +msgstr "" + +#: ../../operation/users/user_edit.php:252 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "" + +#: ../../operation/users/user_edit.php:253 +#: ../../enterprise/meta/advanced/metasetup.visual.php:123 +#: ../../enterprise/meta/include/functions_meta.php:323 +#: ../../include/functions_config.php:388 +#: ../../godmode/setup/setup_visuals.php:168 +#: ../../godmode/users/configure_user.php:458 +msgid "Interactive charts" +msgstr "" + +#: ../../operation/users/user_edit.php:253 +#: ../../enterprise/meta/advanced/metasetup.visual.php:123 +#: ../../godmode/setup/setup_visuals.php:168 +#: ../../godmode/users/configure_user.php:458 +msgid "Whether to use Javascript or static PNG graphs" +msgstr "" + +#: ../../operation/users/user_edit.php:254 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 +#: ../../enterprise/extensions/translate_string.php:246 +#: ../../godmode/users/configure_user.php:392 +msgid "Language" +msgstr "" + +#: ../../operation/users/user_edit.php:268 +#: ../../operation/users/user_edit.php:269 +#: ../../operation/users/user_edit.php:272 +#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:447 +#: ../../operation/snmpconsole/snmp_view.php:335 +#: ../../operation/events/events_list.php:418 +#: ../../enterprise/operation/agentes/policy_view.php:253 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:78 +#: ../../enterprise/meta/event/event_view.php:501 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1508 +#: ../../enterprise/dashboard/main_dashboard.php:193 +#: ../../enterprise/dashboard/main_dashboard.php:479 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:74 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:78 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:199 +#: ../../enterprise/godmode/policies/policy_alerts.php:322 +#: ../../include/functions_ui.php:782 ../../godmode/setup/gis_step_2.php:366 +#: ../../godmode/setup/gis_step_2.php:445 +#: ../../godmode/users/configure_user.php:394 +#: ../../godmode/gis_maps/index.php:72 +#: ../../godmode/massive/massive_edit_agents.php:347 +#: ../../godmode/events/event_edit_filter.php:216 +#: ../../godmode/alerts/alert_list.list.php:460 +#: ../../extensions/agents_alerts.php:287 +msgid "Default" +msgstr "" + +#: ../../operation/users/user_edit.php:269 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:75 +#: ../../enterprise/meta/advanced/metasetup.password.php:71 +#: ../../enterprise/meta/advanced/metasetup.password.php:82 +#: ../../enterprise/meta/advanced/metasetup.password.php:88 +#: ../../enterprise/meta/advanced/metasetup.password.php:99 +#: ../../enterprise/meta/advanced/metasetup.password.php:115 +#: ../../enterprise/meta/advanced/metasetup.password.php:121 +#: ../../enterprise/meta/advanced/metasetup.visual.php:118 +#: ../../enterprise/meta/advanced/metasetup.visual.php:124 +#: ../../enterprise/meta/advanced/metasetup.visual.php:128 +#: ../../enterprise/meta/advanced/metasetup.performance.php:75 +#: ../../enterprise/meta/advanced/metasetup.performance.php:90 +#: ../../enterprise/meta/advanced/metasetup.setup.php:70 +#: ../../enterprise/meta/advanced/metasetup.setup.php:91 +#: ../../enterprise/meta/advanced/metasetup.setup.php:144 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1551 +#: ../../enterprise/godmode/setup/setup_auth.php:51 +#: ../../enterprise/godmode/setup/setup_history.php:43 +#: ../../enterprise/godmode/setup/setup.php:28 +#: ../../enterprise/godmode/setup/setup.php:35 +#: ../../enterprise/godmode/setup/setup.php:42 +#: ../../enterprise/godmode/setup/setup.php:52 +#: ../../enterprise/godmode/setup/setup.php:135 +#: ../../enterprise/godmode/setup/setup.php:186 +#: ../../enterprise/godmode/setup/setup.php:195 +#: ../../enterprise/godmode/setup/setup.php:200 +#: ../../enterprise/godmode/setup/setup.php:209 +#: ../../enterprise/godmode/setup/setup.php:222 +#: ../../enterprise/godmode/setup/setup.php:227 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:245 +#: ../../godmode/setup/performance.php:97 +#: ../../godmode/setup/performance.php:104 +#: ../../godmode/setup/setup_general.php:67 +#: ../../godmode/setup/setup_general.php:71 +#: ../../godmode/setup/setup_general.php:91 +#: ../../godmode/setup/setup_general.php:95 +#: ../../godmode/setup/setup_general.php:99 +#: ../../godmode/setup/setup_general.php:222 +#: ../../godmode/setup/setup_general.php:230 +#: ../../godmode/setup/setup_general.php:239 +#: ../../godmode/setup/setup_auth.php:43 ../../godmode/setup/setup_auth.php:69 +#: ../../godmode/setup/setup_netflow.php:58 +#: ../../godmode/setup/setup_visuals.php:127 +#: ../../godmode/setup/setup_visuals.php:169 +#: ../../godmode/setup/setup_visuals.php:216 +#: ../../godmode/servers/manage_recontask_form.php:207 +#: ../../godmode/servers/manage_recontask.php:268 +#: ../../godmode/users/configure_user.php:459 +#: ../../godmode/reporting/reporting_builder.php:424 +#: ../../godmode/reporting/visual_console_builder.wizard.php:160 +#: ../../godmode/reporting/visual_console_builder.wizard.php:183 +#: ../../godmode/agentes/agent_conf_gis.php:67 +#: ../../godmode/agentes/agent_manager.php:308 +#: ../../godmode/massive/massive_edit_agents.php:355 +#: ../../godmode/massive/massive_edit_agents.php:362 +#: ../../godmode/massive/massive_edit_modules.php:355 +#: ../../godmode/massive/massive_edit_modules.php:412 +#: ../../godmode/massive/massive_edit_modules.php:435 +msgid "Yes" +msgstr "" + +#: ../../operation/users/user_edit.php:269 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:76 +#: ../../enterprise/meta/advanced/metasetup.password.php:72 +#: ../../enterprise/meta/advanced/metasetup.password.php:83 +#: ../../enterprise/meta/advanced/metasetup.password.php:89 +#: ../../enterprise/meta/advanced/metasetup.password.php:100 +#: ../../enterprise/meta/advanced/metasetup.password.php:116 +#: ../../enterprise/meta/advanced/metasetup.password.php:122 +#: ../../enterprise/meta/advanced/metasetup.visual.php:119 +#: ../../enterprise/meta/advanced/metasetup.visual.php:125 +#: ../../enterprise/meta/advanced/metasetup.visual.php:129 +#: ../../enterprise/meta/advanced/metasetup.performance.php:76 +#: ../../enterprise/meta/advanced/metasetup.performance.php:91 +#: ../../enterprise/meta/advanced/metasetup.setup.php:71 +#: ../../enterprise/meta/advanced/metasetup.setup.php:92 +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1553 +#: ../../enterprise/godmode/setup/setup_auth.php:52 +#: ../../enterprise/godmode/setup/setup_history.php:44 +#: ../../enterprise/godmode/setup/setup.php:29 +#: ../../enterprise/godmode/setup/setup.php:36 +#: ../../enterprise/godmode/setup/setup.php:43 +#: ../../enterprise/godmode/setup/setup.php:53 +#: ../../enterprise/godmode/setup/setup.php:136 +#: ../../enterprise/godmode/setup/setup.php:187 +#: ../../enterprise/godmode/setup/setup.php:196 +#: ../../enterprise/godmode/setup/setup.php:201 +#: ../../enterprise/godmode/setup/setup.php:210 +#: ../../enterprise/godmode/setup/setup.php:223 +#: ../../enterprise/godmode/setup/setup.php:228 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:177 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:247 +#: ../../include/functions_events.php:2103 +#: ../../include/functions_events.php:2110 +#: ../../mobile/operation/events.php:173 ../../mobile/operation/events.php:180 +#: ../../godmode/setup/performance.php:98 +#: ../../godmode/setup/performance.php:105 +#: ../../godmode/setup/setup_general.php:68 +#: ../../godmode/setup/setup_general.php:72 +#: ../../godmode/setup/setup_general.php:92 +#: ../../godmode/setup/setup_general.php:96 +#: ../../godmode/setup/setup_general.php:100 +#: ../../godmode/setup/setup_general.php:225 +#: ../../godmode/setup/setup_general.php:233 +#: ../../godmode/setup/setup_general.php:240 +#: ../../godmode/setup/setup_auth.php:44 ../../godmode/setup/setup_auth.php:70 +#: ../../godmode/setup/setup_netflow.php:59 +#: ../../godmode/setup/setup_visuals.php:128 +#: ../../godmode/setup/setup_visuals.php:170 +#: ../../godmode/setup/setup_visuals.php:217 +#: ../../godmode/servers/manage_recontask_form.php:207 +#: ../../godmode/servers/manage_recontask.php:268 +#: ../../godmode/users/configure_user.php:459 +#: ../../godmode/reporting/reporting_builder.php:426 +#: ../../godmode/reporting/visual_console_builder.wizard.php:161 +#: ../../godmode/reporting/visual_console_builder.wizard.php:184 +#: ../../godmode/agentes/agent_conf_gis.php:68 +#: ../../godmode/agentes/agent_manager.php:311 +#: ../../godmode/massive/massive_edit_agents.php:356 +#: ../../godmode/massive/massive_edit_agents.php:362 +#: ../../godmode/massive/massive_edit_modules.php:355 +#: ../../godmode/massive/massive_edit_modules.php:412 +#: ../../godmode/massive/massive_edit_modules.php:435 +msgid "No" +msgstr "" + +#: ../../operation/users/user_edit.php:288 +msgid "Shortcut bar" +msgstr "" + +#: ../../operation/users/user_edit.php:288 +msgid "" +"This will activate a shortcut bar with alerts, events, messages... " +"information" +msgstr "" + +#: ../../operation/users/user_edit.php:289 +msgid "Home screen" +msgstr "" + +#: ../../operation/users/user_edit.php:289 +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:292 +#: ../../godmode/users/configure_user.php:452 +#: ../../godmode/groups/configure_group.php:150 +msgid "Skin" +msgstr "" + +#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:412 +#: ../../enterprise/operation/menu.php:40 +#: ../../mobile/include/functions_web.php:21 +msgid "Dashboard" +msgstr "" + +#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:422 +#: ../../operation/events/events.php:267 +msgid "Event list" +msgstr "" + +#: ../../operation/users/user_edit.php:304 +#: ../../operation/users/user_edit.php:427 +#: ../../operation/agentes/group_view.php:76 ../../operation/menu.php:40 +#: ../../enterprise/meta/general/main_header.php:122 +#: ../../enterprise/meta/monitoring/group_view.php:50 +msgid "Group view" +msgstr "" + +#: ../../operation/users/user_edit.php:304 +#: ../../operation/users/user_edit.php:432 +#: ../../operation/agentes/tactical.php:51 ../../operation/menu.php:37 +#: ../../enterprise/meta/general/main_header.php:120 +#: ../../enterprise/meta/monitoring/tactical.php:275 +#: ../../enterprise/dashboard/widgets/tactical.php:26 +#: ../../enterprise/dashboard/widgets/tactical.php:28 +msgid "Tactical view" +msgstr "" + +#: ../../operation/users/user_edit.php:304 +#: ../../operation/users/user_edit.php:437 +#: ../../operation/agentes/alerts_status.php:106 ../../operation/menu.php:51 +msgid "Alert detail" +msgstr "" + +#: ../../operation/users/user_edit.php:304 +#: ../../operation/users/user_edit.php:442 +#: ../../operation/gis_maps/render_view.php:124 +#: ../../operation/snmpconsole/snmp_view.php:354 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:565 +#: ../../include/functions_graph.php:1655 +#: ../../include/functions_graph.php:1783 +#: ../../include/functions_graph.php:1818 +#: ../../include/functions_graph.php:1853 +#: ../../include/functions_graph.php:1891 +#: ../../include/functions_graph.php:1930 +#: ../../include/functions_graph.php:1978 +#: ../../include/functions_graph.php:2126 +#: ../../include/functions_graph.php:2196 +#: ../../include/functions_graph.php:2252 +#: ../../include/functions_graph.php:3108 +#: ../../godmode/groups/configure_group.php:145 +#: ../../godmode/snmpconsole/snmp_alert.php:274 +msgid "Other" +msgstr "" + +#: ../../operation/users/user_edit.php:319 ../../general/logon_ok.php:99 +#: ../../enterprise/meta/event/event_view.php:1153 +#: ../../include/ajax/events.php:286 +#: ../../godmode/modules/manage_network_components_form_wmi.php:206 +#: ../../godmode/servers/manage_recontask_form.php:244 +#: ../../godmode/users/configure_user.php:428 +#: ../../godmode/admin_access_logs.php:191 +msgid "Comments" +msgstr "" + +#: ../../operation/users/user_edit.php:340 +msgid "" +"You can not change your user info from Pandora FMS under the current " +"authentication scheme" +msgstr "" + +#: ../../operation/users/user_edit.php:343 +#: ../../operation/reporting/graph_viewer.php:187 +#: ../../operation/reporting/reporting_viewer.php:168 +#: ../../operation/agentes/datos_agente.php:211 +#: ../../operation/integria_incidents/incident.incident.php:124 +#: ../../operation/snmpconsole/snmp_view.php:360 +#: ../../operation/events/events_list.php:442 +#: ../../enterprise/operation/agentes/policy_view.php:161 +#: ../../enterprise/operation/agentes/collection_view.php:91 +#: ../../enterprise/include/functions_networkmap_enterprise.php:821 +#: ../../enterprise/meta/event/event_view.php:580 +#: ../../enterprise/meta/advanced/metasetup.password.php:139 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:177 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:184 +#: ../../enterprise/meta/advanced/metasetup.visual.php:142 +#: ../../enterprise/meta/advanced/metasetup.performance.php:103 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:227 +#: ../../enterprise/meta/advanced/metasetup.setup.php:155 +#: ../../enterprise/dashboard/widget.php:138 +#: ../../enterprise/dashboard/main_dashboard.php:534 +#: ../../enterprise/godmode/setup/edit_skin.php:278 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:218 +#: ../../enterprise/godmode/setup/setup_history.php:74 +#: ../../enterprise/godmode/setup/setup.php:167 +#: ../../enterprise/godmode/setup/setup.php:258 +#: ../../enterprise/godmode/modules/configure_local_component.php:347 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:105 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 +#: ../../enterprise/godmode/servers/manage_export_form.php:118 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:77 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:87 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:96 +#: ../../enterprise/godmode/agentes/collections.data.php:87 +#: ../../enterprise/godmode/agentes/collections.data.php:178 +#: ../../enterprise/godmode/agentes/collections.data.php:233 +#: ../../enterprise/godmode/agentes/collections.data.php:250 +#: ../../enterprise/godmode/agentes/collections.data.php:265 +#: ../../enterprise/godmode/agentes/collection_manager.php:107 +#: ../../enterprise/godmode/agentes/collection_manager.php:164 +#: ../../enterprise/godmode/agentes/inventory_manager.php:196 +#: ../../enterprise/godmode/agentes/inventory_manager.php:254 +#: ../../enterprise/godmode/agentes/collections.editor.php:100 +#: ../../enterprise/godmode/agentes/collections.editor.php:156 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:195 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:218 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:276 +#: ../../enterprise/godmode/policies/policy_modules.php:226 +#: ../../enterprise/godmode/policies/configure_policy.php:79 +#: ../../enterprise/godmode/policies/policy_collections.php:154 +#: ../../enterprise/godmode/policies/policy_collections.php:205 +#: ../../enterprise/godmode/services/services.elements.php:303 +#: ../../enterprise/godmode/services/services.service.php:277 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:234 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:85 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:206 +#: ../../enterprise/extensions/translate_string.php:297 +#: ../../enterprise/extensions/translate_string.php:304 +#: ../../enterprise/extensions/cron/main.php:295 +#: ../../include/functions_events.php:1571 +#: ../../include/functions_events.php:1609 +#: ../../include/functions_visual_map_editor.php:242 +#: ../../godmode/setup/os.php:54 ../../godmode/setup/os.php:107 +#: ../../godmode/setup/performance.php:123 +#: ../../godmode/setup/setup_general.php:254 +#: ../../godmode/setup/setup_auth.php:89 ../../godmode/setup/links.php:118 +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../godmode/setup/setup_visuals.php:259 ../../godmode/setup/news.php:130 +#: ../../godmode/modules/manage_nc_groups_form.php:65 +#: ../../godmode/modules/manage_network_templates_form.php:154 +#: ../../godmode/modules/manage_network_components_form_wmi.php:221 +#: ../../godmode/modules/manage_network_components_form.php:225 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/servers/manage_recontask_form.php:268 +#: ../../godmode/servers/modificar_server.php:51 +#: ../../godmode/servers/plugin.php:284 +#: ../../godmode/servers/recon_script.php:106 +#: ../../godmode/users/configure_profile.php:195 +#: ../../godmode/users/configure_user.php:528 +#: ../../godmode/reporting/graph_builder.main.php:167 +#: ../../godmode/reporting/visual_console_builder.data.php:97 +#: ../../godmode/reporting/reporting_builder.main.php:38 +#: ../../godmode/reporting/visual_console_builder.elements.php:331 +#: ../../godmode/reporting/visual_console_builder.elements.php:336 +#: ../../godmode/agentes/module_manager_editor.php:419 +#: ../../godmode/agentes/configure_field.php:57 +#: ../../godmode/agentes/agent_template.php:214 +#: ../../godmode/agentes/agent_conf_gis.php:76 +#: ../../godmode/agentes/planned_downtime.editor.php:432 +#: ../../godmode/agentes/planned_downtime.list.php:199 +#: ../../godmode/agentes/planned_downtime.list.php:304 +#: ../../godmode/agentes/agent_manager.php:359 +#: ../../godmode/groups/configure_modu_group.php:74 +#: ../../godmode/groups/configure_group.php:160 +#: ../../godmode/category/edit_category.php:130 +#: ../../godmode/snmpconsole/snmp_alert.php:426 +#: ../../godmode/snmpconsole/snmp_alert.php:500 +#: ../../godmode/snmpconsole/snmp_filters.php:103 +#: ../../godmode/snmpconsole/snmp_filters.php:139 +#: ../../godmode/massive/massive_edit_agents.php:404 +#: ../../godmode/massive/massive_edit_modules.php:443 +#: ../../godmode/events/event_responses.editor.php:116 +#: ../../godmode/events/event_edit_filter.php:315 +#: ../../godmode/events/custom_events.php:189 +#: ../../godmode/tag/edit_tag.php:186 +#: ../../godmode/alerts/configure_alert_special_days.php:94 +#: ../../godmode/alerts/alert_list.list.php:133 +#: ../../godmode/alerts/configure_alert_command.php:124 +#: ../../godmode/alerts/configure_alert_action.php:161 +#: ../../extensions/update_manager/lib/functions.php:415 +#: ../../extensions/update_manager/settings.php:114 +#: ../../extensions/update_manager/main.php:143 +msgid "Update" +msgstr "" + +#: ../../operation/users/user_edit.php:349 +#: ../../godmode/users/configure_user.php:539 +msgid "Profiles/Groups assigned to this user" +msgstr "" + +#: ../../operation/users/user_edit.php:358 +#: ../../enterprise/godmode/setup/setup_acl.php:138 +#: ../../godmode/users/configure_profile.php:146 +#: ../../godmode/users/configure_user.php:548 +#: ../../godmode/massive/massive_delete_profiles.php:102 +#: ../../godmode/massive/massive_add_profiles.php:87 +msgid "Profile name" +msgstr "" + +#: ../../operation/users/user_edit.php:360 +#: ../../operation/agentes/status_monitor.php:391 ../../operation/tree.php:522 +#: ../../operation/tree.php:560 ../../operation/tree.php:568 +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events_list.php:363 +#: ../../enterprise/include/functions_reporting_pdf.php:3662 +#: ../../enterprise/include/functions_reporting_pdf.php:3801 +#: ../../enterprise/meta/event/event_view.php:1162 +#: ../../enterprise/godmode/modules/configure_local_component.php:240 +#: ../../include/functions_events.php:2171 +#: ../../include/functions_reporting.php:5865 +#: ../../include/functions_reporting.php:6013 +#: ../../mobile/operation/events.php:453 +#: ../../godmode/modules/manage_network_components_form_common.php:171 +#: ../../godmode/users/configure_user.php:550 +#: ../../godmode/massive/massive_edit_modules.php:416 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/events/custom_events.php:159 ../../godmode/tag/tag.php:75 +#: ../../godmode/tag/edit_tag.php:55 +msgid "Tags" +msgstr "" + +#: ../../operation/users/user_edit.php:387 +msgid "This user doesn't have any assigned profile/group" +msgstr "" + +#: ../../operation/users/webchat.php:71 +msgid "Webchat" +msgstr "" + +#: ../../operation/users/webchat.php:81 +msgid "Users Online" +msgstr "" + +#: ../../operation/users/webchat.php:87 +#: ../../operation/messages/message_edit.php:193 +msgid "Send message" +msgstr "" + +#: ../../operation/users/webchat.php:155 +msgid "Connection established...get last 24h messages..." +msgstr "" + +#: ../../operation/users/webchat.php:166 +msgid "Error in connection." +msgstr "" + +#: ../../operation/users/webchat.php:247 +msgid "Error sendding message." +msgstr "" + +#: ../../operation/users/webchat.php:275 +msgid "Error login." +msgstr "" + +#: ../../operation/extensions.php:27 ../../operation/menu.php:353 +#: ../../godmode/extensions.php:27 ../../godmode/menu.php:250 +msgid "Extensions" +msgstr "" + +#: ../../operation/extensions.php:27 ../../godmode/extensions.php:27 +msgid "Defined extensions" +msgstr "" + +#: ../../operation/extensions.php:30 ../../godmode/extensions.php:32 +msgid "There are no extensions defined" +msgstr "" + +#: ../../operation/extensions.php:48 ../../godmode/extensions.php:144 +msgid "Version" +msgstr "" + +#: ../../operation/extensions.php:64 ../../include/functions_events.php:1656 +#: ../../extensions/net_tools.php:74 +msgid "Execute" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:142 ../../operation/gis_maps/ajax.php:163 +#: ../../operation/gis_maps/ajax.php:167 +msgid "Position (Lat, Long, Alt)" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:143 +msgid "Start contact" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:144 ../../operation/gis_maps/ajax.php:189 +#: ../../operation/agentes/ver_agente.php:416 +#: ../../operation/agentes/estado_generalagente.php:157 +#: ../../operation/agentes/estado_agente.php:397 +#: ../../operation/agentes/estado_monitores.php:291 +#: ../../operation/search_agents.php:52 ../../operation/search_users.php:47 +#: ../../enterprise/operation/agentes/ver_agente.php:75 +#: ../../enterprise/operation/agentes/policy_view.php:309 +#: ../../enterprise/meta/agentsearch.php:95 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1138 +#: ../../include/functions_events.php:1858 +#: ../../include/functions_treeview.php:299 +#: ../../mobile/operation/agent.php:113 ../../mobile/operation/agents.php:84 +#: ../../mobile/operation/agents.php:277 ../../mobile/operation/agents.php:279 +#: ../../mobile/operation/agents.php:281 ../../mobile/operation/agents.php:282 +#: ../../godmode/users/user_list.php:194 +#: ../../godmode/agentes/planned_downtime.editor.php:525 +msgid "Last contact" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:145 +msgid "Num reports" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:147 +#: ../../operation/agentes/gis_view.php:119 +msgid "Manual placement" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:163 +msgid "Default position of map." +msgstr "" + +#: ../../operation/gis_maps/ajax.php:171 +#: ../../enterprise/meta/include/functions_wizard_meta.php:135 +#: ../../enterprise/meta/include/functions_wizard_meta.php:138 +#: ../../enterprise/meta/include/functions_wizard_meta.php:834 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1077 +#: ../../include/functions_events.php:1848 +#: ../../include/functions_treeview.php:238 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../godmode/agentes/agent_manager.php:178 +msgid "IP Address" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:173 +#: ../../operation/agentes/estado_agente.php:385 ../../operation/tree.php:502 +#: ../../operation/tree.php:538 ../../operation/search_agents.php:40 +#: ../../enterprise/meta/agentsearch.php:89 +#: ../../enterprise/godmode/modules/local_components.php:400 +#: ../../enterprise/godmode/modules/local_components.php:417 +#: ../../enterprise/godmode/modules/configure_local_component.php:139 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:74 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:152 +#: ../../include/functions_events.php:1853 +#: ../../mobile/operation/agents.php:72 ../../mobile/operation/agents.php:260 +#: ../../godmode/servers/manage_recontask_form.php:192 +#: ../../godmode/servers/manage_recontask.php:227 +#: ../../godmode/agentes/modificar_agente.php:406 +#: ../../godmode/agentes/planned_downtime.editor.php:524 +#: ../../godmode/agentes/agent_manager.php:210 +#: ../../godmode/massive/massive_edit_agents.php:255 +msgid "OS" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:185 +#: ../../operation/reporting/graph_viewer.php:240 +#: ../../operation/reporting/custom_reporting.php:39 +#: ../../operation/agentes/estado_generalagente.php:129 +#: ../../operation/agentes/estado_agente.php:384 +#: ../../operation/agentes/custom_fields.php:60 +#: ../../operation/agentes/gis_view.php:119 +#: ../../operation/agentes/estado_monitores.php:282 +#: ../../operation/integria_incidents/incident.files.php:25 +#: ../../operation/integria_incidents/incident.files.php:44 +#: ../../operation/integria_incidents/incident_detail.php:389 +#: ../../operation/integria_incidents/incident_detail.php:435 +#: ../../operation/integria_incidents/incident.incident.php:112 +#: ../../operation/integria_incidents/incident.workunits.php:31 +#: ../../operation/integria_incidents/incident.tracking.php:21 +#: ../../operation/search_reports.php:39 +#: ../../operation/incidents/incident_detail.php:446 +#: ../../operation/incidents/incident_detail.php:498 +#: ../../operation/search_users.php:53 ../../operation/search_graphs.php:34 +#: ../../operation/events/events.php:97 +#: ../../enterprise/operation/agentes/ver_agente.php:58 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../enterprise/operation/services/services.list.php:83 +#: ../../enterprise/operation/services/services.service.php:98 +#: ../../enterprise/include/functions_reporting_csv.php:155 +#: ../../enterprise/include/functions_reporting_csv.php:178 +#: ../../enterprise/include/functions_reporting_csv.php:210 +#: ../../enterprise/include/functions_reporting_csv.php:242 +#: ../../enterprise/include/functions_reporting_csv.php:279 +#: ../../enterprise/include/functions_reporting_csv.php:300 +#: ../../enterprise/include/functions_reporting_csv.php:322 +#: ../../enterprise/include/functions_reporting_csv.php:413 +#: ../../enterprise/include/functions_reporting_csv.php:444 +#: ../../enterprise/include/functions_reporting_csv.php:475 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting_csv.php:537 +#: ../../enterprise/include/functions_reporting_csv.php:560 +#: ../../enterprise/include/functions_reporting_csv.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:673 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../enterprise/include/functions_reporting_csv.php:781 +#: ../../enterprise/include/functions_reporting_csv.php:895 +#: ../../enterprise/include/functions_reporting_csv.php:1039 +#: ../../enterprise/include/functions_reporting_csv.php:1204 +#: ../../enterprise/include/functions_services.php:820 +#: ../../enterprise/include/functions_reporting_pdf.php:3615 +#: ../../enterprise/include/functions_reporting_pdf.php:3658 +#: ../../enterprise/include/functions_reporting_pdf.php:3750 +#: ../../enterprise/include/functions_reporting_pdf.php:3797 +#: ../../enterprise/meta/include/functions_wizard_meta.php:129 +#: ../../enterprise/meta/include/functions_wizard_meta.php:225 +#: ../../enterprise/meta/include/functions_wizard_meta.php:578 +#: ../../enterprise/meta/include/functions_wizard_meta.php:830 +#: ../../enterprise/meta/include/functions_wizard_meta.php:942 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1028 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:103 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1102 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1381 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1646 +#: ../../enterprise/mobile/include/enterprise.class.php:42 +#: ../../enterprise/godmode/setup/edit_skin.php:236 +#: ../../enterprise/godmode/setup/setup_skins.php:120 +#: ../../enterprise/godmode/modules/configure_local_component.php:210 +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:72 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:115 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1010 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 +#: ../../enterprise/godmode/reporting/graph_template_list.php:132 +#: ../../enterprise/godmode/agentes/collection_manager.php:88 +#: ../../enterprise/godmode/agentes/collection_manager.php:125 +#: ../../enterprise/godmode/agentes/collections.php:221 +#: ../../enterprise/godmode/agentes/inventory_manager.php:222 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:245 +#: ../../enterprise/godmode/policies/configure_policy.php:68 +#: ../../enterprise/godmode/policies/policy_collections.php:121 +#: ../../enterprise/godmode/policies/policy_collections.php:189 +#: ../../enterprise/godmode/services/services.elements.php:273 +#: ../../enterprise/godmode/services/services.service.php:185 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:211 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:78 +#: ../../enterprise/godmode/alerts/alert_events.php:498 +#: ../../enterprise/extensions/backup/main.php:59 +#: ../../enterprise/extensions/backup/main.php:154 +#: ../../enterprise/extensions/cron/functions.php:37 +#: ../../include/functions_events.php:1668 +#: ../../include/functions_reporting.php:2225 +#: ../../include/functions_reporting.php:5813 +#: ../../include/functions_reporting.php:5861 +#: ../../include/functions_reporting.php:5954 +#: ../../include/functions_reporting.php:6009 +#: ../../include/functions_treeview.php:87 +#: ../../include/functions_treeview.php:263 +#: ../../include/functions_snmp_browser.php:318 +#: ../../mobile/operation/tactical.php:193 +#: ../../mobile/operation/agents.php:70 ../../mobile/operation/agents.php:256 +#: ../../godmode/setup/os.list.php:33 ../../godmode/setup/os.builder.php:35 +#: ../../godmode/modules/manage_network_templates.php:189 +#: ../../godmode/modules/manage_network_templates_form.php:148 +#: ../../godmode/modules/manage_network_templates_form.php:199 +#: ../../godmode/modules/manage_network_components.php:486 +#: ../../godmode/modules/manage_network_components_form.php:214 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/netflow/nf_item_list.php:147 +#: ../../godmode/servers/modificar_server.php:46 +#: ../../godmode/servers/plugin.php:126 ../../godmode/servers/plugin.php:222 +#: ../../godmode/servers/recon_script.php:93 +#: ../../godmode/servers/recon_script.php:183 +#: ../../godmode/users/user_list.php:198 +#: ../../godmode/reporting/reporting_builder.php:358 +#: ../../godmode/reporting/reporting_builder.list_items.php:260 +#: ../../godmode/reporting/graph_builder.main.php:114 +#: ../../godmode/reporting/graphs.php:144 +#: ../../godmode/reporting/reporting_builder.main.php:85 +#: ../../godmode/reporting/reporting_builder.item_editor.php:495 +#: ../../godmode/agentes/modificar_agente.php:414 +#: ../../godmode/agentes/agent_template.php:194 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/planned_downtime.editor.php:309 +#: ../../godmode/agentes/planned_downtime.list.php:193 +#: ../../godmode/agentes/module_manager.php:478 +#: ../../godmode/agentes/agent_manager.php:227 +#: ../../godmode/groups/group_list.php:257 +#: ../../godmode/groups/configure_group.php:139 +#: ../../godmode/snmpconsole/snmp_alert.php:247 +#: ../../godmode/snmpconsole/snmp_alert.php:466 +#: ../../godmode/snmpconsole/snmp_filters.php:93 +#: ../../godmode/snmpconsole/snmp_filters.php:128 +#: ../../godmode/massive/massive_edit_agents.php:271 +#: ../../godmode/events/event_responses.editor.php:67 +#: ../../godmode/events/event_responses.list.php:60 +#: ../../godmode/tag/tag.php:121 ../../godmode/tag/tag.php:160 +#: ../../godmode/tag/edit_tag.php:156 +#: ../../godmode/alerts/alert_templates.php:45 +#: ../../godmode/alerts/configure_alert_special_days.php:84 +#: ../../godmode/alerts/configure_alert_command.php:81 +#: ../../godmode/alerts/alert_special_days.php:153 +#: ../../godmode/alerts/configure_alert_template.php:629 +#: ../../godmode/alerts/alert_commands.php:258 +msgid "Description" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:188 +#: ../../operation/agentes/estado_generalagente.php:120 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1106 +#: ../../include/functions_treeview.php:267 +msgid "Agent Version" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:191 +#: ../../operation/agentes/estado_generalagente.php:162 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1144 +#: ../../enterprise/extensions/cron/main.php:244 +#: ../../include/functions_ui.php:407 ../../include/functions_treeview.php:305 +#: ../../godmode/db/db_main.php:183 +#: ../../godmode/snmpconsole/snmp_alert.php:496 +#: ../../extensions/update_manager.php:60 +msgid "Never" +msgstr "" + +#: ../../operation/gis_maps/ajax.php:196 +#: ../../operation/agentes/estado_generalagente.php:157 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1138 +#: ../../include/functions_treeview.php:299 +#: ../../mobile/operation/agent.php:113 +msgid "Remote" +msgstr "" + +#: ../../operation/gis_maps/index.php:26 ../../operation/menu.php:185 +msgid "GIS Maps" +msgstr "" + +#: ../../operation/gis_maps/index.php:26 +#: ../../enterprise/dashboard/widgets/tactical.php:39 +#: ../../enterprise/dashboard/widgets/tactical.php:153 +#: ../../include/functions_reporting.php:1098 +#: ../../include/functions_reporting.php:4889 +#: ../../include/functions_reporting.php:5165 +#: ../../include/functions_reporting.php:5512 +msgid "Summary" +msgstr "" + +#: ../../operation/gis_maps/index.php:68 +msgid "No maps found" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:99 +#: ../../operation/agentes/estado_agente.php:128 +#: ../../enterprise/operation/services/services.service_map.php:57 +#: ../../enterprise/operation/services/services.service.php:52 +#: ../../enterprise/include/functions_policies.php:2753 +#: ../../enterprise/meta/screens/screens.visualmap.php:161 +#: ../../enterprise/meta/screens/screens.visualmap.php:164 +#: ../../godmode/agentes/configurar_agente.php:252 +#: ../../godmode/agentes/configurar_agente.php:403 ../../godmode/menu.php:202 +msgid "Setup" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:107 ../../general/header.php:116 +msgid "5 seconds" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:108 ../../general/header.php:117 +msgid "10 seconds" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:109 ../../general/header.php:119 +msgid "30 seconds" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:110 ../../general/header.php:120 +#: ../../extensions/agents_alerts.php:81 +#: ../../extensions/agents_modules.php:89 +msgid "1 minute" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:111 ../../general/header.php:121 +#: ../../extensions/agents_alerts.php:82 +#: ../../extensions/agents_modules.php:90 +msgid "2 minutes" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:112 ../../general/header.php:122 +#: ../../include/ajax/module.php:76 ../../extensions/agents_alerts.php:83 +#: ../../extensions/agents_modules.php:91 +msgid "5 minutes" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:113 +#: ../../extensions/agents_alerts.php:84 +#: ../../extensions/agents_modules.php:92 +msgid "10 minutes" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:114 ../../general/header.php:125 +#: ../../enterprise/dashboard/widgets/single_graph.php:57 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:179 +#: ../../enterprise/godmode/agentes/inventory_manager.php:172 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:192 +#: ../../include/functions.php:1671 ../../include/functions_netflow.php:847 +#: ../../include/functions_netflow.php:880 ../../include/ajax/module.php:78 +#: ../../godmode/setup/performance.php:81 +msgid "1 hour" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:115 +#: ../../enterprise/dashboard/widgets/single_graph.php:58 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:180 +#: ../../enterprise/godmode/agentes/inventory_manager.php:173 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:193 +#: ../../include/functions_netflow.php:848 +#: ../../include/functions_netflow.php:881 +msgid "2 hours" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:117 +msgid "Refresh: " +msgstr "" + +#: ../../operation/gis_maps/render_view.php:120 +#: ../../operation/agentes/networkmap_list.php:72 +#: ../../operation/agentes/networkmap.php:318 +#: ../../operation/agentes/networkmap.php:324 +#: ../../operation/agentes/status_monitor.php:250 +#: ../../operation/agentes/status_monitor.php:311 +#: ../../operation/agentes/status_monitor.php:346 +#: ../../operation/agentes/status_monitor.php:366 +#: ../../operation/agentes/status_monitor.php:384 +#: ../../operation/agentes/status_monitor.php:406 +#: ../../operation/agentes/status_monitor.php:409 +#: ../../operation/agentes/estado_agente.php:184 +#: ../../operation/agentes/alerts_status.functions.php:47 +#: ../../operation/agentes/alerts_status.functions.php:53 +#: ../../operation/agentes/estado_monitores.php:615 +#: ../../operation/tree.php:592 ../../operation/snmpconsole/snmp_view.php:314 +#: ../../operation/snmpconsole/snmp_view.php:318 +#: ../../operation/snmpconsole/snmp_view.php:322 +#: ../../operation/snmpconsole/snmp_view.php:339 +#: ../../operation/snmpconsole/snmp_view.php:343 +#: ../../operation/snmpconsole/snmp_view.php:424 +#: ../../operation/events/events_rss.php:77 +#: ../../operation/events/export_csv.php:54 +#: ../../operation/events/events.php:195 ../../operation/events/events.php:202 +#: ../../operation/events/events.build_table.php:355 +#: ../../operation/events/events.build_query.php:96 +#: ../../operation/events/events_list.php:132 +#: ../../operation/events/events_list.php:360 +#: ../../operation/events/events_list.php:362 +#: ../../operation/events/events_list.php:411 +#: ../../operation/events/events_list.php:576 +#: ../../enterprise/operation/log/log_viewer.php:113 +#: ../../enterprise/operation/log/log_viewer.php:121 +#: ../../enterprise/operation/agentes/agent_inventory.php:60 +#: ../../enterprise/operation/inventory/inventory.php:35 +#: ../../enterprise/operation/inventory/inventory.php:37 +#: ../../enterprise/operation/inventory/inventory.php:80 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:31 +#: ../../enterprise/include/functions_reporting_pdf.php:546 +#: ../../enterprise/include/functions_metaconsole.php:1025 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:84 +#: ../../enterprise/meta/event/event_view.php:212 +#: ../../enterprise/meta/event/event_view.php:254 +#: ../../enterprise/meta/event/event_view.php:257 +#: ../../enterprise/meta/event/event_view.php:270 +#: ../../enterprise/meta/event/event_view.php:441 +#: ../../enterprise/meta/event/event_view.php:447 +#: ../../enterprise/meta/event/event_view.php:528 +#: ../../enterprise/meta/event/event_view.php:535 +#: ../../enterprise/meta/event/event_view.php:1332 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:232 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/meta/advanced/policymanager.queue.php:304 +#: ../../enterprise/meta/include/functions_agents_meta.php:834 +#: ../../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/ajax/wizard.ajax.php:171 +#: ../../enterprise/dashboard/widgets/events_list.php:49 +#: ../../enterprise/godmode/setup/setup_acl.php:77 +#: ../../enterprise/godmode/setup/setup_acl.php:82 +#: ../../enterprise/godmode/setup/setup_acl.php:197 +#: ../../enterprise/godmode/setup/setup_acl.php:207 +#: ../../enterprise/godmode/setup/setup_acl.php:241 +#: ../../enterprise/godmode/modules/local_components.php:395 +#: ../../enterprise/godmode/modules/local_components.php:402 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:150 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1130 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1144 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1245 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:120 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:124 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:96 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:120 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:123 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:80 +#: ../../enterprise/godmode/policies/policy_queue.php:364 +#: ../../enterprise/godmode/policies/policy_queue.php:368 +#: ../../enterprise/godmode/policies/policy_queue.php:374 +#: ../../enterprise/godmode/policies/policy_queue.php:430 +#: ../../enterprise/godmode/policies/policy_agents.php:224 +#: ../../enterprise/godmode/policies/policy_agents.php:232 +#: ../../enterprise/godmode/policies/policy_agents.php:335 +#: ../../enterprise/godmode/alerts/alert_events_list.php:322 +#: ../../include/functions_reporting.php:5520 ../../include/functions.php:748 +#: ../../include/functions.php:962 ../../include/functions_graph.php:1887 +#: ../../include/functions_users.php:171 ../../include/functions_users.php:176 +#: ../../include/functions_groups.php:573 +#: ../../mobile/operation/modules.php:36 ../../mobile/operation/alerts.php:36 +#: ../../mobile/operation/alerts.php:42 ../../mobile/operation/agents.php:30 +#: ../../godmode/setup/gis_step_2.php:153 +#: ../../godmode/modules/manage_network_templates_form.php:265 +#: ../../godmode/modules/manage_network_components.php:450 +#: ../../godmode/reporting/reporting_builder.list_items.php:153 +#: ../../godmode/reporting/reporting_builder.list_items.php:155 +#: ../../godmode/reporting/reporting_builder.list_items.php:157 +#: ../../godmode/reporting/graph_builder.graph_editor.php:125 +#: ../../godmode/reporting/reporting_builder.item_editor.php:647 +#: ../../godmode/reporting/reporting_builder.item_editor.php:790 +#: ../../godmode/admin_access_logs.php:62 +#: ../../godmode/admin_access_logs.php:64 +#: ../../godmode/massive/massive_delete_modules.php:247 +#: ../../godmode/massive/massive_delete_modules.php:271 +#: ../../godmode/massive/massive_edit_modules.php:214 +#: ../../godmode/massive/massive_edit_modules.php:238 +#: ../../godmode/events/event_edit_filter.php:75 +#: ../../godmode/events/event_edit_filter.php:95 +#: ../../godmode/events/event_edit_filter.php:181 +#: ../../godmode/events/event_edit_filter.php:184 +#: ../../godmode/events/event_edit_filter.php:302 +#: ../../godmode/alerts/alert_templates.php:235 +#: ../../godmode/alerts/alert_list.list.php:108 +#: ../../godmode/alerts/alert_list.list.php:114 +#: ../../godmode/alerts/alert_list.list.php:123 +#: ../../godmode/alerts/alert_list.list.php:128 +#: ../../godmode/alerts/alert_list.php:257 +#: ../../godmode/alerts/alert_list.php:310 +#: ../../godmode/alerts/alert_list.php:323 +#: ../../extensions/agents_modules.php:77 +msgid "All" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:121 +#: ../../operation/agentes/group_view.php:99 +#: ../../operation/agentes/status_monitor.php:341 +#: ../../operation/agentes/estado_agente.php:177 +#: ../../operation/agentes/estado_monitores.php:616 +#: ../../operation/tree.php:595 +#: ../../enterprise/operation/services/services.list.php:85 +#: ../../enterprise/operation/services/services.list.php:125 +#: ../../enterprise/operation/services/services.service.php:100 +#: ../../enterprise/operation/services/services.service.php:129 +#: ../../enterprise/include/functions_services.php:704 +#: ../../enterprise/include/functions_reporting_pdf.php:805 +#: ../../enterprise/include/functions_reporting_pdf.php:3655 +#: ../../enterprise/include/functions_reporting_pdf.php:3794 +#: ../../enterprise/meta/monitoring/group_view.php:66 +#: ../../enterprise/meta/monitoring/tactical.php:80 +#: ../../enterprise/meta/include/functions_wizard_meta.php:427 +#: ../../enterprise/meta/include/functions_wizard_meta.php:509 +#: ../../enterprise/meta/include/functions_wizard_meta.php:681 +#: ../../enterprise/meta/include/functions_wizard_meta.php:877 +#: ../../enterprise/meta/include/functions_wizard_meta.php:953 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1054 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1362 +#: ../../enterprise/godmode/services/services.service.php:198 +#: ../../include/functions_ui.php:1713 ../../include/functions_events.php:1384 +#: ../../include/functions_reporting.php:4341 +#: ../../include/functions_reporting.php:5858 +#: ../../include/functions_reporting.php:6006 ../../include/functions.php:721 +#: ../../include/functions.php:915 ../../include/functions.php:916 +#: ../../include/functions.php:953 ../../include/functions_graph.php:2185 +#: ../../include/functions_graph.php:2186 +#: ../../include/functions_groups.php:764 +#: ../../include/functions_groups.php:765 +#: ../../include/functions_groups.php:766 +#: ../../mobile/operation/modules.php:39 ../../mobile/operation/groups.php:111 +#: ../../mobile/operation/groups.php:112 ../../mobile/operation/agents.php:31 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1018 +msgid "Critical" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:122 +#: ../../operation/agentes/group_view.php:98 +#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/estado_agente.php:176 +#: ../../operation/agentes/estado_monitores.php:619 +#: ../../operation/tree.php:594 +#: ../../enterprise/operation/services/services.list.php:86 +#: ../../enterprise/operation/services/services.list.php:130 +#: ../../enterprise/operation/services/services.service.php:101 +#: ../../enterprise/operation/services/services.service.php:135 +#: ../../enterprise/include/functions_services.php:707 +#: ../../enterprise/include/functions_reporting_pdf.php:806 +#: ../../enterprise/include/functions_reporting_pdf.php:3655 +#: ../../enterprise/include/functions_reporting_pdf.php:3794 +#: ../../enterprise/meta/monitoring/group_view.php:65 +#: ../../enterprise/meta/monitoring/tactical.php:79 +#: ../../enterprise/meta/include/functions_wizard_meta.php:420 +#: ../../enterprise/meta/include/functions_wizard_meta.php:502 +#: ../../enterprise/meta/include/functions_wizard_meta.php:674 +#: ../../enterprise/meta/include/functions_wizard_meta.php:870 +#: ../../enterprise/meta/include/functions_wizard_meta.php:946 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1047 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1364 +#: ../../enterprise/godmode/services/services.service.php:203 +#: ../../include/functions_ui.php:1713 ../../include/functions_events.php:1381 +#: ../../include/functions_reporting.php:4343 +#: ../../include/functions_reporting.php:5858 +#: ../../include/functions_reporting.php:6006 ../../include/functions.php:718 +#: ../../include/functions.php:913 ../../include/functions.php:916 +#: ../../include/functions.php:950 ../../include/functions_graph.php:2177 +#: ../../include/functions_graph.php:2178 +#: ../../include/functions_groups.php:759 +#: ../../include/functions_groups.php:760 +#: ../../include/functions_groups.php:761 +#: ../../mobile/operation/modules.php:38 ../../mobile/operation/groups.php:107 +#: ../../mobile/operation/groups.php:108 ../../mobile/operation/agents.php:34 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1020 +#: ../../godmode/massive/massive_edit_agents.php:350 +msgid "Warning" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:123 +#: ../../enterprise/operation/services/services.list.php:120 +#: ../../enterprise/operation/services/services.service.php:122 +#: ../../enterprise/load_enterprise.php:395 +#: ../../godmode/massive/massive_edit_agents.php:348 +msgid "Ok" +msgstr "" + +#: ../../operation/gis_maps/render_view.php:126 +msgid "Show agents by state: " +msgstr "" + +#: ../../operation/gis_maps/render_view.php:128 +#: ../../enterprise/dashboard/widgets/network_map.php:35 +msgid "Map" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:34 +#: ../../operation/reporting/graph_viewer.php:41 +#: ../../operation/integria_incidents/incident_detail.php:87 +#: ../../operation/integria_incidents/incident_detail.php:105 +#: ../../operation/messages/message_list.php:56 +#: ../../operation/messages/message_list.php:80 +#: ../../operation/incidents/incident.php:60 +#: ../../operation/incidents/incident_detail.php:84 +#: ../../operation/incidents/incident_detail.php:108 +#: ../../operation/snmpconsole/snmp_view.php:68 +#: ../../operation/events/events.php:436 +#: ../../enterprise/dashboard/main_dashboard.php:64 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:117 +#: ../../enterprise/godmode/modules/local_components.php:288 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:94 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:171 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:183 +#: ../../enterprise/godmode/reporting/graph_template_list.php:86 +#: ../../enterprise/godmode/reporting/graph_template_list.php:113 +#: ../../enterprise/godmode/policies/policies.php:159 +#: ../../enterprise/godmode/alerts/alert_events_list.php:141 +#: ../../enterprise/godmode/alerts/alert_events_list.php:182 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:271 +#: ../../godmode/setup/links.php:69 ../../godmode/setup/news.php:71 +#: ../../godmode/setup/gis.php:57 +#: ../../godmode/modules/manage_network_components.php:315 +#: ../../godmode/modules/manage_nc_groups.php:119 +#: ../../godmode/netflow/nf_item_list.php:96 +#: ../../godmode/netflow/nf_item_list.php:124 +#: ../../godmode/netflow/nf_edit.php:69 ../../godmode/netflow/nf_edit.php:100 +#: ../../godmode/users/user_list.php:144 ../../godmode/users/user_list.php:154 +#: ../../godmode/users/configure_user.php:370 +#: ../../godmode/users/profile_list.php:77 +#: ../../godmode/reporting/map_builder.php:39 +#: ../../godmode/reporting/reporting_builder.php:279 +#: ../../godmode/reporting/graphs.php:76 ../../godmode/reporting/graphs.php:84 +#: ../../godmode/reporting/graphs.php:131 +#: ../../godmode/agentes/planned_downtime.list.php:180 +#: ../../godmode/snmpconsole/snmp_alert.php:233 +#: ../../godmode/snmpconsole/snmp_filters.php:76 +#: ../../godmode/massive/massive_delete_agents.php:66 +#: ../../godmode/massive/massive_delete_alerts.php:125 +#: ../../godmode/massive/massive_delete_modules.php:99 +#: ../../godmode/massive/massive_delete_action_alerts.php:105 +#: ../../godmode/events/event_filter.php:52 +#: ../../godmode/events/event_filter.php:80 +#: ../../godmode/alerts/alert_templates.php:217 +#: ../../godmode/alerts/alert_special_days.php:144 +#: ../../godmode/alerts/alert_commands.php:249 +#: ../../godmode/alerts/alert_actions.php:325 +#: ../../godmode/alerts/alert_list.php:141 +#: ../../godmode/alerts/alert_list.php:183 +msgid "Successfully deleted" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:36 +#: ../../operation/reporting/graph_viewer.php:43 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:95 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:122 +#: ../../enterprise/godmode/reporting/graph_template_list.php:87 +#: ../../enterprise/godmode/reporting/graph_template_list.php:114 +#: ../../godmode/modules/manage_nc_groups.php:120 +#: ../../godmode/netflow/nf_item_list.php:97 +#: ../../godmode/netflow/nf_item_list.php:125 +#: ../../godmode/netflow/nf_edit.php:70 ../../godmode/netflow/nf_edit.php:101 +#: ../../godmode/reporting/map_builder.php:44 +#: ../../godmode/reporting/graphs.php:78 ../../godmode/reporting/graphs.php:88 +#: ../../godmode/reporting/graphs.php:132 +#: ../../godmode/agentes/planned_downtime.list.php:177 +#: ../../godmode/events/event_filter.php:53 +#: ../../godmode/events/event_filter.php:81 +msgid "Not deleted. Error deleting data" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:117 +#: ../../godmode/reporting/graph_builder.php:187 +msgid "Graph editor" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:122 +#: ../../godmode/reporting/graph_builder.php:190 +msgid "View graph" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:140 +#: ../../operation/reporting/graph_viewer.php:229 +#: ../../operation/reporting/custom_reporting.php:27 +#: ../../operation/reporting/reporting_viewer.php:102 +#: ../../operation/reporting/reporting_viewer.php:107 +#: ../../operation/reporting/reporting_viewer.php:110 +#: ../../operation/menu.php:93 ../../enterprise/meta/general/logon_ok.php:33 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:142 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:145 +#: ../../godmode/reporting/map_builder.php:26 +#: ../../godmode/reporting/reporting_builder.php:260 +#: ../../godmode/reporting/reporting_builder.php:265 +#: ../../godmode/reporting/reporting_builder.php:269 +#: ../../godmode/reporting/reporting_builder.php:1372 +#: ../../godmode/reporting/reporting_builder.php:1377 +#: ../../godmode/reporting/reporting_builder.php:1381 +#: ../../godmode/reporting/reporting_builder.php:1432 +#: ../../godmode/reporting/reporting_builder.php:1437 +#: ../../godmode/reporting/reporting_builder.php:1440 +#: ../../godmode/reporting/graphs.php:68 +msgid "Reporting" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:140 ../../operation/menu.php:162 +#: ../../godmode/reporting/graphs.php:68 +msgid "Custom graphs" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:160 +#: ../../operation/agentes/stat_win.php:277 +#: ../../operation/agentes/graphs.php:86 +msgid "Time range" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:169 +#: ../../operation/reporting/graph_viewer.php:179 +msgid "Graph defined" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:170 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:206 +#: ../../godmode/reporting/graph_builder.main.php:143 +msgid "Area" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:171 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:207 +#: ../../godmode/reporting/graph_builder.main.php:144 +msgid "Stacked area" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:172 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 +#: ../../godmode/reporting/graph_builder.main.php:145 +msgid "Line" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:173 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:209 +#: ../../godmode/reporting/graph_builder.main.php:146 +msgid "Stacked line" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:180 +msgid "Zoom x1" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:181 +msgid "Zoom x2" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:182 +msgid "Zoom x3" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:204 +#: ../../operation/reporting/reporting_viewer.php:196 +#: ../../operation/reporting/reporting_viewer.php:210 +#: ../../operation/agentes/datos_agente.php:305 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1799 +#: ../../enterprise/godmode/alerts/alert_events.php:566 +#: ../../enterprise/extensions/cron/main.php:314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1335 +#: ../../godmode/agentes/planned_downtime.editor.php:924 +#: ../../godmode/alerts/configure_alert_template.php:930 +#: ../../extensions/insert_data.php:196 +msgid "Choose time" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:205 +#: ../../operation/reporting/reporting_viewer.php:197 +#: ../../operation/reporting/reporting_viewer.php:211 +#: ../../operation/agentes/datos_agente.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1800 +#: ../../enterprise/godmode/alerts/alert_events.php:567 +#: ../../enterprise/extensions/cron/main.php:315 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1336 +#: ../../godmode/agentes/planned_downtime.editor.php:925 +#: ../../godmode/alerts/configure_alert_template.php:931 +#: ../../extensions/update_manager/lib/functions.ajax.php:302 +#: ../../extensions/insert_data.php:197 +msgid "Time" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:206 +#: ../../operation/reporting/reporting_viewer.php:198 +#: ../../operation/reporting/reporting_viewer.php:212 +#: ../../operation/agentes/datos_agente.php:307 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1801 +#: ../../enterprise/godmode/alerts/alert_events.php:568 +#: ../../enterprise/extensions/cron/main.php:316 +#: ../../include/functions_html.php:714 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1337 +#: ../../godmode/agentes/planned_downtime.editor.php:926 +#: ../../godmode/alerts/configure_alert_template.php:932 +#: ../../extensions/insert_data.php:198 +msgid "Hour" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:207 +#: ../../operation/reporting/reporting_viewer.php:199 +#: ../../operation/reporting/reporting_viewer.php:213 +#: ../../operation/agentes/datos_agente.php:308 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1802 +#: ../../enterprise/godmode/alerts/alert_events.php:569 +#: ../../enterprise/extensions/cron/main.php:317 +#: ../../include/functions_html.php:715 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1338 +#: ../../godmode/agentes/planned_downtime.editor.php:927 +#: ../../godmode/alerts/configure_alert_template.php:933 +#: ../../extensions/insert_data.php:199 +msgid "Minute" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:208 +#: ../../operation/reporting/reporting_viewer.php:200 +#: ../../operation/reporting/reporting_viewer.php:214 +#: ../../operation/agentes/datos_agente.php:309 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1803 +#: ../../enterprise/godmode/alerts/alert_events.php:570 +#: ../../enterprise/extensions/cron/main.php:318 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1339 +#: ../../godmode/agentes/planned_downtime.editor.php:928 +#: ../../godmode/alerts/configure_alert_template.php:934 +#: ../../extensions/insert_data.php:200 +msgid "Second" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:209 +#: ../../operation/reporting/reporting_viewer.php:201 +#: ../../operation/reporting/reporting_viewer.php:215 +#: ../../operation/agentes/datos_agente.php:310 +#: ../../enterprise/operation/agentes/agent_inventory.php:79 +#: ../../enterprise/operation/inventory/inventory.php:137 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1804 +#: ../../enterprise/godmode/alerts/alert_events.php:571 +#: ../../enterprise/extensions/cron/main.php:319 +#: ../../include/functions.php:435 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1340 +#: ../../godmode/agentes/planned_downtime.editor.php:929 +#: ../../godmode/alerts/configure_alert_template.php:935 +#: ../../extensions/insert_data.php:201 +msgid "Now" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:210 +#: ../../operation/reporting/reporting_viewer.php:202 +#: ../../operation/reporting/reporting_viewer.php:216 +#: ../../operation/agentes/datos_agente.php:311 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1805 +#: ../../enterprise/godmode/alerts/alert_events.php:572 +#: ../../enterprise/extensions/cron/main.php:320 +#: ../../include/functions_filemanager.php:524 +#: ../../include/functions_filemanager.php:536 +#: ../../include/functions_filemanager.php:553 +#: ../../include/functions_snmp_browser.php:344 +#: ../../mobile/include/ui.class.php:560 ../../mobile/include/ui.class.php:599 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1341 +#: ../../godmode/agentes/planned_downtime.editor.php:930 +#: ../../godmode/alerts/configure_alert_template.php:936 +#: ../../extensions/update_manager/update_pandora.php:144 +#: ../../extensions/update_manager/update_pandora.php:149 +#: ../../extensions/update_manager/main.php:163 +#: ../../extensions/insert_data.php:202 +msgid "Close" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:221 +#: ../../operation/reporting/reporting_viewer.php:246 +msgid "Invalid date selected" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:229 +msgid "Custom graph viewer" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:239 +#: ../../operation/search_graphs.php:33 ../../godmode/reporting/graphs.php:143 +msgid "Graph name" +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:255 +#: ../../operation/reporting/custom_reporting.php:32 +msgid "There are no defined reportings" +msgstr "" + +#: ../../operation/reporting/custom_reporting.php:27 +#: ../../operation/reporting/reporting_viewer.php:110 +#: ../../operation/menu.php:100 +#: ../../godmode/reporting/reporting_builder.php:247 +#: ../../godmode/reporting/reporting_builder.php:269 +#: ../../godmode/reporting/reporting_builder.php:1359 +msgid "Custom reporting" +msgstr "" + +#: ../../operation/reporting/custom_reporting.php:38 +#: ../../operation/search_reports.php:38 +#: ../../enterprise/include/functions_reporting_csv.php:154 +#: ../../godmode/reporting/reporting_builder.php:357 +msgid "Report name" +msgstr "" + +#: ../../operation/reporting/custom_reporting.php:40 +#: ../../operation/search_reports.php:40 +#: ../../godmode/reporting/reporting_builder.php:359 +msgid "HTML" +msgstr "" + +#: ../../operation/reporting/custom_reporting.php:41 +#: ../../operation/search_reports.php:41 +#: ../../godmode/reporting/reporting_builder.php:360 +msgid "XML" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:246 +#: ../../enterprise/include/functions_reporting_xml.php:191 +#: ../../include/functions_reporting.php:2976 +#: ../../include/functions_reports.php:494 +msgid "Simple graph" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:316 +#: ../../enterprise/include/functions_reporting_xml.php:261 +#: ../../enterprise/include/functions_reporting_pdf.php:3306 +#: ../../include/functions_reporting.php:3100 +#: ../../include/functions_reports.php:496 +msgid "Simple baseline graph" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:391 +#: ../../enterprise/include/functions_reporting_xml.php:330 +#: ../../enterprise/include/functions_reporting_pdf.php:3085 +#: ../../enterprise/dashboard/widgets/custom_graph.php:22 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1179 +#: ../../include/functions_reporting.php:3142 +#: ../../include/functions_reports.php:424 +#: ../../include/functions_reports.php:499 +#: ../../include/functions_reports.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:827 +msgid "Custom graph" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:473 +#: ../../enterprise/include/functions_reporting_csv.php:315 +#: ../../enterprise/include/functions_reporting_xml.php:406 +#: ../../enterprise/include/functions_reporting_pdf.php:2811 +#: ../../enterprise/godmode/services/services.service.php:226 +#: ../../include/functions_reporting.php:3193 +#: ../../include/functions_reports.php:530 +msgid "S.L.A." +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:477 +#: ../../enterprise/include/functions_reporting_csv.php:330 +#: ../../enterprise/include/functions_reporting_xml.php:410 +#: ../../enterprise/include/functions_reporting_pdf.php:2819 +#: ../../include/functions_reporting.php:3223 +msgid "There are no SLAs defined" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:503 +#: ../../operation/reporting/reporting_xml.php:525 +#: ../../operation/reporting/reporting_xml.php:531 +#: ../../operation/reporting/reporting_xml.php:543 +#: ../../operation/reporting/reporting_xml.php:557 +#: ../../operation/reporting/reporting_xml.php:571 +#: ../../operation/reporting/reporting_xml.php:585 +#: ../../operation/reporting/reporting_xml.php:1030 +#: ../../operation/reporting/reporting_xml.php:1042 +#: ../../operation/reporting/reporting_xml.php:1054 +#: ../../operation/reporting/reporting_xml.php:1066 +#: ../../operation/agentes/group_view.php:95 +#: ../../operation/agentes/status_monitor.php:342 +#: ../../operation/agentes/estado_agente.php:178 +#: ../../operation/agentes/estado_monitores.php:347 +#: ../../operation/tree.php:596 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:313 +#: ../../enterprise/operation/services/services.list.php:136 +#: ../../enterprise/operation/services/services.service.php:141 +#: ../../enterprise/include/functions_reporting_csv.php:253 +#: ../../enterprise/include/functions_reporting_csv.php:367 +#: ../../enterprise/include/functions_reporting_csv.php:402 +#: ../../enterprise/include/functions_reporting_csv.php:433 +#: ../../enterprise/include/functions_reporting_csv.php:464 +#: ../../enterprise/include/functions_reporting_csv.php:495 +#: ../../enterprise/include/functions_reporting_csv.php:526 +#: ../../enterprise/include/functions_reporting_csv.php:631 +#: ../../enterprise/include/functions_reporting_csv.php:662 +#: ../../enterprise/include/functions_reporting_csv.php:693 +#: ../../enterprise/include/functions_reporting_csv.php:744 +#: ../../enterprise/include/functions_reporting_xml.php:436 +#: ../../enterprise/include/functions_reporting_xml.php:458 +#: ../../enterprise/include/functions_reporting_xml.php:464 +#: ../../enterprise/include/functions_reporting_xml.php:476 +#: ../../enterprise/include/functions_reporting_xml.php:490 +#: ../../enterprise/include/functions_reporting_xml.php:504 +#: ../../enterprise/include/functions_reporting_xml.php:518 +#: ../../enterprise/include/functions_reporting_xml.php:932 +#: ../../enterprise/include/functions_reporting_xml.php:944 +#: ../../enterprise/include/functions_reporting_xml.php:956 +#: ../../enterprise/include/functions_reporting_xml.php:968 +#: ../../enterprise/include/functions_reporting_pdf.php:451 +#: ../../enterprise/include/functions_reporting_pdf.php:791 +#: ../../enterprise/include/functions_reporting_pdf.php:807 +#: ../../enterprise/include/functions_reporting_pdf.php:1724 +#: ../../enterprise/include/functions_reporting_pdf.php:1752 +#: ../../enterprise/include/functions_reporting_pdf.php:1782 +#: ../../enterprise/include/functions_reporting_pdf.php:1810 +#: ../../enterprise/include/functions_reporting_pdf.php:2699 +#: ../../enterprise/include/functions_reporting_pdf.php:2727 +#: ../../enterprise/include/functions_reporting_pdf.php:2756 +#: ../../enterprise/include/functions_reporting_pdf.php:2787 +#: ../../enterprise/include/functions_reporting_pdf.php:2846 +#: ../../enterprise/include/functions_reporting_pdf.php:2852 +#: ../../enterprise/include/functions_reporting_pdf.php:2923 +#: ../../enterprise/include/functions_reporting_pdf.php:2924 +#: ../../enterprise/include/functions_reporting_pdf.php:2964 +#: ../../enterprise/include/functions_reporting_pdf.php:2967 +#: ../../enterprise/include/functions_reporting_pdf.php:3062 +#: ../../enterprise/include/functions_reporting_pdf.php:3371 +#: ../../enterprise/meta/monitoring/tactical.php:81 +#: ../../enterprise/dashboard/widgets/events_list.php:142 +#: ../../enterprise/extensions/cron/functions.php:186 +#: ../../include/functions_ui.php:407 ../../include/functions_ui.php:408 +#: ../../include/functions_events.php:1305 +#: ../../include/functions_events.php:2397 +#: ../../include/functions_reporting.php:3091 +#: ../../include/functions_reporting.php:3252 +#: ../../include/functions_reporting.php:3335 +#: ../../include/functions_reporting.php:3402 +#: ../../include/functions_reporting.php:3403 +#: ../../include/functions_reporting.php:3495 +#: ../../include/functions_reporting.php:3527 +#: ../../include/functions_reporting.php:3534 +#: ../../include/functions_reporting.php:3563 +#: ../../include/functions_reporting.php:3620 +#: ../../include/functions_reporting.php:3651 +#: ../../include/functions_reporting.php:4198 +#: ../../include/functions_reporting.php:4227 +#: ../../include/functions_reporting.php:4255 +#: ../../include/functions_reporting.php:4283 +#: ../../include/functions_reporting.php:4324 +#: ../../include/functions_reporting.php:4345 ../../include/functions.php:871 +#: ../../include/functions_alerts.php:574 +#: ../../include/functions_reports.php:421 +#: ../../include/functions_graph.php:670 +#: ../../include/functions_graph.php:2802 +#: ../../include/functions_visual_map.php:331 +#: ../../include/functions_visual_map.php:343 +#: ../../include/functions_visual_map.php:355 +#: ../../include/functions_visual_map.php:1364 +#: ../../include/functions_visual_map.php:1397 +#: ../../include/functions_visual_map.php:1431 +#: ../../include/graphs/functions_flot.php:303 +#: ../../include/functions_groups.php:744 +#: ../../include/functions_groups.php:745 +#: ../../include/functions_groups.php:746 +#: ../../mobile/operation/modules.php:40 ../../mobile/operation/groups.php:95 +#: ../../mobile/operation/groups.php:96 +#: ../../godmode/alerts/alert_list.builder.php:209 +msgid "Unknown" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:522 +#: ../../enterprise/include/functions_reporting_xml.php:455 +#: ../../enterprise/include/functions_reporting_pdf.php:3366 +#: ../../include/functions_reporting.php:3510 +#: ../../include/functions_reports.php:548 +msgid "Monitor report" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:540 +#: ../../enterprise/include/functions_reporting_xml.php:473 +#: ../../enterprise/include/functions_reporting_pdf.php:2780 +#: ../../include/functions_reporting.php:3544 +#: ../../include/functions_reports.php:542 +#: ../../include/functions_graph.php:639 +#: ../../include/functions_graph.php:2789 +msgid "Avg. Value" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:554 +#: ../../enterprise/include/functions_reporting_xml.php:487 +#: ../../enterprise/include/functions_reporting_pdf.php:2751 +#: ../../enterprise/godmode/modules/configure_local_component.php:203 +#: ../../include/functions_reporting.php:3574 +#: ../../include/functions_reports.php:544 +#: ../../include/functions_graph.php:639 +#: ../../include/functions_graph.php:2789 +#: ../../godmode/modules/manage_network_components_form_common.php:140 +#: ../../godmode/agentes/module_manager_editor_common.php:315 +msgid "Max. Value" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:568 +#: ../../enterprise/include/functions_reporting_xml.php:501 +#: ../../enterprise/include/functions_reporting_pdf.php:2722 +#: ../../enterprise/godmode/modules/configure_local_component.php:201 +#: ../../include/functions_reporting.php:3601 +#: ../../include/functions_reports.php:546 +#: ../../include/functions_graph.php:639 +#: ../../include/functions_graph.php:2790 +#: ../../godmode/modules/manage_network_components_form_common.php:138 +#: ../../godmode/agentes/module_manager_editor_common.php:311 +msgid "Min. Value" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:582 +#: ../../enterprise/include/functions_reporting_xml.php:515 +#: ../../enterprise/include/functions_reporting_pdf.php:2694 +msgid "Sumatory" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:593 +#: ../../enterprise/include/functions_reporting_xml.php:526 +#: ../../include/functions_reporting.php:3663 +msgid "Agent detailed event" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:673 +#: ../../enterprise/include/functions_reporting_xml.php:599 +#: ../../enterprise/include/functions_reporting_pdf.php:2275 +#: ../../enterprise/include/functions_netflow_pdf.php:201 +#: ../../enterprise/dashboard/widgets/post.php:25 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1203 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:210 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 +#: ../../include/functions_reporting.php:3769 +#: ../../include/functions_reports.php:576 ../../godmode/setup/news.php:117 +#: ../../godmode/reporting/reporting_builder.item_editor.php:888 +msgid "Text" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:680 +#: ../../enterprise/include/functions_reporting_csv.php:553 +#: ../../enterprise/include/functions_reporting_xml.php:606 +#: ../../enterprise/include/functions_reporting_pdf.php:2143 +#: ../../enterprise/godmode/reporting/mysql_builder.php:142 +#: ../../include/functions_reporting.php:3782 +msgid "SQL" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:729 +#: ../../enterprise/include/functions_reporting_xml.php:655 +#: ../../enterprise/include/functions_reporting_pdf.php:2300 +#: ../../include/functions_reporting.php:3884 +msgid "Group detailed event" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:807 +#: ../../enterprise/include/functions_reporting_xml.php:735 +#: ../../enterprise/include/functions_reporting_pdf.php:2522 +msgid "Agents detailed event" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:877 +#: ../../enterprise/include/functions_reporting_xml.php:803 +#: ../../enterprise/include/functions_reporting_pdf.php:2051 +#: ../../include/functions_reporting.php:4053 +#: ../../include/functions_reports.php:583 +msgid "Alert report module" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:914 +#: ../../enterprise/include/functions_reporting_xml.php:840 +#: ../../enterprise/include/functions_reporting_pdf.php:1967 +#: ../../include/functions_reporting.php:4071 +#: ../../include/functions_reports.php:585 +msgid "Alert report agent" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:953 +#: ../../enterprise/include/functions_reporting_xml.php:879 +#: ../../enterprise/include/functions_reporting_pdf.php:1922 +#: ../../include/functions_reporting.php:4088 +#: ../../include/functions_reports.php:578 +msgid "Import text from URL" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:965 +#: ../../enterprise/include/functions_reporting_xml.php:891 +#: ../../enterprise/include/functions_reporting_pdf.php:1837 +#: ../../include/functions_reporting.php:4111 +#: ../../include/functions_reports.php:550 +msgid "Serialize data" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1036 +#: ../../enterprise/include/functions_reporting_csv.php:643 +#: ../../enterprise/include/functions_reporting_xml.php:938 +#: ../../enterprise/include/functions_reporting_pdf.php:1806 +#: ../../include/functions_reporting.php:4182 +#: ../../include/functions_reports.php:519 +msgid "TTRT" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1048 +#: ../../enterprise/include/functions_reporting_csv.php:674 +#: ../../enterprise/include/functions_reporting_xml.php:950 +#: ../../enterprise/include/functions_reporting_pdf.php:1777 +#: ../../include/functions_reporting.php:4210 +#: ../../include/functions_reports.php:521 +msgid "TTO" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1060 +#: ../../enterprise/include/functions_reporting_csv.php:705 +#: ../../enterprise/include/functions_reporting_xml.php:962 +#: ../../enterprise/include/functions_reporting_pdf.php:1748 +#: ../../include/functions_reporting.php:4239 +#: ../../include/functions_reports.php:523 +msgid "MTBF" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1072 +#: ../../enterprise/include/functions_reporting_csv.php:756 +#: ../../enterprise/include/functions_reporting_xml.php:974 +#: ../../enterprise/include/functions_reporting_pdf.php:1720 +#: ../../include/functions_reporting.php:4267 +#: ../../include/functions_reports.php:525 +msgid "MTTR" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1076 +#: ../../operation/agentes/ver_agente.php:884 +#: ../../enterprise/operation/agentes/ver_agente.php:174 +#: ../../enterprise/operation/inventory/inventory.php:27 +#: ../../enterprise/operation/menu.php:19 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 +#: ../../enterprise/include/functions_reporting_csv.php:278 +#: ../../enterprise/include/functions_reporting_xml.php:978 +#: ../../enterprise/include/functions_reporting_pdf.php:464 +#: ../../enterprise/godmode/agentes/configurar_agente.php:33 +#: ../../include/functions_reporting.php:5738 +#: ../../include/functions_reports.php:599 +#: ../../include/functions_reports.php:600 +#: ../../include/functions_reports.php:602 +#: ../../godmode/agentes/configurar_agente.php:410 +msgid "Inventory" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1088 +#: ../../enterprise/include/functions_reporting_csv.php:299 +#: ../../enterprise/include/functions_reporting_xml.php:990 +#: ../../enterprise/include/functions_reporting_pdf.php:506 +#: ../../include/functions_reporting.php:5769 +#: ../../include/functions_reports.php:603 +msgid "Inventory changes" +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1106 +#: ../../enterprise/include/functions_reporting_xml.php:1008 +msgid "Configuration report for agent " +msgstr "" + +#: ../../operation/reporting/reporting_xml.php:1262 +#: ../../enterprise/include/functions_reporting_xml.php:1162 +msgid "Configuration report for group " +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:70 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:86 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:111 +#: ../../godmode/reporting/reporting_builder.php:1402 +msgid "List items" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:73 +#: ../../enterprise/include/functions_reporting.php:2777 +#: ../../enterprise/include/functions_reporting.php:2827 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:79 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:116 +#: ../../godmode/reporting/reporting_builder.php:1405 +msgid "Item editor" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:81 +#: ../../godmode/reporting/reporting_builder.php:1414 +msgid "View report" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:154 +msgid "Set initial date" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:161 +#: ../../operation/agentes/gis_view.php:119 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:149 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:221 +#: ../../enterprise/godmode/policies/policy_alerts.php:344 +#: ../../enterprise/godmode/alerts/alert_events_list.php:507 +#: ../../godmode/alerts/alert_templates.php:92 +#: ../../godmode/alerts/alert_list.list.php:487 +msgid "From" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:164 +msgid "Items period before" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:165 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:151 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:222 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:278 +#: ../../enterprise/godmode/policies/policy_alerts.php:345 +#: ../../enterprise/godmode/policies/policy_alerts.php:401 +#: ../../enterprise/godmode/alerts/alert_events_list.php:508 +#: ../../enterprise/godmode/alerts/alert_events_list.php:549 +#: ../../godmode/agentes/planned_downtime.list.php:247 +#: ../../godmode/massive/massive_add_action_alerts.php:156 +#: ../../godmode/alerts/alert_templates.php:94 +#: ../../godmode/alerts/alert_list.list.php:488 +#: ../../godmode/alerts/alert_list.list.php:552 +#: ../../godmode/alerts/alert_list.builder.php:124 +msgid "to" +msgstr "" + +#: ../../operation/reporting/reporting_viewer.php:177 #: ../../general/ui/agents_list.php:121 -#: ../../operation/reporting/reporting_viewer.php:125 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:85 +#: ../../enterprise/godmode/policies/policy_modules.php:697 #: ../../godmode/massive/massive_copy_modules.php:146 -#: ../../godmode/alerts/configure_alert_compound.php:597 -#: ../../godmode/reporting/reporting_builder.preview.php:115 -#: ../../enterprise/godmode/policies/policy_modules.php:605 msgid "Loading" msgstr "" +#: ../../operation/agentes/ver_agente.php:406 +#: ../../enterprise/operation/agentes/ver_agente.php:70 +msgid "Main IP" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:417 +#: ../../enterprise/operation/agentes/ver_agente.php:76 +#: ../../include/functions_events.php:1863 +msgid "Last remote contact" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:464 +#: ../../enterprise/operation/agentes/ver_agente.php:113 +msgid "Monitors down" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:519 +#: ../../general/shortcut_bar.php:150 ../../general/shortcut_bar.php:156 +#: ../../enterprise/operation/agentes/ver_agente.php:152 +#: ../../enterprise/dashboard/widgets/tactical.php:111 +#: ../../include/functions_reporting.php:2053 +#: ../../include/functions_reporting.php:2060 +#: ../../include/functions_groups.php:769 +#: ../../include/functions_groups.php:770 +#: ../../include/functions_groups.php:771 +#: ../../mobile/operation/groups.php:115 ../../mobile/operation/groups.php:116 +msgid "Alerts fired" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:555 +#: ../../operation/agentes/networkmap.php:308 +#: ../../operation/agentes/status_monitor.php:352 +#: ../../enterprise/operation/agentes/ver_agente.php:33 +#: ../../enterprise/meta/event/event_view.php:1048 +#: ../../enterprise/meta/event/event_view.php:1078 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1365 +#: ../../enterprise/godmode/modules/configure_local_component.php:158 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1141 +#: ../../include/functions_events.php:1896 +#: ../../include/functions_treeview.php:71 +#: ../../mobile/operation/modules.php:126 +#: ../../mobile/operation/modules.php:127 +#: ../../mobile/operation/modules.php:205 +#: ../../mobile/operation/modules.php:206 +#: ../../godmode/modules/manage_network_components_form_common.php:93 +#: ../../godmode/modules/manage_network_components_form_wmi.php:114 +#: ../../godmode/reporting/reporting_builder.item_editor.php:642 +#: ../../godmode/agentes/module_manager_editor_common.php:218 +#: ../../godmode/massive/massive_edit_modules.php:384 +#: ../../extensions/agents_modules.php:75 +msgid "Module group" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:567 +#: ../../enterprise/godmode/servers/manage_export.php:129 +#: ../../enterprise/godmode/servers/manage_export_form.php:82 +msgid "Address" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:599 +#: ../../operation/agentes/estado_generalagente.php:197 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1265 +#: ../../include/functions_visual_map_editor.php:302 +#: ../../godmode/modules/manage_nc_groups_form.php:55 +#: ../../godmode/reporting/visual_console_builder.elements.php:62 +#: ../../godmode/agentes/agent_manager.php:193 +#: ../../godmode/groups/configure_group.php:117 +#: ../../godmode/massive/massive_edit_agents.php:238 +msgid "Parent" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:608 +msgid "Sons" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:688 +#: ../../operation/search_agents.php:102 +msgid "Manage" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:740 +#: ../../godmode/agentes/configurar_agente.php:329 +msgid "GIS data" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:754 +#: ../../operation/integria_incidents/incident.php:43 +#: ../../operation/integria_incidents/incident.php:54 +#: ../../operation/menu.php:296 +#: ../../operation/incidents/incident_statistics.php:30 +#: ../../godmode/agentes/configurar_agente.php:343 +#: ../../godmode/agentes/configurar_agente.php:433 +msgid "Incidents" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:767 +#: ../../operation/agentes/ver_agente.php:905 +#: ../../operation/agentes/estado_generalagente.php:248 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1133 +#: ../../include/functions_treeview.php:294 +#: ../../godmode/agentes/agent_manager.php:316 +msgid "Url address" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:778 +#: ../../operation/agentes/ver_agente.php:893 +#: ../../include/functions_events.php:1868 +#: ../../godmode/agentes/agent_manager.php:354 +#: ../../godmode/massive/massive_edit_agents.php:396 +#: ../../godmode/events/events.php:47 ../../godmode/events/events.php:57 +msgid "Custom fields" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:878 +#: ../../enterprise/include/functions_reporting_pdf.php:3565 +#: ../../include/functions_reporting.php:2895 +msgid "Last data" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:887 +#: ../../enterprise/operation/agentes/ver_agente.php:190 +#: ../../enterprise/include/functions_groups.php:75 +#: ../../enterprise/godmode/agentes/collections.php:218 +#: ../../godmode/agentes/configurar_agente.php:406 +msgid "Collection" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:890 +#: ../../godmode/agentes/configurar_agente.php:429 +msgid "Gis" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:899 +#: ../../operation/agentes/alerts_status.php:284 +#: ../../operation/agentes/alerts_status.php:307 +#: ../../operation/agentes/status_monitor.php:769 +#: ../../operation/agentes/estado_monitores.php:273 +#: ../../enterprise/operation/agentes/policy_view.php:48 +#: ../../enterprise/operation/agentes/collection_view.php:58 +#: ../../enterprise/include/functions_policies.php:3300 +#: ../../enterprise/meta/advanced/policymanager.queue.php:226 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.sync.php:311 +#: ../../enterprise/godmode/agentes/collection_manager.php:122 +#: ../../enterprise/godmode/agentes/plugins_manager.php:96 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../enterprise/godmode/policies/policy_queue.php:355 +#: ../../enterprise/godmode/policies/policy_queue.php:397 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:91 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:92 +#: ../../enterprise/extensions/resource_exportation/functions.php:17 +#: ../../godmode/agentes/module_manager.php:466 +msgid "Policy" +msgstr "" + +#: ../../operation/agentes/ver_agente.php:902 +#: ../../operation/integria_incidents/incident.list.php:95 +#: ../../operation/integria_incidents/incident_detail.php:223 +#: ../../operation/incidents/incident.php:300 +#: ../../operation/incidents/incident_detail.php:238 +#: ../../godmode/servers/manage_recontask_form.php:208 +#: ../../godmode/servers/manage_recontask.php:227 +#: ../../godmode/agentes/agent_incidents.php:78 +msgid "Incident" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:112 +msgid "Insufficient permissions to validate alerts" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:272 +#: ../../godmode/alerts/alert_list.list.php:140 +msgid "Alert control filter" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:272 +#: ../../operation/agentes/graphs.php:103 +#: ../../operation/snmpconsole/snmp_view.php:364 +#: ../../operation/events/events_list.php:168 +#: ../../operation/events/events_list.php:171 +#: ../../enterprise/meta/event/event_view.php:412 +#: ../../enterprise/meta/advanced/policymanager.queue.php:252 +#: ../../enterprise/godmode/policies/policy_queue.php:276 +#: ../../enterprise/godmode/policies/policy_queue.php:388 +#: ../../godmode/reporting/reporting_builder.list_items.php:147 +#: ../../godmode/alerts/alert_list.list.php:140 +msgid "Toggle filter(s)" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:284 +#: ../../operation/agentes/alerts_status.php:307 +#: ../../operation/agentes/status_monitor.php:769 +#: ../../operation/agentes/estado_monitores.php:273 +#: ../../enterprise/operation/agentes/collection_view.php:58 +#: ../../enterprise/godmode/agentes/collection_manager.php:122 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../godmode/reporting/reporting_builder.list_items.php:242 +#: ../../godmode/agentes/module_manager.php:466 +msgid "P." +msgstr "" + +#: ../../operation/agentes/alerts_status.php:285 +#: ../../operation/agentes/alerts_status.php:308 +#: ../../operation/agentes/alerts_status.php:330 +#: ../../operation/agentes/alerts_status.php:351 +#: ../../operation/agentes/alerts_status.functions.php:63 +#: ../../enterprise/operation/agentes/policy_view.php:193 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1475 +#: ../../enterprise/godmode/policies/policy_alerts.php:222 +#: ../../godmode/alerts/alert_list.list.php:124 +msgid "Standby" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:285 +#: ../../operation/agentes/alerts_status.php:308 +#: ../../operation/agentes/alerts_status.php:330 +#: ../../operation/agentes/alerts_status.php:351 +#: ../../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 +#: ../../enterprise/meta/event/event_view.php:767 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:193 +#: ../../enterprise/godmode/admin_access_logs.php:22 +#: ../../enterprise/godmode/policies/policy_agents.php:343 +#: ../../enterprise/godmode/policies/policy_alerts.php:222 +#: ../../include/functions_events.php:799 +#: ../../mobile/operation/agents.php:264 +#: ../../godmode/agentes/module_manager.php:469 +msgid "S." +msgstr "" + +#: ../../operation/agentes/alerts_status.php:286 +#: ../../operation/agentes/alerts_status.php:309 +#: ../../operation/agentes/alerts_status.php:331 +#: ../../operation/agentes/alerts_status.php:352 +#: ../../operation/agentes/estado_monitores.php:270 +msgid "Force execution" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:286 +#: ../../operation/agentes/alerts_status.php:309 +#: ../../operation/agentes/alerts_status.php:331 +#: ../../operation/agentes/alerts_status.php:352 +#: ../../operation/agentes/estado_monitores.php:270 +msgid "F." +msgstr "" + +#: ../../operation/agentes/alerts_status.php:297 +#: ../../operation/agentes/alerts_status.php:317 +#: ../../operation/agentes/alerts_status.php:342 +#: ../../operation/agentes/alerts_status.php:360 +#: ../../enterprise/operation/agentes/policy_view.php:197 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1516 +#: ../../include/functions_reporting.php:2228 +#: ../../godmode/snmpconsole/snmp_alert.php:471 +#: ../../extensions/agents_alerts.php:262 +msgid "Last fired" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:300 +#: ../../operation/agentes/alerts_status.php:320 +#: ../../operation/agentes/alerts_status.php:345 +#: ../../operation/agentes/alerts_status.php:363 +#: ../../operation/agentes/alerts_status.php:393 +#: ../../operation/snmpconsole/snmp_view.php:522 +#: ../../operation/snmpconsole/snmp_view.php:596 +#: ../../operation/snmpconsole/snmp_view.php:620 +#: ../../enterprise/meta/event/event_view.php:908 +#: ../../enterprise/meta/event/event_view.php:911 +#: ../../enterprise/meta/event/event_view.php:915 +#: ../../enterprise/godmode/alerts/alert_events_list.php:374 +#: ../../enterprise/godmode/alerts/alert_events_list.php:612 +#: ../../mobile/operation/events.php:461 +msgid "Validate" +msgstr "" + +#: ../../operation/agentes/alerts_status.php:401 +msgid "No alerts found" +msgstr "" + +#: ../../operation/agentes/stat_win.php:104 +msgid "There was a problem locating the source of the graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:210 +msgid "Pandora FMS Graph configuration menu" +msgstr "" + +#: ../../operation/agentes/stat_win.php:212 +msgid "Please, make your changes and apply with the Reload button" +msgstr "" + +#: ../../operation/agentes/stat_win.php:243 +msgid "Refresh time" +msgstr "" + +#: ../../operation/agentes/stat_win.php:250 +msgid "Avg. Only" +msgstr "" + +#: ../../operation/agentes/stat_win.php:258 +#: ../../operation/agentes/graphs.php:73 +#: ../../operation/agentes/exportdata.php:262 +#: ../../mobile/operation/module_graph.php:384 +msgid "Begin date" +msgstr "" + +#: ../../operation/agentes/stat_win.php:265 +#: ../../operation/agentes/graphs.php:77 +msgid "Zoom factor" +msgstr "" + +#: ../../operation/agentes/stat_win.php:283 +#: ../../operation/agentes/graphs.php:90 +msgid "Show events" +msgstr "" + +#: ../../operation/agentes/stat_win.php:289 +#: ../../operation/agentes/graphs.php:92 +msgid "Show alerts" +msgstr "" + +#: ../../operation/agentes/stat_win.php:295 +msgid "Show event graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:304 +#: ../../operation/agentes/stat_win.php:310 +msgid "Time compare" +msgstr "" + +#: ../../operation/agentes/stat_win.php:304 +msgid "Overlapped" +msgstr "" + +#: ../../operation/agentes/stat_win.php:310 +msgid "Separated" +msgstr "" + +#: ../../operation/agentes/stat_win.php:316 +#: ../../mobile/operation/module_graph.php:344 +msgid "Show unknown graph" +msgstr "" + +#: ../../operation/agentes/stat_win.php:339 +msgid "Reload" +msgstr "" + +#: ../../operation/agentes/exportdata.excel.php:67 +#: ../../operation/agentes/exportdata.csv.php:68 +#: ../../operation/agentes/exportdata.php:75 +msgid "Invalid time specified" +msgstr "" + +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/status_monitor.php:816 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/estado_agente.php:449 +#: ../../operation/agentes/gis_view.php:127 +#: ../../operation/agentes/estado_monitores.php:287 +#: ../../operation/agentes/exportdata.php:87 +#: ../../operation/search_modules.php:53 +#: ../../enterprise/operation/agentes/policy_view.php:308 +#: ../../enterprise/include/functions_reporting_csv.php:179 +#: ../../enterprise/include/functions_reporting_csv.php:211 +#: ../../enterprise/include/functions_reporting_csv.php:783 +#: ../../enterprise/include/functions_reporting_csv.php:897 +#: ../../enterprise/include/functions_reporting_csv.php:1041 +#: ../../enterprise/include/functions_services.php:827 +#: ../../enterprise/include/functions_reporting_pdf.php:1867 +#: ../../enterprise/meta/screens/screens.visualmap.php:123 +#: ../../enterprise/godmode/agentes/collections.data.php:56 +#: ../../enterprise/godmode/agentes/collections.data.php:92 +#: ../../enterprise/godmode/agentes/collections.data.php:118 +#: ../../enterprise/godmode/agentes/collections.data.php:132 +#: ../../enterprise/godmode/agentes/collections.data.php:146 +#: ../../enterprise/godmode/agentes/collections.data.php:167 +#: ../../enterprise/godmode/agentes/collections.data.php:189 +#: ../../enterprise/godmode/agentes/collections.data.php:207 +#: ../../enterprise/godmode/agentes/collections.data.php:226 +#: ../../enterprise/godmode/agentes/collections.editor.php:33 +#: ../../include/functions_reporting.php:4131 +#: ../../include/functions_netflow.php:307 +#: ../../include/functions_graph.php:676 ../../include/functions_graph.php:680 +#: ../../include/functions_graph.php:2809 +#: ../../include/functions_graph.php:2814 +#: ../../include/functions_graph.php:3350 +#: ../../mobile/operation/modules.php:488 +#: ../../mobile/operation/modules.php:595 ../../extensions/insert_data.php:167 +#: ../../extensions/insert_data.php:168 +msgid "Data" +msgstr "" + +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/status_monitor.php:824 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/exportdata.php:87 +#: ../../operation/integria_incidents/incident.files.php:43 +#: ../../operation/messages/message_list.php:129 +#: ../../operation/snmpconsole/snmp_view.php:412 +#: ../../operation/events/events.php:93 +#: ../../operation/events/events.build_table.php:59 +#: ../../operation/search_modules.php:54 +#: ../../enterprise/include/functions_reporting_csv.php:179 +#: ../../enterprise/include/functions_reporting_csv.php:211 +#: ../../enterprise/include/functions_reporting_pdf.php:2540 +#: ../../enterprise/meta/event/event_view.php:775 +#: ../../enterprise/meta/event/event_view.php:991 +#: ../../include/functions_events.php:812 +#: ../../include/functions_events.php:2071 +#: ../../include/functions_reporting.php:1592 +#: ../../include/functions_reporting.php:2472 +#: ../../include/functions_reporting.php:2579 +#: ../../include/functions_reporting.php:2682 +#: ../../include/functions_netflow.php:284 ../../include/ajax/events.php:434 +#: ../../mobile/operation/modules.php:442 +#: ../../mobile/operation/modules.php:594 +#: ../../mobile/operation/events.php:100 ../../mobile/operation/events.php:416 +#: ../../mobile/operation/events.php:684 ../../godmode/setup/news.php:145 +#: ../../godmode/events/custom_events.php:83 +#: ../../godmode/events/custom_events.php:153 +#: ../../extensions/update_manager/lib/functions.ajax.php:549 +msgid "Timestamp" +msgstr "" + +#: ../../operation/agentes/exportdata.excel.php:163 +#: ../../operation/agentes/exportdata.csv.php:169 +#: ../../operation/agentes/exportdata.php:171 +msgid "No modules specified" +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:31 +#: ../../operation/agentes/networkmap.php:268 +#: ../../operation/agentes/networkmap.groups.php:99 +#: ../../operation/agentes/networkmap.topology.php:97 +#: ../../operation/menu.php:80 +#: ../../enterprise/operation/policies/networkmap.policies.php:84 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:538 +#: ../../enterprise/dashboard/widgets/network_map.php:25 +msgid "Network map" +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:40 +#: ../../operation/agentes/networkmap.php:45 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:36 +msgid "Network map deleted successfully" +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:41 +#: ../../operation/agentes/networkmap.php:46 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:37 +msgid "Could not delete network map" +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:114 +#: ../../operation/agentes/networkmap_list.php:159 +#: ../../operation/integria_incidents/incident.files.php:46 +#: ../../operation/integria_incidents/incident_detail.php:391 +#: ../../operation/messages/message_edit.php:107 +#: ../../operation/messages/message_list.php:130 +#: ../../operation/messages/message_list.php:194 +#: ../../operation/messages/message_list.php:200 +#: ../../operation/messages/message_list.php:211 +#: ../../operation/incidents/incident_detail.php:448 +#: ../../operation/snmpconsole/snmp_view.php:525 +#: ../../operation/snmpconsole/snmp_view.php:601 +#: ../../operation/snmpconsole/snmp_view.php:622 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:185 +#: ../../enterprise/operation/services/services.list.php:159 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:303 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:485 +#: ../../enterprise/meta/advanced/policymanager.queue.php:232 +#: ../../enterprise/meta/advanced/policymanager.queue.php:267 +#: ../../enterprise/meta/advanced/policymanager.queue.php:318 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:128 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:143 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1413 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1582 +#: ../../enterprise/godmode/setup/setup_acl.php:141 +#: ../../enterprise/godmode/modules/local_components.php:466 +#: ../../enterprise/godmode/modules/local_components.php:478 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:213 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:226 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:192 +#: ../../enterprise/godmode/reporting/mysql_builder.php:42 +#: ../../enterprise/godmode/reporting/mysql_builder.php:49 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:295 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 +#: ../../enterprise/godmode/reporting/graph_template_list.php:165 +#: ../../enterprise/godmode/agentes/plugins_manager.php:98 +#: ../../enterprise/godmode/agentes/plugins_manager.php:122 +#: ../../enterprise/godmode/agentes/inventory_manager.php:250 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:272 +#: ../../enterprise/godmode/policies/policy_plugins.php:69 +#: ../../enterprise/godmode/policies/policy_modules.php:674 +#: ../../enterprise/godmode/policies/policy_queue.php:368 +#: ../../enterprise/godmode/policies/policy_queue.php:402 +#: ../../enterprise/godmode/policies/policy_queue.php:444 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:256 +#: ../../enterprise/godmode/policies/policy_agents.php:437 +#: ../../enterprise/godmode/policies/policies.php:330 +#: ../../enterprise/godmode/policies/policy_alerts.php:226 +#: ../../enterprise/godmode/policies/policy_alerts.php:379 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:238 +#: ../../enterprise/godmode/alerts/alert_events_list.php:516 +#: ../../enterprise/godmode/alerts/alert_events_list.php:593 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:470 +#: ../../enterprise/extensions/backup/main.php:131 +#: ../../enterprise/extensions/cron/main.php:249 +#: ../../godmode/db/db_refine.php:104 ../../godmode/setup/links.php:135 +#: ../../godmode/setup/setup_visuals.php:108 ../../godmode/setup/news.php:146 +#: ../../godmode/setup/gis.php:64 +#: ../../godmode/modules/manage_network_templates.php:212 +#: ../../godmode/modules/manage_network_templates.php:225 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../godmode/modules/manage_network_components.php:517 +#: ../../godmode/modules/manage_network_components.php:529 +#: ../../godmode/modules/manage_nc_groups.php:219 +#: ../../godmode/modules/manage_nc_groups.php:230 +#: ../../godmode/netflow/nf_item_list.php:237 +#: ../../godmode/netflow/nf_item_list.php:248 +#: ../../godmode/netflow/nf_edit.php:144 ../../godmode/netflow/nf_edit.php:155 +#: ../../godmode/servers/servers.build_table.php:120 +#: ../../godmode/servers/recon_script.php:184 +#: ../../godmode/users/user_list.php:309 ../../godmode/extensions.php:288 +#: ../../godmode/extensions.php:292 ../../godmode/gis_maps/index.php:109 +#: ../../godmode/reporting/map_builder.php:150 +#: ../../godmode/reporting/reporting_builder.php:462 +#: ../../godmode/reporting/reporting_builder.list_items.php:386 +#: ../../godmode/reporting/reporting_builder.list_items.php:409 +#: ../../godmode/reporting/reporting_builder.list_items.php:452 +#: ../../godmode/reporting/graphs.php:188 +#: ../../godmode/reporting/graph_builder.graph_editor.php:83 +#: ../../godmode/reporting/graph_builder.graph_editor.php:109 +#: ../../godmode/agentes/agent_template.php:212 +#: ../../godmode/agentes/fields_manager.php:116 +#: ../../godmode/agentes/planned_downtime.editor.php:564 +#: ../../godmode/agentes/planned_downtime.editor.php:572 +#: ../../godmode/agentes/planned_downtime.editor.php:617 +#: ../../godmode/agentes/planned_downtime.list.php:198 +#: ../../godmode/agentes/planned_downtime.list.php:301 +#: ../../godmode/agentes/module_manager.php:484 +#: ../../godmode/agentes/module_manager.php:686 +#: ../../godmode/agentes/module_manager.php:704 +#: ../../godmode/groups/modu_group_list.php:182 +#: ../../godmode/groups/group_list.php:358 +#: ../../godmode/snmpconsole/snmp_alert.php:502 +#: ../../godmode/snmpconsole/snmp_filters.php:141 +#: ../../godmode/massive/massive_delete_agents.php:125 +#: ../../godmode/massive/massive_delete_alerts.php:200 +#: ../../godmode/massive/massive_delete_profiles.php:131 +#: ../../godmode/massive/massive_delete_modules.php:310 +#: ../../godmode/massive/massive_delete_action_alerts.php:180 +#: ../../godmode/events/event_responses.list.php:71 +#: ../../godmode/events/event_filter.php:135 +#: ../../godmode/events/event_filter.php:146 +#: ../../godmode/alerts/alert_templates.php:310 +#: ../../godmode/alerts/alert_list.list.php:504 +#: ../../godmode/alerts/alert_list.list.php:637 +#: ../../godmode/alerts/alert_special_days.php:155 +#: ../../godmode/alerts/alert_commands.php:259 +#: ../../godmode/alerts/alert_actions.php:335 +#: ../../extensions/update_manager/update_pandora.php:184 +msgid "Delete" +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:142 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:100 +msgid "Not networkmap defined." +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:158 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:184 +#: ../../enterprise/operation/services/services.list.php:150 +msgid "Config" +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:159 +#: ../../operation/integria_incidents/incident_detail.php:360 +#: ../../operation/integria_incidents/incident_detail.php:401 +#: ../../operation/messages/message_list.php:193 +#: ../../operation/messages/message_list.php:199 +#: ../../operation/incidents/incident_detail.php:417 +#: ../../operation/incidents/incident_detail.php:464 +#: ../../operation/snmpconsole/snmp_view.php:525 +#: ../../operation/snmpconsole/snmp_view.php:601 +#: ../../operation/events/events.php:694 +#: ../../operation/events/events.build_table.php:553 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:185 +#: ../../enterprise/operation/services/services.list.php:158 +#: ../../enterprise/include/functions_services.php:937 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:80 +#: ../../enterprise/meta/event/event_view.php:1272 +#: ../../enterprise/meta/event/event_view.php:1780 +#: ../../enterprise/meta/advanced/policymanager.queue.php:336 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:143 +#: ../../enterprise/dashboard/dashboard_replicate.php:165 +#: ../../enterprise/dashboard/main_dashboard.php:557 +#: ../../enterprise/godmode/setup/setup_skins.php:137 +#: ../../enterprise/godmode/modules/local_components.php:465 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:212 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:179 +#: ../../enterprise/godmode/reporting/mysql_builder.php:49 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:550 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:268 +#: ../../enterprise/godmode/reporting/graph_template_list.php:153 +#: ../../enterprise/godmode/agentes/inventory_manager.php:249 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:185 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:204 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:265 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:271 +#: ../../enterprise/godmode/policies/policy_modules.php:663 +#: ../../enterprise/godmode/policies/policy_queue.php:291 +#: ../../enterprise/godmode/policies/policy_queue.php:463 +#: ../../enterprise/godmode/policies/policy_queue.php:486 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:245 +#: ../../enterprise/godmode/policies/policy_agents.php:217 +#: ../../enterprise/godmode/policies/policy_agents.php:296 +#: ../../enterprise/godmode/policies/policy_agents.php:429 +#: ../../enterprise/godmode/policies/policy_agents.php:482 +#: ../../enterprise/godmode/policies/policies.php:316 +#: ../../enterprise/godmode/policies/policies.php:326 +#: ../../enterprise/godmode/policies/policies.php:343 +#: ../../enterprise/godmode/policies/policy_alerts.php:368 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:237 +#: ../../enterprise/godmode/alerts/alert_events_list.php:590 +#: ../../enterprise/godmode/alerts/alert_events_list.php:690 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:469 +#: ../../enterprise/extensions/backup/main.php:171 +#: ../../include/functions_events.php:1626 +#: ../../include/functions_filemanager.php:613 +#: ../../godmode/db/db_event.php:85 ../../godmode/db/db_audit.php:107 +#: ../../godmode/db/db_refine.php:104 ../../godmode/setup/links.php:148 +#: ../../godmode/setup/news.php:165 +#: ../../godmode/modules/manage_network_templates.php:207 +#: ../../godmode/modules/manage_network_templates.php:212 +#: ../../godmode/modules/manage_network_components.php:516 +#: ../../godmode/modules/manage_nc_groups.php:217 +#: ../../godmode/netflow/nf_item_list.php:235 +#: ../../godmode/netflow/nf_edit.php:142 ../../godmode/servers/plugin.php:463 +#: ../../godmode/users/user_list.php:309 +#: ../../godmode/users/configure_user.php:591 +#: ../../godmode/users/profile_list.php:251 +#: ../../godmode/reporting/reporting_builder.php:458 +#: ../../godmode/reporting/graphs.php:176 +#: ../../godmode/reporting/visual_console_builder.elements.php:186 +#: ../../godmode/reporting/visual_console_builder.elements.php:193 +#: ../../godmode/agentes/modificar_agente.php:536 +#: ../../godmode/agentes/agent_template.php:212 +#: ../../godmode/agentes/module_manager_editor_common.php:135 +#: ../../godmode/agentes/fields_manager.php:116 +#: ../../godmode/agentes/planned_downtime.editor.php:614 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../godmode/agentes/module_manager.php:654 +#: ../../godmode/agentes/module_manager.php:669 +#: ../../godmode/agentes/module_manager.php:684 +#: ../../godmode/agentes/module_manager.php:695 +#: ../../godmode/agentes/agent_manager.php:175 +#: ../../godmode/groups/modu_group_list.php:193 +#: ../../godmode/groups/group_list.php:358 +#: ../../godmode/category/category.php:122 +#: ../../godmode/snmpconsole/snmp_filters.php:140 +#: ../../godmode/massive/massive_operations.php:170 +#: ../../godmode/massive/massive_operations.php:179 +#: ../../godmode/massive/massive_operations.php:188 +#: ../../godmode/massive/massive_add_action_alerts.php:174 +#: ../../godmode/massive/massive_add_alerts.php:152 +#: ../../godmode/massive/massive_delete_agents.php:123 +#: ../../godmode/massive/massive_delete_profiles.php:129 +#: ../../godmode/massive/massive_standby_alerts.php:162 +#: ../../godmode/massive/massive_delete_modules.php:308 +#: ../../godmode/massive/massive_enable_disable_alerts.php:161 +#: ../../godmode/massive/massive_add_profiles.php:114 +#: ../../godmode/massive/massive_delete_action_alerts.php:178 +#: ../../godmode/events/event_filter.php:133 ../../godmode/tag/tag.php:186 +#: ../../godmode/alerts/alert_templates.php:307 +#: ../../godmode/alerts/alert_list.list.php:745 +#: ../../godmode/alerts/alert_special_days.php:210 +#: ../../godmode/alerts/alert_commands.php:286 +#: ../../godmode/alerts/alert_actions.php:371 +#: ../../godmode/alerts/alert_actions.php:374 +msgid "Are you sure?" +msgstr "" + +#: ../../operation/agentes/networkmap_list.php:182 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:198 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:164 +#: ../../enterprise/meta/screens/screens.networkmap.php:41 +msgid "Create networkmap" +msgstr "" + +#: ../../operation/agentes/networkmap.php:79 +#: ../../operation/agentes/networkmap.php:88 +msgid "Network map created successfully" +msgstr "" + +#: ../../operation/agentes/networkmap.php:80 +#: ../../operation/agentes/networkmap.php:89 +msgid "Could not create network map" +msgstr "" + +#: ../../operation/agentes/networkmap.php:138 +msgid "Network map saved successfully" +msgstr "" + +#: ../../operation/agentes/networkmap.php:139 +msgid "Could not save network map" +msgstr "" + +#: ../../operation/agentes/networkmap.php:142 +msgid "Each network map must have a different name" +msgstr "" + +#: ../../operation/agentes/networkmap.php:197 +#: ../../operation/snmpconsole/snmp_browser.php:71 +#: ../../operation/snmpconsole/snmp_view.php:49 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:784 +msgid "Normal screen" +msgstr "" + +#: ../../operation/agentes/networkmap.php:202 +#: ../../operation/snmpconsole/snmp_browser.php:74 +#: ../../operation/snmpconsole/snmp_view.php:53 +#: ../../operation/events/events.php:262 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:789 +msgid "Full screen" +msgstr "" + +#: ../../operation/agentes/networkmap.php:207 +#: ../../operation/agentes/networkmap.php:260 +msgid "Policies view" +msgstr "" + +#: ../../operation/agentes/networkmap.php:212 +#: ../../operation/agentes/networkmap.php:257 +msgid "Groups view" +msgstr "" + +#: ../../operation/agentes/networkmap.php:216 +#: ../../operation/agentes/networkmap.php:254 +msgid "Topology view" +msgstr "" + +#: ../../operation/agentes/networkmap.php:222 +#: ../../extensions/system_info.php:335 +msgid "No selected" +msgstr "" + +#: ../../operation/agentes/networkmap.php:232 +msgid "Add map" +msgstr "" + +#: ../../operation/agentes/networkmap.php:237 +msgid "Delete map" +msgstr "" + +#: ../../operation/agentes/networkmap.php:248 +#: ../../godmode/gis_maps/configure_gis_map.php:383 +#: ../../godmode/gis_maps/configure_gis_map.php:390 +#: ../../godmode/gis_maps/configure_gis_map.php:470 +#: ../../godmode/gis_maps/configure_gis_map.php:477 +msgid "Save map" +msgstr "" + +#: ../../operation/agentes/networkmap.php:279 +msgid "There are no defined maps in this view" +msgstr "" + +#: ../../operation/agentes/networkmap.php:303 +#: ../../enterprise/godmode/agentes/collections.data.php:284 +#: ../../godmode/setup/os.builder.php:33 +#: ../../godmode/reporting/visual_console_builder.data.php:74 +msgid "Name:" +msgstr "" + +#: ../../operation/agentes/networkmap.php:305 +#: ../../enterprise/godmode/agentes/collections.data.php:291 +#: ../../godmode/reporting/visual_console_builder.data.php:77 +msgid "Group:" +msgstr "" + +#: ../../operation/agentes/networkmap.php:312 +msgid "Show interfaces" +msgstr "" + +#: ../../operation/agentes/networkmap.php:315 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:353 +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:32 +msgid "Layout" +msgstr "" + +#: ../../operation/agentes/networkmap.php:318 ../../operation/tree.php:505 +#: ../../operation/tree.php:557 ../../operation/tree.php:564 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:164 +#: ../../enterprise/dashboard/widgets/groups_status.php:28 +#: ../../enterprise/dashboard/widgets/events_list.php:54 +#: ../../include/ajax/networkmap.ajax.php:57 +#: ../../mobile/operation/home.php:55 +#: ../../mobile/include/functions_web.php:26 +#: ../../godmode/reporting/visual_console_builder.wizard.php:153 +msgid "Groups" +msgstr "" + +#: ../../operation/agentes/networkmap.php:319 +#: ../../operation/agentes/networkmap.php:325 +msgid "Depth" +msgstr "" + +#: ../../operation/agentes/networkmap.php:324 ../../operation/tree.php:512 +#: ../../enterprise/operation/agentes/ver_agente.php:208 +#: ../../enterprise/include/functions_groups.php:32 +#: ../../enterprise/meta/advanced/policymanager.apply.php:199 +#: ../../include/ajax/networkmap.ajax.php:50 +msgid "Policies" +msgstr "" + +#: ../../operation/agentes/networkmap.php:328 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:381 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:392 +msgid "No Overlap" +msgstr "" + +#: ../../operation/agentes/networkmap.php:332 +msgid "Only modules with alerts" +msgstr "" + +#: ../../operation/agentes/networkmap.php:337 +msgid "Hide policy modules" +msgstr "" + +#: ../../operation/agentes/networkmap.php:342 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:400 +#: ../../enterprise/dashboard/widgets/network_map.php:40 +msgid "Simple" +msgstr "" + +#: ../../operation/agentes/networkmap.php:345 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:367 +msgid "Regenerate" +msgstr "" + +#: ../../operation/agentes/networkmap.php:358 +#: ../../enterprise/include/functions_networkmap_enterprise.php:276 +msgid "Zoom" +msgstr "" + +#: ../../operation/agentes/networkmap.php:362 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:384 +msgid "Distance between nodes" +msgstr "" + +#: ../../operation/agentes/networkmap.php:363 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:385 +msgid "Separation between elements in the map (in Non-overlap mode)" +msgstr "" + +#: ../../operation/agentes/networkmap.php:365 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:356 +msgid "Font" +msgstr "" + +#: ../../operation/agentes/networkmap.php:367 +#: ../../operation/agentes/estado_monitores.php:624 +msgid "Free text for search (*):" +msgstr "" + +#: ../../operation/agentes/networkmap.php:370 +msgid "Don't show subgroups:" +msgstr "" + +#: ../../operation/agentes/networkmap.php:371 +msgid "Only run with it is filter for any group" +msgstr "" + +#: ../../operation/agentes/networkmap.php:380 +#: ../../enterprise/meta/advanced/policymanager.apply.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:312 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:417 +#: ../../enterprise/godmode/policies/policy_queue.php:438 +#: ../../enterprise/godmode/policies/policy_agents.php:345 +#: ../../include/functions_visual_map_editor.php:171 +msgid "Apply" +msgstr "" + +#: ../../operation/agentes/networkmap.php:384 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:438 +msgid "Map options" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:36 +#: ../../operation/agentes/custom_fields.php:28 +#: ../../operation/agentes/agent_fields.php:28 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1047 +#: ../../include/functions_treeview.php:208 +msgid "There was a problem loading agent" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:66 +#: ../../operation/agentes/estado_generalagente.php:213 +#: ../../operation/agentes/alerts_status.functions.php:50 +#: ../../operation/search_agents.php:83 +#: ../../enterprise/include/functions_reporting_pdf.php:3636 +#: ../../enterprise/include/functions_reporting_pdf.php:3773 +#: ../../enterprise/meta/include/functions_wizard_meta.php:167 +#: ../../enterprise/meta/include/functions_wizard_meta.php:236 +#: ../../enterprise/meta/include/functions_wizard_meta.php:582 +#: ../../enterprise/meta/include/functions_wizard_meta.php:894 +#: ../../enterprise/meta/include/functions_wizard_meta.php:979 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:409 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:672 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:880 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1063 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1352 +#: ../../enterprise/godmode/setup/edit_skin.php:259 +#: ../../include/functions_reporting.php:5835 +#: ../../include/functions_reporting.php:5972 +#: ../../include/functions_treeview.php:64 +#: ../../include/functions_treeview.php:230 +#: ../../mobile/operation/alerts.php:39 ../../mobile/operation/agent.php:90 +#: ../../godmode/agentes/modificar_agente.php:468 +#: ../../godmode/agentes/module_manager_editor_common.php:148 +#: ../../godmode/agentes/agent_manager.php:252 +#: ../../godmode/groups/group_list.php:349 +#: ../../godmode/massive/massive_edit_agents.php:307 +#: ../../godmode/massive/massive_edit_modules.php:354 +#: ../../godmode/alerts/configure_alert_template.php:574 +#: ../../extensions/update_manager/lib/libupdate_manager.php:814 +msgid "Disabled" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:69 +#: ../../operation/agentes/estado_agente.php:442 +#: ../../operation/agentes/estado_monitores.php:393 +#: ../../operation/tree.php:248 ../../operation/tree.php:451 +#: ../../mobile/operation/agent.php:93 +#: ../../godmode/agentes/modificar_agente.php:450 +#: ../../godmode/agentes/module_manager_editor_common.php:404 +#: ../../godmode/agentes/planned_downtime.editor.php:313 +#: ../../godmode/agentes/planned_downtime.list.php:233 +#: ../../godmode/agentes/module_manager.php:540 +#: ../../godmode/agentes/agent_manager.php:319 +#: ../../godmode/massive/massive_edit_agents.php:359 +#: ../../godmode/massive/massive_edit_modules.php:432 +msgid "Quiet" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:110 +#: ../../mobile/operation/agent.php:107 +msgid "IP address" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:148 +msgid "Agent contact" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:170 +msgid "Next contact" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:186 +msgid "Agent info" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:191 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1092 +#: ../../include/functions_treeview.php:253 +#: ../../mobile/operation/agent.php:110 +msgid "Other IP addresses" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:211 +#: ../../enterprise/godmode/policies/policy_agents.php:342 +#: ../../godmode/agentes/agent_manager.php:256 +#: ../../godmode/massive/massive_edit_agents.php:311 +msgid "Remote configuration" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:216 +#: ../../enterprise/include/functions_reporting_pdf.php:3634 +#: ../../enterprise/include/functions_reporting_pdf.php:3771 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:882 +#: ../../include/functions_reporting.php:5833 +#: ../../include/functions_reporting.php:5970 +#: ../../godmode/groups/group_list.php:349 +#: ../../godmode/alerts/configure_alert_template.php:574 +msgid "Enabled" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:229 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1113 +#: ../../include/functions_treeview.php:274 +msgid "Position (Long, Lat)" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:233 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1117 +#: ../../include/functions_treeview.php:278 +msgid "There is no GIS data." +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:259 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1152 +#: ../../include/functions_treeview.php:314 +msgid "Timezone Offset" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:272 +#: ../../operation/agentes/agent_fields.php:45 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1168 +#: ../../include/functions_treeview.php:330 +msgid "Custom field" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:299 +msgid "Refresh data" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:309 +#: ../../mobile/operation/agent.php:132 +msgid "Events (24h)" +msgstr "" + +#: ../../operation/agentes/estado_generalagente.php:320 +#: ../../include/functions_treeview.php:350 +msgid "Agent access rate (24h)" +msgstr "" + +#: ../../operation/agentes/group_view.php:68 +#: ../../operation/agentes/tactical.php:43 +#: ../../enterprise/meta/monitoring/group_view.php:78 +#: ../../extensions/agents_alerts.php:55 +#: ../../extensions/agents_modules.php:56 +msgid "Last update" +msgstr "" + +#: ../../operation/agentes/group_view.php:72 +#: ../../operation/agentes/tactical.php:47 +#: ../../enterprise/meta/monitoring/group_view.php:81 +#: ../../extensions/agents_alerts.php:58 +#: ../../extensions/agents_modules.php:59 +msgid "Updated at realtime" +msgstr "" + +#: ../../operation/agentes/group_view.php:94 +#: ../../enterprise/meta/monitoring/group_view.php:63 +msgid "Agent unknown" +msgstr "" + +#: ../../operation/agentes/group_view.php:96 +msgid "Not Init" +msgstr "" + +#: ../../operation/agentes/group_view.php:100 +#: ../../operation/agentes/bulbs.php:25 +#: ../../operation/snmpconsole/snmp_view.php:509 +#: ../../operation/events/sound_events.php:77 +#: ../../enterprise/operation/agentes/policy_view.php:265 +#: ../../enterprise/meta/monitoring/group_view.php:67 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:638 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:862 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1528 +#: ../../enterprise/godmode/alerts/alert_events_list.php:565 +#: ../../include/functions_ui.php:795 ../../include/functions_events.php:1057 +#: ../../include/functions_events.php:1317 +#: ../../include/functions_reporting.php:2812 ../../include/functions.php:878 +#: ../../include/functions_agents.php:2004 +#: ../../mobile/operation/alerts.php:239 +#: ../../godmode/alerts/alert_list.list.php:578 +#: ../../extensions/agents_alerts.php:298 +msgid "Alert fired" +msgstr "" + +#: ../../operation/agentes/group_view.php:112 +#: ../../operation/agentes/estado_agente.php:506 +#: ../../godmode/agentes/modificar_agente.php:547 +msgid "There are no defined agents" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:45 +#: ../../enterprise/meta/general/main_header.php:124 +msgid "Monitor view" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:332 +msgid "Monitor status" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:343 +#: ../../operation/agentes/estado_agente.php:179 +#: ../../operation/events/events_list.php:359 +#: ../../enterprise/meta/event/event_view.php:440 +#: ../../include/functions_events.php:1341 ../../include/functions.php:917 +#: ../../mobile/operation/modules.php:41 +#: ../../godmode/events/event_edit_filter.php:178 +msgid "Not normal" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:344 +#: ../../operation/agentes/estado_agente.php:180 +#: ../../enterprise/include/functions_reporting_pdf.php:808 +#: ../../enterprise/meta/monitoring/tactical.php:82 +#: ../../include/functions_reporting.php:4347 +#: ../../include/functions_groups.php:749 +#: ../../include/functions_groups.php:750 +#: ../../include/functions_groups.php:751 +#: ../../mobile/operation/modules.php:42 ../../mobile/operation/groups.php:99 +#: ../../mobile/operation/groups.php:100 +msgid "Not init" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:364 +#: ../../enterprise/meta/event/event_view.php:1055 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1370 +#: ../../include/functions_treeview.php:76 +#: ../../godmode/agentes/module_manager_editor_common.php:220 +#: ../../godmode/massive/massive_edit_modules.php:387 +msgid "Not assigned" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:377 +#: ../../operation/agentes/status_monitor.php:784 +#: ../../operation/agentes/estado_monitores.php:279 +#: ../../enterprise/include/functions_reporting_pdf.php:3653 +#: ../../enterprise/include/functions_reporting_pdf.php:3792 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1349 +#: ../../include/functions_treeview.php:61 +#: ../../mobile/operation/modules.php:392 +#: ../../mobile/operation/modules.php:591 +#: ../../godmode/modules/manage_network_templates_form.php:196 +#: ../../godmode/modules/manage_network_components.php:484 +#: ../../godmode/modules/manage_network_components_form_wmi.php:85 +#: ../../godmode/agentes/agent_template.php:192 +#: ../../godmode/alerts/alert_list.list.php:77 +msgid "Module name" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:392 +msgid "Only it is show tags in use." +msgstr "" + +#: ../../operation/agentes/status_monitor.php:401 +msgid "No tags" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:416 +#: ../../operation/agentes/estado_agente.php:188 +#: ../../operation/integria_incidents/incident.list.php:76 +#: ../../operation/search_results.php:131 +#: ../../operation/incidents/incident.php:258 +#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 +#: ../../enterprise/operation/log/log_viewer.php:124 +#: ../../enterprise/operation/log/log_viewer.php:127 +#: ../../enterprise/operation/agentes/agent_inventory.php:80 +#: ../../enterprise/operation/agentes/agent_inventory.php:85 +#: ../../enterprise/operation/inventory/inventory.php:83 +#: ../../enterprise/operation/inventory/inventory.php:126 +#: ../../enterprise/meta/general/main_header.php:52 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:199 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:257 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:358 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:428 +#: ../../enterprise/meta/agentsearch.php:66 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:142 +#: ../../enterprise/godmode/modules/local_components.php:397 +#: ../../enterprise/godmode/modules/local_components.php:404 +#: ../../enterprise/godmode/agentes/collection_manager.php:49 +#: ../../enterprise/godmode/agentes/collections.php:203 +#: ../../enterprise/godmode/policies/policy_agents.php:331 +#: ../../enterprise/godmode/policies/policy_agents.php:336 +#: ../../enterprise/godmode/policies/policy_collections.php:178 +#: ../../enterprise/godmode/alerts/alert_events_list.php:323 +#: ../../enterprise/godmode/alerts/alert_events_list.php:327 +#: ../../enterprise/extensions/translate_string.php:260 +#: ../../include/functions_snmp_browser.php:390 +#: ../../godmode/modules/manage_network_components.php:451 +#: ../../godmode/modules/manage_network_components.php:455 +#: ../../godmode/reporting/reporting_builder.php:300 +#: ../../godmode/agentes/modificar_agente.php:165 +#: ../../godmode/agentes/module_manager.php:37 +#: ../../godmode/alerts/alert_templates.php:236 +#: ../../godmode/alerts/alert_templates.php:240 +msgid "Search" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:425 ../../operation/tree.php:605 +#: ../../operation/incidents/incident.php:212 +#: ../../enterprise/include/functions_networkmap_enterprise.php:275 +#: ../../enterprise/dashboard/dashboard_replicate.php:128 +#: ../../enterprise/dashboard/dashboard_replicate.php:138 +#: ../../enterprise/dashboard/main_dashboard.php:273 +#: ../../godmode/agentes/modificar_agente.php:150 +msgid "Show" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:810 +#: ../../operation/agentes/estado_monitores.php:290 +#: ../../operation/search_modules.php:52 +#: ../../enterprise/dashboard/widgets/custom_graph.php:29 +#: ../../include/functions_events.php:1910 +msgid "Graph" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:813 +#: ../../operation/agentes/estado_monitores.php:286 +#: ../../godmode/agentes/module_manager.php:480 +msgid "Warn" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:879 +#: ../../operation/agentes/estado_monitores.php:359 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:325 +#: ../../godmode/agentes/module_manager.php:576 +msgid "(Adopt) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:889 +#: ../../operation/agentes/estado_monitores.php:369 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:335 +msgid "(Unlinked) (Adopt) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:893 +#: ../../operation/agentes/estado_monitores.php:373 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:339 +#: ../../godmode/agentes/module_manager.php:590 +msgid "(Unlinked) " +msgstr "" + +#: ../../operation/agentes/status_monitor.php:933 +#: ../../operation/search_modules.php:100 +#: ../../include/functions_modules.php:1424 +#: ../../mobile/operation/modules.php:398 +msgid "NOT INIT" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:937 +#: ../../operation/agentes/status_monitor.php:954 ../../operation/tree.php:357 +#: ../../operation/search_modules.php:104 +#: ../../operation/search_modules.php:121 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:360 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:367 +#: ../../enterprise/operation/agentes/policy_view.php:371 +#: ../../enterprise/operation/agentes/policy_view.php:378 +#: ../../enterprise/include/functions_services.php:885 +#: ../../enterprise/include/functions_services.php:908 +#: ../../enterprise/include/functions_reporting_pdf.php:697 +#: ../../include/functions_reporting.php:5678 +#: ../../include/functions_modules.php:1436 +#: ../../include/functions_modules.php:1444 +#: ../../mobile/operation/modules.php:402 +#: ../../mobile/operation/modules.php:419 +msgid "NORMAL" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:941 +#: ../../operation/agentes/status_monitor.php:959 ../../operation/tree.php:345 +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:128 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:352 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:371 +#: ../../enterprise/operation/agentes/policy_view.php:363 +#: ../../enterprise/operation/agentes/policy_view.php:382 +#: ../../enterprise/include/functions_services.php:889 +#: ../../enterprise/include/functions_services.php:913 +#: ../../enterprise/include/functions_reporting_pdf.php:700 +#: ../../include/functions_reporting.php:5681 +#: ../../include/functions_modules.php:1428 +#: ../../include/functions_modules.php:1448 +#: ../../mobile/operation/modules.php:406 +#: ../../mobile/operation/modules.php:424 +msgid "CRITICAL" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:945 +#: ../../operation/agentes/status_monitor.php:964 ../../operation/tree.php:349 +#: ../../operation/search_modules.php:112 +#: ../../operation/search_modules.php:135 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:356 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:375 +#: ../../enterprise/operation/agentes/policy_view.php:367 +#: ../../enterprise/operation/agentes/policy_view.php:386 +#: ../../enterprise/include/functions_services.php:893 +#: ../../enterprise/include/functions_services.php:917 +#: ../../enterprise/include/functions_reporting_pdf.php:703 +#: ../../include/functions_reporting.php:5684 +#: ../../include/functions_modules.php:1432 +#: ../../include/functions_modules.php:1452 +#: ../../mobile/operation/modules.php:410 +#: ../../mobile/operation/modules.php:429 +msgid "WARNING" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:958 +#: ../../operation/agentes/status_monitor.php:963 ../../operation/tree.php:341 +#: ../../operation/tree.php:353 ../../operation/search_modules.php:120 +#: ../../operation/search_modules.php:127 +#: ../../operation/search_modules.php:134 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:367 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:371 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:375 +#: ../../enterprise/operation/agentes/policy_view.php:378 +#: ../../enterprise/operation/agentes/policy_view.php:382 +#: ../../enterprise/operation/agentes/policy_view.php:386 +#: ../../enterprise/include/functions_services.php:900 +#: ../../enterprise/include/functions_services.php:908 +#: ../../enterprise/include/functions_services.php:913 +#: ../../enterprise/include/functions_services.php:917 +#: ../../enterprise/include/functions_services.php:921 +#: ../../enterprise/include/functions_reporting_pdf.php:706 +#: ../../include/functions_reporting.php:5687 +#: ../../include/functions_modules.php:1443 +#: ../../include/functions_modules.php:1447 +#: ../../include/functions_modules.php:1451 +#: ../../mobile/operation/modules.php:418 +#: ../../mobile/operation/modules.php:423 +#: ../../mobile/operation/modules.php:428 +msgid "UNKNOWN" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:953 +#: ../../operation/agentes/status_monitor.php:958 +#: ../../operation/agentes/status_monitor.php:963 +#: ../../operation/search_modules.php:120 +#: ../../operation/search_modules.php:127 +#: ../../operation/search_modules.php:134 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:367 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:371 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:375 +#: ../../enterprise/operation/agentes/policy_view.php:378 +#: ../../enterprise/operation/agentes/policy_view.php:382 +#: ../../enterprise/operation/agentes/policy_view.php:386 +#: ../../enterprise/include/functions_services.php:908 +#: ../../enterprise/include/functions_services.php:913 +#: ../../enterprise/include/functions_services.php:917 +#: ../../include/functions_modules.php:1443 +#: ../../include/functions_modules.php:1447 +#: ../../include/functions_modules.php:1451 +#: ../../mobile/operation/modules.php:418 +#: ../../mobile/operation/modules.php:423 +#: ../../mobile/operation/modules.php:428 +msgid "Last status" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1080 +msgid "This group doesn't have any monitor" +msgstr "" + +#: ../../operation/agentes/bulbs.php:21 +#: ../../include/functions_reporting.php:2805 +#: ../../include/functions_agents.php:2024 +#: ../../include/functions_agents.php:2041 +msgid "All Monitors OK" +msgstr "" + +#: ../../operation/agentes/bulbs.php:22 +msgid "At least one monitor fails" +msgstr "" + +#: ../../operation/agentes/bulbs.php:23 +msgid "Change between Green/Red state" +msgstr "" + +#: ../../operation/agentes/bulbs.php:26 +#: ../../enterprise/operation/agentes/policy_view.php:269 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:866 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1532 +#: ../../enterprise/godmode/alerts/alert_events_list.php:570 +#: ../../include/functions_ui.php:799 +#: ../../include/functions_reporting.php:2818 +#: ../../mobile/operation/alerts.php:243 +#: ../../godmode/alerts/alert_list.list.php:582 +#: ../../extensions/agents_alerts.php:302 +msgid "Alert disabled" +msgstr "" + +#: ../../operation/agentes/bulbs.php:26 +msgid "Alerts disabled" +msgstr "" + +#: ../../operation/agentes/bulbs.php:30 +#: ../../include/functions_reporting.php:2738 +msgid "Agent without data" +msgstr "" + +#: ../../operation/agentes/bulbs.php:31 +msgid "Agent down" +msgstr "" + +#: ../../operation/agentes/bulbs.php:33 +#: ../../operation/snmpconsole/snmp_view.php:512 +#: ../../enterprise/operation/agentes/policy_view.php:273 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:640 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:870 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1536 +#: ../../enterprise/godmode/alerts/alert_events_list.php:574 +#: ../../include/functions_ui.php:803 +#: ../../include/functions_reporting.php:2741 +#: ../../include/functions_agents.php:2007 +#: ../../mobile/operation/alerts.php:247 +#: ../../godmode/alerts/alert_list.list.php:586 +#: ../../extensions/agents_alerts.php:306 +msgid "Alert not fired" +msgstr "" + +#: ../../operation/agentes/networkmap.groups.php:35 +#: ../../operation/agentes/networkmap.topology.php:35 +#: ../../enterprise/operation/policies/networkmap.policies.php:33 +#: ../../enterprise/include/functions_networkmap_enterprise.php:47 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:460 +msgid "Pandora FMS" +msgstr "" + +#: ../../operation/agentes/networkmap.groups.php:41 +#: ../../operation/agentes/networkmap.groups.php:89 +#: ../../operation/agentes/networkmap.groups.php:104 +#: ../../operation/agentes/networkmap.topology.php:41 +#: ../../operation/agentes/networkmap.topology.php:88 +#: ../../operation/agentes/networkmap.topology.php:102 +#: ../../enterprise/operation/policies/networkmap.policies.php:36 +#: ../../enterprise/operation/policies/networkmap.policies.php:77 +#: ../../enterprise/operation/policies/networkmap.policies.php:87 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:468 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:526 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:545 +msgid "Map could not be generated" +msgstr "" + +#: ../../operation/agentes/networkmap.groups.php:42 +#: ../../operation/agentes/networkmap.topology.php:42 #: ../../general/ui/agents_list.php:127 -#: ../../operation/agentes/networkmap.groups.php:39 -#: ../../operation/agentes/networkmap.topology.php:39 #: ../../enterprise/operation/policies/networkmap.policies.php:37 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:470 msgid "No agents found" msgstr "" -#: ../../general/logoff.php:20 +#: ../../operation/agentes/graphs.php:103 +msgid "Filter graphs" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:138 ../../operation/menu.php:46 +#: ../../godmode/agentes/agent_manager.php:160 +msgid "Agent detail" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:147 +msgid "Sucessfully deleted agent" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:149 +msgid "There was an error message deleting the agent" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:162 +#: ../../godmode/agentes/modificar_agente.php:154 +#: ../../godmode/massive/massive_add_action_alerts.php:134 +#: ../../godmode/massive/massive_add_alerts.php:124 +#: ../../godmode/massive/massive_delete_agents.php:110 +#: ../../godmode/massive/massive_delete_alerts.php:178 +#: ../../godmode/massive/massive_copy_modules.php:75 +#: ../../godmode/massive/massive_copy_modules.php:164 +#: ../../godmode/massive/massive_standby_alerts.php:133 +#: ../../godmode/massive/massive_delete_modules.php:275 +#: ../../godmode/massive/massive_enable_disable_alerts.php:132 +#: ../../godmode/massive/massive_edit_agents.php:198 +#: ../../godmode/massive/massive_delete_action_alerts.php:135 +#: ../../godmode/massive/massive_edit_modules.php:242 +msgid "Group recursion" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:168 +#: ../../operation/agentes/alerts_status.functions.php:60 +#: ../../operation/agentes/datos_agente.php:204 +msgid "Free text for search" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:182 ../../operation/tree.php:586 +msgid "Agent status" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:195 +#: ../../operation/snmpconsole/snmp_view.php:455 +#: ../../godmode/agentes/modificar_agente.php:171 +#: ../../godmode/agentes/modificar_agente.php:556 +msgid "Create agent" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:405 +#: ../../godmode/agentes/modificar_agente.php:405 +msgid "R" +msgstr "" + +#: ../../operation/agentes/estado_agente.php:493 +#: ../../godmode/agentes/modificar_agente.php:498 +msgid "Edit remote config" +msgstr "" + +#: ../../operation/agentes/custom_fields.php:52 +#: ../../godmode/agentes/fields_manager.php:99 +msgid "No fields defined" +msgstr "" + +#: ../../operation/agentes/custom_fields.php:57 +#: ../../godmode/agentes/fields_manager.php:90 +msgid "Field" +msgstr "" + +#: ../../operation/agentes/custom_fields.php:58 +#: ../../godmode/agentes/configure_field.php:47 +#: ../../godmode/agentes/fields_manager.php:91 +msgid "Display on front" +msgstr "" + +#: ../../operation/agentes/custom_fields.php:59 +#: ../../godmode/agentes/configure_field.php:47 +#: ../../godmode/agentes/fields_manager.php:91 +msgid "" +"The fields with display on front enabled will be displayed into the agent " +"details" +msgstr "" + +#: ../../operation/agentes/custom_fields.php:83 +#: ../../operation/agentes/agent_fields.php:48 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1171 +#: ../../include/functions_treeview.php:333 +msgid "empty" +msgstr "" + +#: ../../operation/agentes/gis_view.php:53 +#: ../../godmode/agentes/agent_conf_gis.php:40 +msgid "There is no default map." +msgstr "" + +#: ../../operation/agentes/gis_view.php:75 +#: ../../godmode/agentes/agent_conf_gis.php:44 +msgid "" +"There is no GIS data for this agent, so it's positioned in default position " +"of map." +msgstr "" + +#: ../../operation/agentes/gis_view.php:81 +msgid "Last position in " +msgstr "" + +#: ../../operation/agentes/gis_view.php:86 +msgid "Period to show data as path" +msgstr "" + +#: ../../operation/agentes/gis_view.php:88 +msgid "Refresh path" +msgstr "" + +#: ../../operation/agentes/gis_view.php:91 +msgid "Positional data from the last" +msgstr "" + +#: ../../operation/agentes/gis_view.php:110 +msgid "This agent doesn't have any GIS data" +msgstr "" + +#: ../../operation/agentes/gis_view.php:119 +#: ../../godmode/setup/gis_step_2.php:299 +msgid "Longitude" +msgstr "" + +#: ../../operation/agentes/gis_view.php:119 +#: ../../godmode/setup/gis_step_2.php:295 +msgid "Latitude" +msgstr "" + +#: ../../operation/agentes/gis_view.php:119 +#: ../../godmode/setup/gis_step_2.php:303 +msgid "Altitude" +msgstr "" + +#: ../../operation/agentes/gis_view.php:119 +msgid "To" +msgstr "" + +#: ../../operation/agentes/gis_view.php:119 +msgid "of Packages" +msgstr "" + +#: ../../operation/agentes/gis_view.php:122 +msgid "positional data" +msgstr "" + +#: ../../operation/agentes/gis_view.php:127 +#: ../../enterprise/operation/agentes/agent_inventory.php:196 +#: ../../enterprise/include/functions_inventory.php:238 +#: ../../enterprise/include/functions_reporting_pdf.php:790 +#: ../../enterprise/include/functions_reporting_pdf.php:803 +#: ../../include/functions_reporting.php:4322 +#: ../../include/functions_reporting.php:4337 ../../godmode/db/db_event.php:54 +#: ../../godmode/db/db_audit.php:80 +msgid "Total" +msgstr "" + +#: ../../operation/agentes/snapshot_view.php:61 +msgid "Current data at" +msgstr "" + +#: ../../operation/agentes/status_events.php:27 +msgid "Latest events for this agent" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:32 +#: ../../enterprise/godmode/alerts/alert_events_list.php:304 +msgid "Alert(s) validated" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:33 +msgid "Error processing alert(s)" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:46 +#: ../../mobile/operation/alerts.php:35 +msgid "All (Enabled)" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:48 +#: ../../operation/snmpconsole/snmp_view.php:165 +#: ../../operation/snmpconsole/snmp_view.php:614 +#: ../../enterprise/include/functions_reporting_pdf.php:825 +#: ../../include/functions_reporting.php:1700 +#: ../../include/functions_reporting.php:1811 +#: ../../include/functions_reporting.php:1950 +#: ../../include/functions_reporting.php:4370 +#: ../../mobile/operation/alerts.php:37 +msgid "Fired" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:49 +#: ../../operation/snmpconsole/snmp_view.php:165 +#: ../../operation/snmpconsole/snmp_view.php:616 +#: ../../mobile/operation/alerts.php:38 +msgid "Not fired" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:54 +#: ../../enterprise/operation/agentes/policy_view.php:221 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:888 +#: ../../include/functions_ui.php:724 ../../mobile/operation/alerts.php:43 +#: ../../godmode/alerts/alert_list.list.php:126 +msgid "Standby on" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:55 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:890 +#: ../../mobile/operation/alerts.php:44 +#: ../../godmode/alerts/alert_list.list.php:127 +msgid "Standby off" +msgstr "" + +#: ../../operation/agentes/alerts_status.functions.php:61 +msgid "Filter by agent name, module name, template name or action name" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:483 +#: ../../operation/search_modules.php:180 +msgid "Snapshot view" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:570 +msgid "Full list of monitors" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:575 +msgid "Any monitors aren't with this filter." +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:578 +msgid "This agent doesn't have any active monitors." +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:613 +msgid "Status:" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:617 +#: ../../operation/snmpconsole/snmp_view.php:321 +#: ../../operation/snmpconsole/snmp_view.php:416 +#: ../../operation/snmpconsole/snmp_view.php:613 +#: ../../operation/events/events_rss.php:152 +#: ../../operation/events/events.build_table.php:89 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:169 +#: ../../enterprise/godmode/policies/policy_alerts.php:223 +#: ../../include/functions_events.php:891 ../../mobile/operation/agents.php:32 +#: ../../godmode/agentes/configurar_agente.php:421 +#: ../../godmode/events/custom_events.php:92 +#: ../../godmode/events/custom_events.php:156 +msgid "Alert" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:620 +#: ../../enterprise/include/functions_services.php:711 +#: ../../mobile/operation/agents.php:35 +msgid "Unknow" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:629 +msgid "Reset" +msgstr "" + +#: ../../operation/agentes/estado_monitores.php:636 +msgid "Form filter" +msgstr "" + +#: ../../operation/agentes/exportdata.php:36 ../../operation/menu.php:168 +msgid "Export data" +msgstr "" + +#: ../../operation/agentes/exportdata.php:196 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:152 +#: ../../godmode/db/db_refine.php:68 +msgid "Source agent" +msgstr "" + +#: ../../operation/agentes/exportdata.php:228 +msgid "No modules of type string. You can not calculate their average" +msgstr "" + +#: ../../operation/agentes/exportdata.php:269 +#: ../../enterprise/operation/log/log_viewer.php:140 +#: ../../enterprise/include/functions_reporting_pdf.php:3458 +#: ../../enterprise/include/functions_reporting_pdf.php:3461 +#: ../../enterprise/include/functions_netflow_pdf.php:156 +msgid "End date" +msgstr "" + +#: ../../operation/agentes/exportdata.php:275 +msgid "Export type" +msgstr "" + +#: ../../operation/agentes/exportdata.php:278 +#: ../../include/functions_netflow.php:831 +msgid "Data table" +msgstr "" + +#: ../../operation/agentes/exportdata.php:279 +#: ../../enterprise/operation/reporting/custom_reporting.php:18 +#: ../../extensions/insert_data.php:172 +msgid "CSV" +msgstr "" + +#: ../../operation/agentes/exportdata.php:280 +msgid "MS Excel" +msgstr "" + +#: ../../operation/agentes/exportdata.php:281 +msgid "Average per hour/day" +msgstr "" + +#: ../../operation/agentes/exportdata.php:289 +#: ../../enterprise/extensions/resource_exportation/functions.php:19 +#: ../../extensions/resource_exportation.php:359 +#: ../../extensions/resource_exportation.php:362 +msgid "Export" +msgstr "" + +#: ../../operation/agentes/agent_fields.php:38 +msgid "Agent custom fields" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:167 +msgid "Received data from" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:174 +msgid "Main database" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:174 +#: ../../enterprise/include/functions_setup.php:33 +#: ../../enterprise/include/functions_setup.php:63 +#: ../../enterprise/godmode/menu.php:60 +msgid "History database" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:175 +msgid "" +"Switch between the main database and the history database to retrieve module " +"data" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:187 +msgid "Choose a time from now" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:190 +msgid "Specify time range" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:191 +msgid "Timestamp from:" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:197 +msgid "Timestamp to:" +msgstr "" + +#: ../../operation/agentes/datos_agente.php:288 +#: ../../include/ajax/module.php:240 +#: ../../godmode/agentes/module_manager.php:451 +msgid "No available data to show" +msgstr "" + +#: ../../operation/tree.php:168 ../../operation/tree.php:302 +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:176 +#: ../../enterprise/operation/agentes/policy_view.php:146 +#: ../../enterprise/operation/agentes/policy_view.php:210 +#: ../../enterprise/operation/agentes/policy_view.php:442 +#: ../../enterprise/meta/event/event_view.php:1021 +#: ../../enterprise/meta/event/event_view.php:1073 +#: ../../enterprise/meta/event/event_view.php:1079 +#: ../../enterprise/meta/event/event_view.php:1127 +#: ../../enterprise/meta/event/event_view.php:1157 +#: ../../enterprise/meta/event/event_view.php:1179 +#: ../../enterprise/meta/event/event_view.php:1191 +#: ../../enterprise/meta/event/event_view.php:1203 +#: ../../enterprise/meta/event/event_view.php:1213 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:465 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:734 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:941 +#: ../../include/functions.php:1685 +#: ../../godmode/alerts/alert_list.builder.php:212 +#: ../../godmode/alerts/configure_alert_template.php:768 +msgid "Empty" +msgstr "" + +#: ../../operation/tree.php:440 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:138 +msgid "Module alerts" +msgstr "" + +#: ../../operation/tree.php:508 ../../godmode/menu.php:42 +msgid "Module groups" +msgstr "" + +#: ../../operation/tree.php:526 +msgid "groups" +msgstr "" + +#: ../../operation/tree.php:529 +msgid "module groups" +msgstr "" + +#: ../../operation/tree.php:532 +msgid "policies" +msgstr "" + +#: ../../operation/tree.php:535 +msgid "modules" +msgstr "" + +#: ../../operation/tree.php:541 +msgid "tags" +msgstr "" + +#: ../../operation/tree.php:547 ../../operation/tree.php:572 +#: ../../operation/menu.php:43 +#: ../../enterprise/meta/general/main_header.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:129 +msgid "Tree view" +msgstr "" + +#: ../../operation/tree.php:547 +msgid "Sort the agents by " +msgstr "" + +#: ../../operation/tree.php:551 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1200 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1404 +msgid "Tree View" +msgstr "" + +#: ../../operation/tree.php:601 +#: ../../enterprise/include/functions_networkmap_enterprise.php:273 +msgid "Search agent" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:47 +msgid "New Incident" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:58 +#: ../../operation/integria_incidents/incident_detail.php:213 +#: ../../operation/incidents/incident_detail.php:227 +msgid "Incident details" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:62 +#: ../../operation/integria_incidents/incident.list.php:134 +msgid "Workunits" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:66 +#: ../../enterprise/include/functions_collection.php:29 +#: ../../enterprise/godmode/agentes/collections.data.php:94 +#: ../../enterprise/godmode/agentes/collections.data.php:191 +#: ../../enterprise/godmode/agentes/collections.data.php:228 +#: ../../enterprise/godmode/agentes/collections.editor.php:35 +#: ../../enterprise/godmode/agentes/collections.editor.php:277 +#: ../../enterprise/godmode/agentes/collections.editor.php:286 +msgid "Files" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:70 +msgid "Tracking" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:75 +#: ../../operation/incidents/incident.php:28 +msgid "Incident management" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:99 +msgid "Incident updated" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:102 +msgid "" +"There was a problem updating the incident, please check if any field was " +"modified and the values are correct." +msgstr "" + +#: ../../operation/integria_incidents/incident.php:126 +msgid "Incident created" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:129 +msgid "There was a problem creating incident" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:142 +#: ../../operation/integria_incidents/incident_detail.php:111 +#: ../../operation/incidents/incident_detail.php:114 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:74 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:259 +msgid "No description available" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:156 +#: ../../operation/integria_incidents/incident_detail.php:156 +#: ../../operation/incidents/incident_detail.php:167 +msgid "File uploaded" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:159 +msgid "There was a problem uploading file" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:165 +msgid "File is too big" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:168 +msgid "File was partially uploaded. Please try again" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:171 +msgid "No file was uploaded" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:174 +msgid "Generic upload error" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:193 +msgid "File deleted" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:196 +msgid "You user doesn't have enough rights to delete this file" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:211 +msgid "Incident deleted" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:214 +msgid "There was a problem deteling incident" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:238 +msgid "Workunit added" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:241 +msgid "There was a problem adding workunit" +msgstr "" + +#: ../../operation/integria_incidents/incident.php:342 +msgid "" +"There is a error in the message from your Integria or there is not " +"connection." +msgstr "" + +#: ../../operation/integria_incidents/incident.files.php:23 +#: ../../godmode/extensions.php:143 +msgid "File" +msgstr "" + +#: ../../operation/integria_incidents/incident.files.php:29 +#: ../../operation/integria_incidents/incident_detail.php:339 +#: ../../operation/integria_incidents/incident.workunits.php:35 +#: ../../operation/incidents/incident_detail.php:396 +#: ../../operation/events/events_list.php:303 +#: ../../operation/events/events_list.php:309 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:230 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:340 +#: ../../enterprise/meta/include/functions_wizard_meta.php:741 +#: ../../enterprise/dashboard/main_dashboard.php:521 +#: ../../enterprise/godmode/setup/setup_acl.php:86 +#: ../../enterprise/godmode/setup/setup_acl.php:105 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:323 +#: ../../enterprise/godmode/servers/manage_export_form.php:120 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:218 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:148 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:120 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:156 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:242 +#: ../../enterprise/godmode/agentes/collection_manager.php:90 +#: ../../enterprise/godmode/agentes/plugins_manager.php:81 +#: ../../enterprise/godmode/agentes/inventory_manager.php:199 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:167 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:221 +#: ../../enterprise/godmode/policies/policy_plugins.php:55 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:283 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:337 +#: ../../enterprise/godmode/policies/policy_collections.php:191 +#: ../../enterprise/godmode/policies/policy_alerts.php:406 +#: ../../enterprise/godmode/policies/policy_alerts.php:448 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 +#: ../../enterprise/godmode/alerts/alert_events_list.php:556 +#: ../../godmode/setup/links.php:156 ../../godmode/setup/setup_visuals.php:103 +#: ../../godmode/setup/news.php:173 +#: ../../godmode/modules/manage_network_templates_form.php:298 +#: ../../godmode/servers/manage_recontask_form.php:270 +#: ../../godmode/servers/plugin.php:475 +#: ../../godmode/servers/recon_script.php:218 +#: ../../godmode/users/configure_profile.php:189 +#: ../../godmode/reporting/visual_console_builder.wizard.php:209 +#: ../../godmode/reporting/graph_builder.graph_editor.php:176 +#: ../../godmode/agentes/planned_downtime.editor.php:436 +#: ../../godmode/agentes/planned_downtime.editor.php:498 +#: ../../godmode/agentes/planned_downtime.editor.php:630 +#: ../../godmode/massive/massive_add_action_alerts.php:176 +#: ../../godmode/massive/massive_add_alerts.php:154 +#: ../../godmode/events/event_edit_filter.php:270 +#: ../../godmode/events/event_edit_filter.php:287 +msgid "Add" +msgstr "" + +#: ../../operation/integria_incidents/incident.files.php:35 +msgid "Add a file" +msgstr "" + +#: ../../operation/integria_incidents/incident.files.php:42 +#: ../../operation/integria_incidents/incident_detail.php:388 +#: ../../operation/integria_incidents/incident_detail.php:434 +#: ../../operation/incidents/incident_detail.php:445 +#: ../../operation/incidents/incident_detail.php:497 +msgid "Filename" +msgstr "" + +#: ../../operation/integria_incidents/incident.files.php:45 +#: ../../operation/integria_incidents/incident_detail.php:390 +#: ../../operation/incidents/incident_detail.php:447 +#: ../../enterprise/extensions/backup/main.php:61 +#: ../../include/functions_visual_map_editor.php:224 +#: ../../include/functions_visual_map_editor.php:287 +#: ../../include/functions_filemanager.php:497 +#: ../../godmode/events/event_responses.editor.php:76 +#: ../../extensions/update_manager/lib/functions.ajax.php:300 +msgid "Size" +msgstr "" + +#: ../../operation/integria_incidents/incident.files.php:66 +msgid "Delete file" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:33 +#: ../../operation/events/events_list.php:405 +#: ../../enterprise/meta/event/event_view.php:514 +#: ../../enterprise/dashboard/widgets/events_list.php:31 +#: ../../enterprise/godmode/setup/setup_acl.php:121 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:142 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:145 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:150 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:190 +#: ../../include/functions_visual_map_editor.php:149 +#: ../../include/functions_visual_map_editor.php:386 +#: ../../include/functions_html.php:720 ../../include/functions_html.php:721 +#: ../../include/functions_html.php:722 ../../include/functions_html.php:723 +#: ../../include/functions_html.php:724 +#: ../../include/ajax/visual_console_builder.ajax.php:482 +#: ../../godmode/servers/manage_recontask_form.php:194 +#: ../../godmode/servers/manage_recontask.php:272 +#: ../../godmode/users/configure_user.php:620 +#: ../../godmode/reporting/visual_console_builder.wizard.php:214 +#: ../../godmode/massive/massive_add_action_alerts.php:141 +#: ../../godmode/events/event_edit_filter.php:223 +msgid "Any" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:34 +msgid "Not closed" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:55 +msgid "Search string" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:93 +#: ../../operation/incidents/incident.php:298 +#: ../../operation/events/events.build_table.php:30 +#: ../../godmode/setup/os.list.php:31 ../../godmode/modules/module_list.php:58 +#: ../../godmode/agentes/agent_manager.php:158 +#: ../../godmode/agentes/agent_incidents.php:76 +#: ../../godmode/groups/modu_group_list.php:180 +#: ../../godmode/groups/group_list.php:254 +#: ../../godmode/alerts/alert_commands.php:257 +msgid "ID" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:98 +#: ../../operation/integria_incidents/incident_detail.php:283 +#: ../../operation/integria_incidents/incident.incident.php:99 +#: ../../operation/incidents/incident.php:220 +#: ../../operation/incidents/incident.php:301 +#: ../../operation/incidents/incident_detail.php:312 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:108 +#: ../../enterprise/godmode/alerts/alert_events.php:502 +#: ../../include/functions_events.php:1965 +#: ../../include/functions_reporting.php:1648 +#: ../../godmode/agentes/agent_incidents.php:79 +#: ../../godmode/snmpconsole/snmp_alert.php:391 +#: ../../godmode/alerts/alert_templates.php:50 +#: ../../godmode/alerts/alert_list.list.php:113 +#: ../../godmode/alerts/configure_alert_template.php:633 +msgid "Priority" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:99 +#: ../../operation/incidents/incident.php:303 +#: ../../godmode/servers/servers.build_table.php:62 +#: ../../godmode/agentes/agent_incidents.php:81 +msgid "Updated" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:99 +msgid "Started" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:100 +#: ../../include/ajax/events.php:284 +#: ../../extensions/update_manager/main.php:139 +msgid "Details" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:101 +#: ../../operation/integria_incidents/incident_detail.php:292 +#: ../../operation/integria_incidents/incident.incident.php:100 +#: ../../operation/incidents/incident_detail.php:321 +msgid "Creator" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:102 +#: ../../operation/integria_incidents/incident_detail.php:237 +#: ../../operation/incidents/incident.php:305 +#: ../../operation/incidents/incident_detail.php:260 +#: ../../operation/events/events.build_table.php:69 +#: ../../include/functions_events.php:2081 +#: ../../mobile/operation/events.php:420 +#: ../../godmode/agentes/agent_incidents.php:83 +#: ../../godmode/events/custom_events.php:110 +#: ../../godmode/events/custom_events.php:162 +msgid "Owner" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:134 +#: ../../operation/integria_incidents/incident.workunits.php:61 +msgid "Hours" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:137 +msgid "Delete incident" +msgstr "" + +#: ../../operation/integria_incidents/incident.list.php:137 +msgid "View incident details" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:69 +#: ../../operation/incidents/incident_detail.php:66 +#: ../../enterprise/godmode/policies/policy_agents.php:144 +#: ../../enterprise/godmode/alerts/alert_events_list.php:166 +#: ../../godmode/massive/massive_add_action_alerts.php:101 +#: ../../godmode/massive/massive_add_alerts.php:88 +#: ../../godmode/alerts/alert_list.php:166 +msgid "Successfully added" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:70 +#: ../../operation/incidents/incident_detail.php:67 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:122 +#: ../../enterprise/godmode/policies/policy_agents.php:145 +#: ../../enterprise/godmode/policies/policy_alerts.php:173 +#: ../../enterprise/godmode/alerts/alert_events_list.php:166 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../godmode/massive/massive_add_action_alerts.php:85 +#: ../../godmode/massive/massive_add_action_alerts.php:101 +#: ../../godmode/massive/massive_add_action_alerts.php:105 +#: ../../godmode/massive/massive_add_alerts.php:89 +#: ../../godmode/alerts/alert_list.php:166 +msgid "Could not be added" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:88 +#: ../../operation/integria_incidents/incident_detail.php:106 +#: ../../operation/messages/message_list.php:57 +#: ../../operation/incidents/incident.php:61 +#: ../../operation/incidents/incident_detail.php:85 +#: ../../operation/incidents/incident_detail.php:109 +#: ../../operation/snmpconsole/snmp_view.php:69 +#: ../../operation/events/events.php:437 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:131 +#: ../../enterprise/meta/event/event_view.php:1799 +#: ../../enterprise/dashboard/main_dashboard.php:65 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:118 +#: ../../enterprise/godmode/modules/local_components.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:172 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:184 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:96 +#: ../../enterprise/godmode/policies/policy_modules.php:598 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:97 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:142 +#: ../../enterprise/godmode/policies/policy_agents.php:91 +#: ../../enterprise/godmode/policies/policy_collections.php:69 +#: ../../enterprise/godmode/policies/policies.php:160 +#: ../../enterprise/godmode/policies/policy_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_alerts.php:191 +#: ../../enterprise/godmode/alerts/alert_events_list.php:142 +#: ../../enterprise/godmode/alerts/alert_events_list.php:182 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:272 +#: ../../godmode/setup/news.php:72 ../../godmode/setup/gis.php:55 +#: ../../godmode/modules/manage_network_components.php:316 +#: ../../godmode/users/configure_user.php:371 +#: ../../godmode/reporting/reporting_builder.php:280 +#: ../../godmode/massive/massive_delete_alerts.php:126 +#: ../../godmode/massive/massive_delete_action_alerts.php:106 +#: ../../godmode/alerts/alert_templates.php:218 +#: ../../godmode/alerts/alert_special_days.php:145 +#: ../../godmode/alerts/alert_commands.php:250 +#: ../../godmode/alerts/alert_actions.php:326 +#: ../../godmode/alerts/alert_list.php:141 +#: ../../godmode/alerts/alert_list.php:183 +msgid "Could not be deleted" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:143 +#: ../../operation/incidents/incident_detail.php:154 +msgid "File could not be saved due to database error" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:157 +#: ../../operation/incidents/incident_detail.php:168 +msgid "File could not be uploaded" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:218 +#: ../../operation/incidents/incident.php:374 +#: ../../operation/incidents/incident_detail.php:232 +msgid "Create incident" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:234 +#: ../../operation/incidents/incident_detail.php:253 +msgid "Opened at" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:255 +#: ../../operation/integria_incidents/incident.incident.php:103 +#: ../../operation/incidents/incident.php:304 +#: ../../operation/incidents/incident_detail.php:283 +#: ../../operation/events/events.build_table.php:110 +#: ../../enterprise/operation/log/log_viewer.php:116 +#: ../../enterprise/include/functions_log.php:290 +#: ../../enterprise/meta/event/event_view.php:1184 +#: ../../enterprise/meta/advanced/synchronizing.component.php:294 +#: ../../enterprise/meta/advanced/propagation.component.php:294 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:317 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:137 +#: ../../enterprise/meta/advanced/policymanager.sync.php:300 +#: ../../enterprise/meta/advanced/synchronizing.group.php:152 +#: ../../enterprise/meta/advanced/synchronizing.user.php:506 +#: ../../include/functions_events.php:1938 +#: ../../include/functions_events.php:2028 +#: ../../godmode/agentes/agent_incidents.php:82 +#: ../../godmode/massive/massive_copy_modules.php:91 +#: ../../godmode/events/custom_events.php:104 +#: ../../godmode/events/custom_events.php:160 +msgid "Source" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:313 +#: ../../operation/incidents/incident_detail.php:370 +msgid "Update incident" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:316 +#: ../../operation/integria_incidents/incident.incident.php:133 +#: ../../operation/incidents/incident_detail.php:373 +#: ../../enterprise/include/functions_networkmap_enterprise.php:200 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:249 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1203 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1418 +#: ../../enterprise/godmode/setup/edit_skin.php:286 +#: ../../enterprise/godmode/modules/local_components.php:486 +#: ../../enterprise/godmode/modules/configure_local_component.php:351 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:108 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:234 +#: ../../enterprise/godmode/servers/manage_export.php:123 +#: ../../enterprise/godmode/servers/manage_export.php:155 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 +#: ../../enterprise/godmode/agentes/collections.data.php:51 +#: ../../enterprise/godmode/agentes/collections.data.php:111 +#: ../../enterprise/godmode/agentes/collections.data.php:125 +#: ../../enterprise/godmode/agentes/collections.data.php:139 +#: ../../enterprise/godmode/agentes/collections.data.php:160 +#: ../../enterprise/godmode/agentes/collections.data.php:198 +#: ../../enterprise/godmode/agentes/collections.php:207 +#: ../../enterprise/godmode/agentes/collections.editor.php:87 +#: ../../enterprise/godmode/policies/policy_modules.php:231 +#: ../../enterprise/godmode/policies/configure_policy.php:83 +#: ../../enterprise/godmode/policies/policies.php:363 +#: ../../enterprise/godmode/services/services.elements.php:308 +#: ../../enterprise/godmode/services/services.service.php:272 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:253 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:89 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:201 +#: ../../enterprise/godmode/alerts/alert_events_list.php:607 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:487 +#: ../../enterprise/extensions/backup/main.php:161 +#: ../../enterprise/extensions/cron/main.php:299 +#: ../../include/functions_visual_map_editor.php:250 +#: ../../include/functions_filemanager.php:527 +#: ../../include/functions_filemanager.php:556 +#: ../../include/functions_filemanager.php:794 ../../godmode/setup/os.php:49 +#: ../../godmode/setup/os.php:73 ../../godmode/setup/links.php:115 +#: ../../godmode/setup/news.php:127 ../../godmode/setup/gis.php:91 +#: ../../godmode/modules/manage_network_templates.php:235 +#: ../../godmode/modules/manage_nc_groups_form.php:69 +#: ../../godmode/modules/manage_network_templates_form.php:157 +#: ../../godmode/modules/manage_network_components.php:544 +#: ../../godmode/modules/manage_network_components_form_wmi.php:225 +#: ../../godmode/modules/manage_network_components_form.php:230 +#: ../../godmode/modules/manage_nc_groups.php:242 +#: ../../godmode/netflow/nf_edit_form.php:230 +#: ../../godmode/servers/plugin.php:280 +#: ../../godmode/servers/manage_recontask.php:314 +#: ../../godmode/servers/recon_script.php:103 +#: ../../godmode/users/configure_user.php:522 +#: ../../godmode/users/profile_list.php:264 +#: ../../godmode/gis_maps/index.php:125 +#: ../../godmode/reporting/map_builder.php:222 +#: ../../godmode/reporting/graph_builder.main.php:170 +#: ../../godmode/reporting/reporting_builder.item_editor.php:879 +#: ../../godmode/agentes/module_manager_editor.php:433 +#: ../../godmode/agentes/configure_field.php:61 +#: ../../godmode/agentes/planned_downtime.list.php:337 +#: ../../godmode/agentes/module_manager.php:115 +#: ../../godmode/agentes/agent_manager.php:364 +#: ../../godmode/groups/configure_modu_group.php:78 +#: ../../godmode/groups/configure_group.php:164 +#: ../../godmode/category/edit_category.php:138 +#: ../../godmode/snmpconsole/snmp_alert.php:429 +#: ../../godmode/snmpconsole/snmp_alert.php:517 +#: ../../godmode/snmpconsole/snmp_filters.php:106 +#: ../../godmode/snmpconsole/snmp_filters.php:153 +#: ../../godmode/massive/massive_add_profiles.php:116 +#: ../../godmode/events/event_responses.editor.php:108 +#: ../../godmode/events/event_edit_filter.php:319 +#: ../../godmode/tag/edit_tag.php:194 +#: ../../godmode/alerts/alert_templates.php:325 +#: ../../godmode/alerts/configure_alert_special_days.php:98 +#: ../../godmode/alerts/alert_list.list.php:662 +#: ../../godmode/alerts/configure_alert_command.php:128 +#: ../../godmode/alerts/alert_special_days.php:225 +#: ../../godmode/alerts/configure_alert_action.php:165 +#: ../../godmode/alerts/alert_commands.php:301 +#: ../../godmode/alerts/alert_actions.php:388 +#: ../../godmode/alerts/alert_list.php:294 +msgid "Create" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:319 +#: ../../operation/incidents/incident_detail.php:376 +msgid "Submit" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:333 +#: ../../operation/integria_incidents/incident_detail.php:336 +#: ../../operation/incidents/incident_detail.php:390 +#: ../../operation/incidents/incident_detail.php:393 +msgid "Add note" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:354 +#: ../../operation/incidents/incident_detail.php:411 +#: ../../godmode/setup/news.php:144 +msgid "Author" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:367 +#: ../../operation/incidents/incident_detail.php:424 +msgid "Notes attached to incident" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:410 +#: ../../operation/incidents/incident_detail.php:473 +msgid "Attached files" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:428 +#: ../../operation/integria_incidents/incident_detail.php:432 +#: ../../operation/incidents/incident_detail.php:491 +#: ../../operation/incidents/incident_detail.php:495 +msgid "Add attachment" +msgstr "" + +#: ../../operation/integria_incidents/incident_detail.php:436 +#: ../../operation/incidents/incident_detail.php:499 +#: ../../include/functions_filemanager.php:682 +#: ../../extensions/plugin_registration.php:39 +#: ../../extensions/update_manager/main.php:180 +#: ../../extensions/extension_uploader.php:84 +#: ../../extensions/resource_registration.php:864 +msgid "Upload" +msgstr "" + +#: ../../operation/integria_incidents/incident.incident.php:89 +#: ../../enterprise/dashboard/widget.php:58 +msgid "Title" +msgstr "" + +#: ../../operation/integria_incidents/incident.incident.php:91 +msgid "Assigned user" +msgstr "" + +#: ../../operation/integria_incidents/incident.incident.php:118 +msgid "Resolution epilog" +msgstr "" + +#: ../../operation/integria_incidents/incident.workunits.php:27 +msgid "Time used" +msgstr "" + +#: ../../operation/integria_incidents/incident.workunits.php:28 +msgid "Have cost" +msgstr "" + +#: ../../operation/integria_incidents/incident.workunits.php:29 +#: ../../operation/integria_incidents/incident.workunits.php:61 +#: ../../extensions/update_manager/lib/libupdate_manager.php:813 +msgid "Public" +msgstr "" + +#: ../../operation/integria_incidents/incident.workunits.php:42 +msgid "Add workunit" +msgstr "" + +#: ../../operation/integria_incidents/incident.workunits.php:60 +msgid "said" +msgstr "" + +#: ../../operation/integria_incidents/incident_statistics.php:29 +#: ../../operation/menu.php:231 ../../operation/menu.php:303 +#: ../../operation/incidents/incident_statistics.php:30 +#: ../../operation/events/event_statistics.php:32 +msgid "Statistics" +msgstr "" + +#: ../../operation/integria_incidents/incident_statistics.php:32 +#: ../../operation/incidents/incident_statistics.php:33 +msgid "Incidents by status" +msgstr "" + +#: ../../operation/integria_incidents/incident_statistics.php:35 +#: ../../operation/incidents/incident_statistics.php:36 +msgid "Incidents by priority" +msgstr "" + +#: ../../operation/integria_incidents/incident_statistics.php:38 +#: ../../operation/incidents/incident_statistics.php:39 +msgid "Incidents by group" +msgstr "" + +#: ../../operation/integria_incidents/incident_statistics.php:41 +#: ../../operation/incidents/incident_statistics.php:42 +msgid "Incidents by user" +msgstr "" + +#: ../../operation/integria_incidents/incident_statistics.php:44 +#: ../../operation/incidents/incident_statistics.php:45 +msgid "Incidents by source" +msgstr "" + +#: ../../operation/integria_incidents/incident.tracking.php:22 +#: ../../operation/search_users.php:68 +#: ../../operation/events/events.build_table.php:64 +#: ../../general/logon_ok.php:94 +#: ../../enterprise/meta/include/functions_wizard_meta.php:158 +#: ../../enterprise/meta/include/functions_wizard_meta.php:839 +#: ../../enterprise/godmode/setup/setup_auth.php:67 +#: ../../enterprise/godmode/setup/setup_auth.php:83 +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/godmode/servers/manage_export_form.php:95 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:153 +#: ../../enterprise/extensions/cron/main.php:180 +#: ../../include/functions_config.php:291 +#: ../../include/functions_config.php:302 +#: ../../include/functions_config.php:312 +#: ../../mobile/operation/tactical.php:188 +#: ../../mobile/include/user.class.php:169 +#: ../../godmode/users/user_list.php:280 +#: ../../godmode/admin_access_logs.php:63 +#: ../../godmode/admin_access_logs.php:187 +#: ../../godmode/events/custom_events.php:74 +#: ../../godmode/events/custom_events.php:150 +#: ../../extensions/users_connected.php:77 ../../extensions/ssh_gateway.php:59 +msgid "User" +msgstr "" + +#: ../../operation/menu.php:31 +#: ../../enterprise/operation/services/services.list.php:37 +#: ../../enterprise/operation/services/services.service_map.php:75 +#: ../../enterprise/operation/services/services.service.php:70 +#: ../../enterprise/meta/general/main_header.php:117 +#: ../../enterprise/meta/general/logon_ok.php:30 +#: ../../enterprise/godmode/services/services.elements.php:82 +#: ../../enterprise/godmode/services/services.service.php:157 +msgid "Monitoring" +msgstr "" + +#: ../../operation/menu.php:54 +msgid "Monitor detail" +msgstr "" + +#: ../../operation/menu.php:61 +msgid "Recon view" +msgstr "" + +#: ../../operation/menu.php:73 +msgid "Network View" +msgstr "" + +#: ../../operation/menu.php:225 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:215 +#: ../../godmode/users/configure_profile.php:174 +#: ../../godmode/reporting/graph_builder.main.php:152 +#: ../../godmode/events/events.php:34 +msgid "View events" +msgstr "" + +#: ../../operation/menu.php:237 +msgid "RSS" +msgstr "" + +#: ../../operation/menu.php:241 +msgid "CSV File" +msgstr "" + +#: ../../operation/menu.php:245 +msgid "Marquee" +msgstr "" + +#: ../../operation/menu.php:252 ../../operation/events/sound_events.php:46 +msgid "Sound Events" +msgstr "" + +#: ../../operation/menu.php:262 ../../operation/events/events.php:363 +msgid "Sound Alerts" +msgstr "" + +#: ../../operation/menu.php:271 +msgid "Workspace" +msgstr "" + +#: ../../operation/menu.php:278 ../../general/header.php:177 +#: ../../general/header.php:179 +#: ../../enterprise/meta/include/functions_users_meta.php:180 +#: ../../enterprise/meta/include/functions_users_meta.php:193 +msgid "Edit my user" +msgstr "" + +#: ../../operation/menu.php:283 +msgid "WebChat" +msgstr "" + +#: ../../operation/menu.php:312 ../../operation/messages/message_edit.php:46 +#: ../../operation/messages/message_list.php:43 +msgid "Messages" +msgstr "" + +#: ../../operation/menu.php:316 +msgid "New message" +msgstr "" + +#: ../../operation/menu.php:327 +msgid "Netflow Live View" +msgstr "" + +#: ../../operation/menu.php:336 ../../operation/events/events_rss.php:152 +msgid "SNMP" +msgstr "" + +#: ../../operation/menu.php:342 +msgid "SNMP console" +msgstr "" + +#: ../../operation/menu.php:343 +msgid "SNMP browser" +msgstr "" + +#: ../../operation/menu.php:344 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 +msgid "MIB uploader" +msgstr "" + +#: ../../operation/menu.php:345 ../../include/functions_menu.php:424 +msgid "SNMP alerts" +msgstr "" + +#: ../../operation/menu.php:346 ../../include/functions_menu.php:425 +msgid "SNMP filters" +msgstr "" + +#: ../../operation/menu.php:347 ../../include/functions_menu.php:427 +msgid "SNMP trap generator" +msgstr "" + +#: ../../operation/search_maps.php:33 +#: ../../enterprise/godmode/services/services.elements.php:83 +msgid "Elements" +msgstr "" + +#: ../../operation/search_results.php:60 ../../mobile/operation/home.php:37 +msgid "Global search" +msgstr "" + +#: ../../operation/messages/message_edit.php:35 +#: ../../operation/messages/message_list.php:32 +msgid "Received messages" +msgstr "" + +#: ../../operation/messages/message_edit.php:39 +#: ../../operation/messages/message_list.php:36 +msgid "Sent messages" +msgstr "" + +#: ../../operation/messages/message_edit.php:43 +#: ../../operation/messages/message_list.php:40 +#: ../../operation/messages/message_list.php:218 +msgid "Create message" +msgstr "" + +#: ../../operation/messages/message_edit.php:60 +msgid "This message does not exist in the system" +msgstr "" + +#: ../../operation/messages/message_edit.php:77 +#: ../../operation/messages/message_edit.php:155 +#: ../../operation/messages/message_list.php:127 +msgid "Sender" +msgstr "" + +#: ../../operation/messages/message_edit.php:78 +msgid "at" +msgstr "" + +#: ../../operation/messages/message_edit.php:80 +#: ../../operation/messages/message_edit.php:164 +#: ../../operation/messages/message_list.php:125 +msgid "Destination" +msgstr "" + +#: ../../operation/messages/message_edit.php:83 +#: ../../operation/messages/message_edit.php:183 +#: ../../operation/messages/message_list.php:128 +#: ../../godmode/setup/news.php:114 ../../godmode/setup/news.php:143 +msgid "Subject" +msgstr "" + +#: ../../operation/messages/message_edit.php:90 +#: ../../operation/messages/message_edit.php:186 +#: ../../enterprise/dashboard/widgets/example.php:25 +msgid "Message" +msgstr "" + +#: ../../operation/messages/message_edit.php:102 +msgid "wrote" +msgstr "" + +#: ../../operation/messages/message_edit.php:117 +msgid "Reply" +msgstr "" + +#: ../../operation/messages/message_edit.php:133 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:134 +#, php-format +msgid "Error sending message to user %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:142 +msgid "Message successfully sent" +msgstr "" + +#: ../../operation/messages/message_edit.php:143 +#, php-format +msgid "Error sending message to group %s" +msgstr "" + +#: ../../operation/messages/message_edit.php:179 +msgid "Select user" +msgstr "" + +#: ../../operation/messages/message_edit.php:180 +msgid "OR" +msgstr "" + +#: ../../operation/messages/message_edit.php:181 +msgid "Select group" +msgstr "" + +#: ../../operation/messages/message_list.php:81 +msgid "Not deleted. Error deleting messages" +msgstr "" + +#: ../../operation/messages/message_list.php:87 +#: ../../operation/messages/message_list.php:94 +msgid "You have" +msgstr "" + +#: ../../operation/messages/message_list.php:87 +msgid "sent message(s)" +msgstr "" + +#: ../../operation/messages/message_list.php:94 +msgid "unread message(s)" +msgstr "" + +#: ../../operation/messages/message_list.php:100 +msgid "There are no messages" +msgstr "" + +#: ../../operation/messages/message_list.php:138 +msgid "Click to read" +msgstr "" + +#: ../../operation/messages/message_list.php:143 +msgid "Mark as unread" +msgstr "" + +#: ../../operation/messages/message_list.php:150 +#: ../../operation/messages/message_list.php:155 +msgid "Message unread - click to read" +msgstr "" + +#: ../../operation/messages/message_list.php:182 +msgid "No Subject" +msgstr "" + +#: ../../operation/incidents/incident.php:66 +msgid "Successfully reclaimed ownership" +msgstr "" + +#: ../../operation/incidents/incident.php:67 +msgid "Could not reclame ownership" +msgstr "" + +#: ../../operation/incidents/incident.php:102 +#: ../../operation/snmpconsole/snmp_view.php:87 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:66 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:83 +#: ../../enterprise/godmode/policies/policy_modules.php:573 +#: ../../enterprise/godmode/alerts/alert_events_list.php:82 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:148 +#: ../../enterprise/godmode/alerts/alert_events.php:354 +#: ../../godmode/setup/links.php:58 ../../godmode/setup/news.php:61 +#: ../../godmode/setup/gis.php:39 +#: ../../godmode/modules/manage_nc_groups.php:95 +#: ../../godmode/netflow/nf_edit_form.php:128 +#: ../../godmode/users/profile_list.php:147 +#: ../../godmode/agentes/configurar_agente.php:630 +#: ../../godmode/agentes/planned_downtime.editor.php:250 +#: ../../godmode/snmpconsole/snmp_alert.php:145 +#: ../../godmode/snmpconsole/snmp_filters.php:54 +#: ../../godmode/massive/massive_edit_modules.php:130 +#: ../../godmode/events/event_edit_filter.php:135 +#: ../../godmode/alerts/alert_templates.php:147 +#: ../../godmode/alerts/alert_special_days.php:127 +#: ../../godmode/alerts/configure_alert_template.php:425 +#: ../../godmode/alerts/alert_commands.php:224 +#: ../../godmode/alerts/alert_actions.php:255 +msgid "Successfully updated" +msgstr "" + +#: ../../operation/incidents/incident.php:103 +#: ../../operation/snmpconsole/snmp_view.php:88 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:116 +#: ../../enterprise/godmode/modules/local_components.php:268 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:67 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:84 +#: ../../enterprise/godmode/policies/policy_modules.php:574 +#: ../../enterprise/godmode/policies/policies.php:144 +#: ../../enterprise/godmode/alerts/alert_events_list.php:83 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:149 +#: ../../enterprise/godmode/alerts/alert_events.php:355 +#: ../../godmode/setup/gis.php:41 +#: ../../godmode/modules/manage_network_components.php:291 +#: ../../godmode/agentes/planned_downtime.editor.php:241 +#: ../../godmode/massive/massive_edit_modules.php:132 +#: ../../godmode/alerts/alert_templates.php:148 +#: ../../godmode/alerts/alert_special_days.php:128 +#: ../../godmode/alerts/configure_alert_template.php:426 +#: ../../godmode/alerts/alert_commands.php:225 +#: ../../godmode/alerts/alert_actions.php:256 +msgid "Could not be updated" +msgstr "" + +#: ../../operation/incidents/incident.php:129 +msgid "Error creating incident" +msgstr "" + +#: ../../operation/incidents/incident.php:208 +msgid "All incidents" +msgstr "" + +#: ../../operation/incidents/incident.php:230 +msgid "All priorities" +msgstr "" + +#: ../../operation/incidents/incident.php:234 +msgid "All users" +msgstr "" + +#: ../../operation/incidents/incident.php:248 +#: ../../godmode/db/db_purge.php:151 +msgid "All agents" +msgstr "" + +#: ../../operation/incidents/incident.php:264 +msgid "No incidents match your search filter" +msgstr "" + +#: ../../operation/incidents/incident.php:358 +msgid "Delete incidents" +msgstr "" + +#: ../../operation/incidents/incident.php:362 +msgid "Become owner" +msgstr "" + +#: ../../operation/search_users.php:44 +#: ../../enterprise/extensions/cron/main.php:209 ../../godmode/tag/tag.php:163 +#: ../../godmode/tag/edit_tag.php:173 +msgid "Email" +msgstr "" + +#: ../../operation/search_users.php:50 ../../godmode/users/user_list.php:197 +msgid "Profile" +msgstr "" + +#: ../../operation/search_users.php:63 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:263 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:250 +#: ../../godmode/users/user_list.php:275 +msgid "Admin" +msgstr "" + +#: ../../operation/search_users.php:64 ../../godmode/users/user_list.php:276 +#: ../../godmode/users/configure_user.php:411 +msgid "Administrator" +msgstr "" + +#: ../../operation/search_users.php:69 ../../godmode/users/user_list.php:281 +#: ../../godmode/users/configure_user.php:416 +msgid "Standard User" +msgstr "" + +#: ../../operation/search_users.php:82 ../../godmode/users/user_list.php:295 +msgid "The user doesn't have any assigned profile/group" +msgstr "" + +#: ../../operation/snmpconsole/snmp_browser.php:76 +msgid "SNMP Browser" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:57 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:38 +#: ../../godmode/snmpconsole/snmp_alert.php:150 +#: ../../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_view.php:152 +msgid "There are no SNMP traps in database" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:317 +#: ../../operation/snmpconsole/snmp_view.php:396 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:207 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../include/functions_snmp_browser.php:305 +#: ../../godmode/snmpconsole/snmp_alert.php:254 +#: ../../godmode/snmpconsole/snmp_alert.php:460 +#: ../../godmode/snmpconsole/snmp_alert.php:484 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:64 +msgid "OID" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:325 +msgid "Search value" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:338 +#: ../../operation/events/events.build_table.php:95 +#: ../../operation/events/events_list.php:361 +#: ../../enterprise/meta/event/event_view.php:446 +#: ../../enterprise/meta/event/event_view.php:950 +#: ../../enterprise/dashboard/widgets/events_list.php:51 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:209 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../include/functions_events.php:799 +#: ../../include/functions_events.php:2115 +#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:328 +#: ../../mobile/operation/events.php:432 ../../mobile/operation/events.php:554 +#: ../../mobile/operation/events.php:555 +#: ../../godmode/events/event_edit_filter.php:183 +#: ../../godmode/events/event_filter.php:100 +msgid "Severity" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:344 +#: ../../operation/snmpconsole/snmp_view.php:443 +#: ../../operation/snmpconsole/snmp_view.php:610 +#: ../../include/functions_events.php:2539 +#: ../../include/functions_events.php:2545 +msgid "Not validated" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:345 +#: ../../operation/snmpconsole/snmp_view.php:446 +#: ../../operation/snmpconsole/snmp_view.php:608 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1360 +#: ../../include/functions_events.php:796 +#: ../../include/functions_events.php:1584 +#: ../../include/functions_events.php:1590 +#: ../../include/functions_events.php:1594 +#: ../../include/functions_events.php:1599 +#: ../../include/functions_events.php:2538 +#: ../../include/functions_events.php:2542 ../../include/functions_xml.php:127 +#: ../../include/functions_graph.php:1991 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1016 +msgid "Validated" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:349 +#: ../../operation/events/events_list.php:383 +#: ../../enterprise/meta/event/event_view.php:465 +#: ../../mobile/operation/modules.php:227 +#: ../../mobile/operation/events.php:564 ../../mobile/operation/alerts.php:174 +#: ../../mobile/operation/agents.php:183 +#: ../../godmode/events/event_edit_filter.php:191 +msgid "Free search" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:349 +msgid "Search by any alphanumeric field in the trap" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:353 +msgid "Search by trap type" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:354 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:550 +#: ../../godmode/snmpconsole/snmp_alert.php:274 +msgid "Cold start (0)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:354 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:553 +#: ../../godmode/snmpconsole/snmp_alert.php:274 +msgid "Warm start (1)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:354 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:556 +#: ../../godmode/snmpconsole/snmp_alert.php:274 +msgid "Link down (2)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:354 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:559 +#: ../../godmode/snmpconsole/snmp_alert.php:274 +msgid "Link up (3)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:354 +#: ../../operation/snmpconsole/snmp_view.php:543 +#: ../../operation/snmpconsole/snmp_view.php:562 +#: ../../godmode/snmpconsole/snmp_alert.php:274 +msgid "Authentication failure (4)" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:392 +#: ../../godmode/snmpconsole/snmp_alert.php:268 +#: ../../godmode/snmpconsole/snmp_alert.php:456 +#: ../../godmode/snmpconsole/snmp_alert.php:482 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:67 +msgid "SNMP Agent" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:400 +#: ../../enterprise/operation/services/services.list.php:87 +#: ../../enterprise/operation/services/services.service.php:102 +#: ../../enterprise/include/functions_reporting_csv.php:324 +#: ../../enterprise/include/functions_reporting_csv.php:444 +#: ../../enterprise/include/functions_reporting_csv.php:475 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting_csv.php:537 +#: ../../enterprise/include/functions_reporting_csv.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:673 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../enterprise/include/functions_reporting_pdf.php:876 +#: ../../enterprise/include/functions_reporting_pdf.php:1238 +#: ../../enterprise/include/functions_reporting_pdf.php:1518 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1327 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:197 +#: ../../include/functions_reporting.php:2226 +#: ../../include/functions_reporting.php:4436 +#: ../../include/functions_reporting.php:4953 +#: ../../include/functions_reporting.php:5239 +#: ../../include/functions_snmp_browser.php:309 +#: ../../godmode/reporting/reporting_builder.item_editor.php:970 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:76 +#: ../../godmode/massive/massive_edit_modules.php:379 +#: ../../godmode/alerts/configure_alert_template.php:656 +msgid "Value" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:404 +#: ../../enterprise/godmode/setup/setup_acl.php:69 +#: ../../enterprise/godmode/setup/setup_acl.php:213 +#: ../../include/functions_html.php:639 +msgid "Custom" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:461 +msgid "View agent details" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:527 +#: ../../operation/events/events.build_table.php:506 +#: ../../enterprise/meta/event/event_view.php:894 +msgid "Show more" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:535 +msgid "Custom data:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:536 +msgid "OID:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:539 +#: ../../enterprise/godmode/agentes/collections.data.php:311 +msgid "Description:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:568 +msgid "Type:" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:586 +msgid "No matching traps found" +msgstr "" + +#: ../../operation/snmpconsole/snmp_view.php:625 +#: ../../enterprise/operation/services/services.service_map.php:89 +#: ../../godmode/snmpconsole/snmp_alert.php:521 +msgid "Legend" +msgstr "" + +#: ../../operation/snmpconsole/snmp_mib_uploader.php:65 +#: ../../enterprise/meta/advanced/metasetup.file_manager.php:83 +#: ../../godmode/setup/file_manager.php:65 +#, php-format +msgid "Index of %s" +msgstr "" + +#: ../../operation/events/events_rss.php:145 +#: ../../operation/events/events.php:83 +#: ../../enterprise/meta/advanced/metasetup.setup.php:84 +#: ../../include/functions_events.php:888 +#: ../../include/functions_events.php:1332 ../../include/functions.php:883 +#: ../../include/functions_graph.php:1475 +#: ../../include/functions_graph.php:1920 +#: ../../include/functions_graph.php:2237 +#: ../../include/functions_graph.php:2240 +#: ../../godmode/setup/setup_general.php:62 +msgid "System" +msgstr "" + +#: ../../operation/events/sound_events.php:65 +msgid "Sound console" +msgstr "" + +#: ../../operation/events/sound_events.php:78 +#: ../../include/functions_reporting.php:1011 +msgid "Monitor critical" +msgstr "" + +#: ../../operation/events/sound_events.php:79 +#: ../../include/functions_reporting.php:1015 +msgid "Monitor warning" +msgstr "" + +#: ../../operation/events/events.php:77 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:123 +msgid "Event" +msgstr "" + +#: ../../operation/events/events.php:272 +msgid "History event list" +msgstr "" + +#: ../../operation/events/events.php:277 +msgid "RSS Events" +msgstr "" + +#: ../../operation/events/events.php:282 +msgid "Marquee display" +msgstr "" + +#: ../../operation/events/events.php:287 +msgid "Export to CSV file" +msgstr "" + +#: ../../operation/events/events.php:291 ../../operation/events/events.php:330 +msgid "Sound events" +msgstr "" + +#: ../../operation/events/events.php:298 +#: ../../godmode/users/configure_profile.php:178 ../../godmode/menu.php:153 +#: ../../godmode/events/events.php:73 ../../godmode/events/events.php:76 +msgid "Manage events" +msgstr "" + +#: ../../operation/events/events.php:334 +msgid "History" +msgstr "" + +#: ../../operation/events/events.php:338 ../../include/functions_html.php:645 +#: ../../godmode/category/category.php:47 +#: ../../godmode/alerts/alert_list.php:291 +msgid "List" +msgstr "" + +#: ../../operation/events/events.php:344 ../../operation/events/events.php:353 +#: ../../operation/events/events.php:374 +#: ../../enterprise/include/functions_reporting_pdf.php:840 +#: ../../enterprise/meta/general/main_header.php:128 +#: ../../enterprise/meta/general/logon_ok.php:32 +#: ../../enterprise/dashboard/widgets/events_list.php:26 +#: ../../include/functions_reporting.php:4387 +#: ../../include/functions_reports.php:591 +#: ../../include/functions_reports.php:593 +#: ../../include/functions_reports.php:595 +#: ../../include/functions_graph.php:662 +#: ../../include/functions_graph.php:2794 +#: ../../include/functions_graph.php:3342 ../../mobile/operation/home.php:50 +#: ../../mobile/include/functions_web.php:24 +msgid "Events" +msgstr "" + +#: ../../operation/events/events.php:374 +msgid "Main event view" +msgstr "" + +#: ../../operation/events/events.php:392 +msgid "No events selected" +msgstr "" + +#: ../../operation/events/events.php:418 +msgid "Successfully validated" +msgstr "" + +#: ../../operation/events/events.php:419 ../../operation/events/events.php:685 +#: ../../operation/events/events.php:837 +#: ../../enterprise/meta/event/event_view.php:1769 +msgid "Could not be validated" +msgstr "" + +#: ../../operation/events/events.php:423 +msgid "Successfully set in process" +msgstr "" + +#: ../../operation/events/events.php:424 +msgid "Could not be set in process" +msgstr "" + +#: ../../operation/events/events.php:539 ../../operation/events/events.php:564 +#: ../../operation/events/events.php:565 ../../operation/events/events.php:781 +#: ../../operation/events/events.php:786 ../../operation/events/events.php:787 +#: ../../operation/events/events.build_table.php:174 +#: ../../enterprise/include/functions_reporting_pdf.php:2557 +#: ../../enterprise/meta/event/event_view.php:812 +#: ../../enterprise/meta/event/event_view.php:873 +#: ../../enterprise/meta/event/event_view.php:1609 +#: ../../enterprise/meta/event/event_view.php:1636 +#: ../../enterprise/meta/event/event_view.php:1637 +#: ../../include/functions_events.php:831 +#: ../../include/functions_events.php:2134 +#: ../../include/functions_reporting.php:2504 +#: ../../include/functions_reporting.php:2601 +#: ../../include/ajax/events.php:419 ../../mobile/operation/events.php:112 +#: ../../mobile/operation/events.php:239 ../../mobile/operation/events.php:730 +msgid "Event validated" +msgstr "" + +#: ../../operation/events/events.php:597 ../../operation/events/events.php:631 +#: ../../operation/events/events.php:632 ../../operation/events/events.php:791 +#: ../../operation/events/events.php:805 ../../operation/events/events.php:806 +#: ../../operation/events/events.build_table.php:178 +#: ../../enterprise/include/functions_reporting_pdf.php:2561 +#: ../../enterprise/meta/event/event_view.php:816 +#: ../../enterprise/meta/event/event_view.php:1672 +#: ../../enterprise/meta/event/event_view.php:1708 +#: ../../enterprise/meta/event/event_view.php:1709 +#: ../../include/functions_events.php:835 +#: ../../include/functions_events.php:2138 +#: ../../include/functions_reporting.php:2508 +#: ../../include/functions_reporting.php:2605 +#: ../../include/ajax/events.php:423 ../../mobile/operation/events.php:243 +msgid "Event in process" +msgstr "" + +#: ../../operation/events/events.php:622 ../../operation/events/events.php:626 +#: ../../operation/events/events.php:796 ../../operation/events/events.php:800 +#: ../../operation/events/events.build_table.php:498 +#: ../../enterprise/meta/event/event_view.php:887 +#: ../../enterprise/meta/event/event_view.php:1699 +#: ../../enterprise/meta/event/event_view.php:1703 +msgid "Is not allowed delete events in process" +msgstr "" + +#: ../../operation/events/events.php:717 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:130 +msgid "Successfully delete" +msgstr "" + +#: ../../operation/events/events.php:720 +msgid "Error deleting event" +msgstr "" + +#: ../../operation/events/events.build_table.php:34 +#: ../../enterprise/meta/monitoring/group_view.php:60 +#: ../../enterprise/meta/agentsearch.php:87 +#: ../../enterprise/meta/event/event_view.php:260 +#: ../../enterprise/meta/event/event_view.php:273 +#: ../../enterprise/meta/event/event_view.php:765 +#: ../../enterprise/meta/event/event_view.php:1003 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1071 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1359 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1482 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1092 +#: ../../enterprise/extensions/csv_import/main.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:905 +#: ../../godmode/agentes/module_manager.php:469 +#: ../../godmode/agentes/agent_manager.php:218 +#: ../../godmode/massive/massive_edit_agents.php:266 +msgid "Server" +msgstr "" + +#: ../../operation/events/events.build_table.php:44 +#: ../../enterprise/meta/event/event_view.php:940 +#: ../../include/functions_events.php:2061 +#: ../../mobile/operation/events.php:412 +msgid "Event ID" +msgstr "" + +#: ../../operation/events/events.build_table.php:49 +#: ../../mobile/operation/events.php:75 ../../mobile/operation/events.php:683 +msgid "Event Name" +msgstr "" + +#: ../../operation/events/events.build_table.php:54 +#: ../../enterprise/include/functions_reporting_pdf.php:3611 +#: ../../enterprise/include/functions_reporting_pdf.php:3746 +#: ../../enterprise/meta/event/event_view.php:772 +#: ../../enterprise/meta/event/event_view.php:1013 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1061 +#: ../../include/functions_events.php:809 +#: ../../include/functions_reporting.php:5809 +#: ../../include/functions_reporting.php:5950 +#: ../../include/functions_treeview.php:228 +#: ../../mobile/operation/modules.php:386 +#: ../../mobile/operation/modules.php:590 ../../godmode/db/db_info.php:69 +#: ../../godmode/agentes/modificar_agente.php:401 +#: ../../godmode/agentes/agent_manager.php:153 +#: ../../godmode/events/custom_events.php:71 +#: ../../godmode/events/custom_events.php:149 +msgid "Agent name" +msgstr "" + +#: ../../operation/events/events.build_table.php:79 +#: ../../operation/events/events_list.php:356 +#: ../../enterprise/meta/event/event_view.php:437 +#: ../../enterprise/dashboard/widgets/events_list.php:33 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:193 +#: ../../include/functions_reporting.php:2679 +#: ../../godmode/events/event_edit_filter.php:180 +#: ../../godmode/events/event_filter.php:98 +#: ../../godmode/events/custom_events.php:86 +#: ../../godmode/events/custom_events.php:154 +msgid "Event type" +msgstr "" + +#: ../../operation/events/events.build_table.php:84 +msgid "Agent Module" +msgstr "" + +#: ../../operation/events/events.build_table.php:100 +#: ../../include/functions_events.php:1616 +#: ../../godmode/events/custom_events.php:98 +#: ../../godmode/events/custom_events.php:158 +msgid "Comment" +msgstr "" + +#: ../../operation/events/events.build_table.php:115 +msgid "Extra ID" +msgstr "" + +#: ../../operation/events/events.build_table.php:120 +#: ../../godmode/events/custom_events.php:113 +#: ../../godmode/events/custom_events.php:163 +msgid "ACK Timestamp" +msgstr "" + +#: ../../operation/events/events.build_table.php:125 +#: ../../include/functions_events.php:1982 +#: ../../include/functions_events.php:1994 +#: ../../include/functions_events.php:2006 +#: ../../godmode/events/custom_events.php:116 +#: ../../godmode/events/custom_events.php:164 +msgid "Instructions" +msgstr "" + +#: ../../operation/events/events.build_table.php:170 +#: ../../enterprise/include/functions_reporting_pdf.php:2553 +#: ../../enterprise/meta/event/event_view.php:808 +#: ../../include/functions_events.php:827 +#: ../../include/functions_events.php:2130 +#: ../../include/functions_reporting.php:2500 +#: ../../include/functions_reporting.php:2597 +#: ../../include/ajax/events.php:415 ../../mobile/operation/events.php:235 +msgid "New event" +msgstr "" + +#: ../../operation/events/events.build_table.php:484 +#: ../../enterprise/meta/event/event_view.php:868 +msgid "Validate event" +msgstr "" + +#: ../../operation/events/events.build_table.php:493 +#: ../../enterprise/meta/event/event_view.php:881 +#: ../../include/functions_events.php:1624 +#: ../../include/functions_events.php:1626 +msgid "Delete event" +msgstr "" + +#: ../../operation/events/events.build_table.php:546 +msgid "Validate selected" +msgstr "" + +#: ../../operation/events/events.build_table.php:549 +#: ../../godmode/agentes/agent_manager.php:187 +msgid "Delete selected" +msgstr "" + +#: ../../operation/events/events.build_table.php:573 +#: ../../enterprise/meta/event/event_view.php:1237 +#: ../../include/functions_events.php:776 +#: ../../mobile/operation/events.php:751 ../../mobile/operation/events.php:754 +msgid "No events" +msgstr "" + +#: ../../operation/events/events_list.php:168 +#: ../../operation/events/events_list.php:171 +#: ../../enterprise/meta/event/event_view.php:412 +msgid "Event control filter" +msgstr "" + +#: ../../operation/events/events_list.php:174 +msgid "Show events graph" +msgstr "" + +#: ../../operation/events/events_list.php:182 +#: ../../operation/events/events_list.php:435 +msgid "No filter loaded" +msgstr "" + +#: ../../operation/events/events_list.php:184 +#: ../../operation/events/events_list.php:438 +msgid "Filter loaded" +msgstr "" + +#: ../../operation/events/events_list.php:186 +#: ../../operation/events/events_list.php:218 +#: ../../operation/events/events_list.php:432 +#: ../../enterprise/meta/event/event_view.php:579 +msgid "Save filter" +msgstr "" + +#: ../../operation/events/events_list.php:202 +msgid "New filter" +msgstr "" + +#: ../../operation/events/events_list.php:203 +#: ../../operation/events/events_list.php:228 +#: ../../enterprise/meta/event/event_view.php:578 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +msgid "Update filter" +msgstr "" + +#: ../../operation/events/events_list.php:209 +#: ../../enterprise/meta/event/event_view.php:422 +#: ../../godmode/events/event_edit_filter.php:163 +msgid "Filter name" +msgstr "" + +#: ../../operation/events/events_list.php:211 +#: ../../enterprise/include/functions_networkmap_enterprise.php:182 +#: ../../enterprise/meta/event/event_view.php:427 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:217 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:149 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:87 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:111 +#: ../../enterprise/godmode/policies/policy_agents.php:223 +#: ../../enterprise/godmode/policies/policy_agents.php:231 +#: ../../godmode/reporting/graph_builder.graph_editor.php:123 +#: ../../godmode/events/event_edit_filter.php:166 +#: ../../godmode/events/event_filter.php:97 +msgid "Filter group" +msgstr "" + +#: ../../operation/events/events_list.php:226 +msgid "Overwrite filter" +msgstr "" + +#: ../../operation/events/events_list.php:293 +#: ../../godmode/events/event_edit_filter.php:267 +msgid "Events with following tags" +msgstr "" + +#: ../../operation/events/events_list.php:296 +#: ../../godmode/events/event_edit_filter.php:284 +msgid "Events without following tags" +msgstr "" + +#: ../../operation/events/events_list.php:306 +#: ../../operation/events/events_list.php:312 +#: ../../enterprise/godmode/agentes/collection_manager.php:127 +#: ../../enterprise/godmode/policies/policy_collections.php:123 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:118 +#: ../../godmode/events/event_edit_filter.php:278 +#: ../../godmode/events/event_edit_filter.php:295 +msgid "Remove" +msgstr "" + +#: ../../operation/events/events_list.php:370 +#: ../../enterprise/meta/event/event_view.php:451 +#: ../../enterprise/dashboard/widgets/events_list.php:43 +#: ../../godmode/events/event_edit_filter.php:188 +#: ../../godmode/events/event_filter.php:99 +msgid "Event status" +msgstr "" + +#: ../../operation/events/events_list.php:373 +#: ../../enterprise/meta/event/event_view.php:504 +#: ../../mobile/operation/events.php:569 +#: ../../godmode/admin_access_logs.php:67 +#: ../../godmode/admin_access_logs.php:68 +#: ../../godmode/events/event_edit_filter.php:218 +msgid "Max. hours old" +msgstr "" + +#: ../../operation/events/events_list.php:375 +#: ../../enterprise/meta/event/event_view.php:518 +#: ../../include/functions_events.php:2100 +#: ../../mobile/operation/events.php:428 +#: ../../godmode/events/event_edit_filter.php:227 +msgid "Repeated" +msgstr "" + +#: ../../operation/events/events_list.php:376 +#: ../../enterprise/meta/event/event_view.php:521 +#: ../../enterprise/godmode/setup/setup.php:81 +#: ../../godmode/events/event_edit_filter.php:225 +msgid "All events" +msgstr "" + +#: ../../operation/events/events_list.php:377 +#: ../../enterprise/meta/event/event_view.php:522 +#: ../../godmode/events/event_edit_filter.php:226 +msgid "Group events" +msgstr "" + +#: ../../operation/events/events_list.php:385 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:212 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:380 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:458 +#: ../../enterprise/meta/agentsearch.php:28 +#: ../../enterprise/meta/agentsearch.php:32 +#: ../../enterprise/meta/event/event_view.php:470 +#: ../../godmode/events/event_edit_filter.php:194 +msgid "Agent search" +msgstr "" + +#: ../../operation/events/events_list.php:402 +#: ../../enterprise/meta/event/event_view.php:511 +#: ../../godmode/events/event_edit_filter.php:221 +msgid "User ack." +msgstr "" + +#: ../../operation/events/events_list.php:410 +#: ../../enterprise/meta/event/event_view.php:533 +#: ../../godmode/events/event_edit_filter.php:300 +msgid "Alert events" +msgstr "" + +#: ../../operation/events/events_list.php:411 +#: ../../enterprise/meta/event/event_view.php:535 +#: ../../godmode/events/event_edit_filter.php:303 +msgid "Filter alert events" +msgstr "" + +#: ../../operation/events/events_list.php:411 +#: ../../enterprise/meta/event/event_view.php:535 +#: ../../godmode/events/event_edit_filter.php:304 +msgid "Only alert events" +msgstr "" + +#: ../../operation/events/events_list.php:494 +msgid "Events generated -by module-" +msgstr "" + +#: ../../operation/events/events_list.php:669 +#: ../../enterprise/meta/event/event_view.php:1409 +#: ../../enterprise/meta/event/event_view.php:1479 +msgid "Filter name cannot be left blank" +msgstr "" + +#: ../../operation/events/events_list.php:703 +#: ../../enterprise/meta/event/event_view.php:1440 +msgid "Filter created" +msgstr "" + +#: ../../operation/events/events_list.php:769 +#: ../../enterprise/meta/event/event_view.php:1507 +msgid "Filter updated" +msgstr "" + +#: ../../operation/events/event_statistics.php:37 +#: ../../include/functions_events.php:924 +msgid "Event graph" +msgstr "" + +#: ../../operation/events/event_statistics.php:41 +msgid "Event graph by user" +msgstr "" + +#: ../../operation/events/event_statistics.php:61 +#: ../../include/functions_events.php:929 +msgid "Event graph by agent" +msgstr "" + +#: ../../operation/events/event_statistics.php:65 +#: ../../enterprise/include/functions_reporting_pdf.php:2484 +#: ../../enterprise/include/functions_reporting_pdf.php:2666 +#: ../../include/functions_reporting.php:3755 +#: ../../include/functions_reporting.php:4000 +msgid "Amount events validated" +msgstr "" + +#: ../../general/footer.php:30 ../../mobile/include/functions_web.php:81 +#: ../../mobile/include/ui.class.php:253 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "" + +#: ../../general/footer.php:32 +msgid "Page generated at" +msgstr "" + +#: ../../general/login_page.php:35 +msgid "Go to Pandora FMS Website" +msgstr "" + +#: ../../general/login_page.php:39 +msgid "Go to Login" +msgstr "" + +#: ../../general/login_page.php:104 +msgid "Log-in" +msgstr "" + +#: ../../general/login_page.php:108 msgid "Logged out" msgstr "" -#: ../../general/logoff.php:31 +#: ../../general/login_page.php:110 ../../mobile/include/user.class.php:152 msgid "" "Your session is over. Please close your browser window to close this Pandora " "session." msgstr "" -#: ../../general/header.php:64 ../../operation/messages/message.php:37 -msgid "Message overview" +#: ../../general/login_page.php:118 +msgid "View details" msgstr "" -#: ../../general/header.php:66 -#, php-format -msgid "You have %d unread message(s)" +#: ../../general/login_page.php:127 +#: ../../enterprise/meta/general/login_page.php:82 +msgid "Build" msgstr "" -#: ../../general/header.php:79 -msgid "System alerts detected - Please fix as soon as possible" +#: ../../general/login_page.php:146 +#: ../../enterprise/meta/general/login_page.php:92 +msgid "Login failed" msgstr "" -#: ../../general/header.php:81 -#, php-format -msgid "You have %d warning(s)" +#: ../../general/login_page.php:169 +msgid "" +"Pandora FMS frontend is built on advanced, modern technologies and does not " +"support old browsers." msgstr "" -#: ../../general/header.php:88 ../../mobile/include/functions_web.php:33 -msgid "Logout" +#: ../../general/login_page.php:170 +msgid "" +"It is highly recommended that you choose and install a modern browser. It is " +"free of charge and only takes a couple of minutes." msgstr "" -#: ../../general/header.php:100 ../../general/header.php:108 -msgid "All systems" +#: ../../general/login_page.php:233 +msgid "Why is it recommended to upgrade the web browser?" msgstr "" -#: ../../general/header.php:100 -msgid "Down" +#: ../../general/login_page.php:238 +msgid "" +"New browsers usually come with support for new technologies, increasing web " +"page speed, better privacy settings and so on. They also resolve security " +"and functional issues." msgstr "" -#: ../../general/header.php:104 -msgid "servers down" +#: ../../general/login_page.php:247 +msgid "Continue despite this warning" msgstr "" -#: ../../general/header.php:108 -msgid "Ready" +#: ../../general/main_menu.php:26 +#: ../../enterprise/include/functions_reporting_pdf.php:1237 +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +#: ../../enterprise/meta/advanced/policymanager.queue.php:264 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1685 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:136 +#: ../../enterprise/godmode/policies/policy_queue.php:366 +#: ../../enterprise/godmode/policies/policy_queue.php:399 +#: ../../include/functions_reporting.php:4435 +#: ../../include/functions_reporting.php:5238 +#: ../../include/functions_menu.php:475 ../../godmode/extensions.php:153 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1221 +#: ../../extensions/net_tools.php:60 +msgid "Operation" msgstr "" -#: ../../general/header.php:125 ../../general/header.php:131 -msgid "Autorefresh" +#: ../../general/main_menu.php:39 ../../include/functions_menu.php:472 +msgid "Administration" msgstr "" -#: ../../general/header.php:133 ../../general/header.php:134 -#: ../../general/header.php:135 ../../general/header.php:136 -#: ../../extensions/agents_modules.php:87 -#: ../../operation/gis_maps/render_view.php:104 -#: ../../operation/gis_maps/render_view.php:105 -#: ../../operation/gis_maps/render_view.php:106 -#: ../../godmode/alerts/configure_alert_action.php:121 -#: ../../godmode/alerts/configure_alert_template.php:485 -#: ../../godmode/alerts/configure_alert_compound.php:377 -#: ../../godmode/snmpconsole/snmp_alert.php:248 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:141 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:145 -#: ../../enterprise/godmode/alerts/alert_events.php:438 -#: ../../enterprise/dashboard/main_dashboard.php:213 -#: ../../include/functions.php:418 -msgid "seconds" -msgstr "" - -#: ../../general/header.php:137 ../../extensions/agents_modules.php:87 -#: ../../operation/gis_maps/render_view.php:107 -msgid "minute" -msgstr "" - -#: ../../general/header.php:138 ../../general/header.php:139 -#: ../../general/header.php:140 ../../general/header.php:141 -#: ../../extensions/agents_modules.php:87 -#: ../../operation/gis_maps/render_view.php:108 -#: ../../operation/gis_maps/render_view.php:109 -#: ../../operation/gis_maps/render_view.php:110 -#: ../../include/functions.php:421 ../../include/functions_alerts.php:784 -#: ../../include/functions_alerts.php:785 -#: ../../include/functions_alerts.php:786 -#: ../../include/functions_alerts.php:787 -msgid "minutes" -msgstr "" - -#: ../../general/header.php:142 ../../operation/gis_maps/render_view.php:111 -#: ../../godmode/reporting/visual_console_builder.elements.php:52 -#: ../../godmode/reporting/visual_console_builder.editor.php:89 -#: ../../godmode/reporting/graph_builder.main.php:128 -#: ../../godmode/setup/performance.php:71 -#: ../../enterprise/godmode/agentes/inventory_manager.php:159 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:48 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:45 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:190 -#: ../../include/functions_alerts.php:788 -msgid "hour" -msgstr "" - -#: ../../general/header.php:144 ../../extensions/insert_data.php:159 -#: ../../godmode/massive/massive_copy_modules.php:82 -#: ../../godmode/massive/massive_edit_modules.php:257 -#: ../../godmode/massive/massive_edit_modules.php:281 -#: ../../godmode/massive/massive_edit_modules.php:289 -#: ../../godmode/massive/massive_delete_alerts.php:143 -#: ../../godmode/massive/massive_add_alerts.php:142 -#: ../../godmode/massive/massive_delete_modules.php:124 -#: ../../godmode/alerts/configure_alert_template.php:592 -#: ../../godmode/alerts/alert_list.builder.php:61 -#: ../../godmode/alerts/alert_list.builder.php:81 -#: ../../godmode/alerts/configure_alert_compound.php:391 -#: ../../godmode/alerts/configure_alert_compound.php:395 -#: ../../godmode/alerts/configure_alert_compound.php:486 -#: ../../godmode/alerts/configure_alert_compound.php:589 -#: ../../godmode/gis_maps/configure_gis_map.php:417 -#: ../../godmode/gis_maps/configure_gis_map.php:600 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 -#: ../../enterprise/operation/metaconsole/usermanager.php:142 -#: ../../enterprise/operation/metaconsole/usermanager.php:153 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:177 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:186 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:228 -#: ../../enterprise/godmode/alerts/alert_events.php:513 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:440 -#: ../../enterprise/include/functions_policies.php:115 -msgid "Select" -msgstr "" - -#: ../../general/header.php:170 ../../general/header.php:172 -msgid "Enter keywords to search" -msgstr "" - -#: ../../general/header.php:187 ../../mobile/include/functions_web.php:24 -#: ../../operation/events/events.php:210 ../../operation/events/events.php:229 -#: ../../enterprise/dashboard/widgets/events_list.php:26 -#: ../../enterprise/include/functions_reporting_pdf.php:518 -#: ../../include/functions_graph.php:331 -#: ../../include/functions_graph.php:1930 -#: ../../include/functions_reporting.php:3098 -msgid "Events" -msgstr "" - -#: ../../general/noaccess.php:18 ../../general/noaccess.php:20 +#: ../../general/noaccess.php:18 ../../general/noaccess.php:21 +#: ../../enterprise/meta/general/noaccess.php:21 +#: ../../enterprise/meta/general/metaconsole_no_activated.php:13 +#: ../../mobile/operation/modules.php:160 ../../mobile/operation/groups.php:55 +#: ../../mobile/operation/events.php:384 ../../mobile/operation/alerts.php:134 +#: ../../mobile/operation/module_graph.php:221 +#: ../../mobile/operation/tactical.php:47 ../../mobile/operation/agent.php:62 +#: ../../mobile/operation/agents.php:141 msgid "You don't have access to this page" msgstr "" -#: ../../general/noaccess.php:29 +#: ../../general/noaccess.php:29 ../../enterprise/meta/general/noaccess.php:29 +#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 msgid "No access" msgstr "" -#: ../../general/noaccess.php:33 +#: ../../general/noaccess.php:33 ../../enterprise/meta/general/noaccess.php:33 +#: ../../mobile/operation/modules.php:161 ../../mobile/operation/groups.php:56 +#: ../../mobile/operation/events.php:385 ../../mobile/operation/alerts.php:135 +#: ../../mobile/operation/module_graph.php:222 +#: ../../mobile/operation/tactical.php:48 ../../mobile/operation/agent.php:63 +#: ../../mobile/operation/agents.php:142 msgid "" "Access to this page is restricted to authorized users only, please contact " "system administrator if you need assistance.

Please know that all " @@ -589,6 +7335,172 @@ msgid "" "Database" msgstr "" +#: ../../general/login_help_dialog.php:39 +#: ../../enterprise/dashboard/widgets/example.php:35 +msgid "Welcome to Pandora FMS" +msgstr "" + +#: ../../general/login_help_dialog.php:43 +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!" +msgstr "" + +#: ../../general/login_help_dialog.php:51 +#: ../../general/login_help_dialog.php:54 +msgid "Online help" +msgstr "" + +#: ../../general/login_help_dialog.php:59 +#: ../../general/login_help_dialog.php:62 +msgid "Support" +msgstr "" + +#: ../../general/login_help_dialog.php:62 +msgid "Forums" +msgstr "" + +#: ../../general/login_help_dialog.php:69 +#: ../../general/login_help_dialog.php:72 +msgid "Enterprise version" +msgstr "" + +#: ../../general/login_help_dialog.php:77 +#: ../../general/login_help_dialog.php:80 +msgid "Documentation" +msgstr "" + +#: ../../general/login_help_dialog.php:90 +msgid "Click here to don't show again this message" +msgstr "" + +#: ../../general/header.php:69 ../../general/header.php:77 +msgid "All systems" +msgstr "" + +#: ../../general/header.php:69 +msgid "Down" +msgstr "" + +#: ../../general/header.php:73 +msgid "servers down" +msgstr "" + +#: ../../general/header.php:77 +msgid "Ready" +msgstr "" + +#: ../../general/header.php:108 +msgid "Configure autorefresh" +msgstr "" + +#: ../../general/header.php:118 +msgid "15 seconds" +msgstr "" + +#: ../../general/header.php:123 +msgid "15 minutes" +msgstr "" + +#: ../../general/header.php:124 ../../include/ajax/module.php:77 +msgid "30 minutes" +msgstr "" + +#: ../../general/header.php:127 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:86 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:199 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:362 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:432 +#: ../../enterprise/meta/advanced/synchronizing.user.php:531 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:319 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:372 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 +#: ../../enterprise/godmode/policies/policy_alerts.php:437 +#: ../../enterprise/godmode/policies/policy_alerts.php:441 +#: ../../enterprise/godmode/alerts/alert_events.php:513 +#: ../../godmode/gis_maps/configure_gis_map.php:595 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:74 +#: ../../godmode/massive/massive_add_alerts.php:145 +#: ../../godmode/massive/massive_delete_alerts.php:171 +#: ../../godmode/massive/massive_copy_modules.php:82 +#: ../../godmode/massive/massive_delete_modules.php:250 +#: ../../godmode/massive/massive_delete_modules.php:274 +#: ../../godmode/massive/massive_delete_modules.php:282 +#: ../../godmode/massive/massive_edit_modules.php:217 +#: ../../godmode/massive/massive_edit_modules.php:241 +#: ../../godmode/massive/massive_edit_modules.php:249 +#: ../../godmode/alerts/alert_list.builder.php:73 +#: ../../godmode/alerts/alert_list.builder.php:91 +#: ../../godmode/alerts/configure_alert_template.php:649 +#: ../../extensions/insert_data.php:166 +msgid "Select" +msgstr "" + +#: ../../general/header.php:132 +msgid "Disabled autorefresh" +msgstr "" + +#: ../../general/header.php:153 +msgid "System alerts detected - Please fix as soon as possible" +msgstr "" + +#: ../../general/header.php:159 +#, php-format +msgid "You have %d warning(s)" +msgstr "" + +#: ../../general/header.php:162 +msgid "There are not warnings" +msgstr "" + +#: ../../general/header.php:172 ../../mobile/include/functions_web.php:33 +#: ../../mobile/include/ui.class.php:176 +msgid "Logout" +msgstr "" + +#: ../../general/header.php:188 +msgid "New chat message" +msgstr "" + +#: ../../general/header.php:198 +msgid "Message overview" +msgstr "" + +#: ../../general/header.php:199 +#, php-format +msgid "You have %d unread message(s)" +msgstr "" + +#: ../../general/header.php:208 ../../general/header.php:210 +msgid "Enter keywords to search" +msgstr "" + +#: ../../general/header.php:224 +msgid "Blank characters are used as AND conditions" +msgstr "" + +#: ../../general/pandora_help.php:24 ../../general/pandora_help.php:79 +msgid "Pandora FMS help system" +msgstr "" + +#: ../../general/pandora_help.php:64 +msgid "Help system error" +msgstr "" + +#: ../../general/pandora_help.php:69 +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 "" + +#: ../../general/links_menu.php:20 ../../godmode/menu.php:212 +msgid "Links" +msgstr "" + #: ../../general/logon_failed.php:21 msgid "Authentication error" msgstr "" @@ -602,9428 +7514,11622 @@ msgid "" "malfunction." msgstr "" -#: ../../general/pandora_help.php:24 ../../general/pandora_help.php:73 -msgid "Pandora FMS help system" +#: ../../general/shortcut_bar.php:127 +msgid "Press here to activate shortcut bar" msgstr "" -#: ../../general/pandora_help.php:58 -msgid "Help system error" +#: ../../general/shortcut_bar.php:175 ../../general/shortcut_bar.php:198 +msgid "Critical events" msgstr "" -#: ../../general/pandora_help.php:63 -msgid "" -"Pandora FMS help system has been called with a help reference that currently " -"don't exist. There is no help content to show." +#: ../../general/shortcut_bar.php:204 ../../general/shortcut_bar.php:224 +msgid "Incidents opened" msgstr "" -#: ../../general/links_menu.php:20 ../../godmode/menu.php:216 -msgid "Links" +#: ../../general/shortcut_bar.php:234 +#: ../../godmode/users/configure_profile.php:168 +msgid "View reports" msgstr "" -#: ../../general/main_menu.php:23 ../../extensions/net_tools.php:32 -#: ../../godmode/extensions.php:156 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:219 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:253 -#: ../../enterprise/godmode/policies/policy_queue.php:285 -#: ../../enterprise/godmode/policies/policy_queue.php:318 -msgid "Operation" +#: ../../general/shortcut_bar.php:240 +msgid "Create new message" msgstr "" -#: ../../general/main_menu.php:26 -msgid "Administration" +#: ../../general/shortcut_bar.php:267 +msgid "Shortcut: " msgstr "" -#: ../../mobile/operation/events/events.php:44 -#: ../../mobile/operation/agents/monitor_status.php:55 -#: ../../operation/events/events_list.php:180 -#: ../../operation/agentes/estado_agente.php:170 -#: ../../operation/agentes/status_monitor.php:76 -#: ../../enterprise/operation/metaconsole/eventview.php:317 -msgid "Not normal" +#: ../../general/logon_ok.php:31 +msgid "Welcome to Pandora FMS Web Console" msgstr "" -#: ../../mobile/operation/events/events.php:52 -#: ../../mobile/operation/agents/monitor_status.php:46 -#: ../../mobile/operation/agents/tactical.php:44 -#: ../../mobile/operation/agents/view_agents.php:87 -msgid "G" +#: ../../general/logon_ok.php:57 +msgid "News board" msgstr "" -#: ../../mobile/operation/events/events.php:54 -#: ../../operation/events/events_list.php:177 -#: ../../enterprise/operation/metaconsole/eventview.php:314 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:231 -#: ../../enterprise/dashboard/widgets/events_list.php:33 -#: ../../enterprise/include/functions_reporting_pdf.php:1960 -#: ../../include/functions_reporting.php:1723 -#: ../../include/functions_reporting.php:1781 -#: ../../include/functions_reporting.php:1841 -msgid "Event type" +#: ../../general/logon_ok.php:62 +msgid "ago" msgstr "" -#: ../../mobile/operation/events/events.php:54 -msgid "E" +#: ../../general/logon_ok.php:66 +msgid "by" msgstr "" -#: ../../mobile/operation/events/events.php:55 -#: ../../mobile/operation/events/events.php:57 -#: ../../mobile/operation/agents/monitor_status.php:50 -#: ../../mobile/operation/agents/monitor_status.php:63 -#: ../../extensions/agents_modules.php:77 -#: ../../operation/events/export_csv.php:48 -#: ../../operation/events/export_csv.php:77 -#: ../../operation/events/export_csv.php:81 -#: ../../operation/events/export_csv.php:96 -#: ../../operation/events/events_list.php:41 -#: ../../operation/events/events_list.php:45 -#: ../../operation/events/events_list.php:60 -#: ../../operation/events/events_list.php:181 -#: ../../operation/events/events_list.php:188 -#: ../../operation/events/events_list.php:269 -#: ../../operation/events/events_list.php:276 -#: ../../operation/events/events_rss.php:120 -#: ../../operation/events/events_rss.php:124 -#: ../../operation/events/events_rss.php:139 -#: ../../operation/events/events.php:169 -#: ../../operation/agentes/estado_agente.php:175 -#: ../../operation/agentes/alerts_status.functions.php:50 -#: ../../operation/agentes/alerts_status.functions.php:56 -#: ../../operation/agentes/status_monitor.php:79 -#: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/status_monitor.php:188 -#: ../../operation/agentes/networkmap.php:297 -#: ../../operation/agentes/networkmap.php:304 -#: ../../operation/gis_maps/render_view.php:118 -#: ../../operation/snmpconsole/snmp_view.php:306 -#: ../../operation/snmpconsole/snmp_view.php:310 -#: ../../operation/snmpconsole/snmp_view.php:314 -#: ../../operation/snmpconsole/snmp_view.php:331 -#: ../../operation/snmpconsole/snmp_view.php:335 -#: ../../operation/snmpconsole/snmp_view.php:411 -#: ../../godmode/massive/massive_edit_modules.php:254 -#: ../../godmode/massive/massive_edit_modules.php:278 -#: ../../godmode/modules/manage_network_components.php:311 -#: ../../godmode/modules/manage_network_templates_form.php:250 -#: ../../godmode/agentes/planned_downtime.php:397 -#: ../../godmode/alerts/alert_templates.php:203 -#: ../../godmode/alerts/alert_list.list.php:91 -#: ../../godmode/alerts/alert_list.list.php:97 -#: ../../godmode/alerts/alert_list.list.php:106 -#: ../../godmode/alerts/alert_list.list.php:111 -#: ../../godmode/alerts/alert_list.php:240 -#: ../../godmode/alerts/alert_list.php:276 -#: ../../godmode/alerts/alert_list.php:289 -#: ../../godmode/alerts/alert_compounds.php:125 -#: ../../godmode/admin_access_logs.php:61 -#: ../../godmode/admin_access_logs.php:63 -#: ../../godmode/reporting/reporting_builder.item_editor.php:434 -#: ../../godmode/reporting/graph_builder.graph_editor.php:125 -#: ../../godmode/reporting/reporting_builder.list_items.php:139 -#: ../../godmode/reporting/reporting_builder.list_items.php:141 -#: ../../godmode/reporting/reporting_builder.list_items.php:143 -#: ../../godmode/setup/gis_step_2.php:153 -#: ../../enterprise/extensions/tree_view.php:691 -#: ../../enterprise/operation/agentes/agent_inventory.php:66 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:217 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:221 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:227 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:291 -#: ../../enterprise/operation/metaconsole/eventview.php:129 -#: ../../enterprise/operation/metaconsole/eventview.php:149 -#: ../../enterprise/operation/metaconsole/eventview.php:153 -#: ../../enterprise/operation/metaconsole/eventview.php:169 -#: ../../enterprise/operation/metaconsole/eventview.php:318 -#: ../../enterprise/operation/metaconsole/eventview.php:324 -#: ../../enterprise/operation/metaconsole/eventview.php:395 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:31 -#: ../../enterprise/operation/inventory/inventory.php:68 -#: ../../enterprise/operation/inventory/inventory.php:70 -#: ../../enterprise/godmode/modules/local_components.php:222 -#: ../../enterprise/godmode/modules/local_components.php:229 -#: ../../enterprise/godmode/alerts/alert_events_list.php:394 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:121 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:123 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:131 -#: ../../enterprise/godmode/policies/policy_agents.php:224 -#: ../../enterprise/godmode/policies/policy_agents.php:231 -#: ../../enterprise/godmode/policies/policy_agents.php:330 -#: ../../enterprise/godmode/policies/policy_queue.php:283 -#: ../../enterprise/godmode/policies/policy_queue.php:287 -#: ../../enterprise/godmode/policies/policy_queue.php:293 -#: ../../enterprise/godmode/policies/policy_queue.php:348 -#: ../../enterprise/dashboard/widgets/events_list.php:56 -#: ../../include/functions_graph.php:1232 -#: ../../include/functions_users.php:103 ../../include/functions_users.php:108 -#: ../../include/functions.php:642 ../../include/functions.php:957 -msgid "All" +#: ../../general/logon_ok.php:74 +msgid "No news articles at this moment" msgstr "" -#: ../../mobile/operation/events/events.php:56 -#: ../../operation/events/events_list.php:187 -#: ../../operation/events/events_list.php:591 -#: ../../operation/snmpconsole/snmp_view.php:330 -#: ../../enterprise/operation/metaconsole/eventview.php:323 -#: ../../enterprise/operation/metaconsole/eventview.php:746 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:203 -#: ../../enterprise/dashboard/widgets/events_list.php:58 -#: ../../include/functions_events.php:334 -msgid "Severity" +#: ../../general/logon_ok.php:98 ../../mobile/operation/tactical.php:192 +#: ../../godmode/admin_access_logs.php:190 +msgid "Source IP" msgstr "" -#: ../../mobile/operation/events/events.php:56 -#: ../../mobile/operation/servers/view_servers.php:41 -#: ../../mobile/operation/servers/view_servers.php:43 -#: ../../mobile/operation/agents/view_alerts.php:38 -#: ../../mobile/operation/agents/view_agents.php:90 -#: ../../mobile/operation/agents/view_agents.php:224 -#: ../../mobile/operation/agents/view_agents.php:327 -msgid "S" +#: ../../general/logon_ok.php:100 +msgid "This is your last activity in Pandora FMS console" msgstr "" -#: ../../mobile/operation/events/events.php:59 -#: ../../mobile/operation/agents/monitor_status.php:65 -#: ../../mobile/operation/agents/view_agents.php:44 -#: ../../operation/incidents/incident.php:186 -#: ../../operation/agentes/alerts_status.functions.php:68 -#: ../../operation/agentes/graphs.php:112 -#: ../../godmode/modules/manage_network_templates_form.php:225 -#: ../../godmode/modules/manage_network_templates_form.php:273 -#: ../../godmode/agentes/manage_config_remote.php:133 -#: ../../godmode/snmpconsole/snmp_filters.php:95 -#: ../../godmode/snmpconsole/snmp_filters.php:127 -#: ../../godmode/admin_access_logs.php:45 -#: ../../godmode/admin_access_logs.php:71 -#: ../../godmode/reporting/reporting_builder.list_items.php:151 -#: ../../godmode/tag/tag.php:109 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:231 -#: ../../enterprise/godmode/setup/setup_skins.php:89 -#: ../../enterprise/godmode/setup/setup_acl.php:94 -#: ../../enterprise/godmode/policies/policies.php:193 -#: ../../enterprise/godmode/policies/policy_linking.php:70 -#: ../../enterprise/godmode/policies/policy_queue.php:297 -msgid "Filter" +#: ../../general/logon_ok.php:181 +msgid "Pandora FMS Overview" msgstr "" -#: ../../mobile/operation/events/events.php:151 -#: ../../extensions/update_manager/main.php:170 -#: ../../operation/events/events_list.php:397 -#: ../../operation/events/events_list.php:608 -#: ../../operation/events/events.php:63 -#: ../../operation/agentes/status_monitor.php:516 -#: ../../operation/agentes/exportdata.php:145 -#: ../../operation/agentes/exportdata.php:153 -#: ../../operation/agentes/exportdata.php:162 -#: ../../operation/agentes/estado_ultimopaquete.php:279 -#: ../../operation/integria_incidents/incident.files.php:43 -#: ../../operation/messages/message.php:219 -#: ../../operation/snmpconsole/snmp_view.php:399 -#: ../../operation/search_modules.php:185 ../../godmode/setup/news.php:143 -#: ../../enterprise/operation/metaconsole/eventview.php:581 -#: ../../enterprise/include/functions_reporting_csv.php:167 -#: ../../enterprise/include/functions_reporting_pdf.php:1963 -#: ../../include/functions_reporting.php:1046 -#: ../../include/functions_reporting.php:1726 -#: ../../include/functions_reporting.php:1783 -#: ../../include/functions_reporting.php:1844 -#: ../../include/functions_events.php:349 -msgid "Timestamp" +#: ../../enterprise/operation/log/log_viewer.php:80 +#: ../../enterprise/operation/menu.php:82 +msgid "Log viewer" msgstr "" -#: ../../mobile/operation/events/events.php:151 -#: ../../mobile/operation/servers/view_servers.php:40 -msgid "T" +#: ../../enterprise/operation/log/log_viewer.php:131 +msgid "Draw chart" msgstr "" -#: ../../mobile/operation/events/events.php:152 -#: ../../extensions/update_manager/main.php:173 -#: ../../operation/incidents/incident_detail.php:389 -#: ../../operation/incidents/incident_detail.php:441 -#: ../../operation/search_reports.php:72 ../../operation/events/events.php:67 -#: ../../operation/agentes/estado_agente.php:419 -#: ../../operation/agentes/custom_fields.php:50 -#: ../../operation/agentes/estado_monitores.php:232 -#: ../../operation/agentes/alerts_status.php:406 -#: ../../operation/agentes/alerts_status.php:413 -#: ../../operation/agentes/estado_generalagente.php:132 -#: ../../operation/agentes/gis_view.php:122 -#: ../../operation/agentes/estado_ultimopaquete.php:272 -#: ../../operation/search_users.php:198 -#: ../../operation/integria_incidents/incident.incident.php:108 -#: ../../operation/integria_incidents/incident.workunits.php:31 -#: ../../operation/integria_incidents/incident.files.php:25 -#: ../../operation/integria_incidents/incident.files.php:44 -#: ../../operation/integria_incidents/incident.tracking.php:21 -#: ../../operation/integria_incidents/incident_detail.php:379 -#: ../../operation/integria_incidents/incident_detail.php:424 -#: ../../operation/search_graphs.php:63 ../../operation/gis_maps/ajax.php:178 -#: ../../operation/reporting/custom_reporting.php:39 -#: ../../operation/reporting/graph_viewer.php:213 -#: ../../godmode/massive/massive_edit_agents.php:277 -#: ../../godmode/modules/manage_network_components.php:348 -#: ../../godmode/modules/manage_network_templates.php:172 -#: ../../godmode/modules/module_list.php:60 -#: ../../godmode/modules/manage_network_components_form.php:145 -#: ../../godmode/modules/manage_network_templates_form.php:133 -#: ../../godmode/modules/manage_network_templates_form.php:184 -#: ../../godmode/servers/modificar_server.php:46 -#: ../../godmode/servers/modificar_server.php:103 -#: ../../godmode/servers/plugin.php:122 -#: ../../godmode/servers/recon_script.php:89 -#: ../../godmode/servers/recon_script.php:178 -#: ../../godmode/users/user_list.php:152 -#: ../../godmode/agentes/module_manager.php:344 -#: ../../godmode/agentes/module_manager_editor_common.php:219 -#: ../../godmode/agentes/modificar_agente.php:366 -#: ../../godmode/agentes/agent_manager.php:230 -#: ../../godmode/agentes/planned_downtime.php:212 -#: ../../godmode/agentes/planned_downtime.php:358 -#: ../../godmode/agentes/agent_template.php:161 -#: ../../godmode/alerts/configure_alert_command.php:56 -#: ../../godmode/alerts/configure_alert_template.php:582 -#: ../../godmode/alerts/alert_templates.php:44 -#: ../../godmode/alerts/configure_alert_compound.php:487 -#: ../../godmode/alerts/alert_commands.php:144 -#: ../../godmode/snmpconsole/snmp_filters.php:93 -#: ../../godmode/snmpconsole/snmp_filters.php:126 -#: ../../godmode/snmpconsole/snmp_alert.php:182 -#: ../../godmode/snmpconsole/snmp_alert.php:297 -#: ../../godmode/reporting/reporting_builder.item_editor.php:372 -#: ../../godmode/reporting/reporting_builder.main.php:64 -#: ../../godmode/reporting/graph_builder.main.php:111 -#: ../../godmode/reporting/graphs.php:81 -#: ../../godmode/reporting/reporting_builder.list_items.php:218 -#: ../../godmode/reporting/reporting_builder.php:74 -#: ../../godmode/tag/edit_tag.php:133 ../../godmode/tag/tag.php:103 -#: ../../godmode/tag/tag.php:138 ../../godmode/setup/os.list.php:33 -#: ../../godmode/setup/os.builder.php:35 -#: ../../enterprise/mobile/include/enterprise.class.php:42 -#: ../../enterprise/extensions/backup/main.php:59 -#: ../../enterprise/extensions/backup/main.php:154 -#: ../../enterprise/operation/agentes/ver_agente.php:58 -#: ../../enterprise/operation/agentes/collection_view.php:62 -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../enterprise/operation/services/services.php:79 -#: ../../enterprise/operation/services/services.php:158 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:72 -#: ../../enterprise/godmode/modules/configure_local_component.php:68 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:137 -#: ../../enterprise/godmode/agentes/collection_manager.php:88 -#: ../../enterprise/godmode/agentes/collection_manager.php:125 -#: ../../enterprise/godmode/agentes/collections.php:221 -#: ../../enterprise/godmode/agentes/inventory_manager.php:209 -#: ../../enterprise/godmode/alerts/alert_events.php:498 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:205 -#: ../../enterprise/godmode/services/manage_services.setup.php:44 -#: ../../enterprise/godmode/services/manage_services.edit_element.php:47 -#: ../../enterprise/godmode/services/manage_services.main.php:52 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:65 -#: ../../enterprise/godmode/setup/setup_skins.php:121 -#: ../../enterprise/godmode/setup/edit_skin.php:235 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:243 -#: ../../enterprise/godmode/policies/policy_collections.php:120 -#: ../../enterprise/godmode/policies/policy_collections.php:186 -#: ../../enterprise/godmode/policies/configure_policy.php:66 -#: ../../enterprise/include/functions_reporting_csv.php:143 -#: ../../enterprise/include/functions_reporting_csv.php:166 -#: ../../enterprise/include/functions_reporting_csv.php:193 -#: ../../enterprise/include/functions_reporting_csv.php:284 -#: ../../enterprise/include/functions_reporting_csv.php:315 -#: ../../enterprise/include/functions_reporting_csv.php:346 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_csv.php:408 -#: ../../enterprise/include/functions_reporting_csv.php:431 -#: ../../enterprise/include/functions_reporting_csv.php:512 -#: ../../enterprise/include/functions_reporting_csv.php:543 -#: ../../enterprise/include/functions_reporting_csv.php:573 -#: ../../enterprise/include/functions_reporting_csv.php:624 -#: ../../enterprise/include/functions_reporting_csv.php:649 -#: ../../enterprise/include/functions_reporting_csv.php:760 -#: ../../enterprise/include/functions_reporting_csv.php:922 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../include/functions_reporting.php:1493 -msgid "Description" +#: ../../enterprise/operation/log/log_viewer.php:134 +#: ../../enterprise/include/functions_reporting_pdf.php:3457 +#: ../../enterprise/include/functions_netflow_pdf.php:153 +msgid "Start date" msgstr "" -#: ../../mobile/operation/events/events.php:152 -msgid "Des." +#: ../../enterprise/operation/log/log_viewer.php:146 +#: ../../godmode/modules/manage_network_templates.php:214 +msgid "Export to CSV" msgstr "" -#: ../../mobile/operation/events/events.php:153 -#: ../../extensions/insert_data.php:149 ../../extensions/module_groups.php:41 -#: ../../operation/search_alerts.php:212 -#: ../../operation/agentes/ver_agente.php:372 -#: ../../operation/agentes/ver_agente.php:683 -#: ../../operation/agentes/estado_agente.php:416 -#: ../../operation/agentes/status_monitor.php:483 -#: ../../operation/agentes/exportdata.php:145 -#: ../../operation/agentes/exportdata.php:153 -#: ../../operation/agentes/exportdata.php:162 -#: ../../operation/agentes/alerts_status.php:264 -#: ../../operation/agentes/alerts_status.php:325 -#: ../../operation/agentes/alerts_status.php:405 -#: ../../operation/agentes/alerts_status.php:412 -#: ../../operation/gis_maps/ajax.php:135 ../../operation/gis_maps/ajax.php:152 -#: ../../operation/snmpconsole/snmp_view.php:305 -#: ../../operation/search_modules.php:173 -#: ../../operation/search_agents.php:216 -#: ../../godmode/massive/massive_copy_modules.php:77 -#: ../../godmode/massive/massive_copy_modules.php:166 -#: ../../godmode/massive/massive_enable_disable_alerts.php:147 -#: ../../godmode/massive/massive_enable_disable_alerts.php:164 -#: ../../godmode/massive/massive_delete_modules.php:132 -#: ../../godmode/massive/massive_standby_alerts.php:149 -#: ../../godmode/massive/massive_standby_alerts.php:166 -#: ../../godmode/agentes/module_manager_editor_prediction.php:94 -#: ../../godmode/alerts/alert_list.list.php:313 -#: ../../godmode/alerts/alert_list.builder.php:48 -#: ../../godmode/alerts/configure_alert_compound.php:500 -#: ../../godmode/alerts/configure_alert_compound.php:587 -#: ../../godmode/alerts/alert_compounds.php:120 -#: ../../godmode/alerts/alert_compounds.php:180 -#: ../../godmode/gis_maps/configure_gis_map.php:415 -#: ../../godmode/reporting/reporting_builder.item_editor.php:438 -#: ../../godmode/reporting/reporting_builder.item_editor.php:636 -#: ../../godmode/reporting/reporting_builder.item_editor.php:732 -#: ../../godmode/reporting/visual_console_builder.elements.php:68 -#: ../../godmode/reporting/graph_builder.graph_editor.php:80 -#: ../../godmode/reporting/visual_console_builder.editor.php:131 -#: ../../godmode/reporting/reporting_builder.list_items.php:207 -#: ../../enterprise/extensions/dict.php:75 -#: ../../enterprise/operation/metaconsole/agentsearch.php:72 -#: ../../enterprise/operation/inventory/inventory.php:139 -#: ../../enterprise/operation/inventory/inventory.php:302 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:76 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:193 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:156 -#: ../../enterprise/godmode/services/manage_services.edit_element.php:29 -#: ../../enterprise/godmode/policies/policy_linking.php:124 -#: ../../enterprise/dashboard/widgets/single_graph.php:49 -#: ../../enterprise/include/functions_alert_event.php:927 -#: ../../enterprise/include/functions_reporting_csv.php:167 -#: ../../enterprise/include/functions_reporting_csv.php:195 -#: ../../enterprise/include/functions_reporting_csv.php:284 -#: ../../enterprise/include/functions_reporting_csv.php:315 -#: ../../enterprise/include/functions_reporting_csv.php:346 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_csv.php:408 -#: ../../enterprise/include/functions_reporting_csv.php:512 -#: ../../enterprise/include/functions_reporting_csv.php:543 -#: ../../enterprise/include/functions_reporting_csv.php:573 -#: ../../enterprise/include/functions_reporting_csv.php:624 -#: ../../enterprise/include/functions_reporting_csv.php:651 -#: ../../enterprise/include/functions_reporting_csv.php:762 -#: ../../enterprise/include/functions_reporting_csv.php:924 -#: ../../enterprise/include/functions_reporting_pdf.php:560 -#: ../../enterprise/include/functions_reporting_pdf.php:675 -#: ../../enterprise/include/functions_reporting_pdf.php:860 -#: ../../enterprise/include/functions_reporting_pdf.php:1106 -#: ../../enterprise/include/functions_reporting_pdf.php:2157 -#: ../../include/functions_reporting.php:1098 -#: ../../include/functions_reporting.php:1425 -#: ../../include/functions_reporting.php:1630 -#: ../../include/functions_reporting.php:2311 -#: ../../include/functions_reporting.php:3139 -#: ../../include/functions_reporting.php:3259 -#: ../../include/functions_reporting.php:3431 -#: ../../include/functions_reporting.php:3669 -msgid "Agent" -msgstr "" - -#: ../../mobile/operation/events/events.php:187 -#: ../../operation/events/events_list.php:480 -#: ../../operation/events/events_list.php:698 -#: ../../operation/events/events_rss.php:237 -#: ../../operation/events/events.php:53 ../../godmode/setup/setup.php:88 -#: ../../enterprise/operation/metaconsole/eventview.php:645 -#: ../../enterprise/operation/metaconsole/eventview.php:863 -#: ../../include/functions_graph.php:907 -#: ../../include/functions_graph.php:1265 -#: ../../include/functions_graph.php:1477 ../../include/functions.php:896 -#: ../../include/functions_events.php:422 -msgid "System" -msgstr "" - -#: ../../mobile/operation/events/events.php:194 -msgid "Alert SNMP" -msgstr "" - -#: ../../mobile/operation/servers/view_servers.php:39 -#: ../../operation/events/export_csv.php:84 -#: ../../operation/events/export_csv.php:99 -#: ../../operation/events/events_list.php:48 -#: ../../operation/events/events_list.php:63 -#: ../../operation/events/events_rss.php:127 -#: ../../operation/events/events_rss.php:142 -#: ../../godmode/massive/massive_edit_agents.php:272 -#: ../../godmode/agentes/module_manager.php:335 -#: ../../godmode/agentes/agent_manager.php:225 -#: ../../godmode/reporting/reporting_builder.item_editor.php:500 -#: ../../enterprise/extensions/csv_import/main.php:65 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:250 -#: ../../enterprise/operation/metaconsole/tactical.php:42 -#: ../../enterprise/operation/metaconsole/groupview.php:41 -#: ../../enterprise/operation/metaconsole/agentsearch.php:71 -#: ../../enterprise/operation/metaconsole/eventview.php:156 -#: ../../enterprise/operation/metaconsole/eventview.php:172 -#: ../../enterprise/operation/metaconsole/eventview.php:571 -msgid "Server" -msgstr "" - -#: ../../mobile/operation/servers/view_servers.php:40 -#: ../../operation/events/events_list.php:600 -#: ../../operation/events/sound_events.php:76 -#: ../../operation/events/events.php:48 -#: ../../operation/servers/view_server.php:56 -#: ../../operation/agentes/ver_agente.php:360 -#: ../../operation/agentes/sla_view.php:54 -#: ../../operation/agentes/sla_view.php:120 -#: ../../operation/agentes/tactical.php:253 -#: ../../operation/agentes/status_monitor.php:486 -#: ../../operation/agentes/estado_monitores.php:226 -#: ../../operation/agentes/estado_ultimopaquete.php:264 -#: ../../operation/search_modules.php:180 -#: ../../godmode/modules/manage_network_components.php:346 -#: ../../godmode/modules/manage_network_components_form_common.php:50 -#: ../../godmode/modules/manage_network_templates_form.php:182 -#: ../../godmode/servers/modificar_server.php:104 -#: ../../godmode/servers/plugin.php:235 -#: ../../godmode/agentes/module_manager.php:338 -#: ../../godmode/agentes/module_manager_editor_common.php:139 -#: ../../godmode/agentes/agent_template.php:160 -#: ../../godmode/alerts/alert_templates.php:35 -#: ../../godmode/alerts/alert_templates.php:201 -#: ../../godmode/alerts/alert_templates.php:238 -#: ../../godmode/reporting/reporting_builder.item_editor.php:358 -#: ../../godmode/reporting/reporting_builder.list_items.php:142 -#: ../../godmode/reporting/reporting_builder.list_items.php:202 -#: ../../godmode/setup/gis_step_2.php:170 -#: ../../enterprise/operation/agentes/ver_agente.php:30 -#: ../../enterprise/operation/agentes/policy_view.php:305 -#: ../../enterprise/operation/metaconsole/eventview.php:776 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:113 -#: ../../enterprise/godmode/policies/policy_modules.php:542 -#: ../../include/functions_reporting.php:1492 -#: ../../include/functions_events.php:337 -msgid "Type" -msgstr "" - -#: ../../mobile/operation/servers/view_servers.php:41 -#: ../../operation/integria_incidents/incident.list.php:99 -#: ../../godmode/servers/modificar_server.php:105 -msgid "Started" -msgstr "" - -#: ../../mobile/operation/servers/view_servers.php:42 -#: ../../operation/incidents/incident.php:269 -#: ../../operation/servers/view_server.php:62 -#: ../../operation/integria_incidents/incident.list.php:99 -#: ../../godmode/servers/modificar_server.php:106 -msgid "Updated" -msgstr "" - -#: ../../mobile/operation/servers/view_servers.php:42 -msgid "U" -msgstr "" - -#: ../../mobile/operation/servers/view_servers.php:43 -#: ../../mobile/operation/agents/tactical.php:43 -#: ../../mobile/operation/agents/view_alerts.php:38 -#: ../../mobile/operation/agents/view_agents.php:90 -#: ../../mobile/operation/agents/view_agents.php:224 -#: ../../mobile/operation/agents/view_agents.php:327 -#: ../../extensions/net_tools.php:155 -#: ../../operation/incidents/incident.php:195 -#: ../../operation/incidents/incident.php:265 -#: ../../operation/incidents/incident_detail.php:253 -#: ../../operation/events/events_list.php:389 -#: ../../operation/events/events_list.php:604 -#: ../../operation/servers/view_server.php:55 -#: ../../operation/servers/view_server_detail.php:83 -#: ../../operation/agentes/estado_agente.php:430 -#: ../../operation/agentes/alerts_status.functions.php:60 -#: ../../operation/agentes/sla_view.php:57 -#: ../../operation/agentes/sla_view.php:123 -#: ../../operation/agentes/tactical.php:254 -#: ../../operation/agentes/status_monitor.php:500 -#: ../../operation/agentes/estado_monitores.php:233 -#: ../../operation/agentes/alerts_status.php:275 -#: ../../operation/agentes/alerts_status.php:303 -#: ../../operation/agentes/alerts_status.php:336 -#: ../../operation/agentes/alerts_status.php:362 -#: ../../operation/integria_incidents/incident.incident.php:101 -#: ../../operation/integria_incidents/incident.list.php:58 -#: ../../operation/integria_incidents/incident.list.php:97 -#: ../../operation/integria_incidents/incident_detail.php:241 -#: ../../operation/messages/message.php:216 -#: ../../operation/snmpconsole/snmp_view.php:334 -#: ../../operation/snmpconsole/snmp_view.php:375 -#: ../../operation/snmpconsole/snmp_view.php:557 -#: ../../operation/search_modules.php:182 -#: ../../operation/search_agents.php:229 -#: ../../godmode/massive/massive_edit_agents.php:310 -#: ../../godmode/servers/modificar_server.php:102 -#: ../../godmode/agentes/module_manager.php:345 -#: ../../godmode/agentes/agent_manager.php:254 -#: ../../godmode/alerts/alert_list.list.php:349 -#: ../../enterprise/extensions/backup/main.php:62 -#: ../../enterprise/operation/agentes/collection_view.php:63 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/policy_view.php:136 -#: ../../enterprise/operation/agentes/policy_view.php:200 -#: ../../enterprise/operation/agentes/policy_view.php:306 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:225 -#: ../../enterprise/operation/metaconsole/agentsearch.php:77 -#: ../../enterprise/operation/metaconsole/eventview.php:573 -#: ../../enterprise/operation/services/services.php:84 -#: ../../enterprise/operation/services/services.php:163 -#: ../../enterprise/godmode/agentes/collection_manager.php:89 -#: ../../enterprise/godmode/agentes/collection_manager.php:126 -#: ../../enterprise/godmode/alerts/alert_events_list.php:445 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:223 -#: ../../enterprise/godmode/policies/policies.php:205 -#: ../../enterprise/godmode/policies/policy_agents.php:338 -#: ../../enterprise/godmode/policies/policy_queue.php:291 -#: ../../enterprise/godmode/policies/policy_collections.php:121 -#: ../../enterprise/godmode/policies/policy_collections.php:187 -#: ../../enterprise/dashboard/widgets/tactical.php:33 -#: ../../enterprise/dashboard/widgets/tactical.php:82 -#: ../../enterprise/include/functions_reporting_csv.php:195 -#: ../../include/functions_reporting.php:1043 -#: ../../include/functions_reporting.php:2316 -#: ../../include/functions_ui.php:1468 -msgid "Status" -msgstr "" - -#: ../../mobile/operation/agents/group_view.php:44 -#: ../../mobile/operation/agents/monitor_status.php:54 -#: ../../operation/agentes/group_view.php:91 -#: ../../operation/agentes/estado_agente.php:169 -#: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/estado_monitores.php:285 -#: ../../operation/reporting/reporting_xml.php:275 -#: ../../operation/reporting/reporting_xml.php:290 -#: ../../operation/reporting/reporting_xml.php:295 -#: ../../operation/reporting/reporting_xml.php:305 -#: ../../operation/reporting/reporting_xml.php:315 -#: ../../operation/reporting/reporting_xml.php:325 -#: ../../operation/reporting/reporting_xml.php:335 -#: ../../operation/reporting/reporting_xml.php:582 -#: ../../operation/reporting/reporting_xml.php:593 -#: ../../operation/reporting/reporting_xml.php:604 -#: ../../operation/reporting/reporting_xml.php:615 -#: ../../godmode/alerts/alert_list.builder.php:283 -#: ../../enterprise/extensions/cron/functions.php:158 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:314 -#: ../../enterprise/operation/metaconsole/tactical.php:46 -#: ../../enterprise/operation/services/services.php:121 -#: ../../enterprise/dashboard/widgets/events_list.php:149 -#: ../../enterprise/include/functions_reporting_csv.php:238 -#: ../../enterprise/include/functions_reporting_csv.php:273 -#: ../../enterprise/include/functions_reporting_csv.php:304 -#: ../../enterprise/include/functions_reporting_csv.php:335 -#: ../../enterprise/include/functions_reporting_csv.php:366 -#: ../../enterprise/include/functions_reporting_csv.php:397 -#: ../../enterprise/include/functions_reporting_csv.php:502 -#: ../../enterprise/include/functions_reporting_csv.php:532 -#: ../../enterprise/include/functions_reporting_csv.php:563 -#: ../../enterprise/include/functions_reporting_csv.php:613 -#: ../../enterprise/include/functions_reporting_pdf.php:469 -#: ../../enterprise/include/functions_reporting_pdf.php:485 -#: ../../enterprise/include/functions_reporting_pdf.php:1317 -#: ../../enterprise/include/functions_reporting_pdf.php:1351 -#: ../../enterprise/include/functions_reporting_pdf.php:1385 -#: ../../enterprise/include/functions_reporting_pdf.php:1419 -#: ../../enterprise/include/functions_reporting_pdf.php:2004 -#: ../../enterprise/include/functions_reporting_pdf.php:2033 -#: ../../enterprise/include/functions_reporting_pdf.php:2062 -#: ../../enterprise/include/functions_reporting_pdf.php:2091 -#: ../../enterprise/include/functions_reporting_pdf.php:2169 -#: ../../enterprise/include/functions_reporting_pdf.php:2561 -#: ../../include/functions_modules.php:947 -#: ../../include/ajax/visual_console_builder.ajax.php:92 -#: ../../include/ajax/visual_console_builder.ajax.php:100 -#: ../../include/ajax/visual_console_builder.ajax.php:108 -#: ../../include/functions.php:767 ../../include/functions.php:885 -#: ../../include/functions_reporting.php:2172 -#: ../../include/functions_reporting.php:2329 -#: ../../include/functions_reporting.php:2335 -#: ../../include/functions_reporting.php:2355 -#: ../../include/functions_reporting.php:2356 -#: ../../include/functions_reporting.php:2384 -#: ../../include/functions_reporting.php:2486 -#: ../../include/functions_reporting.php:2492 -#: ../../include/functions_reporting.php:2521 -#: ../../include/functions_reporting.php:2574 -#: ../../include/functions_reporting.php:2603 -#: ../../include/functions_reporting.php:2932 -#: ../../include/functions_reporting.php:2960 -#: ../../include/functions_reporting.php:2988 -#: ../../include/functions_reporting.php:3016 -#: ../../include/functions_reporting.php:3051 -#: ../../include/functions_reporting.php:3066 -#: ../../include/functions_alerts.php:470 ../../include/functions_ui.php:258 -#: ../../include/functions_ui.php:259 -#: ../../include/functions_visual_map.php:147 -#: ../../include/functions_visual_map.php:156 -#: ../../include/functions_visual_map.php:165 -#: ../../include/functions_visual_map.php:825 -#: ../../include/functions_visual_map.php:834 -#: ../../include/functions_visual_map.php:843 -msgid "Unknown" -msgstr "" - -#: ../../mobile/operation/agents/group_view.php:44 -msgid "Unk" -msgstr "" - -#: ../../mobile/operation/agents/group_view.php:46 -#: ../../mobile/operation/agents/monitor_status.php:51 -#: ../../operation/agentes/group_view.php:93 -#: ../../operation/agentes/estado_agente.php:166 -#: ../../operation/agentes/status_monitor.php:72 -#: ../../enterprise/extensions/tree_view.php:692 -#: ../../enterprise/operation/metaconsole/tactical.php:48 -#: ../../enterprise/operation/metaconsole/groupview.php:45 -#: ../../enterprise/include/functions_reporting_pdf.php:482 -#: ../../include/functions_graph.php:1418 -#: ../../include/functions_graph.php:1419 -#: ../../include/functions_graph.php:1420 ../../include/functions.php:616 -#: ../../include/functions.php:919 ../../include/functions.php:948 -#: ../../include/functions_reporting.php:3063 -msgid "Normal" -msgstr "" - -#: ../../mobile/operation/agents/group_view.php:46 -msgid "Nor" -msgstr "" - -#: ../../mobile/operation/agents/group_view.php:49 -#: ../../mobile/operation/agents/view_alerts.php:77 -#: ../../mobile/operation/agents/view_agents.php:362 -#: ../../operation/events/sound_events.php:77 -#: ../../operation/agentes/group_view.php:96 -#: ../../operation/agentes/bulbs.php:25 -#: ../../operation/snmpconsole/snmp_view.php:490 -#: ../../godmode/alerts/alert_list.list.php:493 -#: ../../enterprise/operation/agentes/policy_view.php:266 -#: ../../enterprise/operation/metaconsole/tactical.php:51 -#: ../../enterprise/operation/metaconsole/groupview.php:48 -#: ../../enterprise/godmode/alerts/alert_events_list.php:637 -#: ../../include/functions.php:891 ../../include/functions_reporting.php:1974 -#: ../../include/functions_events.php:616 ../../include/functions_ui.php:632 -msgid "Alert fired" -msgstr "" - -#: ../../mobile/operation/agents/group_view.php:49 -msgid "Aler" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:48 -#: ../../operation/agentes/status_monitor.php:69 -#: ../../enterprise/extensions/tree_view.php:688 -msgid "Monitor status" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:48 -msgid "Monitor Status" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:48 -#: ../../mobile/operation/agents/monitor_status.php:61 -#: ../../mobile/operation/agents/tactical.php:47 -#: ../../mobile/operation/agents/tactical.php:50 -#: ../../mobile/operation/agents/view_agents.php:89 -#: ../../include/functions.php:428 -msgid "M" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:52 -#: ../../operation/agentes/group_view.php:94 -#: ../../operation/agentes/estado_agente.php:167 -#: ../../operation/agentes/status_monitor.php:73 -#: ../../operation/gis_maps/render_view.php:122 -#: ../../godmode/massive/massive_edit_agents.php:355 -#: ../../godmode/agentes/agent_manager.php:307 -#: ../../enterprise/extensions/tree_view.php:693 -#: ../../enterprise/operation/metaconsole/tactical.php:49 -#: ../../enterprise/operation/metaconsole/groupview.php:46 -#: ../../enterprise/operation/services/services.php:82 -#: ../../enterprise/operation/services/services.php:115 -#: ../../enterprise/godmode/services/manage_services.setup.php:53 -#: ../../enterprise/godmode/services/manage_services.main.php:55 -#: ../../enterprise/include/functions_reporting_pdf.php:484 -#: ../../include/functions_graph.php:1424 -#: ../../include/functions_graph.php:1425 -#: ../../include/functions_graph.php:1426 ../../include/functions.php:619 -#: ../../include/functions.php:920 ../../include/functions.php:951 -#: ../../include/functions_reporting.php:3065 -#: ../../include/functions_ui.php:1351 -msgid "Warning" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:53 -#: ../../operation/agentes/group_view.php:95 -#: ../../operation/agentes/estado_agente.php:168 -#: ../../operation/agentes/status_monitor.php:74 -#: ../../operation/gis_maps/render_view.php:120 -#: ../../enterprise/extensions/tree_view.php:694 -#: ../../enterprise/operation/metaconsole/tactical.php:50 -#: ../../enterprise/operation/metaconsole/groupview.php:47 -#: ../../enterprise/operation/services/services.php:81 -#: ../../enterprise/operation/services/services.php:109 -#: ../../enterprise/godmode/services/manage_services.setup.php:50 -#: ../../enterprise/godmode/services/manage_services.main.php:54 -#: ../../enterprise/include/functions_reporting_pdf.php:483 -#: ../../include/functions_graph.php:1430 -#: ../../include/functions_graph.php:1431 -#: ../../include/functions_graph.php:1432 ../../include/functions.php:622 -#: ../../include/functions.php:921 ../../include/functions.php:954 -#: ../../include/functions_reporting.php:3064 -#: ../../include/functions_ui.php:1351 -msgid "Critical" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:56 -#: ../../operation/agentes/estado_agente.php:171 -#: ../../operation/agentes/status_monitor.php:77 -#: ../../enterprise/include/functions_reporting_pdf.php:486 -#: ../../include/functions_reporting.php:3067 -msgid "Not init" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:61 -#: ../../extensions/agents_modules.php:75 -#: ../../operation/events/events_list.php:637 -#: ../../operation/agentes/ver_agente.php:364 -#: ../../operation/agentes/status_monitor.php:82 -#: ../../operation/agentes/networkmap.php:280 -#: ../../godmode/massive/massive_edit_modules.php:341 -#: ../../godmode/modules/manage_network_components_form_wmi.php:115 -#: ../../godmode/modules/manage_network_components_form_common.php:60 -#: ../../godmode/agentes/module_manager_editor_common.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:431 -#: ../../enterprise/operation/agentes/ver_agente.php:33 -msgid "Module group" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:191 -#: ../../operation/agentes/status_monitor.php:586 -#: ../../operation/search_modules.php:210 -msgid "NOT INIT" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:194 -#: ../../mobile/operation/agents/monitor_status.php:206 -#: ../../mobile/operation/agents/view_agents.php:257 -#: ../../mobile/operation/agents/view_agents.php:264 -#: ../../extensions/agents_modules.php:254 -#: ../../operation/agentes/status_monitor.php:589 -#: ../../operation/agentes/status_monitor.php:601 -#: ../../operation/search_modules.php:213 -#: ../../operation/search_modules.php:225 -#: ../../enterprise/extensions/tree_view.php:362 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:361 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:368 -#: ../../enterprise/operation/agentes/policy_view.php:370 -#: ../../enterprise/operation/agentes/policy_view.php:377 -#: ../../enterprise/operation/services/services.php:180 -#: ../../enterprise/operation/services/services.php:192 -#: ../../enterprise/include/functions_reporting_pdf.php:384 -#: ../../include/functions_modules.php:1190 -#: ../../include/functions_modules.php:1197 -#: ../../include/functions_reporting.php:4032 -msgid "NORMAL" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:197 -#: ../../mobile/operation/agents/monitor_status.php:209 -#: ../../mobile/operation/agents/view_agents.php:249 -#: ../../mobile/operation/agents/view_agents.php:268 -#: ../../extensions/agents_modules.php:257 -#: ../../operation/agentes/status_monitor.php:592 -#: ../../operation/agentes/status_monitor.php:604 -#: ../../operation/search_modules.php:216 -#: ../../operation/search_modules.php:228 -#: ../../enterprise/extensions/tree_view.php:350 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:353 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:372 -#: ../../enterprise/operation/agentes/policy_view.php:362 -#: ../../enterprise/operation/agentes/policy_view.php:381 -#: ../../enterprise/operation/services/services.php:183 -#: ../../enterprise/operation/services/services.php:196 -#: ../../enterprise/include/functions_reporting_pdf.php:387 -#: ../../include/functions_modules.php:1182 -#: ../../include/functions_modules.php:1201 -#: ../../include/functions_reporting.php:4035 -msgid "CRITICAL" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:200 -#: ../../mobile/operation/agents/monitor_status.php:212 -#: ../../mobile/operation/agents/view_agents.php:253 -#: ../../mobile/operation/agents/view_agents.php:272 -#: ../../extensions/agents_modules.php:260 -#: ../../operation/agentes/status_monitor.php:595 -#: ../../operation/agentes/status_monitor.php:607 -#: ../../operation/search_modules.php:219 -#: ../../operation/search_modules.php:231 -#: ../../enterprise/extensions/tree_view.php:354 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:357 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:376 -#: ../../enterprise/operation/agentes/policy_view.php:366 -#: ../../enterprise/operation/agentes/policy_view.php:385 -#: ../../enterprise/operation/services/services.php:186 -#: ../../enterprise/operation/services/services.php:200 -#: ../../enterprise/include/functions_reporting_pdf.php:390 -#: ../../include/functions_modules.php:1186 -#: ../../include/functions_modules.php:1205 -#: ../../include/functions_reporting.php:4038 -msgid "WARNING" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:206 -#: ../../mobile/operation/agents/monitor_status.php:209 -#: ../../mobile/operation/agents/monitor_status.php:212 -#: ../../mobile/operation/agents/view_agents.php:264 -#: ../../mobile/operation/agents/view_agents.php:268 -#: ../../mobile/operation/agents/view_agents.php:272 -#: ../../extensions/agents_modules.php:263 -#: ../../operation/agentes/status_monitor.php:601 -#: ../../operation/agentes/status_monitor.php:604 -#: ../../operation/agentes/status_monitor.php:607 -#: ../../operation/search_modules.php:225 -#: ../../operation/search_modules.php:228 -#: ../../operation/search_modules.php:231 -#: ../../enterprise/extensions/tree_view.php:345 -#: ../../enterprise/extensions/tree_view.php:358 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:368 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:372 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:376 -#: ../../enterprise/operation/agentes/policy_view.php:377 -#: ../../enterprise/operation/agentes/policy_view.php:381 -#: ../../enterprise/operation/agentes/policy_view.php:385 -#: ../../enterprise/operation/services/services.php:192 -#: ../../enterprise/operation/services/services.php:196 -#: ../../enterprise/operation/services/services.php:200 -#: ../../enterprise/include/functions_reporting_pdf.php:393 -#: ../../include/functions_modules.php:1197 -#: ../../include/functions_modules.php:1201 -#: ../../include/functions_modules.php:1205 -#: ../../include/functions_reporting.php:4041 -msgid "UNKNOWN" -msgstr "" - -#: ../../mobile/operation/agents/monitor_status.php:206 -#: ../../mobile/operation/agents/monitor_status.php:209 -#: ../../mobile/operation/agents/monitor_status.php:212 -#: ../../mobile/operation/agents/view_agents.php:264 -#: ../../mobile/operation/agents/view_agents.php:268 -#: ../../mobile/operation/agents/view_agents.php:272 -#: ../../operation/agentes/status_monitor.php:601 -#: ../../operation/agentes/status_monitor.php:604 -#: ../../operation/agentes/status_monitor.php:607 -#: ../../operation/search_modules.php:225 -#: ../../operation/search_modules.php:228 -#: ../../operation/search_modules.php:231 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:368 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:372 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:376 -#: ../../enterprise/operation/agentes/policy_view.php:377 -#: ../../enterprise/operation/agentes/policy_view.php:381 -#: ../../enterprise/operation/agentes/policy_view.php:385 -#: ../../enterprise/operation/services/services.php:192 -#: ../../enterprise/operation/services/services.php:196 -#: ../../enterprise/operation/services/services.php:200 -#: ../../include/functions_modules.php:1197 -#: ../../include/functions_modules.php:1201 -#: ../../include/functions_modules.php:1205 -msgid "Last status" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:44 -#: ../../operation/agentes/tactical.php:85 -#: ../../enterprise/dashboard/widgets/tactical.php:83 -#: ../../enterprise/dashboard/widgets/monitor_health.php:21 -msgid "Global health" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:53 -#: ../../mobile/operation/agents/view_agents.php:91 -msgid "A" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:72 -#: ../../operation/agentes/tactical.php:144 -#: ../../enterprise/dashboard/widgets/tactical.php:107 -msgid "Monitors not init" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:76 -#: ../../operation/agentes/ver_agente.php:340 -#: ../../operation/agentes/tactical.php:154 -#: ../../enterprise/operation/agentes/ver_agente.php:151 -#: ../../enterprise/dashboard/widgets/tactical.php:111 -#: ../../include/functions_reporting.php:1327 -#: ../../include/functions_reporting.php:1334 -msgid "Alerts fired" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:81 -#: ../../operation/agentes/tactical.php:167 -#: ../../enterprise/dashboard/widgets/tactical.php:36 -#: ../../enterprise/dashboard/widgets/tactical.php:129 -msgid "Server performance" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:91 -#: ../../operation/agentes/tactical.php:170 -#: ../../enterprise/dashboard/widgets/tactical.php:130 -msgid "Local modules rate" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:93 -#: ../../operation/agentes/tactical.php:175 -#: ../../enterprise/dashboard/widgets/tactical.php:132 -msgid "Remote modules rate" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:95 -#: ../../operation/agentes/tactical.php:180 -#: ../../enterprise/dashboard/widgets/tactical.php:134 -msgid "Local modules" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:97 -#: ../../operation/agentes/tactical.php:185 -#: ../../enterprise/dashboard/widgets/tactical.php:136 -msgid "Remote modules" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:99 -#: ../../operation/agentes/tactical.php:190 -#: ../../enterprise/dashboard/widgets/tactical.php:138 -msgid "Total running modules" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:104 -#: ../../operation/agentes/tactical.php:198 -#: ../../operation/gis_maps/index.php:26 -#: ../../enterprise/dashboard/widgets/tactical.php:39 -#: ../../enterprise/dashboard/widgets/tactical.php:153 -msgid "Summary" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:111 -#: ../../operation/agentes/tactical.php:206 -#: ../../enterprise/dashboard/widgets/tactical.php:156 -msgid "Uninitialized modules" -msgstr "" - -#: ../../mobile/operation/agents/tactical.php:113 -#: ../../operation/agentes/tactical.php:211 -#: ../../enterprise/dashboard/widgets/tactical.php:158 -msgid "Agents unknown" -msgstr "" - -#: ../../mobile/operation/agents/view_alerts.php:34 -#: ../../mobile/operation/agents/view_agents.php:223 -#: ../../mobile/operation/agents/view_agents.php:324 -#: ../../extensions/insert_data.php:154 ../../extensions/module_groups.php:43 -#: ../../operation/search_alerts.php:215 -#: ../../operation/agentes/exportdata.php:145 -#: ../../operation/agentes/exportdata.php:153 -#: ../../operation/agentes/exportdata.php:162 -#: ../../operation/agentes/alerts_status.php:267 -#: ../../operation/agentes/alerts_status.php:295 -#: ../../operation/agentes/alerts_status.php:328 -#: ../../operation/agentes/alerts_status.php:354 -#: ../../operation/search_modules.php:166 -#: ../../godmode/massive/massive_enable_disable_alerts.php:147 -#: ../../godmode/massive/massive_enable_disable_alerts.php:164 -#: ../../godmode/massive/massive_standby_alerts.php:149 -#: ../../godmode/massive/massive_standby_alerts.php:166 -#: ../../godmode/agentes/module_manager_editor_prediction.php:102 -#: ../../godmode/alerts/alert_list.list.php:339 -#: ../../godmode/alerts/alert_list.builder.php:55 -#: ../../godmode/alerts/configure_alert_compound.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:450 -#: ../../godmode/reporting/reporting_builder.item_editor.php:637 -#: ../../godmode/reporting/reporting_builder.item_editor.php:733 -#: ../../godmode/reporting/visual_console_builder.elements.php:69 -#: ../../godmode/reporting/graph_builder.graph_editor.php:81 -#: ../../godmode/reporting/visual_console_builder.editor.php:136 -#: ../../godmode/reporting/reporting_builder.list_items.php:212 -#: ../../enterprise/operation/agentes/agent_inventory.php:61 -#: ../../enterprise/operation/agentes/policy_view.php:196 -#: ../../enterprise/operation/inventory/inventory.php:106 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:124 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:20 -#: ../../enterprise/godmode/agentes/inventory_manager.php:133 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:163 -#: ../../enterprise/godmode/services/manage_services.edit_element.php:37 -#: ../../enterprise/godmode/policies/policy_linking.php:125 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:152 -#: ../../enterprise/godmode/policies/policy_alerts.php:223 -#: ../../enterprise/dashboard/widgets/single_graph.php:52 -#: ../../enterprise/include/functions_alert_event.php:928 -#: ../../enterprise/include/functions_reporting_csv.php:167 -#: ../../enterprise/include/functions_reporting_csv.php:195 -#: ../../enterprise/include/functions_reporting_csv.php:284 -#: ../../enterprise/include/functions_reporting_csv.php:315 -#: ../../enterprise/include/functions_reporting_csv.php:346 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_csv.php:408 -#: ../../enterprise/include/functions_reporting_csv.php:512 -#: ../../enterprise/include/functions_reporting_csv.php:543 -#: ../../enterprise/include/functions_reporting_csv.php:573 -#: ../../enterprise/include/functions_reporting_csv.php:624 -#: ../../enterprise/include/functions_reporting_csv.php:651 -#: ../../enterprise/include/functions_reporting_csv.php:762 -#: ../../enterprise/include/functions_reporting_csv.php:924 -#: ../../enterprise/include/functions_reporting_pdf.php:561 -#: ../../enterprise/include/functions_reporting_pdf.php:861 -#: ../../enterprise/include/functions_reporting_pdf.php:1107 -#: ../../enterprise/include/functions_reporting_pdf.php:2158 -#: ../../include/functions_reporting.php:1150 -#: ../../include/functions_reporting.php:2312 -#: ../../include/functions_reporting.php:3140 -#: ../../include/functions_reporting.php:3432 -#: ../../include/functions_reporting.php:3670 -msgid "Module" -msgstr "" - -#: ../../mobile/operation/agents/view_alerts.php:35 -#: ../../mobile/operation/agents/view_agents.php:325 -#: ../../operation/search_alerts.php:218 -#: ../../operation/agentes/alerts_status.php:270 -#: ../../operation/agentes/alerts_status.php:298 -#: ../../operation/agentes/alerts_status.php:331 -#: ../../operation/agentes/alerts_status.php:357 -#: ../../godmode/alerts/alert_list.list.php:342 -#: ../../godmode/alerts/alert_list.builder.php:67 -#: ../../godmode/alerts/alert_list.builder.php:69 -#: ../../enterprise/operation/agentes/policy_view.php:197 -#: ../../include/functions_reporting.php:1151 -#: ../../include/functions_reporting.php:1243 -msgid "Template" -msgstr "" - -#: ../../mobile/operation/agents/view_alerts.php:37 -#: ../../mobile/operation/agents/view_agents.php:326 -#: ../../operation/agentes/alerts_status.php:274 -#: ../../operation/agentes/alerts_status.php:302 -#: ../../operation/agentes/alerts_status.php:335 -#: ../../operation/agentes/alerts_status.php:361 -#: ../../godmode/snmpconsole/snmp_alert.php:302 -#: ../../enterprise/operation/agentes/policy_view.php:199 -#: ../../include/functions_reporting.php:1496 -msgid "Last fired" -msgstr "" - -#: ../../mobile/operation/agents/view_alerts.php:37 -#: ../../mobile/operation/agents/view_agents.php:326 -msgid "Last" -msgstr "" - -#: ../../mobile/operation/agents/view_alerts.php:77 -#: ../../mobile/operation/agents/view_agents.php:362 -#: ../../godmode/alerts/alert_list.list.php:493 -#: ../../enterprise/operation/agentes/policy_view.php:266 -#: ../../enterprise/godmode/alerts/alert_events_list.php:637 -#: ../../include/functions_ui.php:632 -msgid "times" -msgstr "" - -#: ../../mobile/operation/agents/view_alerts.php:81 -#: ../../mobile/operation/agents/view_agents.php:366 -#: ../../operation/agentes/bulbs.php:26 -#: ../../godmode/alerts/alert_list.list.php:497 -#: ../../enterprise/operation/agentes/policy_view.php:269 -#: ../../enterprise/godmode/alerts/alert_events_list.php:641 -#: ../../include/functions_reporting.php:1980 -#: ../../include/functions_ui.php:635 -msgid "Alert disabled" -msgstr "" - -#: ../../mobile/operation/agents/view_alerts.php:85 -#: ../../mobile/operation/agents/view_agents.php:370 -#: ../../operation/agentes/bulbs.php:33 -#: ../../operation/snmpconsole/snmp_view.php:492 -#: ../../godmode/alerts/alert_list.list.php:501 -#: ../../enterprise/operation/agentes/policy_view.php:272 -#: ../../enterprise/godmode/alerts/alert_events_list.php:645 -#: ../../include/functions_reporting.php:1903 -#: ../../include/functions_ui.php:638 -msgid "Alert not fired" -msgstr "" - -#: ../../mobile/operation/agents/view_agents.php:43 -msgid "Free text search" -msgstr "" - -#: ../../mobile/operation/agents/view_agents.php:88 -#: ../../operation/search_maps.php:64 ../../operation/extensions.php:47 -#: ../../operation/servers/view_server.php:54 -#: ../../operation/agentes/tactical.php:252 -#: ../../operation/agentes/networkmap.php:273 -#: ../../operation/search_users.php:186 ../../operation/gis_maps/index.php:33 -#: ../../operation/visual_console/index.php:34 -#: ../../godmode/groups/configure_group.php:77 -#: ../../godmode/groups/modu_group_list.php:173 -#: ../../godmode/groups/configure_modu_group.php:62 -#: ../../godmode/groups/group_list.php:221 -#: ../../godmode/modules/manage_nc_groups_form.php:46 -#: ../../godmode/modules/manage_network_templates.php:171 -#: ../../godmode/modules/module_list.php:59 -#: ../../godmode/modules/manage_nc_groups.php:145 -#: ../../godmode/modules/manage_network_components_form_common.php:47 -#: ../../godmode/modules/manage_network_templates_form.php:129 -#: ../../godmode/servers/modificar_server.php:44 -#: ../../godmode/servers/modificar_server.php:101 -#: ../../godmode/servers/manage_recontask.php:217 -#: ../../godmode/servers/plugin.php:87 ../../godmode/servers/plugin.php:234 -#: ../../godmode/servers/recon_script.php:81 -#: ../../godmode/servers/recon_script.php:176 -#: ../../godmode/users/user_list.php:145 -#: ../../godmode/agentes/module_manager.php:330 -#: ../../godmode/agentes/configure_field.php:43 -#: ../../godmode/agentes/module_manager_editor_common.php:125 -#: ../../godmode/agentes/planned_downtime.php:210 -#: ../../godmode/agentes/planned_downtime.php:320 -#: ../../godmode/alerts/configure_alert_command.php:50 -#: ../../godmode/alerts/alert_actions.php:267 -#: ../../godmode/alerts/configure_alert_action.php:95 -#: ../../godmode/alerts/configure_alert_template.php:569 -#: ../../godmode/alerts/alert_templates.php:235 -#: ../../godmode/alerts/configure_alert_compound.php:481 -#: ../../godmode/alerts/alert_commands.php:142 -#: ../../godmode/alerts/alert_compounds.php:179 -#: ../../godmode/reporting/reporting_builder.main.php:53 -#: ../../godmode/reporting/reporting_builder.main.php:54 -#: ../../godmode/reporting/graph_builder.main.php:94 -#: ../../godmode/tag/edit_tag.php:125 ../../godmode/tag/tag.php:103 -#: ../../godmode/setup/os.list.php:32 ../../godmode/setup/os.builder.php:34 -#: ../../enterprise/mobile/include/enterprise.class.php:41 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:163 -#: ../../enterprise/operation/agentes/collection_view.php:60 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:133 -#: ../../enterprise/operation/agentes/policy_view.php:304 -#: ../../enterprise/operation/services/services.php:78 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:70 -#: ../../enterprise/godmode/modules/configure_local_component.php:53 -#: ../../enterprise/godmode/modules/local_components.php:243 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:136 -#: ../../enterprise/godmode/servers/manage_export_form.php:65 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/agentes/collection_manager.php:86 -#: ../../enterprise/godmode/agentes/collection_manager.php:123 -#: ../../enterprise/godmode/agentes/inventory_manager.php:208 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 -#: ../../enterprise/godmode/alerts/alert_events_list.php:442 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:108 -#: ../../enterprise/godmode/alerts/alert_events.php:485 -#: ../../enterprise/godmode/reporting/mysql_builder.php:41 -#: ../../enterprise/godmode/reporting/mysql_builder.php:141 -#: ../../enterprise/godmode/reporting/mysql_builder.php:142 -#: ../../enterprise/godmode/services/manage_services.setup.php:41 -#: ../../enterprise/godmode/services/manage_services.main.php:51 -#: ../../enterprise/godmode/setup/setup_skins.php:83 -#: ../../enterprise/godmode/setup/edit_skin.php:212 -#: ../../enterprise/godmode/policies/policies.php:206 -#: ../../enterprise/godmode/policies/policy_agents.php:336 -#: ../../enterprise/godmode/policies/policy_modules.php:541 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:242 -#: ../../enterprise/godmode/policies/policy_collections.php:118 -#: ../../enterprise/godmode/policies/policy_collections.php:184 -#: ../../enterprise/godmode/policies/configure_policy.php:56 -#: ../../enterprise/dashboard/main_dashboard.php:390 -#: ../../enterprise/dashboard/main_dashboard.php:402 -#: ../../enterprise/include/functions_networkmap_enterprise.php:200 -#: ../../enterprise/include/functions_networkmap_enterprise.php:796 -#: ../../include/functions_ui.php:1468 -#: ../../include/functions_filemanager.php:484 -msgid "Name" -msgstr "" - -#: ../../mobile/operation/agents/view_agents.php:89 -#: ../../mobile/operation/agents/view_agents.php:218 -#: ../../extensions/snmp_explorer.php:379 -#: ../../extensions/agents_modules.php:167 -#: ../../operation/search_results.php:105 -#: ../../operation/servers/view_server.php:58 -#: ../../operation/agentes/estado_agente.php:429 -#: ../../operation/agentes/exportdata.php:342 -#: ../../operation/agentes/graphs.php:64 ../../operation/search_agents.php:228 -#: ../../godmode/massive/massive_copy_modules.php:116 -#: ../../godmode/massive/massive_edit_modules.php:287 -#: ../../godmode/massive/massive_edit_modules.php:301 -#: ../../godmode/massive/massive_delete_alerts.php:161 -#: ../../godmode/massive/massive_add_alerts.php:136 -#: ../../godmode/massive/massive_delete_modules.php:116 -#: ../../godmode/agentes/modificar_agente.php:418 -#: ../../godmode/agentes/configurar_agente.php:234 -#: ../../godmode/agentes/configurar_agente.php:337 -#: ../../godmode/db/db_refine.php:80 -#: ../../godmode/reporting/graph_builder.graph_editor.php:129 -#: ../../godmode/reporting/visual_console_builder.wizard.php:67 -#: ../../godmode/reporting/reporting_builder.list_items.php:140 -#: ../../enterprise/extensions/tree_view.php:679 -#: ../../enterprise/operation/metaconsole/agentsearch.php:76 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:131 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:118 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:140 -#: ../../enterprise/godmode/policies/policies.php:278 -#: ../../enterprise/include/functions_reporting_pdf.php:305 +#: ../../enterprise/operation/log/log_viewer.php:153 +#: ../../enterprise/operation/agentes/agent_inventory.php:208 +#: ../../enterprise/operation/inventory/inventory.php:162 #: ../../enterprise/include/functions_reporting_pdf.php:489 -#: ../../enterprise/include/functions_policies.php:3023 -#: ../../include/functions_reporting.php:1631 -#: ../../include/functions_reporting.php:3952 -msgid "Modules" +#: ../../include/functions_reporting.php:5761 +msgid "No data found." msgstr "" -#: ../../mobile/operation/agents/view_agents.php:91 -#: ../../operation/events/events_rss.php:244 -#: ../../operation/snmpconsole/snmp_view.php:313 -#: ../../operation/snmpconsole/snmp_view.php:403 -#: ../../operation/snmpconsole/snmp_view.php:563 -#: ../../godmode/agentes/configurar_agente.php:340 -#: ../../godmode/alerts/configure_alert_compound.php:502 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:169 -#: ../../enterprise/godmode/policies/policy_alerts.php:222 -#: ../../include/functions_events.php:425 -msgid "Alert" +#: ../../enterprise/operation/reporting/custom_reporting.php:16 +msgid "PDF" msgstr "" -#: ../../mobile/operation/agents/view_agents.php:189 -#: ../../godmode/reporting/visual_console_builder.data.php:48 -#: ../../godmode/setup/os.builder.php:33 -#: ../../enterprise/godmode/agentes/collections.data.php:284 -msgid "Name:" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:95 +msgid "Success be updated." msgstr "" -#: ../../mobile/operation/agents/view_agents.php:191 -msgid "IP:" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:98 +msgid "Could not be updated." msgstr "" -#: ../../mobile/operation/agents/view_agents.php:193 -msgid "OS:" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:304 +msgid "Name: " msgstr "" -#: ../../mobile/operation/agents/view_agents.php:195 -#: ../../mobile/operation/agents/view_agents.php:226 -#: ../../operation/agentes/ver_agente.php:285 -#: ../../operation/agentes/estado_agente.php:432 -#: ../../operation/agentes/estado_monitores.php:241 -#: ../../operation/agentes/estado_generalagente.php:169 -#: ../../operation/search_users.php:192 ../../operation/gis_maps/ajax.php:138 -#: ../../operation/gis_maps/ajax.php:182 ../../operation/search_agents.php:231 -#: ../../godmode/users/user_list.php:148 -#: ../../godmode/agentes/planned_downtime.php:323 -#: ../../enterprise/operation/agentes/ver_agente.php:75 -#: ../../enterprise/operation/agentes/policy_view.php:308 -#: ../../enterprise/operation/metaconsole/agentsearch.php:79 -msgid "Last contact" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:344 +msgid "Policy: " msgstr "" -#: ../../mobile/operation/agents/view_agents.php:225 -#: ../../mobile/operation/agents/view_agents.php:416 -#: ../../extensions/insert_data.php:160 ../../extensions/insert_data.php:161 -#: ../../operation/agentes/ver_agente.php:514 -#: ../../operation/agentes/estado_agente.php:479 -#: ../../operation/agentes/status_monitor.php:511 -#: ../../operation/agentes/exportdata.php:145 -#: ../../operation/agentes/exportdata.php:153 -#: ../../operation/agentes/exportdata.php:162 -#: ../../operation/agentes/estado_monitores.php:237 -#: ../../operation/agentes/gis_view.php:130 -#: ../../operation/agentes/estado_ultimopaquete.php:273 -#: ../../operation/search_modules.php:184 -#: ../../godmode/reporting/visual_console_builder.php:225 -#: ../../enterprise/operation/agentes/policy_view.php:307 -#: ../../enterprise/operation/services/services.php:162 -#: ../../enterprise/godmode/agentes/collections.editor.php:33 -#: ../../enterprise/godmode/agentes/collections.data.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:92 -#: ../../enterprise/godmode/agentes/collections.data.php:118 -#: ../../enterprise/godmode/agentes/collections.data.php:132 -#: ../../enterprise/godmode/agentes/collections.data.php:146 -#: ../../enterprise/godmode/agentes/collections.data.php:167 -#: ../../enterprise/godmode/agentes/collections.data.php:189 -#: ../../enterprise/godmode/agentes/collections.data.php:207 -#: ../../enterprise/godmode/agentes/collections.data.php:226 -#: ../../enterprise/include/functions_reporting_csv.php:167 -#: ../../enterprise/include/functions_reporting_csv.php:651 -#: ../../enterprise/include/functions_reporting_csv.php:762 -#: ../../enterprise/include/functions_reporting_csv.php:924 -msgid "Data" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:388 +msgid "Status: " msgstr "" -#: ../../mobile/operation/agents/view_agents.php:226 -msgid "L" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:443 +msgid "Data: " msgstr "" -#: ../../mobile/operation/agents/view_agents.php:336 -#: ../../mobile/include/functions_web.php:25 -#: ../../operation/search_results.php:73 -#: ../../operation/agentes/ver_agente.php:524 -#: ../../operation/agentes/ver_agente.php:658 -#: ../../operation/agentes/estado_agente.php:431 -#: ../../operation/search_agents.php:230 -#: ../../godmode/massive/massive_copy_modules.php:125 -#: ../../godmode/groups/configure_group.php:110 -#: ../../godmode/groups/group_list.php:224 -#: ../../godmode/agentes/modificar_agente.php:422 -#: ../../godmode/agentes/configurar_agente.php:244 -#: ../../godmode/alerts/configure_alert_command.php:42 -#: ../../godmode/alerts/alert_actions.php:51 -#: ../../godmode/alerts/alert_actions.php:69 -#: ../../godmode/alerts/alert_actions.php:81 -#: ../../godmode/alerts/alert_actions.php:91 -#: ../../godmode/alerts/alert_actions.php:160 -#: ../../godmode/alerts/alert_actions.php:164 -#: ../../godmode/alerts/alert_actions.php:223 -#: ../../godmode/alerts/alert_actions.php:236 -#: ../../godmode/alerts/alert_actions.php:247 -#: ../../godmode/alerts/configure_alert_action.php:46 -#: ../../godmode/alerts/configure_alert_action.php:58 -#: ../../godmode/alerts/configure_alert_action.php:68 -#: ../../godmode/alerts/configure_alert_template.php:53 -#: ../../godmode/alerts/configure_alert_template.php:65 -#: ../../godmode/alerts/configure_alert_template.php:76 -#: ../../godmode/alerts/alert_templates.php:117 -#: ../../godmode/alerts/alert_templates.php:151 -#: ../../godmode/alerts/alert_templates.php:163 -#: ../../godmode/alerts/alert_templates.php:173 -#: ../../godmode/alerts/configure_alert_compound.php:270 -#: ../../godmode/alerts/alert_list.php:263 -#: ../../godmode/alerts/alert_list.php:265 -#: ../../godmode/alerts/alert_commands.php:42 -#: ../../godmode/alerts/alert_compounds.php:55 -#: ../../enterprise/operation/metaconsole/agentsearch.php:78 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:78 -#: ../../enterprise/godmode/alerts/alert_events_list.php:136 -#: ../../enterprise/godmode/alerts/alert_events_list.php:179 -#: ../../enterprise/godmode/alerts/alert_events_list.php:191 -#: ../../enterprise/godmode/alerts/alert_events_list.php:201 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:56 -#: ../../enterprise/godmode/alerts/alert_events.php:47 -#: ../../enterprise/godmode/policies/policies.php:282 -#: ../../enterprise/include/functions_reporting_pdf.php:506 -#: ../../enterprise/include/functions_policies.php:3041 -#: ../../include/functions_graph.php:334 -#: ../../include/functions_graph.php:1933 -#: ../../include/functions_reporting.php:1640 -#: ../../include/functions_reporting.php:3087 -msgid "Alerts" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:446 +msgid "Last contact: " msgstr "" -#: ../../mobile/operation/agents/view_agents.php:410 -#: ../../operation/agentes/status_monitor.php:505 -#: ../../operation/agentes/estado_monitores.php:240 -#: ../../operation/agentes/estado_ultimopaquete.php:277 -#: ../../operation/search_modules.php:183 -#: ../../enterprise/dashboard/widgets/custom_graph.php:29 -msgid "Graph" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:762 +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:142 +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:146 +msgid "Networkmap enterprise" msgstr "" -#: ../../mobile/operation/agents/view_agents.php:419 -msgid "Choose period:" +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:763 +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:149 +msgid "Not found networkmap." msgstr "" -#: ../../mobile/operation/agents/view_agents.php:425 -msgid " secs" -msgstr "" - -#: ../../mobile/include/functions_web.php:21 -#: ../../enterprise/operation/menu.php:41 -msgid "Dashboard" -msgstr "" - -#: ../../mobile/include/functions_web.php:22 -#: ../../extensions/agents_modules.php:167 -#: ../../operation/search_results.php:57 -#: ../../operation/agentes/group_view.php:89 -#: ../../operation/agentes/networkmap.php:297 -#: ../../operation/agentes/networkmap.php:304 -#: ../../godmode/massive/massive_delete_action_alerts.php:165 -#: ../../godmode/massive/massive_edit_agents.php:201 -#: ../../godmode/massive/massive_enable_disable_alerts.php:134 -#: ../../godmode/massive/massive_delete_agents.php:106 -#: ../../godmode/massive/massive_add_action_alerts.php:156 -#: ../../godmode/massive/massive_edit_modules.php:291 -#: ../../godmode/massive/massive_edit_modules.php:297 -#: ../../godmode/massive/massive_delete_alerts.php:153 -#: ../../godmode/massive/massive_add_alerts.php:127 -#: ../../godmode/massive/massive_standby_alerts.php:136 -#: ../../godmode/alerts/alert_list.list.php:59 -#: ../../godmode/reporting/graph_builder.graph_editor.php:127 -#: ../../godmode/reporting/visual_console_builder.wizard.php:63 -#: ../../godmode/reporting/reporting_builder.list_items.php:138 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:252 -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:135 -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:137 -#: ../../enterprise/operation/metaconsole/tactical.php:44 -#: ../../enterprise/operation/metaconsole/groupview.php:43 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:138 -#: ../../enterprise/godmode/policies/policies.php:294 -#: ../../enterprise/godmode/policies/policy_agents.php:251 -#: ../../enterprise/godmode/policies/policy_agents.php:306 -#: ../../enterprise/godmode/policies/policy_queue.php:317 -#: ../../enterprise/include/functions_reporting_pdf.php:305 -#: ../../enterprise/include/functions_reporting_pdf.php:472 -#: ../../enterprise/include/functions_policies.php:3088 -#: ../../include/functions_reporting.php:3055 -#: ../../include/functions_reporting.php:3952 -#: ../../include/functions_groups.php:44 -msgid "Agents" -msgstr "" - -#: ../../mobile/include/functions_web.php:23 -#: ../../include/functions_reporting.php:1426 -#: ../../include/functions_reporting.php:1561 -msgid "Monitor" -msgstr "" - -#: ../../mobile/include/functions_web.php:26 -#: ../../operation/agentes/networkmap.php:297 -#: ../../enterprise/extensions/tree_view.php:670 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:164 -#: ../../enterprise/dashboard/widgets/events_list.php:61 -#: ../../enterprise/dashboard/widgets/groups_status.php:28 -msgid "Groups" -msgstr "" - -#: ../../mobile/include/functions_web.php:27 -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:182 -msgid "Servers" -msgstr "" - -#: ../../mobile/include/functions_web.php:82 -#: ../../enterprise/extensions/cron/functions.php:301 -msgid "Generated at" -msgstr "" - -#: ../../mobile/index.php:41 -msgid "the Flexible Monitoring System (mobile version)" -msgstr "" - -#: ../../mobile/index.php:78 -msgid "LOGOUT" -msgstr "" - -#: ../../extensions/resource_registration.php:40 +#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:792 #, php-format -msgid "Success add '%s' item in report '%s'." +msgid "Networkmap enterprise - %s" msgstr "" -#: ../../extensions/resource_registration.php:41 -#, php-format -msgid "Error create '%s' item in report '%s'." +#: ../../enterprise/operation/agentes/networkmap_enterprise.popup.php:60 +msgid "Details of node:" msgstr "" -#: ../../extensions/resource_registration.php:68 -#, php-format -msgid "Error create '%s' report, the name exist and there aren't free name." -msgstr "" - -#: ../../extensions/resource_registration.php:75 -#, php-format -msgid "Warning create '%s' report, the name exist, the report have a name %s." -msgstr "" - -#: ../../extensions/resource_registration.php:82 -msgid "Error the report haven't name." -msgstr "" - -#: ../../extensions/resource_registration.php:88 -msgid "Error the report haven't group." -msgstr "" - -#: ../../extensions/resource_registration.php:98 -#, php-format -msgid "Success create '%s' report." -msgstr "" - -#: ../../extensions/resource_registration.php:99 -#, php-format -msgid "Error create '%s' report." -msgstr "" - -#: ../../extensions/resource_registration.php:323 -#: ../../extensions/resource_registration.php:344 -#: ../../extensions/resource_registration.php:354 -#, php-format -msgid "Success add '%s' content." -msgstr "" - -#: ../../extensions/resource_registration.php:324 -#: ../../extensions/resource_registration.php:345 -#: ../../extensions/resource_registration.php:355 -#: ../../enterprise/extensions/resource_registration/functions.php:425 -#, php-format -msgid "Error add '%s' action." -msgstr "" - -#: ../../extensions/resource_registration.php:331 -#, php-format -msgid "Success add '%s' SLA." -msgstr "" - -#: ../../extensions/resource_registration.php:332 -#, php-format -msgid "Error add '%s' SLA." -msgstr "" - -#: ../../extensions/resource_registration.php:373 -#, php-format -msgid "Error create '%s' visual map, lost tag name." -msgstr "" - -#: ../../extensions/resource_registration.php:409 -#, php-format -msgid "" -"Error create '%s' visual map, the name exist and there aren't free name." -msgstr "" - -#: ../../extensions/resource_registration.php:416 -#, php-format -msgid "" -"Warning create '%s' visual map, the name exist, the report have a name %s." -msgstr "" - -#: ../../extensions/resource_registration.php:424 -#, php-format -msgid "Success create '%s' visual map." -msgstr "" - -#: ../../extensions/resource_registration.php:425 -#, php-format -msgid "Error create '%s' visual map." -msgstr "" - -#: ../../extensions/resource_registration.php:533 -#, php-format -msgid "Success create item type '%d' visual map." -msgstr "" - -#: ../../extensions/resource_registration.php:534 -#, php-format -msgid "Error create item type '%d' visual map." -msgstr "" - -#: ../../extensions/resource_registration.php:552 -#: ../../extensions/resource_registration.php:567 -#, php-format -msgid "Success create item for agent '%s' visual map." -msgstr "" - -#: ../../extensions/resource_registration.php:553 -#: ../../extensions/resource_registration.php:568 -#, php-format -msgid "Error create item for agent '%s' visual map." -msgstr "" - -#: ../../extensions/resource_registration.php:770 -#, php-format -msgid "Success create '%s' component." -msgstr "" - -#: ../../extensions/resource_registration.php:771 -#, php-format -msgid "Error create '%s' component." -msgstr "" - -#: ../../extensions/resource_registration.php:827 -#: ../../extensions/resource_registration.php:869 -msgid "Resource registration" -msgstr "" - -#: ../../extensions/resource_registration.php:830 -msgid "Error, please install the PHP libXML in the system." -msgstr "" - -#: ../../extensions/resource_registration.php:836 -#, 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 "" - -#: ../../extensions/resource_registration.php:852 -msgid "Group filter: " -msgstr "" - -#: ../../extensions/resource_registration.php:856 -#: ../../extensions/update_manager/main.php:201 -#: ../../extensions/extension_uploader.php:73 -#: ../../extensions/plugin_registration.php:39 -#: ../../operation/incidents/incident_detail.php:442 -#: ../../operation/integria_incidents/incident_detail.php:425 -#: ../../include/functions_filemanager.php:672 -msgid "Upload" -msgstr "" - -#: ../../extensions/pandora_logs.php:21 ../../extensions/system_info.php:151 -msgid "Cannot find file" -msgstr "" - -#: ../../extensions/pandora_logs.php:26 -msgid "File is too large (> 500KB)" -msgstr "" - -#: ../../extensions/pandora_logs.php:50 -msgid "System logfile viewer" -msgstr "" - -#: ../../extensions/pandora_logs.php:52 ../../extensions/system_info.php:262 -msgid "" -"This tool is used just to view your Pandora FMS system logfiles directly " -"from console" -msgstr "" - -#: ../../extensions/pandora_logs.php:59 -msgid "System logfiles" -msgstr "" - -#: ../../extensions/snmp_explorer.php:136 -#: ../../godmode/massive/massive_edit_modules.php:33 -#: ../../godmode/reporting/visual_console_builder.php:176 -#: ../../include/functions_visual_map.php:278 -msgid "No modules selected" -msgstr "" - -#: ../../extensions/snmp_explorer.php:141 -msgid "No agent selected or the agent does not exist" -msgstr "" - -#: ../../extensions/snmp_explorer.php:225 -msgid "Successfully modules created" -msgstr "" - -#: ../../extensions/snmp_explorer.php:229 -#: ../../godmode/modules/manage_network_components.php:85 -#: ../../godmode/modules/manage_network_components.php:147 -#: ../../godmode/modules/manage_nc_groups.php:55 -#: ../../godmode/users/configure_user.php:183 -#: ../../godmode/agentes/configurar_agente.php:201 -#: ../../godmode/agentes/configurar_agente.php:397 -#: ../../godmode/agentes/planned_downtime.php:152 -#: ../../godmode/alerts/alert_actions.php:143 -#: ../../godmode/alerts/configure_alert_template.php:93 -#: ../../godmode/alerts/configure_alert_template.php:374 -#: ../../godmode/alerts/configure_alert_compound.php:281 -#: ../../godmode/alerts/alert_list.php:93 -#: ../../godmode/alerts/alert_commands.php:73 ../../godmode/setup/gis.php:47 -#: ../../godmode/setup/news.php:46 #: ../../enterprise/operation/agentes/networkmap_enterprise.php:70 -#: ../../enterprise/godmode/modules/local_components.php:93 -#: ../../enterprise/godmode/modules/local_components.php:121 -#: ../../enterprise/godmode/servers/manage_export.php:99 -#: ../../enterprise/godmode/alerts/alert_events.php:317 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:131 +msgid "Succesfully created" +msgstr "" + +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:70 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:121 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:108 +#: ../../enterprise/godmode/modules/local_components.php:104 +#: ../../enterprise/godmode/modules/local_components.php:217 +#: ../../enterprise/godmode/servers/manage_export.php:105 +#: ../../enterprise/godmode/servers/manage_export.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:36 #: ../../enterprise/godmode/policies/policy_external_alerts.php:75 #: ../../enterprise/godmode/policies/policy_external_alerts.php:78 -#: ../../enterprise/godmode/policies/policies.php:99 -#: ../../enterprise/godmode/policies/policy_alerts.php:132 +#: ../../enterprise/godmode/policies/policies.php:113 +#: ../../enterprise/godmode/policies/policy_alerts.php:133 +#: ../../enterprise/godmode/alerts/alert_events.php:330 +#: ../../godmode/setup/news.php:46 ../../godmode/setup/gis.php:47 +#: ../../godmode/modules/manage_network_components.php:130 +#: ../../godmode/modules/manage_network_components.php:212 +#: ../../godmode/modules/manage_nc_groups.php:71 +#: ../../godmode/users/configure_user.php:221 +#: ../../godmode/agentes/configurar_agente.php:227 +#: ../../godmode/agentes/configurar_agente.php:484 +#: ../../godmode/agentes/planned_downtime.editor.php:238 +#: ../../godmode/alerts/alert_special_days.php:87 +#: ../../godmode/alerts/configure_alert_template.php:124 +#: ../../godmode/alerts/configure_alert_template.php:413 +#: ../../godmode/alerts/alert_commands.php:173 +#: ../../godmode/alerts/alert_actions.php:180 +#: ../../godmode/alerts/alert_list.php:101 +#: ../../extensions/snmp_explorer.php:229 msgid "Could not be created" msgstr "" -#: ../../extensions/snmp_explorer.php:235 -#: ../../godmode/agentes/configurar_agente.php:750 -#: ../../godmode/agentes/configurar_agente.php:856 -msgid "Another module already exists with the same name" -msgstr "" - -#: ../../extensions/snmp_explorer.php:238 -#: ../../godmode/agentes/configurar_agente.php:753 -#: ../../godmode/agentes/configurar_agente.php:859 -msgid "Some required fields are missed" -msgstr "" - -#: ../../extensions/snmp_explorer.php:238 -#: ../../godmode/agentes/configurar_agente.php:753 -#: ../../godmode/agentes/configurar_agente.php:859 -msgid "name" -msgstr "" - -#: ../../extensions/snmp_explorer.php:243 -#: ../../godmode/agentes/configurar_agente.php:761 -#: ../../godmode/agentes/configurar_agente.php:864 -msgid "Processing error" -msgstr "" - -#: ../../extensions/snmp_explorer.php:272 -#: ../../extensions/snmp_explorer.php:353 -#: ../../operation/users/user_edit.php:181 -#: ../../operation/agentes/ver_agente.php:367 -#: ../../operation/agentes/ver_agente.php:405 -#: ../../operation/agentes/ver_agente.php:415 -#: ../../operation/integria_incidents/incident.incident.php:25 -#: ../../operation/integria_incidents/incident.list.php:42 -#: ../../godmode/massive/massive_delete_action_alerts.php:203 -#: ../../godmode/massive/massive_edit_agents.php:271 -#: ../../godmode/massive/massive_edit_agents.php:350 -#: ../../godmode/massive/massive_add_action_alerts.php:196 -#: ../../godmode/massive/massive_edit_modules.php:293 -#: ../../godmode/massive/massive_edit_modules.php:366 -#: ../../godmode/massive/massive_edit_modules.php:379 -#: ../../godmode/massive/massive_edit_modules.php:411 -#: ../../godmode/massive/massive_edit_modules.php:456 -#: ../../godmode/massive/massive_edit_modules.php:457 -#: ../../godmode/massive/massive_edit_modules.php:458 -#: ../../godmode/massive/massive_edit_modules.php:459 -#: ../../godmode/massive/massive_edit_modules.php:524 -#: ../../godmode/massive/massive_delete_alerts.php:174 -#: ../../godmode/massive/massive_add_alerts.php:158 -#: ../../godmode/massive/massive_delete_modules.php:141 -#: ../../godmode/groups/configure_group.php:122 -#: ../../godmode/modules/manage_network_components_form_plugin.php:33 -#: ../../godmode/modules/manage_nc_groups_form.php:51 -#: ../../godmode/servers/manage_recontask_form.php:190 -#: ../../godmode/users/configure_user.php:399 -#: ../../godmode/users/configure_user.php:486 -#: ../../godmode/users/configure_user.php:490 -#: ../../godmode/users/configure_user.php:495 -#: ../../godmode/agentes/module_manager_editor_common.php:243 -#: ../../godmode/agentes/module_manager_editor_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:280 -#: ../../godmode/agentes/agent_manager.php:224 -#: ../../godmode/agentes/agent_manager.php:300 -#: ../../godmode/agentes/module_manager_editor_plugin.php:44 -#: ../../godmode/alerts/configure_alert_action.php:111 -#: ../../godmode/alerts/configure_alert_template.php:515 -#: ../../godmode/alerts/alert_list.list.php:471 -#: ../../godmode/alerts/alert_list.builder.php:93 -#: ../../godmode/alerts/alert_list.builder.php:234 -#: ../../godmode/gis_maps/configure_gis_map.php:409 -#: ../../godmode/reporting/reporting_builder.item_editor.php:597 -#: ../../godmode/reporting/graph_builder.graph_editor.php:118 -#: ../../godmode/reporting/graph_builder.graph_editor.php:161 -#: ../../godmode/reporting/graph_builder.graph_editor.php:175 -#: ../../godmode/reporting/visual_console_builder.editor.php:143 -#: ../../godmode/reporting/visual_console_builder.editor.php:241 -#: ../../godmode/reporting/visual_console_builder.wizard.php:82 -#: ../../godmode/setup/setup.php:146 ../../godmode/setup/os.builder.php:39 -#: ../../enterprise/operation/agentes/ver_agente.php:36 -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:206 -#: ../../enterprise/operation/metaconsole/componentmanager.php:248 -#: ../../enterprise/operation/metaconsole/alertmanager.php:250 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:102 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:124 -#: ../../enterprise/godmode/servers/manage_export_form.php:71 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:253 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:383 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:478 -#: ../../enterprise/godmode/alerts/alert_events_list.php:615 -#: ../../enterprise/godmode/alerts/alert_events.php:522 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:174 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:92 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:148 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:193 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:103 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:253 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:267 -#: ../../enterprise/godmode/setup/setup_acl.php:71 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:272 -#: ../../enterprise/godmode/policies/policy_agents.php:214 -#: ../../enterprise/godmode/policies/policy_agents.php:589 -#: ../../enterprise/godmode/policies/policy_alerts.php:394 -#: ../../enterprise/include/functions_networkmap_enterprise.php:186 -#: ../../enterprise/include/functions_networkmap_enterprise.php:189 -#: ../../enterprise/include/functions_networkmap_enterprise.php:228 -#: ../../enterprise/include/functions_networkmap_enterprise.php:454 -#: ../../include/functions.php:644 ../../include/functions_html.php:117 -#: ../../include/functions_html.php:294 -msgid "None" -msgstr "" - -#: ../../extensions/snmp_explorer.php:280 -#: ../../godmode/agentes/module_manager_editor_network.php:46 -#: ../../godmode/agentes/module_manager_editor_wmi.php:41 -#: ../../godmode/agentes/module_manager_editor_plugin.php:51 -msgid "Target IP" -msgstr "" - -#: ../../extensions/snmp_explorer.php:283 -#: ../../godmode/modules/manage_network_components_form_plugin.php:24 -#: ../../godmode/modules/manage_network_components_form_network.php:40 -#: ../../godmode/agentes/module_manager_editor_network.php:48 -#: ../../godmode/agentes/module_manager_editor_plugin.php:53 -#: ../../enterprise/godmode/servers/manage_export_form.php:103 -#: ../../enterprise/godmode/setup/setup_history.php:52 -msgid "Port" -msgstr "" - -#: ../../extensions/snmp_explorer.php:291 -#: ../../godmode/modules/manage_network_components_form_network.php:52 -#: ../../godmode/agentes/module_manager_editor_network.php:59 -msgid "SNMP community" -msgstr "" - -#: ../../extensions/snmp_explorer.php:294 -#: ../../godmode/massive/massive_edit_modules.php:333 -#: ../../godmode/modules/manage_network_components_form_network.php:42 -#: ../../godmode/agentes/module_manager_editor_network.php:73 -msgid "SNMP version" -msgstr "" - -#: ../../extensions/snmp_explorer.php:310 -#: ../../godmode/modules/manage_network_components_form_network.php:59 -#: ../../godmode/agentes/module_manager_editor_network.php:165 -msgid "Auth user" -msgstr "" - -#: ../../extensions/snmp_explorer.php:312 -#: ../../godmode/modules/manage_network_components_form_network.php:61 -#: ../../godmode/agentes/module_manager_editor_network.php:167 -msgid "Auth password" -msgstr "" - -#: ../../extensions/snmp_explorer.php:316 -#: ../../godmode/modules/manage_network_components_form_network.php:67 -#: ../../godmode/agentes/module_manager_editor_network.php:174 -msgid "Privacy method" -msgstr "" - -#: ../../extensions/snmp_explorer.php:317 -#: ../../godmode/modules/manage_network_components_form_network.php:68 -#: ../../godmode/agentes/module_manager_editor_network.php:175 -msgid "DES" -msgstr "" - -#: ../../extensions/snmp_explorer.php:317 -#: ../../godmode/modules/manage_network_components_form_network.php:68 -#: ../../godmode/agentes/module_manager_editor_network.php:175 -msgid "AES" -msgstr "" - -#: ../../extensions/snmp_explorer.php:318 -msgid "privacy pass" -msgstr "" - -#: ../../extensions/snmp_explorer.php:321 -#: ../../godmode/modules/manage_network_components_form_network.php:74 -#: ../../godmode/agentes/module_manager_editor_network.php:182 -msgid "Auth method" -msgstr "" - -#: ../../extensions/snmp_explorer.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:75 -#: ../../godmode/agentes/module_manager_editor_network.php:183 -msgid "MD5" -msgstr "" - -#: ../../extensions/snmp_explorer.php:322 -#: ../../godmode/modules/manage_network_components_form_network.php:75 -#: ../../godmode/agentes/module_manager_editor_network.php:183 -msgid "SHA" -msgstr "" - -#: ../../extensions/snmp_explorer.php:323 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../godmode/agentes/module_manager_editor_network.php:184 -msgid "Security level" -msgstr "" - -#: ../../extensions/snmp_explorer.php:324 -#: ../../godmode/modules/manage_network_components_form_network.php:77 -#: ../../godmode/agentes/module_manager_editor_network.php:185 -msgid "Not auth and not privacy method" -msgstr "" - -#: ../../extensions/snmp_explorer.php:325 -#: ../../godmode/modules/manage_network_components_form_network.php:78 -#: ../../godmode/agentes/module_manager_editor_network.php:186 -msgid "Auth and not privacy method" -msgstr "" - -#: ../../extensions/snmp_explorer.php:325 -#: ../../godmode/modules/manage_network_components_form_network.php:78 -#: ../../godmode/agentes/module_manager_editor_network.php:186 -msgid "Auth and privacy method" -msgstr "" - -#: ../../extensions/snmp_explorer.php:337 -msgid "SNMP Walk" -msgstr "" - -#: ../../extensions/snmp_explorer.php:341 -#: ../../godmode/agentes/module_manager_editor_network.php:93 -msgid "Unable to do SNMP walk" -msgstr "" - -#: ../../extensions/snmp_explorer.php:377 -msgid "Interfaces" -msgstr "" - -#: ../../extensions/snmp_explorer.php:389 -msgid "Create modules" -msgstr "" - -#: ../../extensions/snmp_explorer.php:490 -msgid "SNMP Explorer" -msgstr "" - -#: ../../extensions/agents_modules.php:56 -#: ../../extensions/agents_modules.php:62 -#: ../../operation/agentes/group_view.php:67 -#: ../../operation/agentes/tactical.php:61 -#: ../../enterprise/operation/metaconsole/groupview.php:59 -msgid "Last update" -msgstr "" - -#: ../../extensions/agents_modules.php:59 -#: ../../operation/agentes/group_view.php:69 -#: ../../operation/agentes/tactical.php:65 -#: ../../enterprise/operation/metaconsole/groupview.php:62 -msgid "Updated at realtime" -msgstr "" - -#: ../../extensions/agents_modules.php:86 -#: ../../operation/visual_console/render_view.php:102 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:62 -#: ../../enterprise/godmode/policies/policy_queue.php:207 -#: ../../enterprise/include/functions_networkmap_enterprise.php:315 -msgid "Refresh" -msgstr "" - -#: ../../extensions/agents_modules.php:92 -#: ../../operation/gis_maps/render_view.php:91 -#: ../../operation/visual_console/render_view.php:66 -#: ../../operation/reporting/reporting_viewer.php:70 -#: ../../operation/reporting/graph_viewer.php:110 -#: ../../godmode/reporting/reporting_builder.preview.php:62 -#: ../../enterprise/dashboard/main_dashboard.php:173 -msgid "Full screen mode" -msgstr "" - -#: ../../extensions/agents_modules.php:97 -#: ../../operation/events/events.php:234 -#: ../../operation/gis_maps/render_view.php:95 -#: ../../operation/visual_console/render_view.php:71 -#: ../../operation/reporting/reporting_viewer.php:74 -#: ../../operation/reporting/graph_viewer.php:114 -#: ../../godmode/reporting/reporting_builder.preview.php:66 -#: ../../enterprise/dashboard/main_dashboard.php:178 -msgid "Back to normal mode" -msgstr "" - -#: ../../extensions/agents_modules.php:111 -#: ../../enterprise/include/functions_reporting_pdf.php:251 -#: ../../include/functions.php:740 ../../include/functions_reporting.php:3888 -msgid "Agents/Modules" -msgstr "" - -#: ../../extensions/agents_modules.php:161 -#: ../../include/functions_reporting.php:3946 -msgid "There are no agents with modules" -msgstr "" - -#: ../../extensions/agents_modules.php:171 -msgid "Previous modules" -msgstr "" - -#: ../../extensions/agents_modules.php:187 -msgid "More modules" -msgstr "" - -#: ../../extensions/agents_modules.php:266 -#: ../../enterprise/include/functions_reporting_pdf.php:396 -#: ../../include/functions_reporting.php:4044 -msgid "ALERTS FIRED" -msgstr "" - -#: ../../extensions/agents_modules.php:285 -#: ../../extensions/module_groups.php:248 -#: ../../enterprise/include/functions_reporting_pdf.php:414 -#: ../../include/functions_reporting.php:4062 -msgid "The colours meaning:" -msgstr "" - -#: ../../extensions/agents_modules.php:289 -#: ../../enterprise/include/functions_reporting_pdf.php:418 -#: ../../include/functions_reporting.php:4066 -msgid "Orange cell when the module has fired alerts" -msgstr "" - -#: ../../extensions/agents_modules.php:293 -#: ../../enterprise/include/functions_reporting_pdf.php:424 -#: ../../include/functions_reporting.php:4070 -msgid "Red cell when the module has a critical status" -msgstr "" - -#: ../../extensions/agents_modules.php:297 -#: ../../enterprise/include/functions_reporting_pdf.php:430 -#: ../../include/functions_reporting.php:4074 -msgid "Yellow cell when the module has a warning status" -msgstr "" - -#: ../../extensions/agents_modules.php:301 -#: ../../enterprise/include/functions_reporting_pdf.php:436 -#: ../../include/functions_reporting.php:4078 -msgid "Green cell when the module has a normal status" -msgstr "" - -#: ../../extensions/agents_modules.php:305 -#: ../../enterprise/include/functions_reporting_pdf.php:442 -#: ../../include/functions_reporting.php:4082 -msgid "Grey cell when the module has an unknown status" -msgstr "" - -#: ../../extensions/agents_modules.php:311 -msgid "Agents/Modules view" -msgstr "" - -#: ../../extensions/users_connected.php:31 -#: ../../extensions/users_connected.php:91 -#: ../../extensions/users_connected.php:95 -msgid "Users connected" -msgstr "" - -#: ../../extensions/users_connected.php:54 -msgid "No other users connected" -msgstr "" - -#: ../../extensions/users_connected.php:66 -#: ../../extensions/insert_data.php:207 ../../operation/events/events.php:326 -#: ../../operation/agentes/exportdata.php:431 -#: ../../godmode/massive/massive_edit_agents.php:512 -#: ../../godmode/agentes/agent_manager.php:420 -#: ../../godmode/alerts/alert_list.list.php:600 -#: ../../godmode/alerts/alert_list.builder.php:153 -#: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/admin_access_logs.php:68 -#: ../../godmode/admin_access_logs.php:69 -#: ../../godmode/reporting/visual_console_builder.elements.php:239 -#: ../../godmode/reporting/visual_console_builder.editor.php:104 -#: ../../enterprise/extensions/dict.php:122 -#: ../../enterprise/operation/inventory/inventory.php:393 -#: ../../enterprise/include/functions_networkmap_enterprise.php:368 -msgid "IP" -msgstr "" - -#: ../../extensions/net_tools.php:35 -msgid "Traceroute" -msgstr "" - -#: ../../extensions/net_tools.php:36 -msgid "Ping host & Latency" -msgstr "" - -#: ../../extensions/net_tools.php:37 -msgid "SNMP Interface status" -msgstr "" - -#: ../../extensions/net_tools.php:38 -msgid "Basic TCP Port Scan" -msgstr "" - -#: ../../extensions/net_tools.php:39 -msgid "DiG/Whois Lookup" -msgstr "" - -#: ../../extensions/net_tools.php:42 -msgid "SNMP Community" -msgstr "" - -#: ../../extensions/net_tools.php:46 ../../operation/extensions.php:61 -msgid "Execute" -msgstr "" - -#: ../../extensions/net_tools.php:58 -msgid "Traceroute executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:61 -msgid "Traceroute to " -msgstr "" - -#: ../../extensions/net_tools.php:75 -msgid "Ping executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:78 -msgid "Ping to " -msgstr "" - -#: ../../extensions/net_tools.php:92 -msgid "Nmap executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:95 -msgid "Basic TCP Scan on " -msgstr "" - -#: ../../extensions/net_tools.php:103 -msgid "Domain and IP information for " -msgstr "" - -#: ../../extensions/net_tools.php:110 -msgid "Dig executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:123 -msgid "Whois executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:132 -msgid "SNMP information for " -msgstr "" - -#: ../../extensions/net_tools.php:139 -msgid "SNMPget executable does not exist." -msgstr "" - -#: ../../extensions/net_tools.php:154 -msgid "Interface" -msgstr "" - -#: ../../extensions/update_manager/settings.php:30 -#: ../../extensions/update_manager/main.php:26 -#: ../../extensions/update_manager.php:169 -msgid "Update manager" -msgstr "" - -#: ../../extensions/update_manager/settings.php:30 -msgid "Settings" -msgstr "" - -#: ../../extensions/update_manager/settings.php:36 -msgid "Update manager settings updated" -msgstr "" - -#: ../../extensions/update_manager/settings.php:46 -msgid "Customer key" -msgstr "" - -#: ../../extensions/update_manager/settings.php:49 -msgid "Update server host" -msgstr "" - -#: ../../extensions/update_manager/settings.php:52 -msgid "Update server path" -msgstr "" - -#: ../../extensions/update_manager/settings.php:55 -msgid "Update server port" -msgstr "" - -#: ../../extensions/update_manager/settings.php:58 -msgid "Binary input path" -msgstr "" - -#: ../../extensions/update_manager/settings.php:61 -msgid "Keygen path" -msgstr "" - -#: ../../extensions/update_manager/settings.php:64 -msgid "Proxy server" -msgstr "" - -#: ../../extensions/update_manager/settings.php:67 -msgid "Proxy port" -msgstr "" - -#: ../../extensions/update_manager/settings.php:70 -msgid "Proxy user" +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:115 +msgid "Succesfully updated" msgstr "" -#: ../../extensions/update_manager/settings.php:73 -msgid "Proxy password" +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:122 +msgid "Succesfully duplicate" msgstr "" -#: ../../extensions/update_manager/settings.php:79 -#: ../../extensions/update_manager/main.php:183 -#: ../../operation/events/events_list.php:284 -#: ../../operation/users/user_edit.php:206 -#: ../../operation/agentes/networkmap.php:370 -#: ../../operation/agentes/datos_agente.php:183 -#: ../../operation/integria_incidents/incident.incident.php:120 -#: ../../operation/snmpconsole/snmp_view.php:347 -#: ../../operation/reporting/reporting_viewer.php:110 -#: ../../operation/reporting/reporting_viewer.php:115 -#: ../../operation/reporting/graph_viewer.php:167 -#: ../../godmode/massive/massive_edit_agents.php:403 -#: ../../godmode/massive/massive_edit_modules.php:373 -#: ../../godmode/groups/configure_group.php:131 -#: ../../godmode/groups/configure_modu_group.php:73 -#: ../../godmode/modules/manage_nc_groups_form.php:59 -#: ../../godmode/modules/manage_network_components_form_wmi.php:216 -#: ../../godmode/modules/manage_network_components_form.php:156 -#: ../../godmode/modules/manage_network_templates_form.php:139 -#: ../../godmode/servers/manage_recontask_form.php:275 -#: ../../godmode/servers/modificar_server.php:51 -#: ../../godmode/servers/plugin.php:134 -#: ../../godmode/servers/recon_script.php:102 -#: ../../godmode/users/configure_user.php:426 -#: ../../godmode/users/configure_profile.php:149 -#: ../../godmode/agentes/configure_field.php:56 -#: ../../godmode/agentes/agent_conf_gis.php:73 -#: ../../godmode/agentes/agent_manager.php:351 -#: ../../godmode/agentes/planned_downtime.php:241 -#: ../../godmode/agentes/planned_downtime.php:364 -#: ../../godmode/agentes/planned_downtime.php:404 -#: ../../godmode/agentes/module_manager_editor.php:359 -#: ../../godmode/agentes/agent_template.php:180 -#: ../../godmode/alerts/configure_alert_command.php:66 -#: ../../godmode/alerts/configure_alert_action.php:141 -#: ../../godmode/alerts/alert_list.list.php:116 -#: ../../godmode/snmpconsole/snmp_filters.php:103 -#: ../../godmode/snmpconsole/snmp_filters.php:137 -#: ../../godmode/snmpconsole/snmp_alert.php:258 -#: ../../godmode/snmpconsole/snmp_alert.php:330 -#: ../../godmode/reporting/reporting_builder.main.php:37 -#: ../../godmode/reporting/visual_console_builder.elements.php:229 -#: ../../godmode/reporting/visual_console_builder.elements.php:234 -#: ../../godmode/reporting/visual_console_builder.editor.php:195 -#: ../../godmode/reporting/graph_builder.main.php:172 -#: ../../godmode/reporting/reporting_builder.preview.php:100 -#: ../../godmode/reporting/reporting_builder.preview.php:105 -#: ../../godmode/reporting/graph_builder.preview.php:192 -#: ../../godmode/reporting/visual_console_builder.data.php:71 -#: ../../godmode/tag/edit_tag.php:154 ../../godmode/setup/performance.php:108 -#: ../../godmode/setup/setup.php:235 ../../godmode/setup/setup_auth.php:91 -#: ../../godmode/setup/os.php:54 ../../godmode/setup/os.php:107 -#: ../../godmode/setup/links.php:118 ../../godmode/setup/setup_visuals.php:122 -#: ../../godmode/setup/news.php:128 -#: ../../enterprise/extensions/translate_string.php:263 -#: ../../enterprise/extensions/translate_string.php:270 -#: ../../enterprise/extensions/cron/main.php:281 -#: ../../enterprise/operation/agentes/collection_view.php:92 -#: ../../enterprise/operation/agentes/policy_view.php:163 -#: ../../enterprise/operation/metaconsole/eventview.php:401 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 -#: ../../enterprise/godmode/modules/configure_local_component.php:84 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:203 -#: ../../enterprise/godmode/servers/manage_export_form.php:118 -#: ../../enterprise/godmode/agentes/collections.editor.php:100 -#: ../../enterprise/godmode/agentes/collections.editor.php:156 -#: ../../enterprise/godmode/agentes/collection_manager.php:107 -#: ../../enterprise/godmode/agentes/collection_manager.php:164 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:164 -#: ../../enterprise/godmode/agentes/inventory_manager.php:182 -#: ../../enterprise/godmode/agentes/inventory_manager.php:241 -#: ../../enterprise/godmode/agentes/collections.data.php:87 -#: ../../enterprise/godmode/agentes/collections.data.php:178 -#: ../../enterprise/godmode/agentes/collections.data.php:233 -#: ../../enterprise/godmode/agentes/collections.data.php:250 -#: ../../enterprise/godmode/agentes/collections.data.php:265 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:244 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:83 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:96 -#: ../../enterprise/godmode/services/manage_services.setup.php:64 -#: ../../enterprise/godmode/services/manage_services.edit_element.php:63 -#: ../../enterprise/godmode/setup/edit_skin.php:277 -#: ../../enterprise/godmode/setup/setup_history.php:77 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 -#: ../../enterprise/godmode/policies/policy_modules.php:215 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:215 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:274 -#: ../../enterprise/godmode/policies/policy_collections.php:151 -#: ../../enterprise/godmode/policies/policy_collections.php:202 -#: ../../enterprise/godmode/policies/configure_policy.php:77 -#: ../../enterprise/dashboard/widget.php:134 -#: ../../enterprise/dashboard/main_dashboard.php:407 -#: ../../enterprise/include/functions_networkmap_enterprise.php:802 -msgid "Update" -msgstr "" - -#: ../../extensions/update_manager/lib/libupdate_manager.php:756 -msgid "Development" -msgstr "" - -#: ../../extensions/update_manager/lib/libupdate_manager.php:757 -msgid "Testing" -msgstr "" - -#: ../../extensions/update_manager/lib/libupdate_manager.php:758 -#: ../../operation/integria_incidents/incident.workunits.php:29 -#: ../../operation/integria_incidents/incident.workunits.php:61 -msgid "Public" -msgstr "" - -#: ../../extensions/update_manager/lib/libupdate_manager.php:759 -#: ../../operation/agentes/alerts_status.functions.php:53 -#: ../../operation/agentes/estado_generalagente.php:79 -#: ../../operation/search_agents.php:265 -#: ../../godmode/massive/massive_edit_agents.php:312 -#: ../../godmode/massive/massive_edit_agents.php:360 -#: ../../godmode/massive/massive_edit_modules.php:323 -#: ../../godmode/groups/group_list.php:308 -#: ../../godmode/agentes/agent_conf_gis.php:64 -#: ../../godmode/agentes/module_manager_editor_common.php:136 -#: ../../godmode/agentes/modificar_agente.php:408 -#: ../../godmode/agentes/agent_manager.php:255 -#: ../../godmode/agentes/agent_manager.php:311 -#: ../../godmode/alerts/configure_alert_template.php:525 -#: ../../godmode/alerts/configure_alert_compound.php:453 -#: ../../enterprise/godmode/setup/edit_skin.php:258 -msgid "Disabled" +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:123 +msgid "Could not be duplicated" msgstr "" -#: ../../extensions/update_manager/lib/libupdate_manager.php:767 -#: ../../godmode/setup/setup.php:89 -msgid "Database" +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:130 +msgid "Succesfully deleted" msgstr "" -#: ../../extensions/update_manager/lib/libupdate_manager.php:768 -msgid "Code / binary directory" +#: ../../enterprise/operation/agentes/networkmap_enterprise.php:183 +#: ../../enterprise/godmode/policies/policy_modules.php:719 +#: ../../enterprise/godmode/policies/policies.php:320 +#: ../../godmode/reporting/map_builder.php:149 +#: ../../godmode/massive/massive_copy_modules.php:180 +#: ../../godmode/alerts/alert_actions.php:334 +msgid "Copy" msgstr "" -#: ../../extensions/update_manager/main.php:32 -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." +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:170 +msgid "Generate networkmap from" msgstr "" -#: ../../extensions/update_manager/main.php:34 -msgid "" -"Update Manager is one of the most advanced features of Pandora FMS " -"Enterprise version, for more information visit http://pandorafms.com." +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:172 +msgid "The networkmap has been generated already." msgstr "" -#: ../../extensions/update_manager/main.php:36 -msgid "" -"Update Manager sends anonymous information about Pandora FMS usage (number " -"of agents and modules running). To disable it, just delete extension or " -"remove remote server address from Update Manager plugin setup." +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:178 +msgid "Size of networkmap (Width x Height)" msgstr "" -#: ../../extensions/update_manager/main.php:45 -msgid "Updating" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:179 +msgid "x" msgstr "" -#: ../../extensions/update_manager/main.php:53 -#, php-format -msgid "This is an Enterprise feature. Visit %s for more information." +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:188 +msgid "Method generation networkmap" msgstr "" -#: ../../extensions/update_manager/main.php:60 -msgid "Incorrect file extension" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:191 +msgid "Refresh networkmap state" msgstr "" -#: ../../extensions/update_manager/main.php:70 -msgid "Update cannot be opened" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:193 +msgid "Resize the networkmap" msgstr "" -#: ../../extensions/update_manager/main.php:75 -msgid "Error, the file package is empty or corrupted." +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:194 +msgid "This operation can't be undone, because it is on DB." msgstr "" -#: ../../extensions/update_manager/main.php:81 -msgid "Your system version is higher or equal than the loaded package" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:196 +#: ../../include/functions_visual_map_editor.php:154 +#: ../../godmode/reporting/visual_console_builder.wizard.php:112 +msgid "Process" msgstr "" -#: ../../extensions/update_manager/main.php:134 -msgid "Successfully upgraded" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:206 +msgid "Save networkmap" msgstr "" -#: ../../extensions/update_manager/main.php:138 -msgid "Cannot be upgraded" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:211 +msgid "Update networkmap" msgstr "" -#: ../../extensions/update_manager/main.php:145 -msgid "File cannot be uploaded" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:249 +msgid "Networkmap resized." msgstr "" -#: ../../extensions/update_manager/main.php:156 -msgid "Your system is up-to-date" +#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:256 +msgid "Error process map" msgstr "" -#: ../../extensions/update_manager/main.php:158 -msgid "Server authorization rejected" +#: ../../enterprise/operation/agentes/policy_view.php:37 +msgid "This agent has no policy assigned" msgstr "" -#: ../../extensions/update_manager/main.php:160 -msgid "Server connection failed" +#: ../../enterprise/operation/agentes/policy_view.php:50 +#: ../../enterprise/godmode/policies/policy_agents.php:346 +msgid "Last application" msgstr "" -#: ../../extensions/update_manager/main.php:162 -msgid "There's a new update for Pandora FMS" +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../include/functions_events.php:796 +msgid "V." msgstr "" -#: ../../extensions/update_manager/main.php:167 -msgid "Id" +#: ../../enterprise/operation/agentes/policy_view.php:62 +#: ../../enterprise/godmode/policies/policy_agents.php:447 +msgid "Policy applied" msgstr "" -#: ../../extensions/update_manager/main.php:179 -msgid "Overwrite local changes" +#: ../../enterprise/operation/agentes/policy_view.php:65 +msgid "Policy outdate" msgstr "" -#: ../../extensions/update_manager/main.php:198 -msgid "Offline packages loader" +#: ../../enterprise/operation/agentes/policy_view.php:130 +#: ../../enterprise/operation/agentes/policy_view.php:137 +msgid "Toggle the collection table" msgstr "" -#: ../../extensions/update_manager/main.php:209 -msgid "Your system version number is" +#: ../../enterprise/operation/agentes/policy_view.php:132 +#: ../../enterprise/operation/agentes/collection_view.php:60 +#: ../../enterprise/godmode/agentes/collection_manager.php:124 +msgid "Dir" msgstr "" -#: ../../extensions/update_manager/load_updatemanager.php:34 -msgid "Keygen file does not exists" +#: ../../enterprise/operation/agentes/policy_view.php:133 +msgid "Descripttion" msgstr "" -#: ../../extensions/update_manager/load_updatemanager.php:41 -msgid "Keygen file is not executable" +#: ../../enterprise/operation/agentes/policy_view.php:138 +msgid "Show Collection" msgstr "" -#: ../../extensions/insert_data.php:54 -msgid "Insert data" +#: ../../enterprise/operation/agentes/policy_view.php:154 +#: ../../enterprise/operation/agentes/collection_view.php:86 +#: ../../enterprise/godmode/agentes/collection_manager.php:102 +#: ../../enterprise/godmode/agentes/collection_manager.php:153 +msgid "Show files" msgstr "" -#: ../../extensions/insert_data.php:83 -msgid "You haven't privileges for insert data in the agent." +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/collection_view.php:94 +#: ../../enterprise/godmode/agentes/collection_manager.php:110 +#: ../../enterprise/godmode/agentes/collection_manager.php:167 +#: ../../enterprise/godmode/policies/policy_collections.php:157 +#: ../../enterprise/godmode/policies/policy_collections.php:208 +msgid "Outdate" msgstr "" -#: ../../extensions/insert_data.php:124 -#, php-format -msgid "Can't save agent (%s), module (%s) data xml." +#: ../../enterprise/operation/agentes/policy_view.php:192 +#: ../../enterprise/operation/agentes/policy_view.php:201 +msgid "Toggle the alert table" msgstr "" -#: ../../extensions/insert_data.php:131 -#, php-format -msgid "Save agent (%s), module (%s) data xml." +#: ../../enterprise/operation/agentes/policy_view.php:202 +msgid "Show Alert" msgstr "" -#: ../../extensions/insert_data.php:140 -msgid "" -"Please check that the directory \"/var/spool/pandora/data_in\" 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." +#: ../../enterprise/operation/agentes/policy_view.php:265 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:862 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1528 +#: ../../enterprise/godmode/alerts/alert_events_list.php:566 +#: ../../include/functions_ui.php:795 ../../mobile/operation/alerts.php:239 +#: ../../godmode/alerts/alert_list.list.php:578 +#: ../../extensions/agents_alerts.php:298 +msgid "times" msgstr "" -#: ../../extensions/insert_data.php:153 -#: ../../operation/events/events_list.php:215 -#: ../../operation/agentes/exportdata.php:339 -#: ../../godmode/massive/massive_edit_agents.php:241 -#: ../../godmode/agentes/module_manager_editor_prediction.php:101 -#: ../../godmode/agentes/agent_manager.php:193 -#: ../../godmode/alerts/alert_list.list.php:64 -#: ../../godmode/alerts/alert_list.builder.php:52 -#: ../../godmode/gis_maps/configure_gis_map.php:419 -#: ../../godmode/reporting/reporting_builder.item_editor.php:444 -#: ../../enterprise/extensions/dict.php:79 -#: ../../enterprise/operation/metaconsole/eventview.php:351 -#: ../../enterprise/operation/inventory/inventory.php:139 -#: ../../enterprise/godmode/services/manage_services.edit_element.php:34 -#: ../../enterprise/include/functions_networkmap_enterprise.php:169 -#: ../../enterprise/include/functions_networkmap_enterprise.php:173 -msgid "Type at least two characters to search" +#: ../../enterprise/operation/agentes/policy_view.php:303 +#: ../../enterprise/operation/agentes/policy_view.php:312 +msgid "Toggle the module table" msgstr "" -#: ../../extensions/insert_data.php:165 -#: ../../operation/agentes/exportdata.php:375 -#: ../../enterprise/operation/reporting/custom_reporting.php:17 -msgid "CSV" +#: ../../enterprise/operation/agentes/policy_view.php:304 +msgid "Relationship" msgstr "" -#: ../../extensions/insert_data.php:174 -#: ../../godmode/reporting/reporting_builder.main.php:32 -#: ../../godmode/reporting/visual_console_builder.data.php:67 -#: ../../godmode/setup/gis_step_2.php:309 -#: ../../enterprise/extensions/dict.php:83 -#: ../../enterprise/godmode/reporting/mysql_builder.php:152 -msgid "Save" +#: ../../enterprise/operation/agentes/policy_view.php:304 +#: ../../enterprise/godmode/policies/policy_agents.php:342 +msgid "R." msgstr "" -#: ../../extensions/insert_data.php:263 -msgid "Insert Data" +#: ../../enterprise/operation/agentes/policy_view.php:313 +msgid "Show Modules" msgstr "" -#: ../../extensions/dbmanager.php:100 -msgid "Database interface" +#: ../../enterprise/operation/agentes/policy_view.php:333 +msgid "(Un-adopted)" msgstr "" -#: ../../extensions/dbmanager.php:114 -msgid "Execute SQL" +#: ../../enterprise/operation/agentes/policy_view.php:337 +msgid "(Adopted)" msgstr "" -#: ../../extensions/dbmanager.php:158 -msgid "DB interface" +#: ../../enterprise/operation/agentes/policy_view.php:343 +msgid "(Un-adopted) (Unlinked)" msgstr "" -#: ../../extensions/extension_uploader.php:28 -msgid "Uploader extension" +#: ../../enterprise/operation/agentes/policy_view.php:347 +msgid "(Adopted) (Unlinked)" msgstr "" -#: ../../extensions/extension_uploader.php:57 -msgid "Success to upload extension" +#: ../../enterprise/operation/agentes/policy_view.php:355 +#: ../../godmode/agentes/module_manager.php:612 +msgid "Non initialized module" msgstr "" -#: ../../extensions/extension_uploader.php:58 -msgid "Fail to upload extension" +#: ../../enterprise/operation/agentes/collection_view.php:47 +#: ../../enterprise/godmode/agentes/collection_manager.php:37 +msgid "This agent have not a remote configuration, please set it." msgstr "" -#: ../../extensions/extension_uploader.php:65 -msgid "Upload extension" +#: ../../enterprise/operation/menu.php:29 +#: ../../enterprise/operation/services/services.list.php:37 +#: ../../enterprise/operation/services/services.service_map.php:75 +#: ../../enterprise/operation/services/services.service_map.php:93 +#: ../../enterprise/operation/services/services.service.php:70 +#: ../../enterprise/include/functions_groups.php:61 +#: ../../enterprise/godmode/menu.php:51 +#: ../../enterprise/godmode/services/services.elements.php:82 +#: ../../enterprise/godmode/services/services.service.php:157 +msgid "Services" msgstr "" -#: ../../extensions/extension_uploader.php:67 -msgid "Upload the extension as a zip file." +#: ../../enterprise/operation/menu.php:45 +msgid "Copy Dashboard" msgstr "" -#: ../../extensions/extension_uploader.php:78 -msgid "Extension uploader" +#: ../../enterprise/operation/menu.php:57 +msgid "Network console" msgstr "" -#: ../../extensions/update_manager.php:151 -msgid "There's a new update for Pandora" +#: ../../enterprise/operation/menu.php:67 +msgid "Custom SQL" msgstr "" -#: ../../extensions/update_manager.php:153 -msgid "More info" +#: ../../enterprise/operation/menu.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:22 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 +#: ../../include/functions_menu.php:426 +msgid "SNMP trap editor" msgstr "" -#: ../../extensions/update_manager.php:170 -msgid "Update manager settings" +#: ../../enterprise/operation/services/services.list.php:44 +msgid "Service deleted successfully" msgstr "" -#: ../../extensions/module_groups.php:39 -msgid "Number fired of alerts" +#: ../../enterprise/operation/services/services.list.php:45 +msgid "Error deleting service" msgstr "" -#: ../../extensions/module_groups.php:46 -#: ../../godmode/massive/massive_enable_disable_alerts.php:141 -#: ../../godmode/massive/massive_delete_alerts.php:141 -#: ../../godmode/massive/massive_add_alerts.php:140 -#: ../../godmode/massive/massive_standby_alerts.php:143 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:104 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:104 -#: ../../enterprise/godmode/policies/policy_alerts.php:434 -msgid "Alert template" +#: ../../enterprise/operation/services/services.list.php:89 +#: ../../enterprise/operation/services/services.service.php:104 +#: ../../include/functions_reports.php:529 +msgid "SLA" msgstr "" -#: ../../extensions/module_groups.php:59 -#: ../../godmode/groups/group_list.php:225 -#: ../../godmode/agentes/fields_manager.php:90 ../../godmode/menu.php:89 -#: ../../godmode/alerts/alert_list.list.php:90 -#: ../../godmode/alerts/alert_list.list.php:348 -#: ../../godmode/alerts/alert_list.builder.php:91 -#: ../../godmode/alerts/configure_alert_compound.php:386 -#: ../../godmode/tag/tag.php:141 +#: ../../enterprise/operation/services/services.list.php:91 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:77 +#: ../../enterprise/meta/include/functions_alerts_meta.php:111 +#: ../../enterprise/meta/include/functions_alerts_meta.php:128 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1184 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1396 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1488 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1571 +#: ../../enterprise/godmode/setup/setup_skins.php:121 +#: ../../enterprise/godmode/agentes/collections.php:222 +#: ../../enterprise/godmode/agentes/inventory_manager.php:225 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:247 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:171 +#: ../../enterprise/godmode/policies/policy_alerts.php:225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:212 +#: ../../enterprise/godmode/alerts/alert_events_list.php:369 #: ../../enterprise/extensions/backup/main.php:63 #: ../../enterprise/extensions/cron/main.php:184 -#: ../../enterprise/godmode/agentes/collections.php:222 -#: ../../enterprise/godmode/agentes/inventory_manager.php:212 -#: ../../enterprise/godmode/alerts/alert_events_list.php:441 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:206 -#: ../../enterprise/godmode/setup/setup_skins.php:122 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:171 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:245 -#: ../../enterprise/godmode/policies/policy_alerts.php:224 -#: ../../include/functions_reporting.php:1152 -#: ../../include/functions_reporting.php:1244 -#: ../../include/functions_filemanager.php:487 +#: ../../include/functions_reporting.php:1699 +#: ../../include/functions_reporting.php:1810 +#: ../../include/functions_reporting.php:1949 +#: ../../include/functions_filemanager.php:498 +#: ../../include/functions_treeview.php:149 +#: ../../godmode/agentes/modificar_agente.php:415 +#: ../../godmode/agentes/fields_manager.php:92 +#: ../../godmode/agentes/planned_downtime.editor.php:527 +#: ../../godmode/menu.php:108 ../../godmode/groups/group_list.php:258 +#: ../../godmode/category/category.php:108 +#: ../../godmode/events/event_responses.list.php:62 +#: ../../godmode/tag/tag.php:164 ../../godmode/alerts/alert_list.list.php:107 +#: ../../godmode/alerts/alert_list.list.php:366 +#: ../../godmode/alerts/alert_list.builder.php:101 +#: ../../extensions/module_groups.php:84 msgid "Actions" msgstr "" -#: ../../extensions/module_groups.php:129 -msgid "Combined table of agent group and module group" +#: ../../enterprise/operation/services/services.list.php:173 +#: ../../enterprise/godmode/services/services.service.php:54 +msgid "Create Service" msgstr "" -#: ../../extensions/module_groups.php:131 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" +#: ../../enterprise/operation/services/services.service_map.php:39 +#: ../../enterprise/operation/services/services.service.php:37 +#: ../../enterprise/godmode/services/services.service.php:96 +#: ../../enterprise/godmode/services/services.service.php:121 +msgid "Not found" msgstr "" -#: ../../extensions/module_groups.php:252 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." +#: ../../enterprise/operation/services/services.service_map.php:66 +#: ../../enterprise/operation/services/services.service.php:61 +msgid "View Service" msgstr "" -#: ../../extensions/module_groups.php:256 -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/services/services.service_map.php:72 +#: ../../enterprise/operation/services/services.service_map.php:110 +#: ../../enterprise/operation/services/services.service_map.php:115 +#: ../../enterprise/operation/services/services.service.php:67 +msgid "Service map" msgstr "" -#: ../../extensions/module_groups.php:260 -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/services/services.service_map.php:76 +msgid "Service Map" msgstr "" -#: ../../extensions/module_groups.php:264 -msgid "" -"Green cell when the module group and agent have all modules in OK status" +#: ../../enterprise/operation/services/services.service.php:154 +msgid "List of elements" msgstr "" -#: ../../extensions/module_groups.php:268 -msgid "" -"Grey cell when the module group and agent have at least one in unknown " -"status and the others in green status" +#: ../../enterprise/include/functions_inventory.php:48 +#: ../../enterprise/include/functions_inventory.php:373 +#: ../../enterprise/include/functions_inventory.php:423 +msgid "No changes found" msgstr "" -#: ../../extensions/module_groups.php:274 -msgid "There are no defined groups or module groups" +#: ../../enterprise/include/functions_inventory.php:94 +msgid "No data found" msgstr "" -#: ../../extensions/module_groups.php:292 -msgid "Modules groups" +#: ../../enterprise/include/functions_inventory.php:388 +#: ../../enterprise/include/functions_inventory.php:451 +msgid "Added" msgstr "" -#: ../../extensions/system_info.php:156 -msgid "Cannot read file" +#: ../../enterprise/include/functions_inventory.php:394 +#: ../../enterprise/include/functions_inventory.php:459 +#: ../../include/functions_filemanager.php:352 +msgid "Deleted" msgstr "" -#: ../../extensions/system_info.php:256 ../../extensions/system_info.php:618 -msgid "System Info" +#: ../../enterprise/include/functions_reporting.php:30 +msgid "Wizard SLA" msgstr "" -#: ../../extensions/system_info.php:259 -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" +#: ../../enterprise/include/functions_reporting.php:33 +msgid "Global" msgstr "" -#: ../../extensions/system_info.php:270 ../../extensions/system_info.php:273 -#: ../../extensions/system_info.php:303 -msgid "Pandora Diagnostic info" +#: ../../enterprise/include/functions_reporting.php:36 +msgid "Advance options" msgstr "" -#: ../../extensions/system_info.php:277 ../../extensions/system_info.php:280 -#: ../../extensions/system_info.php:309 -msgid "System info" +#: ../../enterprise/include/functions_reporting.php:54 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:101 +msgid "List templates" msgstr "" -#: ../../extensions/system_info.php:284 ../../extensions/system_info.php:287 -#: ../../extensions/system_info.php:313 -msgid "Log Info" +#: ../../enterprise/include/functions_reporting.php:60 +msgid "Templates wizard" msgstr "" -#: ../../extensions/system_info.php:290 ../../extensions/system_info.php:291 -msgid "Number lines of log" +#: ../../enterprise/include/functions_reporting.php:76 +#: ../../enterprise/include/functions_reporting.php:2741 +#: ../../enterprise/include/functions_reporting.php:2765 +#: ../../enterprise/include/functions_reporting.php:2819 +#: ../../enterprise/meta/include/functions_alerts_meta.php:107 +#: ../../enterprise/meta/include/functions_alerts_meta.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:196 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:134 +#: ../../godmode/agentes/configurar_agente.php:425 ../../godmode/menu.php:107 +msgid "Templates" msgstr "" -#: ../../extensions/system_info.php:295 -msgid "Generate file" +#: ../../enterprise/include/functions_reporting.php:80 +msgid "Templates Wizard" msgstr "" -#: ../../extensions/system_info.php:333 -msgid "System info file zipped" -msgstr "" - -#: ../../extensions/system_info.php:334 -msgid "File:" -msgstr "" - -#: ../../extensions/system_info.php:335 -msgid "Location:" -msgstr "" - -#: ../../extensions/resource_exportation.php:61 -#: ../../extensions/resource_exportation.php:340 -msgid "Resource exportation" -msgstr "" - -#: ../../extensions/resource_exportation.php:343 -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 "" - -#: ../../extensions/resource_exportation.php:354 -#: ../../enterprise/extensions/cron/functions.php:295 -#: ../../enterprise/extensions/cron/main.php:208 -#: ../../enterprise/extensions/cron/main.php:225 -#: ../../enterprise/dashboard/widgets/reports.php:26 -#: ../../enterprise/dashboard/widgets/reports.php:33 -#: ../../enterprise/include/functions_reporting_pdf.php:2606 -msgid "Report" -msgstr "" - -#: ../../extensions/resource_exportation.php:356 -#: ../../extensions/resource_exportation.php:359 -#: ../../operation/agentes/exportdata.php:385 -#: ../../godmode/modules/manage_network_templates.php:197 -#: ../../enterprise/extensions/resource_exportation/functions.php:19 -msgid "Export" -msgstr "" - -#: ../../extensions/resource_exportation.php:357 ../../operation/menu.php:105 -#: ../../operation/visual_console/render_view.php:77 -#: ../../operation/visual_console/index.php:22 -msgid "Visual console" -msgstr "" - -#: ../../extensions/vnc_view.php:25 -msgid "VNC view" -msgstr "" - -#: ../../extensions/plugin_registration.php:26 -msgid "Plugin registration" -msgstr "" - -#: ../../extensions/plugin_registration.php:29 +#: ../../enterprise/include/functions_reporting.php:1189 #, php-format -msgid "" -"This extension makes registration of server plugins more easy. Here you can " -"upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please " -"refer to documentation on how to obtain and use Pandora FMS Server Plugins." -"

You can get more plugins in our Public Resource " -"Library" -msgstr "" - -#: ../../extensions/plugin_registration.php:71 -msgid "Cannot load INI file" -msgstr "" - -#: ../../extensions/plugin_registration.php:88 -msgid "Plugin exec not found. Aborting!" -msgstr "" - -#: ../../extensions/plugin_registration.php:100 -msgid "Plugin already registered. Aborting!" -msgstr "" - -#: ../../extensions/plugin_registration.php:148 -msgid "Module plugin registered" -msgstr "" - -#: ../../extensions/plugin_registration.php:151 -#: ../../godmode/modules/manage_network_components_form_plugin.php:31 -#: ../../godmode/agentes/module_manager_editor_plugin.php:42 -msgid "Plugin" -msgstr "" - -#: ../../extensions/plugin_registration.php:151 -msgid "Registered successfully" -msgstr "" - -#: ../../extensions/plugin_registration.php:156 -msgid "Register plugin" -msgstr "" - -#: ../../operation/search_maps.php:55 ../../operation/search_reports.php:62 -#: ../../operation/search_alerts.php:200 ../../operation/search_users.php:171 -#: ../../operation/search_graphs.php:53 ../../operation/search_modules.php:154 -#: ../../operation/search_agents.php:207 -msgid "Zero results found" -msgstr "" - -#: ../../operation/search_maps.php:66 -#: ../../operation/visual_console/index.php:36 -msgid "Elements" -msgstr "" - -#: ../../operation/incidents/incident.php:28 -#: ../../operation/integria_incidents/incident.php:71 -msgid "Incident management" -msgstr "" - -#: ../../operation/incidents/incident.php:60 -#: ../../operation/incidents/incident_detail.php:83 -#: ../../operation/incidents/incident_detail.php:107 -#: ../../operation/events/events.php:282 -#: ../../operation/integria_incidents/incident_detail.php:87 -#: ../../operation/integria_incidents/incident_detail.php:105 -#: ../../operation/messages/message.php:44 -#: ../../operation/snmpconsole/snmp_view.php:67 -#: ../../operation/reporting/graph_viewer.php:34 -#: ../../operation/reporting/graph_viewer.php:41 -#: ../../godmode/massive/massive_delete_action_alerts.php:134 -#: ../../godmode/massive/massive_delete_agents.php:59 -#: ../../godmode/massive/massive_delete_alerts.php:97 -#: ../../godmode/massive/massive_delete_modules.php:74 -#: ../../godmode/modules/manage_network_components.php:227 -#: ../../godmode/modules/manage_nc_groups.php:87 -#: ../../godmode/users/user_list.php:118 ../../godmode/users/user_list.php:129 -#: ../../godmode/users/profile_list.php:68 -#: ../../godmode/users/configure_user.php:319 -#: ../../godmode/agentes/planned_downtime.php:90 -#: ../../godmode/alerts/alert_actions.php:260 -#: ../../godmode/alerts/alert_templates.php:185 -#: ../../godmode/alerts/alert_list.php:130 -#: ../../godmode/alerts/alert_list.php:170 -#: ../../godmode/alerts/alert_commands.php:135 -#: ../../godmode/alerts/alert_compounds.php:78 -#: ../../godmode/snmpconsole/snmp_filters.php:76 -#: ../../godmode/snmpconsole/snmp_alert.php:145 -#: ../../godmode/reporting/graphs.php:43 ../../godmode/reporting/graphs.php:50 -#: ../../godmode/reporting/map_builder.php:30 -#: ../../godmode/reporting/reporting_builder.php:51 -#: ../../godmode/setup/gis.php:57 ../../godmode/setup/links.php:69 -#: ../../godmode/setup/news.php:71 -#: ../../enterprise/godmode/modules/local_components.php:159 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:274 -#: ../../enterprise/godmode/alerts/alert_events_list.php:213 -#: ../../enterprise/godmode/alerts/alert_events_list.php:254 -#: ../../enterprise/godmode/policies/policies.php:145 -#: ../../enterprise/dashboard/main_dashboard.php:50 -msgid "Successfully deleted" -msgstr "" - -#: ../../operation/incidents/incident.php:61 -#: ../../operation/incidents/incident_detail.php:84 -#: ../../operation/incidents/incident_detail.php:108 -#: ../../operation/events/events.php:283 ../../operation/events/events.php:423 -#: ../../operation/integria_incidents/incident_detail.php:88 -#: ../../operation/integria_incidents/incident_detail.php:106 -#: ../../operation/messages/message.php:45 -#: ../../operation/snmpconsole/snmp_view.php:68 -#: ../../godmode/massive/massive_delete_action_alerts.php:70 -#: ../../godmode/massive/massive_delete_action_alerts.php:94 -#: ../../godmode/massive/massive_delete_action_alerts.php:134 -#: ../../godmode/massive/massive_delete_action_alerts.php:138 -#: ../../godmode/massive/massive_delete_alerts.php:98 -#: ../../godmode/modules/manage_network_components.php:228 -#: ../../godmode/users/configure_user.php:320 -#: ../../godmode/alerts/alert_actions.php:261 -#: ../../godmode/alerts/alert_templates.php:186 -#: ../../godmode/alerts/alert_list.php:130 -#: ../../godmode/alerts/alert_list.php:170 -#: ../../godmode/alerts/alert_commands.php:136 -#: ../../godmode/alerts/alert_compounds.php:79 -#: ../../godmode/reporting/reporting_builder.php:52 -#: ../../godmode/setup/gis.php:55 ../../godmode/setup/news.php:72 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:131 -#: ../../enterprise/operation/metaconsole/eventview.php:1010 -#: ../../enterprise/godmode/modules/local_components.php:160 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:275 -#: ../../enterprise/godmode/alerts/alert_events_list.php:214 -#: ../../enterprise/godmode/alerts/alert_events_list.php:254 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:97 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:142 -#: ../../enterprise/godmode/policies/policies.php:146 -#: ../../enterprise/godmode/policies/policy_agents.php:91 -#: ../../enterprise/godmode/policies/policy_modules.php:509 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:95 -#: ../../enterprise/godmode/policies/policy_alerts.php:149 -#: ../../enterprise/godmode/policies/policy_alerts.php:190 -#: ../../enterprise/godmode/policies/policy_collections.php:68 -#: ../../enterprise/dashboard/main_dashboard.php:51 -msgid "Could not be deleted" -msgstr "" - -#: ../../operation/incidents/incident.php:66 -msgid "Successfully reclaimed ownership" -msgstr "" - -#: ../../operation/incidents/incident.php:67 -msgid "Could not reclame ownership" -msgstr "" - -#: ../../operation/incidents/incident.php:101 -#: ../../operation/snmpconsole/snmp_view.php:86 -#: ../../godmode/massive/massive_edit_modules.php:186 -#: ../../godmode/modules/manage_nc_groups.php:71 -#: ../../godmode/users/profile_list.php:113 -#: ../../godmode/agentes/configurar_agente.php:528 -#: ../../godmode/agentes/planned_downtime.php:163 -#: ../../godmode/alerts/alert_actions.php:203 -#: ../../godmode/alerts/configure_alert_template.php:386 -#: ../../godmode/alerts/alert_templates.php:132 -#: ../../godmode/alerts/configure_alert_compound.php:300 -#: ../../godmode/alerts/alert_commands.php:110 -#: ../../godmode/alerts/alert_compounds.php:70 -#: ../../godmode/snmpconsole/snmp_filters.php:54 -#: ../../godmode/snmpconsole/snmp_alert.php:90 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:58 ../../godmode/setup/news.php:61 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:60 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:146 -#: ../../enterprise/godmode/alerts/alert_events_list.php:160 -#: ../../enterprise/godmode/alerts/alert_events.php:341 -#: ../../enterprise/godmode/policies/policy_modules.php:484 -msgid "Successfully updated" -msgstr "" - -#: ../../operation/incidents/incident.php:102 -#: ../../operation/snmpconsole/snmp_view.php:87 -#: ../../godmode/massive/massive_edit_modules.php:187 -#: ../../godmode/modules/manage_network_components.php:211 -#: ../../godmode/agentes/planned_downtime.php:155 -#: ../../godmode/alerts/alert_actions.php:204 -#: ../../godmode/alerts/configure_alert_template.php:387 -#: ../../godmode/alerts/alert_templates.php:133 -#: ../../godmode/alerts/configure_alert_compound.php:301 -#: ../../godmode/alerts/alert_commands.php:111 -#: ../../godmode/alerts/alert_compounds.php:71 ../../godmode/setup/gis.php:41 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:116 -#: ../../enterprise/godmode/modules/local_components.php:148 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:61 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:147 -#: ../../enterprise/godmode/alerts/alert_events_list.php:161 -#: ../../enterprise/godmode/alerts/alert_events.php:342 -#: ../../enterprise/godmode/policies/policies.php:130 -#: ../../enterprise/godmode/policies/policy_modules.php:485 -msgid "Could not be updated" -msgstr "" - -#: ../../operation/incidents/incident.php:128 -msgid "Error creating incident" -msgstr "" - -#: ../../operation/incidents/incident.php:189 -msgid "All incidents" -msgstr "" - -#: ../../operation/incidents/incident.php:193 -#: ../../operation/agentes/status_monitor.php:196 -#: ../../godmode/agentes/modificar_agente.php:121 -#: ../../enterprise/dashboard/dashboard_replicate.php:118 -#: ../../enterprise/dashboard/dashboard_replicate.php:128 -#: ../../enterprise/dashboard/main_dashboard.php:169 -#: ../../enterprise/include/functions_networkmap_enterprise.php:234 -msgid "Show" -msgstr "" - -#: ../../operation/incidents/incident.php:201 -#: ../../operation/incidents/incident.php:267 -#: ../../operation/incidents/incident_detail.php:288 -#: ../../operation/integria_incidents/incident.incident.php:95 -#: ../../operation/integria_incidents/incident.list.php:98 -#: ../../operation/integria_incidents/incident_detail.php:278 -#: ../../godmode/alerts/configure_alert_template.php:586 -#: ../../godmode/alerts/alert_templates.php:49 -#: ../../godmode/alerts/alert_list.list.php:96 -#: ../../godmode/snmpconsole/snmp_alert.php:251 -#: ../../enterprise/godmode/alerts/alert_events.php:502 -#: ../../include/functions_reporting.php:1101 -msgid "Priority" +msgid "Graph agents(%s) - %s" msgstr "" -#: ../../operation/incidents/incident.php:211 -msgid "All priorities" +#: ../../enterprise/include/functions_reporting.php:1300 +#, php-format +msgid "%s - agents (%s) - %s" msgstr "" -#: ../../operation/incidents/incident.php:215 -msgid "All users" +#: ../../enterprise/include/functions_reporting.php:1560 +#, php-format +msgid "%s - %s" msgstr "" -#: ../../operation/incidents/incident.php:231 -msgid "No incidents match your search filter" +#: ../../enterprise/include/functions_reporting.php:2773 +#: ../../enterprise/include/functions_reporting.php:2823 +msgid "Template editor" msgstr "" -#: ../../operation/incidents/incident.php:264 -#: ../../operation/integria_incidents/incident.list.php:93 -#: ../../godmode/groups/modu_group_list.php:172 -#: ../../godmode/groups/group_list.php:222 -#: ../../godmode/modules/module_list.php:58 -#: ../../godmode/agentes/agent_manager.php:153 -#: ../../godmode/alerts/alert_commands.php:143 -#: ../../godmode/setup/os.list.php:31 -msgid "ID" -msgstr "" - -#: ../../operation/incidents/incident.php:266 -#: ../../operation/incidents/incident_detail.php:233 -#: ../../operation/integria_incidents/incident.list.php:95 -#: ../../operation/integria_incidents/incident_detail.php:221 -#: ../../godmode/servers/manage_recontask_form.php:215 -#: ../../godmode/servers/manage_recontask.php:217 -msgid "Incident" +#: ../../enterprise/include/functions_reporting.php:2837 +msgid "Get PDF file" msgstr "" -#: ../../operation/incidents/incident.php:270 -#: ../../operation/incidents/incident_detail.php:262 -#: ../../operation/integria_incidents/incident.incident.php:99 -#: ../../operation/integria_incidents/incident_detail.php:251 -#: ../../godmode/massive/massive_copy_modules.php:91 -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:205 -#: ../../enterprise/operation/metaconsole/componentmanager.php:247 -#: ../../enterprise/operation/metaconsole/usermanager.php:141 -#: ../../enterprise/operation/metaconsole/alertmanager.php:249 -msgid "Source" +#: ../../enterprise/include/functions_license.php:109 +#: ../../enterprise/include/functions_license.php:117 +msgid "Invalid license, please check it." +msgstr "" + +#: ../../enterprise/include/functions_license.php:129 +#: ../../extensions/update_manager.php:59 +msgid "Expires" +msgstr "" + +#: ../../enterprise/include/functions_license.php:131 +#: ../../extensions/update_manager.php:61 +msgid "Platform Limit" +msgstr "" + +#: ../../enterprise/include/functions_license.php:133 +#: ../../extensions/update_manager.php:63 +msgid "Current Platform Count" +msgstr "" + +#: ../../enterprise/include/functions_license.php:136 +#: ../../extensions/update_manager.php:66 +msgid "License Mode" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:156 +msgid "Generated" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:171 +msgid "Simple Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:203 +msgid "Projection Graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:235 +#: ../../enterprise/include/functions_reporting_pdf.php:431 +#: ../../include/functions_reporting.php:3066 +#: ../../include/functions_reports.php:535 +msgid "Prediction date" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:323 +#: ../../enterprise/include/functions_reporting_csv.php:413 +#: ../../enterprise/include/functions_reporting_csv.php:444 +#: ../../enterprise/include/functions_reporting_csv.php:475 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting_csv.php:537 +#: ../../enterprise/include/functions_reporting_csv.php:561 +#: ../../enterprise/include/functions_reporting_csv.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:673 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:755 +#: ../../enterprise/include/functions_reporting_csv.php:782 +#: ../../enterprise/include/functions_reporting_csv.php:896 +#: ../../enterprise/include/functions_reporting_csv.php:1040 +#: ../../enterprise/include/functions_reporting_csv.php:1205 +#: ../../enterprise/dashboard/widgets/custom_graph.php:32 +#: ../../enterprise/dashboard/widgets/single_graph.php:55 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1018 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1024 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:88 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:89 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:113 +#: ../../include/functions_visual_map_editor.php:218 +#: ../../godmode/reporting/reporting_builder.list_items.php:259 +#: ../../godmode/reporting/visual_console_builder.wizard.php:106 +#: ../../godmode/reporting/graph_builder.main.php:133 +#: ../../godmode/reporting/visual_console_builder.elements.php:61 +#: ../../godmode/reporting/reporting_builder.item_editor.php:505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:527 +#: ../../godmode/agentes/module_manager_editor_prediction.php:142 +msgid "Period" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:324 +#: ../../enterprise/include/functions_reporting_pdf.php:1484 +#: ../../enterprise/meta/include/functions_wizard_meta.php:423 +#: ../../enterprise/meta/include/functions_wizard_meta.php:430 +#: ../../enterprise/meta/include/functions_wizard_meta.php:505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:677 +#: ../../enterprise/meta/include/functions_wizard_meta.php:684 +#: ../../enterprise/meta/include/functions_wizard_meta.php:873 +#: ../../enterprise/meta/include/functions_wizard_meta.php:880 +#: ../../enterprise/meta/include/functions_wizard_meta.php:949 +#: ../../enterprise/meta/include/functions_wizard_meta.php:956 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1050 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1057 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1047 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1318 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:146 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:187 +#: ../../include/functions_ui.php:1713 +#: ../../include/functions_reporting.php:4902 +#: ../../include/functions_graph.php:675 ../../include/functions_graph.php:676 +#: ../../include/functions_graph.php:677 ../../include/functions_graph.php:680 +#: ../../include/functions_graph.php:1180 +#: ../../include/functions_graph.php:2809 +#: ../../include/functions_graph.php:2814 +#: ../../include/functions_graph.php:3349 +#: ../../include/functions_graph.php:3350 +#: ../../include/functions_graph.php:3351 +#: ../../godmode/reporting/reporting_builder.item_editor.php:557 +#: ../../godmode/reporting/reporting_builder.item_editor.php:960 +msgid "Max" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:324 +#: ../../enterprise/include/functions_reporting_pdf.php:1488 +#: ../../enterprise/meta/include/functions_wizard_meta.php:421 +#: ../../enterprise/meta/include/functions_wizard_meta.php:428 +#: ../../enterprise/meta/include/functions_wizard_meta.php:503 +#: ../../enterprise/meta/include/functions_wizard_meta.php:510 +#: ../../enterprise/meta/include/functions_wizard_meta.php:675 +#: ../../enterprise/meta/include/functions_wizard_meta.php:682 +#: ../../enterprise/meta/include/functions_wizard_meta.php:871 +#: ../../enterprise/meta/include/functions_wizard_meta.php:878 +#: ../../enterprise/meta/include/functions_wizard_meta.php:947 +#: ../../enterprise/meta/include/functions_wizard_meta.php:954 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1048 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1055 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1049 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1320 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:145 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:189 +#: ../../include/functions_ui.php:1713 +#: ../../include/functions_reporting.php:4905 +#: ../../include/functions_graph.php:675 ../../include/functions_graph.php:676 +#: ../../include/functions_graph.php:677 ../../include/functions_graph.php:680 +#: ../../include/functions_graph.php:1180 +#: ../../include/functions_graph.php:2809 +#: ../../include/functions_graph.php:2814 +#: ../../include/functions_graph.php:3349 +#: ../../include/functions_graph.php:3350 +#: ../../include/functions_graph.php:3351 +#: ../../godmode/reporting/reporting_builder.item_editor.php:559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:962 +msgid "Min" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:324 +msgid "% Limit" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:371 +#: ../../enterprise/include/functions_services.php:962 +#: ../../enterprise/include/functions_reporting_pdf.php:2983 +#: ../../enterprise/include/functions_reporting_pdf.php:3056 +#: ../../enterprise/dashboard/widgets/maps_status.php:72 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1339 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:214 +#: ../../enterprise/extensions/backup/main.php:108 +#: ../../include/functions_reporting.php:3412 +#: ../../include/functions_reporting.php:3489 +#: ../../include/functions_db.php:1074 +#: ../../godmode/reporting/reporting_builder.item_editor.php:984 +msgid "OK" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:375 +#: ../../enterprise/include/functions_reporting_pdf.php:2976 +#: ../../enterprise/include/functions_reporting_pdf.php:3059 +#: ../../include/functions_reporting.php:3417 +#: ../../include/functions_reporting.php:3492 +msgid "Fail" msgstr "" -#: ../../operation/incidents/incident.php:271 -#: ../../operation/incidents/incident_detail.php:246 -#: ../../operation/integria_incidents/incident.list.php:102 -#: ../../operation/integria_incidents/incident_detail.php:234 -msgid "Owner" +#: ../../enterprise/include/functions_reporting_csv.php:413 +#: ../../enterprise/include/functions_reporting_csv.php:444 +#: ../../enterprise/include/functions_reporting_csv.php:475 +#: ../../enterprise/include/functions_reporting_csv.php:506 +#: ../../enterprise/include/functions_reporting_csv.php:537 +#: ../../enterprise/include/functions_reporting_csv.php:642 +#: ../../enterprise/include/functions_reporting_csv.php:673 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:724 +#: ../../enterprise/include/functions_reporting_csv.php:755 +msgid "Report type" msgstr "" -#: ../../operation/incidents/incident.php:322 -msgid "Delete incidents" +#: ../../enterprise/include/functions_reporting_csv.php:413 +msgid "% OK" msgstr "" -#: ../../operation/incidents/incident.php:326 -msgid "Become owner" +#: ../../enterprise/include/functions_reporting_csv.php:413 +msgid "% Wrong" msgstr "" -#: ../../operation/incidents/incident.php:336 -#: ../../operation/incidents/incident_detail.php:228 -#: ../../operation/integria_incidents/incident_detail.php:216 -msgid "Create incident" +#: ../../enterprise/include/functions_reporting_csv.php:414 +msgid "Monitor Report" msgstr "" -#: ../../operation/incidents/incident_statistics.php:31 -#: ../../operation/events/event_statistics.php:32 -#: ../../operation/integria_incidents/incident_statistics.php:29 -#: ../../operation/menu.php:203 ../../operation/menu.php:218 -msgid "Statistics" +#: ../../enterprise/include/functions_reporting_csv.php:445 +msgid "AVG. Value" msgstr "" -#: ../../operation/incidents/incident_statistics.php:34 -#: ../../operation/integria_incidents/incident_statistics.php:32 -msgid "Incidents by status" +#: ../../enterprise/include/functions_reporting_csv.php:476 +msgid "MAX Value" msgstr "" -#: ../../operation/incidents/incident_statistics.php:37 -#: ../../operation/integria_incidents/incident_statistics.php:35 -msgid "Incidents by priority" +#: ../../enterprise/include/functions_reporting_csv.php:507 +msgid "MIN Value" msgstr "" -#: ../../operation/incidents/incident_statistics.php:40 -#: ../../operation/integria_incidents/incident_statistics.php:38 -msgid "Incidents by group" +#: ../../enterprise/include/functions_reporting_csv.php:538 +#: ../../include/functions_reporting.php:3631 +#: ../../include/functions_reporting.php:4520 +#: ../../include/functions_reporting.php:4560 +#: ../../include/functions_reports.php:552 +msgid "Summatory" msgstr "" -#: ../../operation/incidents/incident_statistics.php:43 -#: ../../operation/integria_incidents/incident_statistics.php:41 -msgid "Incidents by user" +#: ../../enterprise/include/functions_reporting_csv.php:613 +#: ../../include/functions_reporting.php:3841 +msgid "Illegal query" msgstr "" -#: ../../operation/incidents/incident_statistics.php:46 -#: ../../operation/integria_incidents/incident_statistics.php:44 -msgid "Incidents by source" +#: ../../enterprise/include/functions_reporting_csv.php:724 +#: ../../enterprise/dashboard/widgets/tactical.php:154 +#: ../../include/functions_reporting.php:1209 ../../godmode/db/db_main.php:99 +msgid "Total agents" msgstr "" -#: ../../operation/incidents/incident_detail.php:65 -#: ../../operation/integria_incidents/incident_detail.php:69 -#: ../../godmode/massive/massive_add_action_alerts.php:125 -#: ../../godmode/massive/massive_add_alerts.php:88 -#: ../../godmode/alerts/alert_list.php:154 -#: ../../enterprise/godmode/alerts/alert_events_list.php:238 -#: ../../enterprise/godmode/policies/policy_agents.php:144 -msgid "Successfully added" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Uknown agents" msgstr "" -#: ../../operation/incidents/incident_detail.php:66 -#: ../../operation/integria_incidents/incident_detail.php:70 -#: ../../godmode/massive/massive_add_action_alerts.php:71 -#: ../../godmode/massive/massive_add_action_alerts.php:105 -#: ../../godmode/massive/massive_add_action_alerts.php:125 -#: ../../godmode/massive/massive_add_action_alerts.php:129 -#: ../../godmode/massive/massive_add_alerts.php:89 -#: ../../godmode/alerts/alert_list.php:154 -#: ../../enterprise/godmode/alerts/alert_events_list.php:238 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:122 -#: ../../enterprise/godmode/policies/policy_agents.php:145 -#: ../../enterprise/godmode/policies/policy_alerts.php:172 -msgid "Could not be added" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:113 -#: ../../operation/integria_incidents/incident.php:122 -#: ../../operation/integria_incidents/incident_detail.php:111 -msgid "No description available" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:153 -#: ../../operation/integria_incidents/incident_detail.php:143 -msgid "File could not be saved due to database error" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:166 -#: ../../operation/integria_incidents/incident_detail.php:156 -msgid "File uploaded" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:167 -#: ../../operation/integria_incidents/incident_detail.php:157 -msgid "File could not be uploaded" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:224 -#: ../../operation/integria_incidents/incident.php:54 -#: ../../operation/integria_incidents/incident_detail.php:212 -msgid "Incident details" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:243 -#: ../../operation/integria_incidents/incident_detail.php:231 -msgid "Opened at" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:244 -#: ../../operation/servers/view_server_detail.php:92 -#: ../../operation/integria_incidents/incident_detail.php:232 -msgid "Updated at" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:296 -#: ../../operation/integria_incidents/incident.incident.php:96 -#: ../../operation/integria_incidents/incident.list.php:101 -#: ../../operation/integria_incidents/incident_detail.php:286 -msgid "Creator" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:315 -#: ../../operation/integria_incidents/incident_detail.php:305 -msgid "Update incident" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:317 -#: ../../operation/integria_incidents/incident.incident.php:129 -#: ../../operation/integria_incidents/incident_detail.php:307 -#: ../../godmode/massive/massive_add_profiles.php:116 -#: ../../godmode/groups/configure_group.php:135 -#: ../../godmode/groups/configure_modu_group.php:76 -#: ../../godmode/modules/manage_network_components.php:407 -#: ../../godmode/modules/manage_nc_groups_form.php:62 -#: ../../godmode/modules/manage_network_templates.php:217 -#: ../../godmode/modules/manage_network_components_form_wmi.php:220 -#: ../../godmode/modules/manage_nc_groups.php:196 -#: ../../godmode/modules/manage_network_components_form.php:159 -#: ../../godmode/modules/manage_network_templates_form.php:142 -#: ../../godmode/servers/manage_recontask.php:300 -#: ../../godmode/servers/plugin.php:132 -#: ../../godmode/servers/recon_script.php:99 -#: ../../godmode/users/profile_list.php:237 -#: ../../godmode/users/configure_user.php:421 -#: ../../godmode/agentes/module_manager.php:71 -#: ../../godmode/agentes/configure_field.php:59 -#: ../../godmode/agentes/agent_manager.php:355 -#: ../../godmode/agentes/planned_downtime.php:424 -#: ../../godmode/agentes/module_manager_editor.php:373 -#: ../../godmode/alerts/configure_alert_command.php:69 -#: ../../godmode/alerts/alert_actions.php:318 -#: ../../godmode/alerts/configure_alert_action.php:144 -#: ../../godmode/alerts/alert_templates.php:289 -#: ../../godmode/alerts/alert_list.list.php:568 -#: ../../godmode/alerts/alert_list.php:265 -#: ../../godmode/alerts/alert_commands.php:187 -#: ../../godmode/alerts/alert_compounds.php:253 -#: ../../godmode/gis_maps/index.php:125 -#: ../../godmode/snmpconsole/snmp_filters.php:105 -#: ../../godmode/snmpconsole/snmp_filters.php:151 -#: ../../godmode/snmpconsole/snmp_alert.php:260 -#: ../../godmode/snmpconsole/snmp_alert.php:347 -#: ../../godmode/reporting/visual_console_builder.editor.php:203 -#: ../../godmode/reporting/graph_builder.main.php:175 -#: ../../godmode/reporting/map_builder.php:176 -#: ../../godmode/tag/edit_tag.php:162 ../../godmode/setup/os.php:49 -#: ../../godmode/setup/os.php:73 ../../godmode/setup/gis.php:91 -#: ../../godmode/setup/links.php:115 ../../godmode/setup/news.php:125 -#: ../../enterprise/extensions/backup/main.php:161 -#: ../../enterprise/extensions/cron/main.php:285 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:104 -#: ../../enterprise/godmode/modules/configure_local_component.php:88 -#: ../../enterprise/godmode/modules/local_components.php:313 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:220 -#: ../../enterprise/godmode/servers/manage_export.php:108 -#: ../../enterprise/godmode/servers/manage_export.php:140 -#: ../../enterprise/godmode/agentes/collections.editor.php:87 -#: ../../enterprise/godmode/agentes/collections.php:207 -#: ../../enterprise/godmode/agentes/collections.data.php:51 -#: ../../enterprise/godmode/agentes/collections.data.php:111 -#: ../../enterprise/godmode/agentes/collections.data.php:125 -#: ../../enterprise/godmode/agentes/collections.data.php:139 -#: ../../enterprise/godmode/agentes/collections.data.php:160 -#: ../../enterprise/godmode/agentes/collections.data.php:198 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:479 -#: ../../enterprise/godmode/alerts/alert_events_list.php:679 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:239 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:245 -#: ../../enterprise/godmode/services/manage_services.setup.php:59 -#: ../../enterprise/godmode/services/manage_services.edit_element.php:68 -#: ../../enterprise/godmode/services/manage_services.main.php:83 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:94 -#: ../../enterprise/godmode/setup/edit_skin.php:285 -#: ../../enterprise/godmode/policies/policies.php:351 -#: ../../enterprise/godmode/policies/policy_modules.php:220 -#: ../../enterprise/godmode/policies/configure_policy.php:80 -#: ../../enterprise/include/functions_networkmap_enterprise.php:203 -#: ../../include/functions_filemanager.php:520 -#: ../../include/functions_filemanager.php:549 -#: ../../include/functions_filemanager.php:781 -msgid "Create" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:319 -#: ../../operation/integria_incidents/incident_detail.php:309 -msgid "Submit" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:333 -#: ../../operation/incidents/incident_detail.php:336 -#: ../../operation/integria_incidents/incident_detail.php:323 -#: ../../operation/integria_incidents/incident_detail.php:326 -msgid "Add note" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:339 -#: ../../operation/integria_incidents/incident.workunits.php:35 -#: ../../operation/integria_incidents/incident.files.php:29 -#: ../../operation/integria_incidents/incident_detail.php:329 -#: ../../godmode/massive/massive_add_action_alerts.php:211 -#: ../../godmode/massive/massive_add_alerts.php:151 -#: ../../godmode/modules/manage_network_templates_form.php:283 -#: ../../godmode/servers/manage_recontask_form.php:277 -#: ../../godmode/servers/plugin.php:275 -#: ../../godmode/servers/recon_script.php:212 -#: ../../godmode/users/configure_profile.php:144 -#: ../../godmode/agentes/planned_downtime.php:245 -#: ../../godmode/agentes/planned_downtime.php:297 -#: ../../godmode/alerts/alert_list.list.php:484 -#: ../../godmode/alerts/configure_alert_compound.php:399 -#: ../../godmode/reporting/graph_builder.graph_editor.php:142 -#: ../../godmode/reporting/visual_console_builder.wizard.php:76 -#: ../../godmode/setup/links.php:156 ../../godmode/setup/news.php:171 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 -#: ../../enterprise/godmode/servers/manage_export_form.php:120 -#: ../../enterprise/godmode/agentes/collection_manager.php:90 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:136 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 -#: ../../enterprise/godmode/alerts/alert_events_list.php:628 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:141 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:157 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:239 -#: ../../enterprise/godmode/setup/setup_acl.php:84 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:202 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:301 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:283 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:337 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:218 -#: ../../enterprise/godmode/policies/policy_alerts.php:405 -#: ../../enterprise/godmode/policies/policy_alerts.php:447 -#: ../../enterprise/godmode/policies/policy_collections.php:188 -#: ../../enterprise/dashboard/main_dashboard.php:394 -msgid "Add" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:354 -#: ../../operation/integria_incidents/incident_detail.php:344 -#: ../../godmode/setup/news.php:142 -msgid "Author" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:360 -#: ../../operation/incidents/incident_detail.php:407 -#: ../../operation/events/events_list.php:518 -#: ../../operation/events/events.php:406 -#: ../../operation/integria_incidents/incident_detail.php:350 -#: ../../operation/integria_incidents/incident_detail.php:391 -#: ../../operation/messages/message.php:259 -#: ../../operation/snmpconsole/snmp_view.php:505 -#: ../../operation/snmpconsole/snmp_view.php:551 -#: ../../godmode/massive/massive_add_profiles.php:114 -#: ../../godmode/massive/massive_delete_action_alerts.php:208 -#: ../../godmode/massive/massive_enable_disable_alerts.php:160 -#: ../../godmode/massive/massive_delete_agents.php:116 -#: ../../godmode/massive/massive_add_action_alerts.php:209 -#: ../../godmode/massive/massive_edit_modules.php:371 -#: ../../godmode/massive/massive_operations.php:165 -#: ../../godmode/massive/massive_operations.php:173 -#: ../../godmode/massive/massive_operations.php:181 -#: ../../godmode/massive/massive_add_alerts.php:149 -#: ../../godmode/massive/massive_delete_profiles.php:130 -#: ../../godmode/massive/massive_delete_modules.php:146 -#: ../../godmode/massive/massive_standby_alerts.php:162 -#: ../../godmode/groups/modu_group_list.php:184 -#: ../../godmode/groups/group_list.php:317 -#: ../../godmode/modules/manage_network_components.php:379 -#: ../../godmode/modules/manage_network_templates.php:190 -#: ../../godmode/modules/manage_network_templates.php:195 -#: ../../godmode/modules/manage_nc_groups.php:171 -#: ../../godmode/users/user_list.php:233 -#: ../../godmode/users/profile_list.php:224 -#: ../../godmode/users/configure_user.php:471 -#: ../../godmode/agentes/module_manager.php:493 -#: ../../godmode/agentes/module_manager.php:498 -#: ../../godmode/agentes/module_manager.php:507 -#: ../../godmode/agentes/module_manager.php:518 -#: ../../godmode/agentes/module_manager_editor_common.php:130 -#: ../../godmode/agentes/modificar_agente.php:459 -#: ../../godmode/agentes/agent_manager.php:170 -#: ../../godmode/agentes/fields_manager.php:114 -#: ../../godmode/agentes/manage_config_remote.php:188 -#: ../../godmode/agentes/agent_template.php:178 -#: ../../godmode/alerts/alert_actions.php:302 -#: ../../godmode/alerts/alert_actions.php:305 -#: ../../godmode/alerts/alert_templates.php:272 -#: ../../godmode/alerts/alert_list.list.php:686 -#: ../../godmode/alerts/alert_commands.php:172 -#: ../../godmode/alerts/alert_compounds.php:238 -#: ../../godmode/snmpconsole/snmp_filters.php:138 -#: ../../godmode/db/db_event.php:85 ../../godmode/db/db_audit.php:102 -#: ../../godmode/db/db_refine.php:103 -#: ../../godmode/reporting/visual_console_builder.elements.php:169 -#: ../../godmode/reporting/graphs.php:108 -#: ../../godmode/reporting/reporting_builder.php:106 -#: ../../godmode/tag/tag.php:164 ../../godmode/setup/links.php:148 -#: ../../godmode/setup/news.php:163 -#: ../../enterprise/extensions/backup/main.php:171 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:188 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:323 -#: ../../enterprise/operation/metaconsole/eventview.php:991 -#: ../../enterprise/godmode/modules/local_components.php:292 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:198 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:154 -#: ../../enterprise/godmode/agentes/inventory_manager.php:236 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:470 -#: ../../enterprise/godmode/alerts/alert_events_list.php:661 -#: ../../enterprise/godmode/alerts/alert_events_list.php:762 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:228 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/services/manage_services.main.php:68 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:81 -#: ../../enterprise/godmode/setup/setup_skins.php:138 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:245 -#: ../../enterprise/godmode/policies/policies.php:302 -#: ../../enterprise/godmode/policies/policies.php:312 -#: ../../enterprise/godmode/policies/policies.php:329 -#: ../../enterprise/godmode/policies/policy_agents.php:217 -#: ../../enterprise/godmode/policies/policy_agents.php:290 -#: ../../enterprise/godmode/policies/policy_agents.php:420 -#: ../../enterprise/godmode/policies/policy_agents.php:473 -#: ../../enterprise/godmode/policies/policy_queue.php:210 -#: ../../enterprise/godmode/policies/policy_queue.php:380 -#: ../../enterprise/godmode/policies/policy_modules.php:573 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:269 -#: ../../enterprise/godmode/policies/policy_alerts.php:367 -#: ../../enterprise/dashboard/dashboard_replicate.php:154 -#: ../../enterprise/dashboard/main_dashboard.php:435 -#: ../../enterprise/include/functions_policies.php:80 -#: ../../include/functions_filemanager.php:604 -msgid "Are you sure?" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:367 -#: ../../operation/integria_incidents/incident_detail.php:357 -msgid "Notes attached to incident" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:388 -#: ../../operation/incidents/incident_detail.php:440 -#: ../../operation/integria_incidents/incident.files.php:42 -#: ../../operation/integria_incidents/incident_detail.php:378 -#: ../../operation/integria_incidents/incident_detail.php:423 -msgid "Filename" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:390 -#: ../../operation/integria_incidents/incident.files.php:45 -#: ../../operation/integria_incidents/incident_detail.php:380 -#: ../../godmode/reporting/visual_console_builder.editor.php:182 -#: ../../godmode/reporting/visual_console_builder.editor.php:227 -#: ../../enterprise/extensions/backup/main.php:61 -#: ../../include/functions_filemanager.php:486 -msgid "Size" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:391 -#: ../../operation/events/events_list.php:762 -#: ../../operation/integria_incidents/incident.files.php:46 -#: ../../operation/integria_incidents/incident_detail.php:381 -#: ../../operation/messages/message.php:220 -#: ../../operation/messages/message.php:260 -#: ../../operation/snmpconsole/snmp_view.php:505 -#: ../../operation/snmpconsole/snmp_view.php:551 -#: ../../operation/snmpconsole/snmp_view.php:572 -#: ../../godmode/massive/massive_delete_action_alerts.php:210 -#: ../../godmode/massive/massive_delete_agents.php:118 -#: ../../godmode/massive/massive_delete_alerts.php:169 -#: ../../godmode/massive/massive_delete_profiles.php:132 -#: ../../godmode/massive/massive_delete_modules.php:148 -#: ../../godmode/groups/modu_group_list.php:174 -#: ../../godmode/groups/group_list.php:317 -#: ../../godmode/modules/manage_network_components.php:380 -#: ../../godmode/modules/manage_network_components.php:391 -#: ../../godmode/modules/manage_network_templates.php:195 -#: ../../godmode/modules/manage_network_templates.php:208 -#: ../../godmode/modules/manage_nc_groups.php:173 -#: ../../godmode/modules/manage_nc_groups.php:184 -#: ../../godmode/modules/manage_network_templates_form.php:204 -#: ../../godmode/extensions.php:253 ../../godmode/extensions.php:257 -#: ../../godmode/servers/modificar_server.php:139 -#: ../../godmode/servers/recon_script.php:179 -#: ../../godmode/users/user_list.php:233 -#: ../../godmode/agentes/module_manager.php:495 -#: ../../godmode/agentes/module_manager.php:522 -#: ../../godmode/agentes/modificar_agente.php:367 -#: ../../godmode/agentes/planned_downtime.php:341 -#: ../../godmode/agentes/planned_downtime.php:363 -#: ../../godmode/agentes/planned_downtime.php:402 -#: ../../godmode/agentes/fields_manager.php:114 -#: ../../godmode/agentes/agent_template.php:178 -#: ../../godmode/alerts/alert_actions.php:270 -#: ../../godmode/alerts/alert_templates.php:275 -#: ../../godmode/alerts/alert_list.list.php:443 -#: ../../godmode/alerts/alert_list.list.php:544 -#: ../../godmode/alerts/configure_alert_compound.php:437 -#: ../../godmode/alerts/configure_alert_compound.php:904 -#: ../../godmode/alerts/alert_commands.php:145 -#: ../../godmode/alerts/alert_compounds.php:181 -#: ../../godmode/alerts/alert_compounds.php:239 -#: ../../godmode/snmpconsole/snmp_filters.php:139 -#: ../../godmode/snmpconsole/snmp_alert.php:332 -#: ../../godmode/db/db_refine.php:103 -#: ../../godmode/reporting/graph_builder.graph_editor.php:83 -#: ../../godmode/reporting/graph_builder.graph_editor.php:109 -#: ../../godmode/reporting/graphs.php:89 -#: ../../godmode/reporting/map_builder.php:136 -#: ../../godmode/reporting/reporting_builder.list_items.php:311 -#: ../../godmode/reporting/reporting_builder.php:110 -#: ../../godmode/setup/gis.php:64 ../../godmode/setup/links.php:135 -#: ../../godmode/setup/news.php:144 -#: ../../enterprise/extensions/backup/main.php:131 -#: ../../enterprise/extensions/cron/main.php:235 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:188 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:221 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:256 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:305 -#: ../../enterprise/godmode/modules/local_components.php:293 -#: ../../enterprise/godmode/modules/local_components.php:305 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:199 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:212 -#: ../../enterprise/godmode/agentes/inventory_manager.php:237 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:471 -#: ../../enterprise/godmode/alerts/alert_events_list.php:588 -#: ../../enterprise/godmode/alerts/alert_events_list.php:664 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:229 -#: ../../enterprise/godmode/reporting/mysql_builder.php:42 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/services/manage_services.main.php:56 -#: ../../enterprise/godmode/services/manage_services.main.php:69 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:69 -#: ../../enterprise/godmode/setup/setup_acl.php:109 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:256 -#: ../../enterprise/godmode/policies/policies.php:316 -#: ../../enterprise/godmode/policies/policy_agents.php:428 -#: ../../enterprise/godmode/policies/policy_queue.php:287 -#: ../../enterprise/godmode/policies/policy_queue.php:321 -#: ../../enterprise/godmode/policies/policy_queue.php:362 -#: ../../enterprise/godmode/policies/policy_modules.php:584 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 -#: ../../enterprise/godmode/policies/policy_alerts.php:225 -#: ../../enterprise/godmode/policies/policy_alerts.php:378 -msgid "Delete" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:416 -#: ../../operation/integria_incidents/incident_detail.php:399 -msgid "Attached files" -msgstr "" - -#: ../../operation/incidents/incident_detail.php:434 -#: ../../operation/incidents/incident_detail.php:438 -#: ../../operation/integria_incidents/incident_detail.php:417 -#: ../../operation/integria_incidents/incident_detail.php:421 -msgid "Add attachment" -msgstr "" - -#: ../../operation/search_reports.php:71 -#: ../../operation/reporting/custom_reporting.php:38 -#: ../../godmode/reporting/reporting_builder.php:73 -#: ../../enterprise/include/functions_reporting_csv.php:142 -msgid "Report name" -msgstr "" - -#: ../../operation/search_reports.php:73 -#: ../../operation/reporting/custom_reporting.php:40 -msgid "HTML" -msgstr "" - -#: ../../operation/search_reports.php:74 -#: ../../operation/reporting/custom_reporting.php:41 -msgid "XML" -msgstr "" - -#: ../../operation/search_reports.php:85 -#: ../../operation/servers/view_server_detail.php:95 -#: ../../operation/agentes/estado_agente.php:482 -#: ../../godmode/groups/group_list.php:314 -#: ../../godmode/servers/modificar_server.php:133 -#: ../../godmode/servers/plugin.php:262 ../../godmode/users/user_list.php:231 -#: ../../godmode/users/profile_list.php:223 -#: ../../godmode/agentes/modificar_agente.php:414 -#: ../../godmode/agentes/fields_manager.php:113 -#: ../../godmode/reporting/reporting_builder.list_items.php:309 -#: ../../godmode/reporting/reporting_builder.php:103 -#: ../../enterprise/extensions/cron/main.php:232 -#: ../../enterprise/godmode/agentes/collections.editor.php:138 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:466 -#: ../../enterprise/godmode/alerts/alert_events_list.php:653 -#: ../../enterprise/godmode/reporting/mysql_builder.php:155 -msgid "Edit" -msgstr "" - -#: ../../operation/extensions.php:27 ../../operation/menu.php:296 -#: ../../godmode/extensions.php:27 ../../godmode/menu.php:245 -msgid "Extensions" -msgstr "" - -#: ../../operation/extensions.php:27 ../../godmode/extensions.php:27 -msgid "Defined extensions" -msgstr "" - -#: ../../operation/extensions.php:30 ../../godmode/extensions.php:32 -msgid "There are no extensions defined" -msgstr "" - -#: ../../operation/search_results.php:65 -#: ../../godmode/massive/massive_add_profiles.php:89 -#: ../../godmode/massive/massive_delete_profiles.php:105 -#: ../../enterprise/operation/metaconsole/usermanager.php:150 -msgid "Users" -msgstr "" - -#: ../../operation/search_results.php:81 -#: ../../operation/agentes/ver_agente.php:595 -#: ../../operation/agentes/ver_agente.php:676 -#: ../../include/functions_groups.php:102 -#: ../../include/functions_groups.php:159 -msgid "Graphs" -msgstr "" - -#: ../../operation/search_results.php:89 -#: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_groups.php:116 -msgid "Reports" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Total modules" msgstr "" -#: ../../operation/search_results.php:97 -#: ../../enterprise/dashboard/widgets/maps_status.php:28 -msgid "Maps" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Normal modules" msgstr "" -#: ../../operation/events/events_validate.php:42 -#: ../../operation/events/events_validate.php:58 -msgid "Events to validate" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Critical modules" msgstr "" -#: ../../operation/events/events_validate.php:68 -#: ../../operation/events/events_list.php:434 -#: ../../enterprise/operation/metaconsole/eventview.php:614 -#: ../../include/functions_events.php:363 -msgid "New event" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Warning modules" msgstr "" -#: ../../operation/events/events_validate.php:72 -#: ../../operation/events/events_list.php:438 -#: ../../enterprise/operation/metaconsole/eventview.php:618 -#: ../../enterprise/operation/metaconsole/eventview.php:679 -#: ../../include/functions_events.php:367 -msgid "Event validated" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Unknown modules" msgstr "" -#: ../../operation/events/events_validate.php:76 -#: ../../operation/events/events_list.php:442 -#: ../../enterprise/operation/metaconsole/eventview.php:622 -#: ../../include/functions_events.php:371 -msgid "Event in process" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Not init modules" msgstr "" -#: ../../operation/events/events_validate.php:100 -#: ../../operation/events/events_list.php:555 -#: ../../enterprise/operation/metaconsole/eventview.php:708 -msgid "Comment:" +#: ../../enterprise/include/functions_reporting_csv.php:724 +#: ../../include/functions_reporting.php:1131 +#: ../../include/functions_graph.php:1355 +msgid "Defined alerts" msgstr "" -#: ../../operation/events/events_validate.php:106 -#: ../../operation/events/events_validate.php:109 -#: ../../operation/events/events_list.php:560 -#: ../../operation/events/events_list.php:564 -#: ../../operation/agentes/alerts_status.php:277 -#: ../../operation/agentes/alerts_status.php:305 -#: ../../operation/agentes/alerts_status.php:338 -#: ../../operation/agentes/alerts_status.php:364 -#: ../../operation/agentes/alerts_status.php:429 -#: ../../operation/snmpconsole/snmp_view.php:502 -#: ../../operation/snmpconsole/snmp_view.php:546 -#: ../../operation/snmpconsole/snmp_view.php:570 -#: ../../enterprise/operation/metaconsole/eventview.php:714 -#: ../../enterprise/operation/metaconsole/eventview.php:718 -#: ../../enterprise/godmode/alerts/alert_events_list.php:446 -#: ../../enterprise/godmode/alerts/alert_events_list.php:684 -#: ../../include/functions_events.php:331 -msgid "Validate" +#: ../../enterprise/include/functions_reporting_csv.php:724 +#: ../../include/functions_reporting.php:1135 +#: ../../include/functions_graph.php:1355 +msgid "Fired alerts" msgstr "" -#: ../../operation/events/events_validate.php:106 -#: ../../operation/events/events_list.php:560 -#: ../../enterprise/operation/metaconsole/eventview.php:714 -msgid "Set in process" +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Last 8 hours events" msgstr "" -#: ../../operation/events/events_validate.php:107 -#: ../../operation/events/events_list.php:566 -#: ../../operation/events/events_list.php:758 -#: ../../enterprise/operation/metaconsole/eventview.php:720 -msgid "Change status" +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_pdf.php:785 +#: ../../include/functions_reporting.php:4305 +#: ../../include/functions_reports.php:559 +msgid "Group report" msgstr "" -#: ../../operation/events/events_validate.php:113 -#: ../../operation/events/events_list.php:571 -#: ../../enterprise/operation/metaconsole/eventview.php:725 -msgid "Set alert on standby" +#: ../../enterprise/include/functions_reporting_csv.php:774 +#: ../../enterprise/include/functions_reporting_pdf.php:855 +#: ../../enterprise/meta/include/functions_wizard_meta.php:172 +#: ../../enterprise/meta/include/functions_wizard_meta.php:241 +#: ../../enterprise/meta/include/functions_wizard_meta.php:587 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 +#: ../../include/functions_reporting.php:4396 +#: ../../include/functions_reports.php:557 ../../include/ajax/events.php:283 +#: ../../godmode/setup/setup.php:73 ../../godmode/setup/setup.php:107 +#: ../../godmode/servers/plugin.php:133 +msgid "General" msgstr "" -#: ../../operation/events/events_list.php:162 -#: ../../enterprise/operation/metaconsole/eventview.php:299 -msgid "Event control filter" +#: ../../enterprise/include/functions_reporting_csv.php:804 +#: ../../enterprise/include/functions_reporting_csv.php:925 +#: ../../enterprise/include/functions_reporting_csv.php:1073 +#: ../../include/functions_reporting.php:4425 +#: ../../include/functions_reporting.php:4607 +#: ../../include/functions_reporting.php:4942 +#: ../../include/functions_reporting.php:5227 +msgid "There are no Agent/Modules defined" msgstr "" -#: ../../operation/events/events_list.php:162 -#: ../../operation/agentes/alerts_status.php:239 -#: ../../operation/agentes/graphs.php:116 -#: ../../operation/snmpconsole/snmp_view.php:351 -#: ../../godmode/alerts/alert_list.list.php:123 -#: ../../godmode/reporting/reporting_builder.list_items.php:134 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:241 -#: ../../enterprise/operation/metaconsole/eventview.php:299 -#: ../../enterprise/godmode/policies/policy_queue.php:195 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -msgid "Toggle filter(s)" +#: ../../enterprise/include/functions_reporting_csv.php:888 +#: ../../enterprise/include/functions_reporting_pdf.php:1497 +#: ../../include/functions_reporting.php:4915 +#: ../../godmode/setup/gis_step_2.php:249 +msgid "Top" msgstr "" -#: ../../operation/events/events_list.php:192 -#: ../../enterprise/operation/metaconsole/eventview.php:328 -#: ../../enterprise/dashboard/widgets/events_list.php:50 -msgid "Event status" -msgstr "" - -#: ../../operation/events/events_list.php:194 -#: ../../enterprise/operation/metaconsole/eventview.php:330 -#: ../../enterprise/dashboard/widgets/events_list.php:51 -msgid "All event" -msgstr "" +#: ../../enterprise/include/functions_reporting_csv.php:1014 +#: ../../enterprise/include/functions_reporting_pdf.php:1196 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../include/functions_reporting.php:5178 +#: ../../include/functions_reports.php:561 +msgid "Exception" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1017 +#: ../../enterprise/include/functions_reporting_pdf.php:1199 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1333 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:208 +#: ../../include/functions_reporting.php:5181 +#: ../../godmode/reporting/reporting_builder.item_editor.php:977 +msgid "Everything" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1020 +#: ../../enterprise/include/functions_reporting_pdf.php:1202 +#: ../../enterprise/include/functions_reporting_pdf.php:1362 +#: ../../include/functions_reporting.php:5184 +#: ../../include/functions_reporting.php:5385 +msgid "Modules over or equal to" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1023 +#: ../../enterprise/include/functions_reporting_pdf.php:1205 +#: ../../enterprise/include/functions_reporting_pdf.php:1366 +#: ../../include/functions_reporting.php:5190 +msgid "Modules under" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1026 +#: ../../enterprise/include/functions_reporting_pdf.php:1208 +#: ../../enterprise/include/functions_reporting_pdf.php:1370 +#: ../../include/functions_reporting.php:5202 +msgid "Modules at normal status" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1029 +#: ../../enterprise/include/functions_reporting_pdf.php:1211 +#: ../../include/functions_reporting.php:5205 +msgid "Modules at critical or warning status" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1130 +#, php-format +msgid "There are no Modules over or equal to %s" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1133 +#, php-format +msgid "There are no Modules under %s" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1136 +msgid "There are no Modules at normal status" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1139 +msgid "There are no Modules at critial or warning status" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1142 +msgid "There are no Modules under those conditions" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1195 +msgid "Serialized data " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1224 +#: ../../enterprise/include/functions_reporting_pdf.php:1854 +#: ../../enterprise/include/functions_reporting_pdf.php:2165 +msgid "There are no data." +msgstr "" + +#: ../../enterprise/include/functions_services.php:23 +msgid "Service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:30 +msgid "Module store the service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:35 +msgid "Module store SLA service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:41 +msgid "Agent store the service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:47 +msgid "Agent store SLA service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:57 +msgid "Alert critical SLA service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:68 +msgid "Alert warning service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:79 +msgid "Alert critical service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:90 +msgid "Alert unknown service does not exist." +msgstr "" + +#: ../../enterprise/include/functions_services.php:240 +#, php-format +msgid "Module automatic create for the service %s" +msgstr "" + +#: ../../enterprise/include/functions_services.php:701 +msgid "Critical (Alert)" +msgstr "" + +#: ../../enterprise/include/functions_services.php:796 +msgid "There are no service elements defined" +msgstr "" + +#: ../../enterprise/include/functions_services.php:821 +msgid "Weight Critical" +msgstr "" + +#: ../../enterprise/include/functions_services.php:822 +msgid "Weight Warning" +msgstr "" + +#: ../../enterprise/include/functions_services.php:823 +msgid "Weight Unknown" +msgstr "" + +#: ../../enterprise/include/functions_services.php:824 +msgid "Weight Ok" +msgstr "" -#: ../../operation/events/events_list.php:195 -#: ../../enterprise/operation/metaconsole/eventview.php:331 -msgid "Only new" -msgstr "" +#: ../../enterprise/include/functions_services.php:850 +#: ../../enterprise/include/functions_visual_map_editor.php:18 +#: ../../enterprise/include/functions_visual_map_editor.php:26 +#: ../../enterprise/include/functions_visual_map_editor.php:48 +#: ../../enterprise/include/functions_visual_map.php:377 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:23 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 +#: ../../enterprise/godmode/services/services.elements.php:220 +#: ../../enterprise/godmode/services/services.elements.php:267 +msgid "Service" +msgstr "" + +#: ../../enterprise/include/functions_services.php:936 +#: ../../enterprise/include/functions_services.php:938 +msgid "Delete service element" +msgstr "" + +#: ../../enterprise/include/functions_services.php:965 +msgid "FAIL" +msgstr "" + +#: ../../enterprise/include/functions_alert_event.php:920 +msgid "Module alert" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:52 +#: ../../enterprise/include/functions_netflow_pdf.php:45 +msgid "Automated Pandora FMS report for user defined report" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:340 +#: ../../include/functions_reporting.php:3016 +#: ../../include/functions_reports.php:537 +msgid "Projection graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:457 +#: ../../enterprise/include/functions_reporting_pdf.php:2705 +#: ../../enterprise/include/functions_reporting_pdf.php:2733 +#: ../../enterprise/include/functions_reporting_pdf.php:3560 +msgid "Period: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:526 +#: ../../include/functions_reporting.php:5780 +msgid "No changes found." +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:555 +#: ../../include/functions_reporting.php:5528 +#: ../../include/functions_reports.php:564 +#: ../../extensions/agents_modules.php:117 +msgid "Agents/Modules" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:604 +msgid "There are no agents with modules." +msgstr "" -#: ../../operation/events/events_list.php:196 -#: ../../enterprise/operation/metaconsole/eventview.php:332 -#: ../../enterprise/dashboard/widgets/events_list.php:52 -msgid "Only validated" +#: ../../enterprise/include/functions_reporting_pdf.php:709 +#: ../../include/functions_reporting.php:5690 +msgid "ALERTS FIRED" msgstr "" -#: ../../operation/events/events_list.php:197 -#: ../../enterprise/operation/metaconsole/eventview.php:333 -msgid "Only in process" +#: ../../enterprise/include/functions_reporting_pdf.php:737 +#: ../../include/functions_reporting.php:5708 +#: ../../extensions/module_groups.php:287 +#: ../../extensions/agents_modules.php:286 +msgid "The colours meaning:" msgstr "" -#: ../../operation/events/events_list.php:198 -#: ../../enterprise/operation/metaconsole/eventview.php:334 -msgid "Only not validated" +#: ../../enterprise/include/functions_reporting_pdf.php:741 +#: ../../include/functions_reporting.php:5712 +#: ../../extensions/agents_modules.php:290 +msgid "Orange cell when the module has fired alerts" msgstr "" -#: ../../operation/events/events_list.php:206 -#: ../../operation/snmpconsole/snmp_view.php:341 -#: ../../godmode/alerts/alert_compounds.php:127 -#: ../../enterprise/operation/metaconsole/eventview.php:342 -msgid "Free search" +#: ../../enterprise/include/functions_reporting_pdf.php:747 +#: ../../include/functions_reporting.php:5716 +#: ../../extensions/agents_modules.php:294 +msgid "Red cell when the module has a critical status" msgstr "" -#: ../../operation/events/events_list.php:212 -#: ../../enterprise/operation/metaconsole/agentsearch.php:26 -#: ../../enterprise/operation/metaconsole/eventview.php:348 -#: ../../enterprise/operation/menu.php:77 -msgid "Agent search" +#: ../../enterprise/include/functions_reporting_pdf.php:753 +#: ../../include/functions_reporting.php:5720 +#: ../../extensions/agents_modules.php:298 +msgid "Yellow cell when the module has a warning status" msgstr "" -#: ../../operation/events/events_list.php:222 -#: ../../operation/users/user_edit.php:188 -#: ../../operation/snmpconsole/snmp_view.php:321 -#: ../../godmode/users/configure_user.php:406 -#: ../../godmode/setup/setup_visuals.php:72 -#: ../../enterprise/operation/metaconsole/eventview.php:359 -msgid "Block size for pagination" +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../include/functions_reporting.php:5724 +#: ../../extensions/agents_modules.php:302 +msgid "Green cell when the module has a normal status" msgstr "" -#: ../../operation/events/events_list.php:231 -#: ../../operation/users/user_edit.php:160 -#: ../../operation/users/user_edit.php:186 -#: ../../operation/users/user_edit.php:198 -#: ../../operation/snmpconsole/snmp_view.php:327 -#: ../../godmode/massive/massive_edit_agents.php:352 -#: ../../godmode/users/configure_user.php:342 -#: ../../godmode/agentes/agent_manager.php:302 -#: ../../godmode/alerts/alert_list.list.php:409 -#: ../../godmode/gis_maps/index.php:72 ../../godmode/setup/gis_step_2.php:366 -#: ../../godmode/setup/gis_step_2.php:445 -#: ../../enterprise/operation/agentes/policy_view.php:254 -#: ../../enterprise/operation/metaconsole/eventview.php:368 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:74 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:78 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:199 -#: ../../enterprise/godmode/policies/policy_alerts.php:321 -#: ../../enterprise/dashboard/main_dashboard.php:90 -#: ../../enterprise/dashboard/main_dashboard.php:376 -#: ../../include/functions_ui.php:619 -msgid "Default" +#: ../../enterprise/include/functions_reporting_pdf.php:765 +#: ../../include/functions_reporting.php:5728 +#: ../../extensions/agents_modules.php:306 +msgid "Grey cell when the module has an unknown status" msgstr "" -#: ../../operation/events/events_list.php:234 -#: ../../godmode/admin_access_logs.php:66 -#: ../../godmode/admin_access_logs.php:67 -#: ../../enterprise/operation/metaconsole/eventview.php:371 -msgid "Max. hours old" +#: ../../enterprise/include/functions_reporting_pdf.php:824 +#: ../../include/functions_reporting.php:4368 +msgid "Defined" msgstr "" -#: ../../operation/events/events_list.php:241 -#: ../../enterprise/operation/metaconsole/eventview.php:378 -msgid "User ack." +#: ../../enterprise/include/functions_reporting_pdf.php:837 +#: ../../include/functions_reporting.php:4383 +msgid "Last 8 hours" msgstr "" -#: ../../operation/events/events_list.php:244 -#: ../../operation/integria_incidents/incident.list.php:33 -#: ../../godmode/massive/massive_add_action_alerts.php:161 -#: ../../godmode/servers/manage_recontask_form.php:201 -#: ../../godmode/servers/manage_recontask.php:261 -#: ../../godmode/reporting/visual_console_builder.editor.php:103 -#: ../../godmode/reporting/visual_console_builder.editor.php:137 -#: ../../godmode/reporting/visual_console_builder.wizard.php:81 -#: ../../enterprise/operation/metaconsole/eventview.php:381 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:181 -#: ../../enterprise/godmode/setup/setup_acl.php:92 -#: ../../enterprise/dashboard/widgets/events_list.php:31 -#: ../../include/ajax/visual_console_builder.ajax.php:250 -msgid "Any" +#: ../../enterprise/include/functions_reporting_pdf.php:867 +#: ../../enterprise/include/functions_reporting_pdf.php:958 +#: ../../enterprise/include/functions_reporting_pdf.php:1228 +#: ../../enterprise/include/functions_reporting_pdf.php:1509 +msgid "There are no Agent/Modules defined." msgstr "" -#: ../../operation/events/events_list.php:248 -#: ../../enterprise/operation/metaconsole/eventview.php:385 -msgid "Repeated" +#: ../../enterprise/include/functions_reporting_pdf.php:1168 +#: ../../enterprise/include/functions_reporting_pdf.php:1465 +#: ../../enterprise/include/functions_reporting_pdf.php:1698 +#: ../../include/functions_reporting.php:4879 +#: ../../include/functions_reporting.php:5158 +#: ../../include/functions_reporting.php:5505 +msgid "Max Value" msgstr "" -#: ../../operation/events/events_list.php:251 -#: ../../enterprise/operation/metaconsole/eventview.php:388 -msgid "All events" +#: ../../enterprise/include/functions_reporting_pdf.php:1173 +#: ../../enterprise/include/functions_reporting_pdf.php:1466 +#: ../../enterprise/include/functions_reporting_pdf.php:1699 +#: ../../include/functions_reporting.php:4876 +#: ../../include/functions_reporting.php:5156 +#: ../../include/functions_reporting.php:5503 +msgid "Min Value" msgstr "" -#: ../../operation/events/events_list.php:252 -#: ../../enterprise/operation/metaconsole/eventview.php:389 -msgid "Group events" +#: ../../enterprise/include/functions_reporting_pdf.php:1178 +#: ../../enterprise/include/functions_reporting_pdf.php:1467 +#: ../../enterprise/include/functions_reporting_pdf.php:1700 +#: ../../enterprise/include/functions_reporting_pdf.php:3051 +#: ../../include/functions_reporting.php:3477 +#: ../../include/functions_reporting.php:4877 +#: ../../include/functions_reporting.php:5157 +#: ../../include/functions_reporting.php:5504 +msgid "Average Value" msgstr "" -#: ../../operation/events/events_list.php:256 -#: ../../enterprise/operation/metaconsole/eventview.php:393 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:403 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:183 -msgid "Tag" +#: ../../enterprise/include/functions_reporting_pdf.php:1359 +#: ../../include/functions_reporting.php:5378 +msgid "There are no" msgstr "" -#: ../../operation/events/events_list.php:274 -msgid "Alert events" +#: ../../enterprise/include/functions_reporting_pdf.php:1374 +#: ../../include/functions_reporting.php:5406 +msgid "Modules at critial or warning status" msgstr "" -#: ../../operation/events/events_list.php:276 -msgid "Filter alert events" +#: ../../enterprise/include/functions_reporting_pdf.php:1377 +#: ../../include/functions_reporting.php:5382 +msgid "Modules under those conditions" msgstr "" -#: ../../operation/events/events_list.php:276 -msgid "Only alert events" +#: ../../enterprise/include/functions_reporting_pdf.php:1446 +#: ../../enterprise/include/functions_reporting_pdf.php:1661 +#: ../../enterprise/include/functions_reporting_pdf.php:2418 +#: ../../enterprise/include/functions_reporting_pdf.php:2443 +#: ../../enterprise/include/functions_reporting_pdf.php:2467 +#: ../../enterprise/include/functions_reporting_pdf.php:2491 +#: ../../enterprise/include/functions_reporting_pdf.php:2625 +#: ../../enterprise/include/functions_reporting_pdf.php:2649 +#: ../../enterprise/include/functions_reporting_pdf.php:2673 +#: ../../enterprise/include/functions_reporting_pdf.php:3039 +#: ../../include/functions_reporting.php:2057 +#: ../../include/functions_reporting.php:2133 +#: ../../include/functions_reporting.php:3471 +#: ../../include/functions_reporting.php:3712 +#: ../../include/functions_reporting.php:3735 +#: ../../include/functions_reporting.php:3758 +#: ../../include/functions_reporting.php:3934 +#: ../../include/functions_reporting.php:3957 +#: ../../include/functions_reporting.php:3980 +#: ../../include/functions_reporting.php:4003 +#: ../../include/functions_reporting.php:5113 +#: ../../include/functions_reporting.php:5484 +#: ../../include/functions_graph.php:1361 +#: ../../include/functions_graph.php:1421 +#: ../../include/functions_graph.php:1488 +#: ../../include/functions_graph.php:2003 +#: ../../include/functions_graph.php:2338 +msgid "other" msgstr "" -#: ../../operation/events/events_list.php:392 -#: ../../operation/events/events_list.php:587 -#: ../../enterprise/operation/metaconsole/eventview.php:576 -#: ../../enterprise/operation/metaconsole/eventview.php:742 -#: ../../enterprise/include/functions_reporting_pdf.php:1959 -#: ../../include/functions_reporting.php:1044 -#: ../../include/functions_reporting.php:1722 -#: ../../include/functions_reporting.php:1780 -#: ../../include/functions_reporting.php:1840 -#: ../../include/functions_events.php:341 -msgid "Event name" +#: ../../enterprise/include/functions_reporting_pdf.php:1493 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1322 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:144 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:191 +#: ../../include/functions_reporting.php:4910 +#: ../../include/functions_graph.php:675 ../../include/functions_graph.php:676 +#: ../../include/functions_graph.php:677 ../../include/functions_graph.php:680 +#: ../../include/functions_graph.php:1180 +#: ../../include/functions_graph.php:2809 +#: ../../include/functions_graph.php:2814 +#: ../../include/functions_graph.php:3349 +#: ../../include/functions_graph.php:3350 +#: ../../include/functions_graph.php:3351 +#: ../../godmode/reporting/reporting_builder.item_editor.php:964 +msgid "Avg" msgstr "" -#: ../../operation/events/events_list.php:394 -#: ../../operation/events/events_list.php:620 -#: ../../operation/agentes/estado_generalagente.php:77 -#: ../../godmode/agentes/modificar_agente.php:353 -#: ../../godmode/agentes/agent_manager.php:147 ../../godmode/db/db_info.php:69 -#: ../../enterprise/operation/metaconsole/eventview.php:578 -#: ../../enterprise/operation/metaconsole/eventview.php:782 -#: ../../include/functions_events.php:343 -msgid "Agent name" +#: ../../enterprise/include/functions_reporting_pdf.php:2007 +#: ../../include/functions_reporting.php:4032 +#: ../../include/functions_reports.php:587 +msgid "Alert report group" msgstr "" -#: ../../operation/events/events_list.php:507 -#: ../../enterprise/operation/metaconsole/eventview.php:674 -msgid "Validate event" +#: ../../enterprise/include/functions_reporting_pdf.php:2056 +msgid "There are no alerts for this module." msgstr "" -#: ../../operation/events/events_list.php:520 -#: ../../enterprise/operation/metaconsole/eventview.php:687 -msgid "Delete event" +#: ../../enterprise/include/functions_reporting_pdf.php:2099 +msgid "Modules detailed event" msgstr "" -#: ../../operation/events/events_list.php:525 -#: ../../enterprise/operation/metaconsole/eventview.php:693 -msgid "Is not allowed delete events in process" +#: ../../enterprise/include/functions_reporting_pdf.php:2104 +msgid "There are no events for this module." msgstr "" -#: ../../operation/events/events_list.php:531 -#: ../../operation/snmpconsole/snmp_view.php:507 -#: ../../enterprise/operation/metaconsole/eventview.php:700 -msgid "Show more" +#: ../../enterprise/include/functions_reporting_pdf.php:2217 +#: ../../include/functions_reporting.php:3856 +msgid "User defined graph" msgstr "" -#: ../../operation/events/events_list.php:544 -msgid "Create incident from event" +#: ../../enterprise/include/functions_reporting_pdf.php:2322 +msgid "There are no events in group." msgstr "" -#: ../../operation/events/events_list.php:629 -msgid "Agent module" +#: ../../enterprise/include/functions_reporting_pdf.php:2396 +#: ../../include/functions_reporting.php:3931 +msgid "Events by agent" msgstr "" -#: ../../operation/events/events_list.php:649 -#: ../../enterprise/operation/metaconsole/eventview.php:801 -msgid "Alert source" +#: ../../enterprise/include/functions_reporting_pdf.php:2436 +#: ../../enterprise/include/functions_reporting_pdf.php:2618 +#: ../../include/functions_reporting.php:3709 +#: ../../include/functions_reporting.php:3954 +msgid "Events validated by user" msgstr "" -#: ../../operation/events/events_list.php:654 -#: ../../operation/events/events_list.php:658 -#: ../../enterprise/operation/metaconsole/eventview.php:809 -#: ../../enterprise/operation/metaconsole/eventview.php:813 -msgid "Go to data overview" +#: ../../enterprise/include/functions_reporting_pdf.php:2460 +#: ../../enterprise/include/functions_reporting_pdf.php:2642 +#: ../../include/functions_reporting.php:3732 +#: ../../include/functions_reporting.php:3977 +msgid "Events by criticity" msgstr "" -#: ../../operation/events/events_list.php:684 -#: ../../operation/users/user_edit.php:113 -#: ../../operation/search_users.php:183 -#: ../../operation/snmpconsole/snmp_view.php:395 -#: ../../godmode/users/user_list.php:142 -#: ../../godmode/users/configure_user.php:332 -#: ../../enterprise/operation/metaconsole/eventview.php:846 -#: ../../include/functions_reporting.php:1045 -#: ../../include/functions_events.php:345 -msgid "User ID" +#: ../../enterprise/include/functions_reporting_pdf.php:2529 +msgid "There are no Events." msgstr "" -#: ../../operation/events/events_list.php:686 -#: ../../enterprise/operation/metaconsole/eventview.php:848 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -#: ../../enterprise/include/functions_reporting_pdf.php:1962 -#: ../../include/functions_reporting.php:1725 -#: ../../include/functions_reporting.php:1843 +#: ../../enterprise/include/functions_reporting_pdf.php:2535 +#: ../../enterprise/meta/event/event_view.php:1141 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:129 +#: ../../include/functions_reporting.php:2467 +#: ../../include/functions_reporting.php:2681 msgid "Count" msgstr "" -#: ../../operation/events/events_list.php:702 -#: ../../operation/events/events_list.php:710 -#: ../../operation/events/events_list.php:730 -#: ../../godmode/alerts/configure_alert_template.php:706 -#: ../../godmode/alerts/alert_list.builder.php:285 -#: ../../enterprise/extensions/tree_view.php:111 -#: ../../enterprise/extensions/tree_view.php:304 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:176 -#: ../../enterprise/operation/agentes/policy_view.php:148 -#: ../../enterprise/operation/agentes/policy_view.php:212 -#: ../../enterprise/operation/agentes/policy_view.php:423 -#: ../../enterprise/operation/metaconsole/eventview.php:867 -#: ../../enterprise/operation/metaconsole/eventview.php:875 -#: ../../enterprise/operation/metaconsole/eventview.php:883 -msgid "Empty" +#: ../../enterprise/include/functions_reporting_pdf.php:2538 +#: ../../enterprise/include/functions_reporting_pdf.php:2832 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:144 +#: ../../include/functions_reporting.php:2470 +#: ../../include/functions_reporting.php:2577 +#: ../../include/functions_reporting.php:2680 +#: ../../include/functions_reporting.php:3238 +#: ../../godmode/events/custom_events.php:95 +#: ../../godmode/events/custom_events.php:157 +msgid "Criticity" msgstr "" -#: ../../operation/events/events_list.php:714 -#: ../../godmode/massive/massive_edit_modules.php:364 -#: ../../enterprise/operation/metaconsole/eventview.php:878 -msgid "Tags" +#: ../../enterprise/include/functions_reporting_pdf.php:2539 +#: ../../include/functions_reporting.php:2471 +#: ../../include/functions_reporting.php:2578 +msgid "Val. by" msgstr "" -#: ../../operation/events/events_list.php:723 +#: ../../enterprise/include/functions_reporting_pdf.php:2829 +msgid "Info" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:2830 +#: ../../enterprise/include/functions_reporting_pdf.php:3053 +#: ../../include/functions_reporting.php:3236 +#: ../../include/functions_reporting.php:3486 +msgid "SLA Compliance" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:2843 +#: ../../enterprise/include/functions_reporting_pdf.php:2849 +#: ../../enterprise/include/functions_reporting_pdf.php:2931 +#: ../../enterprise/include/functions_reporting_pdf.php:2932 +#: ../../enterprise/include/functions_reporting_pdf.php:2992 +#: ../../include/functions_reporting.php:3249 +#: ../../include/functions_reporting.php:3326 +#: ../../include/functions_reporting.php:3422 +msgid "Inside limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:2844 +#: ../../enterprise/include/functions_reporting_pdf.php:2850 +#: ../../enterprise/include/functions_reporting_pdf.php:2935 +#: ../../enterprise/include/functions_reporting_pdf.php:2936 +#: ../../enterprise/include/functions_reporting_pdf.php:2998 +#: ../../include/functions_reporting.php:3250 +#: ../../include/functions_reporting.php:3332 +#: ../../include/functions_reporting.php:3429 +#: ../../include/functions_graph.php:1496 +#: ../../include/functions_graph.php:1542 +msgid "Out of limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:2845 +#: ../../enterprise/include/functions_reporting_pdf.php:2851 +#: ../../enterprise/include/functions_reporting_pdf.php:2927 +#: ../../enterprise/include/functions_reporting_pdf.php:2928 +#: ../../enterprise/include/functions_reporting_pdf.php:2995 +#: ../../include/functions_reporting.php:3251 +#: ../../include/functions_reporting.php:3329 +#: ../../include/functions_reporting.php:3426 +msgid "On the edge" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:2955 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1557 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1095 +msgid "SLA Min. (value)" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:2956 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1558 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 +msgid "SLA Max. (value)" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:2957 +#: ../../include/functions_reporting.php:3235 +msgid "SLA Limit" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3012 +msgid "Agent:" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3015 +msgid "Module:" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3167 +#: ../../include/functions_visual_map.php:1828 +#: ../../godmode/reporting/visual_console_builder.wizard.php:79 +msgid "Module graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3381 +msgid "Up: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3383 +msgid "Down: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3451 +#: ../../enterprise/include/functions_netflow_pdf.php:150 +msgid "Generated: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3454 +msgid "Report date: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3465 +#: ../../enterprise/include/functions_netflow_pdf.php:159 +msgid "Description: " +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3480 +#: ../../enterprise/include/functions_netflow_pdf.php:56 +msgid "CONTENTS" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3507 +#: ../../enterprise/include/functions_reporting_pdf.php:3575 +#: ../../include/functions_reporting.php:2906 +#: ../../godmode/agentes/planned_downtime.editor.php:329 +msgid "From:" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3534 +msgid "Untitled" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3576 +#: ../../include/functions_reporting.php:2907 +#: ../../godmode/agentes/planned_downtime.editor.php:336 +msgid "To:" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3594 +#: ../../include/functions_reports.php:609 +#: ../../godmode/agentes/modificar_agente.php:61 +#: ../../godmode/agentes/configurar_agente.php:448 +msgid "Agent configuration" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3613 +#: ../../enterprise/include/functions_reporting_pdf.php:3748 +#: ../../include/functions_reporting.php:5811 +#: ../../include/functions_reporting.php:5952 +msgid "SO" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3614 +#: ../../enterprise/include/functions_reporting_pdf.php:3749 +#: ../../include/functions_reporting.php:5812 +#: ../../include/functions_reporting.php:5953 +#: ../../include/functions_visual_map_editor.php:387 +#: ../../godmode/reporting/visual_console_builder.elements.php:341 +#: ../../godmode/admin_access_logs.php:69 +#: ../../godmode/admin_access_logs.php:70 +#: ../../extensions/users_connected.php:78 +msgid "IP" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3649 +#: ../../enterprise/include/functions_reporting_pdf.php:3788 +msgid "There are no modules." +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3656 +#: ../../enterprise/include/functions_reporting_pdf.php:3795 +#: ../../enterprise/godmode/alerts/alert_events_list.php:511 +#: ../../enterprise/godmode/alerts/alert_events_list.php:552 +#: ../../include/functions_reporting.php:2227 +#: ../../include/functions_reporting.php:5859 +#: ../../include/functions_reporting.php:6007 +#: ../../godmode/alerts/alert_list.list.php:491 +#: ../../godmode/alerts/alert_list.list.php:556 +#: ../../godmode/alerts/alert_list.builder.php:135 +#: ../../godmode/alerts/configure_alert_action.php:140 +msgid "Threshold" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3660 +#: ../../enterprise/include/functions_reporting_pdf.php:3799 +#: ../../enterprise/meta/include/functions_wizard_meta.php:366 +#: ../../enterprise/meta/include/functions_wizard_meta.php:481 +#: ../../enterprise/meta/include/functions_wizard_meta.php:630 +#: ../../enterprise/meta/include/functions_wizard_meta.php:889 +#: ../../enterprise/meta/include/functions_wizard_meta.php:965 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 +#: ../../enterprise/godmode/modules/configure_local_component.php:205 +#: ../../include/functions_reporting.php:5863 +#: ../../include/functions_reporting.php:6011 +#: ../../include/functions_netflow.php:920 +#: ../../include/functions_netflow.php:929 +#: ../../include/functions_netflow.php:947 +#: ../../include/functions_netflow.php:955 +#: ../../include/functions_netflow.php:978 +#: ../../include/functions_netflow.php:1034 +#: ../../include/functions_netflow.php:1040 +#: ../../include/functions_netflow.php:1072 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/agentes/module_manager_editor_common.php:331 +#: ../../godmode/massive/massive_edit_modules.php:404 +msgid "Unit" +msgstr "" + +#: ../../enterprise/include/functions_reporting_pdf.php:3729 +#: ../../include/functions_reports.php:611 +msgid "Group configuration" +msgstr "" + +#: ../../enterprise/include/functions_login.php:22 +msgid "You must change password" +msgstr "" + +#: ../../enterprise/include/functions_login.php:44 +msgid "NEW PASS: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:46 +msgid "CONFIRM: " +msgstr "" + +#: ../../enterprise/include/functions_login.php:53 +msgid "Change" +msgstr "" + +#: ../../enterprise/include/functions_login.php:104 +msgid "User has been blocked. Try again in " +msgstr "" + +#: ../../enterprise/include/functions_login.php:104 +msgid " minutes" +msgstr "" + +#: ../../enterprise/include/functions_login.php:220 +msgid "Password must be different from the " +msgstr "" + +#: ../../enterprise/include/functions_login.php:220 +msgid " previous changes." +msgstr "" + +#: ../../enterprise/include/functions_login.php:234 +msgid "Password must be different" +msgstr "" + +#: ../../enterprise/include/functions_login.php:244 +msgid "Password too short" +msgstr "" + +#: ../../enterprise/include/functions_login.php:255 +msgid "Password must contain numbers" +msgstr "" + +#: ../../enterprise/include/functions_login.php:267 +msgid "Password must contain symbols" +msgstr "" + +#: ../../enterprise/include/functions_login.php:304 +msgid "User pass successfully updated" +msgstr "" + +#: ../../enterprise/include/functions_login.php:305 +msgid "Error updating user pass (no change?)" +msgstr "" + +#: ../../enterprise/include/functions_login.php:313 +msgid "Password confirm does not match" +msgstr "" + +#: ../../enterprise/include/functions_login.php:321 +msgid "Password empty" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:394 +#: ../../include/functions_alerts.php:382 +msgid "copy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2585 +msgid "Policy linkation" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2590 +msgid "Module linked" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2592 +#: ../../enterprise/include/functions_policies.php:2602 +msgid "Unlink from policy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2595 +msgid "Module unlinked" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2597 +#: ../../enterprise/include/functions_policies.php:2607 +msgid "Relink to policy" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2600 +msgid "Module pending to link" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2600 +#: ../../godmode/agentes/module_manager_editor.php:315 +msgid "Module will be linked in the next application" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2605 +msgid "Module pending to unlink" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2605 +#: ../../godmode/agentes/module_manager_editor.php:323 +msgid "Module will be unlinked in the next application" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2771 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:30 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 +#: ../../enterprise/godmode/menu.php:29 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:227 +msgid "Inventory modules" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2790 +#: ../../enterprise/godmode/policies/policies.php:300 +msgid "External alerts" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2800 +#: ../../enterprise/godmode/policies/policy_linking.php:124 +#: ../../enterprise/godmode/policies/policies.php:284 +msgid "Linking" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2809 +#: ../../enterprise/godmode/menu.php:22 +#: ../../enterprise/godmode/policies/policy_collections.php:169 +#: ../../enterprise/godmode/policies/policies.php:288 +msgid "Collections" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2818 +#: ../../enterprise/godmode/policies/policies.php:304 +#: ../../enterprise/godmode/policies/policy.php:46 +msgid "Queue" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:2836 +#: ../../enterprise/godmode/agentes/configurar_agente.php:49 +#: ../../godmode/agentes/configurar_agente.php:414 +msgid "Agent plugins" +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3292 +msgid "Create a new policy map" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:1087 +#: ../../enterprise/include/functions_metaconsole.php:1110 +#: ../../enterprise/include/functions_metaconsole.php:1133 +#: ../../enterprise/include/functions_metaconsole.php:1156 +#: ../../enterprise/meta/include/functions_wizard_meta.php:152 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:144 +msgid "Check" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:135 +msgid "No description" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:239 +#: ../../enterprise/include/functions_backup.php:321 +msgid "Restoring a backup" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:241 +#: ../../enterprise/include/functions_backup.php:323 +msgid "Restoring a Pandora database backup must be done manually" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:242 +#: ../../enterprise/include/functions_backup.php:324 +msgid "" +"It's a complex operation that needs human intervation to avoid system " +"failures and data loosing" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:243 +#: ../../enterprise/include/functions_backup.php:325 +msgid "To restore the selected backup, please follow these steps" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:249 +#: ../../enterprise/include/functions_backup.php:331 +msgid "Open a root shell in your system located at " +msgstr "" + +#: ../../enterprise/include/functions_backup.php:253 +msgid "Connect to MySQL database using the following command" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:260 +msgid "Create a new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:273 +msgid "Restore the backup" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:281 +#: ../../enterprise/include/functions_backup.php:346 +msgid "Modify console configuration to use this new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:282 +#: ../../enterprise/include/functions_backup.php:347 +msgid "Open configuration file" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:286 +#: ../../enterprise/include/functions_backup.php:298 +#: ../../enterprise/include/functions_backup.php:351 +#: ../../enterprise/include/functions_backup.php:363 +msgid "Find" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:288 +#: ../../enterprise/include/functions_backup.php:301 +#: ../../enterprise/include/functions_backup.php:353 +#: ../../enterprise/include/functions_backup.php:366 +msgid "and replace with" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:295 +#: ../../enterprise/include/functions_backup.php:360 +msgid "Modify servers configuration to use this new database" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:296 +#: ../../enterprise/include/functions_backup.php:361 +msgid "Find servers configuration file and replace the following lines" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:308 +#: ../../enterprise/include/functions_backup.php:373 +msgid "Restart the servers and login again into the console" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:338 +msgid "Run import command using the following command" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:342 +msgid "Into your destination database." +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:166 +#: ../../enterprise/include/functions_visual_map.php:219 +#: ../../enterprise/include/functions_visual_map.php:287 +#: ../../enterprise/include/functions_visual_map.php:298 +msgid "Crit:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:168 +#: ../../enterprise/include/functions_visual_map.php:221 +#: ../../enterprise/include/functions_visual_map.php:289 +#: ../../enterprise/include/functions_visual_map.php:300 +msgid "Warn:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:170 +#: ../../enterprise/include/functions_visual_map.php:223 +#: ../../enterprise/include/functions_visual_map.php:291 +msgid "Ok:" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:172 +#: ../../enterprise/include/functions_visual_map.php:225 +#: ../../enterprise/include/functions_visual_map.php:293 +#: ../../enterprise/include/functions_visual_map.php:302 +msgid "Value:" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:152 +msgid "Update config" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:156 +msgid "Update node status" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:165 +#: ../../enterprise/include/functions_networkmap_enterprise.php:167 +#: ../../enterprise/include/functions_networkmap_enterprise.php:181 +#: ../../godmode/gis_maps/configure_gis_map.php:431 +msgid "Add agent" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:195 +msgid "Add fictional point" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:197 +#: ../../enterprise/include/functions_networkmap_enterprise.php:816 +msgid "Shape" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:198 +#: ../../enterprise/include/functions_networkmap_enterprise.php:817 +msgid "Radius" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:199 +#: ../../enterprise/include/functions_networkmap_enterprise.php:818 +msgid "Color" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:200 +#: ../../enterprise/include/functions_networkmap_enterprise.php:820 +msgid "Network map linked" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:281 +msgid "Open menu" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:301 +#: ../../enterprise/include/functions_networkmap_enterprise.php:812 +msgid "Circle" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:301 +#: ../../enterprise/include/functions_networkmap_enterprise.php:812 +msgid "Square" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:301 +#: ../../enterprise/include/functions_networkmap_enterprise.php:812 +msgid "Rhombus" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:307 +msgid "Use a browser that support HTML5." +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:308 +msgid "" +"Pandora FMS recommends use of Google Chrome browser to use Enterprise " +"Network Console." +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:313 +msgid "Open Minimap" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:324 +msgid "Created nodes" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:377 +#: ../../enterprise/include/functions_networkmap_enterprise.php:395 +msgid "Show details" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:392 +msgid "Set Child" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:393 +msgid "To Front" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:394 +msgid "Erase" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:401 +msgid "Set center" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:407 +msgid "Set Parent" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:408 +msgid "Cancel action set parent" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:887 +msgid "Show modules:" +msgstr "" + +#: ../../enterprise/include/functions_networkmap_enterprise.php:959 +msgid "Copy of " +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:64 +#: ../../enterprise/godmode/agentes/collections.data.php:142 +msgid "Empty name" +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:68 +msgid "Empty configuration" +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:72 +msgid "Empty OS" +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:202 +#: ../../include/functions_alerts.php:904 +#: ../../include/functions_network_components.php:401 +msgid "Copy of" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:27 +#: ../../enterprise/include/functions_setup.php:55 +#: ../../godmode/extensions.php:145 +msgid "Enterprise" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:30 +#: ../../enterprise/include/functions_setup.php:59 +#: ../../enterprise/meta/include/functions_wizard_meta.php:162 +#: ../../enterprise/meta/include/functions_wizard_meta.php:843 +#: ../../enterprise/godmode/setup/setup_auth.php:69 +#: ../../enterprise/godmode/setup/setup_auth.php:85 +#: ../../enterprise/godmode/setup/setup_auth.php:101 +#: ../../enterprise/godmode/servers/manage_export_form.php:99 +#: ../../enterprise/godmode/agentes/inventory_manager.php:185 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:205 +#: ../../include/functions_config.php:293 +#: ../../include/functions_config.php:304 +#: ../../include/functions_config.php:314 +#: ../../mobile/include/user.class.php:176 +#: ../../godmode/modules/manage_network_components_form_wmi.php:50 +#: ../../godmode/modules/manage_network_components_form_wmi.php:188 +#: ../../godmode/users/configure_user.php:397 +#: ../../godmode/agentes/module_manager_editor_wmi.php:53 +#: ../../godmode/massive/massive_edit_modules.php:394 +msgid "Password" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:37 +#: ../../enterprise/include/functions_setup.php:67 +msgid "Log collector" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:42 +msgid "Error accesing to API" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:53 +msgid "Database credentials not found" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:57 +msgid "Error connecting to the specified host" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:61 +msgid "Connected to the host, but cannot found the specified database" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:72 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:94 +#: ../../extensions/update_manager/lib/functions.ajax.php:535 +msgid "Server connection failed" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:76 +msgid "" +"\"Translate string\" extension is missed in the server. This extension is " +"mandatory to be configured on metaconsole." +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:80 +msgid "" +"Server name doesnt match. Check the node server name and configure the same " +"one on metasetup" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:88 +msgid "Last event replication" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:98 +msgid "Events replication is not enabled" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:102 +msgid "Events replication is not properly configured for this metaconsole" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:106 +msgid "" +"The server seems to be configurated to replicate events, but no events has " +"been received yet" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:110 +msgid "Unknown error" +msgstr "" + +#: ../../enterprise/include/functions_groups.php:47 +msgid "Metaconsole" +msgstr "" + +#: ../../enterprise/include/functions_log.php:277 +#: ../../enterprise/include/functions_log.php:290 +msgid "Lines" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:115 +msgid "" +"In order to have the best user experience with Pandora FMS, we strongly " +"recommend to use" +msgstr "" + +#: ../../enterprise/meta/general/login_page.php:116 +msgid "" +"Mozilla Firefox or Google Chrome browsers." +msgstr "" + +#: ../../enterprise/meta/general/noaccess.php:17 +msgid "Back to login" +msgstr "" + +#: ../../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 "" + +#: ../../enterprise/meta/general/main_header.php:110 +#: ../../enterprise/meta/screens/screens.php:83 +#: ../../godmode/reporting/map_builder.php:26 +msgid "Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:121 +msgid "Without permissions" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:121 +msgid "disabled" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:130 +msgid "Create new report" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:132 +msgid "Report templates" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:133 +#: ../../enterprise/meta/general/logon_ok.php:35 +#: ../../enterprise/meta/screens/screens.php:35 +#: ../../enterprise/meta/screens/screens.main.php:35 +msgid "Screens" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:136 +#: ../../enterprise/meta/screens/screens.php:78 +#: ../../enterprise/meta/screens/screens.networkmap.php:51 +#: ../../enterprise/meta/screens/screens.networkmap.php:64 +msgid "Networkmap" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:142 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:32 +#: ../../include/functions_reports.php:612 +#: ../../include/functions_reports.php:614 +#: ../../include/functions_reports.php:616 +#: ../../include/functions_reports.php:618 +#: ../../include/functions_reports.php:620 ../../godmode/setup/setup.php:95 +#: ../../godmode/setup/setup.php:124 +msgid "Netflow" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:143 +msgid "Live view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:145 +#: ../../godmode/events/events.php:53 ../../godmode/events/events.php:68 +msgid "Filters" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:150 +#: ../../enterprise/meta/advanced/synchronizing.php:33 +msgid "Synchronizing" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:151 +#: ../../enterprise/meta/advanced/propagation.php:33 +msgid "Propagation" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:153 +#: ../../enterprise/meta/general/main_header.php:164 +#: ../../enterprise/meta/include/functions_users_meta.php:168 +#: ../../enterprise/meta/include/functions_users_meta.php:190 +#: ../../godmode/users/user_list.php:111 ../../godmode/users/user_list.php:119 +#: ../../godmode/users/configure_profile.php:39 +#: ../../godmode/users/configure_profile.php:47 +#: ../../godmode/users/configure_user.php:80 +#: ../../godmode/users/profile_list.php:43 +#: ../../godmode/users/profile_list.php:51 +msgid "User management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:154 +#: ../../enterprise/godmode/modules/local_components.php:87 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:30 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 +#: ../../godmode/modules/manage_network_templates.php:30 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_components.php:39 +#: ../../godmode/modules/manage_nc_groups.php:38 +#: ../../godmode/modules/module_list.php:28 +msgid "Module management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:155 +msgid "Alert management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:156 +msgid "Tag management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:157 +msgid "Policy management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:158 +msgid "Category management" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:160 +msgid "Metasetup" +msgstr "" + +#: ../../enterprise/meta/general/logon_ok.php:36 +msgid "Network traffic" +msgstr "" + +#: ../../enterprise/meta/general/logon_ok.php:37 +#: ../../include/functions_networkmap.php:1060 +msgid "Topology" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:71 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:174 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:201 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:177 +#: ../../enterprise/godmode/alerts/alert_events.php:547 +#: ../../godmode/alerts/configure_alert_template.php:704 +msgid "Next" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:72 +#: ../../enterprise/godmode/alerts/alert_events.php:543 +#: ../../godmode/alerts/configure_alert_template.php:700 +msgid "Finish" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:73 +msgid "The alert you are trying to add is already in the list of alerts" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:81 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:327 +msgid "Please, select a module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:82 +msgid "Please, select an alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:83 +msgid "Please, select an agent" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:87 +#: ../../enterprise/meta/include/functions_wizard_meta.php:276 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1654 +#: ../../godmode/tag/edit_tag.php:164 +msgid "Url" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:88 +msgid "String" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.php:117 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:90 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:152 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:131 +msgid "Can't connect to Pandora FMS instance" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:81 +#: ../../enterprise/godmode/modules/configure_local_component.php:213 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:189 +#: ../../include/functions_reports.php:608 +#: ../../include/functions_reports.php:610 ../../godmode/setup/setup.php:129 +#: ../../godmode/agentes/planned_downtime.list.php:197 +msgid "Configuration" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:72 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:82 +msgid "Advanced configuration" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:74 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:104 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:84 +#: ../../enterprise/meta/include/functions_wizard_meta.php:903 +#: ../../enterprise/meta/include/functions_wizard_meta.php:988 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1076 +msgid "Preview" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:91 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:114 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:123 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:172 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:103 +msgid "Create module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:94 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:37 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:106 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1405 +msgid "Edit module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:171 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:174 +#: ../../include/functions_graph.php:714 +#: ../../include/functions_graph.php:2855 +msgid "Previous" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:188 +msgid "Please, set a name" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:198 +msgid "Please, set an interval" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:132 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1375 +#: ../../include/functions_treeview.php:81 +#: ../../godmode/modules/manage_network_components_form_wmi.php:89 +#: ../../godmode/massive/massive_delete_modules.php:243 +#: ../../godmode/massive/massive_edit_modules.php:210 +msgid "Module type" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:133 +#: ../../include/functions_reporting.php:2154 +#: ../../include/functions_reporting.php:2294 +#: ../../mobile/include/functions_web.php:23 +msgid "Monitor" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:134 +msgid "Web check" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:140 +msgid "Select template group" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:201 +msgid "Select template" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:207 +msgid "Module description" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:221 +msgid "Step by step wizard" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:227 +msgid "Click Create to continue" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:215 +msgid "Please, set a valid IP address" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:153 +msgid "Welcome to the Pandora FMS wizard." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:154 +#: ../../enterprise/meta/screens/screens.main.php:74 +msgid "To start select an option from the left side." +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:173 +#: ../../godmode/menu.php:76 +msgid "Manage modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:177 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:228 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:297 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:335 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:479 +msgid "Back" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:219 +msgid "Select the agent where the module will be created" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:231 +msgid "Create Module" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:328 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:401 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +msgid "Create alert" +msgstr "" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:329 +#: ../../godmode/users/configure_profile.php:166 ../../godmode/menu.php:101 +#: ../../godmode/alerts/alert_list.php:291 +#: ../../godmode/alerts/alert_list.php:294 +msgid "Manage alerts" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:31 +msgid "Group View" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:32 +msgid "Tactical View" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:73 +msgid "Agent and monitor information" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:130 +msgid "State of agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:188 +#: ../../enterprise/meta/monitoring/tactical.php:262 +msgid "State of modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:250 +msgid "State of Agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:283 +msgid "No servers" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:333 +msgid "Event information" +msgstr "" + +#: ../../enterprise/meta/monitoring/tactical.php:338 +msgid "More events" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:75 +msgid "Search results for" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:188 +msgid "There are no agents included in this group" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:193 +msgid "Event View" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:197 +msgid "Event viewer" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:453 +#: ../../enterprise/dashboard/widgets/events_list.php:44 +#: ../../include/functions_events.php:1407 +#: ../../include/functions_events.php:1426 +msgid "All event" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:454 +#: ../../include/functions_events.php:1408 +#: ../../include/functions_events.php:1429 +msgid "Only new" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:455 +#: ../../enterprise/dashboard/widgets/events_list.php:45 +#: ../../include/functions_events.php:1409 +#: ../../include/functions_events.php:1432 +msgid "Only validated" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:456 +#: ../../include/functions_events.php:1410 +#: ../../include/functions_events.php:1435 +msgid "Only in process" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:457 +#: ../../include/functions_events.php:1411 +#: ../../include/functions_events.php:1438 +msgid "Only not validated" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:526 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:147 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 +#: ../../mobile/operation/modules.php:135 +#: ../../mobile/operation/modules.php:136 +#: ../../mobile/operation/modules.php:217 +#: ../../mobile/operation/modules.php:218 +msgid "Tag" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:547 +msgid "Delete filter" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:770 +#: ../../enterprise/meta/event/event_view.php:945 +#: ../../include/functions_events.php:806 +#: ../../include/functions_events.php:2066 +#: ../../include/functions_reporting.php:1590 +#: ../../include/functions_reporting.php:2678 +#: ../../godmode/events/custom_events.php:68 +#: ../../godmode/events/custom_events.php:148 +msgid "Event name" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:902 +msgid "Comment:" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:908 +msgid "Set in process" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:908 +#: ../../enterprise/meta/event/event_view.php:911 +#: ../../include/functions_events.php:1617 +#: ../../include/functions_events.php:2241 +msgid "Add comment" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:918 +#: ../../include/functions_events.php:1578 +msgid "Change status" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:923 +msgid "Set alert on standby" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:1032 +#: ../../enterprise/meta/event/event_view.php:1072 +#: ../../godmode/events/custom_events.php:89 +#: ../../godmode/events/custom_events.php:155 +msgid "Agent module" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:1085 +msgid "Alert source" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:1096 +#: ../../enterprise/meta/event/event_view.php:1100 +#: ../../include/functions_events.php:1943 +#: ../../include/functions_events.php:1947 +msgid "Go to data overview" +msgstr "" + +#: ../../enterprise/meta/event/event_view.php:1171 +#: ../../include/functions_tags.php:622 msgid "Click here to open a popup window with URL tag" msgstr "" -#: ../../operation/events/events_list.php:776 -#: ../../enterprise/operation/metaconsole/eventview.php:905 -#: ../../include/functions_events.php:317 -msgid "No events" +#: ../../enterprise/meta/event/event_view.php:1196 +#: ../../include/functions_events.php:2018 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/events/custom_events.php:161 +msgid "Extra id" msgstr "" -#: ../../operation/events/events_rss.php:244 -msgid "SNMP" +#: ../../enterprise/meta/event/event_view.php:1207 +msgid "User name" msgstr "" -#: ../../operation/events/sound_events.php:46 -#: ../../operation/events/events.php:217 ../../operation/menu.php:247 -msgid "Sound Alerts" +#: ../../enterprise/meta/event/event_view.php:1282 +msgid "Error deleting filter" msgstr "" -#: ../../operation/events/sound_events.php:65 ../../operation/menu.php:239 -msgid "Sound Events" +#: ../../enterprise/meta/event/event_view.php:1286 +msgid "Filter deleted" msgstr "" -#: ../../operation/events/sound_events.php:78 -msgid "Monitor critical" +#: ../../enterprise/meta/event/event_view.php:1399 +msgid "Define name and group for the filter and click on Save filter again" msgstr "" -#: ../../operation/events/sound_events.php:79 -msgid "Monitor warning" -msgstr "" - -#: ../../operation/events/events.php:47 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:115 -msgid "Event" -msgstr "" - -#: ../../operation/events/events.php:194 -#: ../../operation/agentes/networkmap.php:180 -#: ../../operation/snmpconsole/snmp_view.php:52 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:766 -msgid "Full screen" -msgstr "" - -#: ../../operation/events/events.php:198 -msgid "RSS Events" -msgstr "" - -#: ../../operation/events/events.php:201 -msgid "Marquee display" -msgstr "" - -#: ../../operation/events/events.php:205 -msgid "Export to CSV file" -msgstr "" - -#: ../../operation/events/events.php:207 -msgid "Sound events" -msgstr "" - -#: ../../operation/events/events.php:229 -msgid "Main event view" -msgstr "" - -#: ../../operation/events/events.php:241 -msgid "No events selected" -msgstr "" - -#: ../../operation/events/events.php:264 -msgid "Successfully validated" -msgstr "" - -#: ../../operation/events/events.php:265 ../../operation/events/events.php:396 -#: ../../enterprise/operation/metaconsole/eventview.php:981 -msgid "Could not be validated" -msgstr "" - -#: ../../operation/events/events.php:269 -msgid "Successfully set in process" -msgstr "" - -#: ../../operation/events/events.php:270 -msgid "Could not be set in process" -msgstr "" - -#: ../../operation/events/events.php:374 -#: ../../enterprise/operation/metaconsole/eventview.php:958 +#: ../../enterprise/meta/event/event_view.php:1584 msgid "Could not set standby alert" msgstr "" -#: ../../operation/events/event_statistics.php:35 -msgid "Event graph" -msgstr "" - -#: ../../operation/events/event_statistics.php:39 -msgid "Event graph by user" -msgstr "" - -#: ../../operation/events/event_statistics.php:44 -msgid "Event graph by group" -msgstr "" - -#: ../../operation/servers/view_server.php:36 -#: ../../operation/servers/view_server_detail.php:30 -#: ../../operation/menu.php:163 -msgid "Pandora servers" -msgstr "" - -#: ../../operation/servers/view_server.php:40 -#: ../../godmode/servers/modificar_server.php:166 -msgid "There are no servers configured into the database" -msgstr "" - -#: ../../operation/servers/view_server.php:57 -#: ../../operation/agentes/tactical.php:255 -msgid "Load" -msgstr "" - -#: ../../operation/servers/view_server.php:57 -msgid "Modules running on this server / Total modules of this type" -msgstr "" - -#: ../../operation/servers/view_server.php:59 -#: ../../operation/agentes/tactical.php:256 -msgid "Lag" -msgstr "" - -#: ../../operation/servers/view_server.php:59 -msgid "Modules delayed / Max. Delay (sec)" -msgstr "" - -#: ../../operation/servers/view_server.php:60 -msgid "T/Q" -msgstr "" - -#: ../../operation/servers/view_server.php:60 -msgid "Threads / Queued modules currently" -msgstr "" - -#: ../../operation/servers/view_server.php:80 -#: ../../operation/agentes/tactical.php:268 -msgid "This is a master server" -msgstr "" - -#: ../../operation/servers/view_server.php:85 -msgid "of" -msgstr "" - -#: ../../operation/servers/view_server.php:98 -#: ../../operation/snmpconsole/snmp_view.php:575 -#: ../../godmode/servers/modificar_server.php:149 -#: ../../godmode/snmpconsole/snmp_alert.php:351 -msgid "Legend" -msgstr "" - -#: ../../operation/servers/view_server.php:100 -#: ../../godmode/servers/modificar_server.php:151 -#: ../../include/functions_servers.php:163 -msgid "Network server" -msgstr "" - -#: ../../operation/servers/view_server.php:101 -#: ../../godmode/servers/modificar_server.php:152 -msgid "Master" -msgstr "" - -#: ../../operation/servers/view_server.php:102 -#: ../../godmode/servers/modificar_server.php:153 -#: ../../include/functions_servers.php:158 -msgid "Data server" -msgstr "" - -#: ../../operation/servers/view_server.php:103 -#: ../../godmode/servers/modificar_server.php:154 -msgid "MD5 check" -msgstr "" - -#: ../../operation/servers/view_server.php:104 ../../operation/menu.php:267 -#: ../../godmode/servers/modificar_server.php:155 -msgid "SNMP console" -msgstr "" - -#: ../../operation/servers/view_server.php:105 -#: ../../godmode/servers/modificar_server.php:156 -#: ../../include/functions_servers.php:178 -msgid "Plugin server" -msgstr "" - -#: ../../operation/servers/view_server.php:107 -#: ../../godmode/servers/manage_recontask_form.php:152 -#: ../../godmode/servers/modificar_server.php:158 -#: ../../include/functions_servers.php:173 -msgid "Recon server" -msgstr "" - -#: ../../operation/servers/view_server.php:108 -#: ../../godmode/servers/modificar_server.php:159 -#: ../../include/functions_servers.php:188 -msgid "WMI server" -msgstr "" - -#: ../../operation/servers/view_server.php:109 -#: ../../godmode/servers/modificar_server.php:160 -#: ../../enterprise/godmode/servers/manage_export_form.php:69 -#: ../../include/functions_servers.php:193 -msgid "Export server" -msgstr "" - -#: ../../operation/servers/view_server.php:110 -#: ../../godmode/servers/modificar_server.php:161 -#: ../../include/functions_servers.php:198 -msgid "Inventory server" -msgstr "" - -#: ../../operation/servers/view_server.php:111 -#: ../../godmode/servers/modificar_server.php:162 -#: ../../include/functions_servers.php:203 -msgid "Web server" -msgstr "" - -#: ../../operation/servers/view_server.php:112 -#: ../../godmode/servers/modificar_server.php:163 -#: ../../include/functions_servers.php:183 -msgid "Prediction server" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:71 -#: ../../operation/servers/view_server_detail.php:103 -msgid "Force" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:74 -#: ../../godmode/servers/manage_recontask_form.php:148 -msgid "Task name" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:77 -#: ../../operation/agentes/estado_agente.php:423 -#: ../../operation/agentes/sla_view.php:58 -#: ../../operation/agentes/status_monitor.php:495 -#: ../../operation/agentes/estado_generalagente.php:128 -#: ../../operation/search_modules.php:181 -#: ../../operation/search_agents.php:222 -#: ../../godmode/massive/massive_edit_agents.php:248 -#: ../../godmode/massive/massive_edit_modules.php:321 -#: ../../godmode/modules/manage_network_components.php:347 -#: ../../godmode/modules/manage_network_components_form_common.php:67 -#: ../../godmode/servers/manage_recontask_form.php:184 -#: ../../godmode/servers/manage_recontask.php:217 -#: ../../godmode/agentes/module_manager.php:341 -#: ../../godmode/agentes/module_manager_editor_common.php:228 -#: ../../godmode/agentes/agent_manager.php:200 -#: ../../enterprise/operation/metaconsole/agentsearch.php:74 -#: ../../enterprise/godmode/servers/manage_export_form.php:78 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/agentes/inventory_manager.php:158 -#: ../../enterprise/godmode/agentes/inventory_manager.php:211 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:189 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:244 -#: ../../enterprise/dashboard/widgets/events_list.php:35 -msgid "Interval" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:80 -#: ../../godmode/servers/manage_recontask_form.php:168 -#: ../../godmode/servers/manage_recontask.php:217 -msgid "Network" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:86 -msgid "Recon module" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:89 -#: ../../operation/servers/view_server_detail.php:143 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:254 -#: ../../enterprise/godmode/policies/policy_queue.php:319 -msgid "Progress" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:118 -#: ../../operation/agentes/tactical.php:282 -#: ../../operation/agentes/tactical.php:286 -#: ../../operation/snmpconsole/snmp_view.php:452 -#: ../../operation/snmpconsole/snmp_view.php:462 -#: ../../operation/snmpconsole/snmp_view.php:469 -#: ../../godmode/modules/manage_network_components.php:362 -#: ../../godmode/servers/manage_recontask.php:235 -#: ../../enterprise/include/functions_services.php:160 -#: ../../enterprise/include/functions_services.php:178 -#: ../../enterprise/include/functions_services.php:195 -#: ../../include/functions.php:680 ../../include/functions.php:685 -#: ../../include/functions.php:688 ../../include/functions_reporting.php:1559 -#: ../../include/functions_reporting.php:1597 -#: ../../include/functions_reporting.php:1626 -#: ../../include/functions_ui.php:1356 ../../include/functions_ui.php:1364 -msgid "N/A" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:122 -msgid "Done" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:125 -msgid "Pending" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:130 -#: ../../godmode/servers/manage_recontask.php:240 -msgid "Network recon task" -msgstr "" - -#: ../../operation/servers/view_server_detail.php:159 -msgid "This server has no recon tasks assigned" -msgstr "" - -#: ../../operation/users/user_edit.php:46 -#: ../../godmode/users/configure_user.php:69 -msgid "User detail editor" -msgstr "" - -#: ../../operation/users/user_edit.php:72 -msgid "Password successfully updated" -msgstr "" - -#: ../../operation/users/user_edit.php:73 +#: ../../enterprise/meta/advanced/metasetup.password.php:47 +#: ../../enterprise/meta/advanced/metasetup.visual.php:47 +#: ../../enterprise/meta/advanced/metasetup.performance.php:47 +#: ../../enterprise/meta/advanced/metasetup.setup.php:47 #, php-format -msgid "Error updating passwords: %s" +msgid "Could not be update: Error in %s" msgstr "" -#: ../../operation/users/user_edit.php:75 +#: ../../enterprise/meta/advanced/metasetup.password.php:53 +#: ../../enterprise/meta/advanced/metasetup.visual.php:53 +#: ../../enterprise/meta/advanced/metasetup.performance.php:53 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:89 +#: ../../enterprise/meta/advanced/metasetup.setup.php:53 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:76 +msgid "Successfully update" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:70 +#: ../../enterprise/meta/include/functions_meta.php:133 +#: ../../enterprise/godmode/setup/setup.php:185 +#: ../../include/functions_config.php:225 +msgid "Enable password policy" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:76 +#: ../../enterprise/meta/include/functions_meta.php:143 +#: ../../enterprise/godmode/setup/setup.php:190 +#: ../../include/functions_config.php:228 +msgid "Min. size password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:77 +#: ../../enterprise/godmode/setup/setup.php:191 +msgid " Caracters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:81 +#: ../../enterprise/meta/include/functions_meta.php:153 +#: ../../enterprise/godmode/setup/setup.php:194 +#: ../../include/functions_config.php:238 +msgid "Password must have numbers" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:87 +#: ../../enterprise/meta/include/functions_meta.php:163 +#: ../../enterprise/godmode/setup/setup.php:199 +#: ../../include/functions_config.php:240 +msgid "Password must have symbols" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:93 +#: ../../enterprise/meta/include/functions_meta.php:173 +#: ../../enterprise/godmode/setup/setup.php:204 +#: ../../include/functions_config.php:230 +msgid "Password expiration" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:93 +#: ../../enterprise/godmode/setup/setup.php:204 +msgid "Set 0 if never expire." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:94 +#: ../../enterprise/godmode/setup/setup.php:205 +msgid " Days" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:98 +#: ../../enterprise/meta/include/functions_meta.php:183 +#: ../../enterprise/godmode/setup/setup.php:208 +#: ../../include/functions_config.php:232 +msgid "Force change password on first login" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:104 +#: ../../enterprise/meta/include/functions_meta.php:193 +#: ../../enterprise/godmode/setup/setup.php:213 +#: ../../include/functions_config.php:234 +msgid "User blocked if login fails" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/godmode/setup/setup.php:214 +msgid " Minutes" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/meta/include/functions_meta.php:203 +#: ../../enterprise/godmode/setup/setup.php:217 +#: ../../include/functions_config.php:236 +msgid "Number of failed login attempts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/godmode/setup/setup.php:217 +msgid "Two attempts minimum" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:110 +#: ../../enterprise/godmode/setup/setup.php:218 +msgid " Attempts" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:114 +#: ../../enterprise/meta/include/functions_meta.php:213 +#: ../../enterprise/godmode/setup/setup.php:221 +#: ../../include/functions_config.php:242 +msgid "Apply password policy to admin users" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:120 +#: ../../enterprise/meta/include/functions_meta.php:223 +#: ../../enterprise/godmode/setup/setup.php:226 +#: ../../include/functions_config.php:244 +msgid "Enable password history" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:126 +#: ../../enterprise/meta/include/functions_meta.php:233 +#: ../../enterprise/godmode/setup/setup.php:231 +#: ../../include/functions_config.php:246 +msgid "Compare previous password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.password.php:135 +msgid "Passwords" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:133 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:134 +#: ../../enterprise/meta/include/functions_networkmap_meta.php:347 +#: ../../enterprise/godmode/agentes/collection_manager.php:43 +#: ../../enterprise/godmode/agentes/collections.php:198 +#: ../../enterprise/godmode/policies/policy_collections.php:172 +#: ../../enterprise/godmode/policies/policies.php:205 +#: ../../enterprise/extensions/translate_string.php:250 +#: ../../enterprise/extensions/translate_string.php:251 +#: ../../godmode/agentes/modificar_agente.php:158 +#: ../../godmode/admin_access_logs.php:65 +#: ../../godmode/admin_access_logs.php:66 +msgid "Free text for search (*)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 +#: ../../enterprise/extensions/translate_string.php:266 +msgid "Please search for anything text." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:58 +#: ../../enterprise/meta/advanced/synchronizing.php:76 +msgid "Users synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:62 +#: ../../enterprise/meta/advanced/synchronizing.php:79 +msgid "Groups synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:66 +#: ../../enterprise/meta/advanced/synchronizing.php:82 +msgid "Alerts synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.php:70 +#: ../../enterprise/meta/advanced/synchronizing.php:85 +msgid "Tags synchronization" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:35 +msgid "Policy Manager" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:64 +msgid "Apply policies" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:68 +#: ../../enterprise/meta/advanced/policymanager.php:82 +msgid "Policies queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.php:79 +msgid "Policies apply" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:255 +#: ../../enterprise/meta/advanced/propagation.component.php:255 +#, php-format +msgid "Error creating %s components groups " +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:258 +#: ../../enterprise/meta/advanced/propagation.component.php:258 +#, php-format +msgid "Created %s component groups" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:263 +#: ../../enterprise/meta/advanced/propagation.component.php:263 +#, php-format +msgid "Error creating/updating %s/%s local components " +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:266 +#: ../../enterprise/meta/advanced/propagation.component.php:266 +#, php-format +msgid "Created/Updated %s/%s local components" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:271 +#: ../../enterprise/meta/advanced/propagation.component.php:271 +#, php-format +msgid "Error creating/updating %s/%s network components " +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:274 +#: ../../enterprise/meta/advanced/propagation.component.php:274 +#, php-format +msgid "Created/Updated %s/%s network components" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:280 +#: ../../enterprise/meta/advanced/propagation.component.php:280 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:278 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:112 +#: ../../enterprise/meta/advanced/policymanager.sync.php:243 +#: ../../enterprise/meta/advanced/synchronizing.group.php:127 +#: ../../enterprise/meta/advanced/synchronizing.user.php:490 +#: ../../enterprise/meta/advanced/synchronizing.user.php:565 +#, php-format +msgid "Error connecting to %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:295 +#: ../../enterprise/meta/advanced/propagation.component.php:295 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:318 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:138 +#: ../../enterprise/meta/advanced/policymanager.sync.php:301 +#: ../../enterprise/meta/advanced/synchronizing.group.php:153 +#: ../../enterprise/meta/advanced/synchronizing.user.php:507 +msgid "This metaconsole" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:304 +#: ../../enterprise/meta/advanced/propagation.component.php:304 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:329 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:147 +#: ../../enterprise/meta/advanced/policymanager.sync.php:313 +#: ../../enterprise/meta/advanced/synchronizing.group.php:162 +#: ../../godmode/massive/massive_copy_modules.php:150 +msgid "Targets" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.component.php:311 +#: ../../enterprise/meta/advanced/propagation.component.php:311 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:336 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:154 +#: ../../enterprise/meta/advanced/policymanager.sync.php:320 +#: ../../enterprise/meta/advanced/synchronizing.group.php:169 +#: ../../enterprise/meta/advanced/synchronizing.user.php:574 +msgid "Sync" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:135 +#: ../../enterprise/godmode/policies/policy.php:114 +#: ../../enterprise/godmode/policies/policy.php:135 +msgid "Duplicated or incompatible operation in the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:142 +#: ../../enterprise/meta/advanced/policymanager.apply.php:146 +#: ../../enterprise/godmode/policies/policy.php:108 +#: ../../enterprise/godmode/policies/policy.php:131 +msgid "Operation successfully added to the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:146 +#: ../../enterprise/meta/advanced/policymanager.apply.php:154 +msgid "Only database" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:150 +#: ../../enterprise/meta/advanced/policymanager.apply.php:154 +#: ../../enterprise/meta/advanced/policymanager.apply.php:158 +#: ../../enterprise/godmode/policies/policy.php:111 +#: ../../enterprise/godmode/policies/policy.php:132 +msgid "Operation cannot be added to the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:201 +#: ../../mobile/include/functions_web.php:27 +#: ../../godmode/reporting/visual_console_builder.wizard.php:146 +msgid "Servers" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:70 +#: ../../enterprise/meta/include/functions_meta.php:243 +#: ../../include/functions_config.php:361 +#: ../../godmode/setup/setup_visuals.php:47 +msgid "Date format string" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:71 +#: ../../godmode/setup/setup_visuals.php:48 +msgid "Example" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:84 +#: ../../enterprise/meta/include/functions_meta.php:253 +#: ../../include/functions_config.php:363 +#: ../../godmode/setup/setup_visuals.php:62 +msgid "Timestamp or time comparation" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:85 +#: ../../godmode/setup/setup_visuals.php:63 +msgid "Comparation in rollover" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:87 +#: ../../godmode/setup/setup_visuals.php:65 +msgid "Timestamp in rollover" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:92 +#: ../../enterprise/meta/include/functions_meta.php:263 +#: ../../include/functions_config.php:365 +#: ../../godmode/setup/setup_visuals.php:70 +msgid "Graph color (min)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:97 +#: ../../enterprise/meta/include/functions_meta.php:273 +#: ../../include/functions_config.php:367 +#: ../../godmode/setup/setup_visuals.php:75 +msgid "Graph color (avg)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:102 +#: ../../enterprise/meta/include/functions_meta.php:283 +#: ../../include/functions_config.php:369 +#: ../../godmode/setup/setup_visuals.php:80 +msgid "Graph color (max)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:107 +#: ../../enterprise/meta/include/functions_meta.php:293 +#: ../../include/functions_config.php:371 +#: ../../godmode/setup/setup_visuals.php:85 +msgid "Graphic resolution (1-low, 5-high)" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:117 +#: ../../enterprise/meta/include/functions_meta.php:313 +#: ../../include/functions_config.php:380 +#: ../../godmode/setup/setup_visuals.php:126 +msgid "Use round corners" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:127 +#: ../../enterprise/meta/include/functions_meta.php:333 +msgid "Show Visual Console" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:127 +msgid "Switch to show or hide Visual Console." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:131 +#: ../../enterprise/meta/include/functions_meta.php:343 +msgid "Metaconsole elements" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:131 +msgid "The number of elements retrieved for each instance in some views." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:138 +msgid "Visual" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:60 +#: ../../enterprise/godmode/policies/policy_queue.php:59 +msgid "Operation successfully deleted from the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:61 +#: ../../enterprise/godmode/policies/policy_queue.php:60 +msgid "Operation cannot be deleted from the queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:232 +#: ../../enterprise/godmode/policies/policy_queue.php:368 +msgid "Apply (database and files)" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:232 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/godmode/policies/policy_queue.php:368 +#: ../../enterprise/godmode/policies/policy_queue.php:441 +msgid "Apply (only database)" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/godmode/policies/policy_queue.php:374 +msgid "Complete" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 +#: ../../enterprise/godmode/policies/policy_queue.php:374 +msgid "Incomplete" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:252 +#: ../../enterprise/godmode/policies/policy_queue.php:388 +msgid "Queue filter" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:266 +#: ../../enterprise/godmode/policies/policy_queue.php:401 +msgid "Finished" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:340 +#: ../../enterprise/godmode/policies/policy_queue.php:469 +msgid "Delete from queue" +msgstr "" + +#: ../../enterprise/meta/advanced/policymanager.queue.php:358 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +msgid "Empty queue" +msgstr "" + +#: ../../enterprise/meta/advanced/propagation.php:58 +#: ../../enterprise/meta/advanced/propagation.php:68 +msgid "Components propagation" +msgstr "" + +#: ../../enterprise/meta/advanced/propagation.php:62 +#: ../../enterprise/meta/advanced/propagation.php:71 +msgid "Agents movement" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:80 +#: ../../enterprise/meta/advanced/propagation.agent.php:80 +msgid "redirected ip server in conf into source DB" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:81 +#: ../../enterprise/meta/advanced/propagation.agent.php:81 +msgid "created agent in destination DB" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:82 +#: ../../enterprise/meta/advanced/propagation.agent.php:82 +msgid "created agent modules in destination DB" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:83 +#: ../../enterprise/meta/advanced/propagation.agent.php:83 +msgid "created agent alerts in destination DB" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:84 +#: ../../enterprise/meta/advanced/propagation.agent.php:84 +msgid "created alerts actions in destination DB" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:85 +#: ../../enterprise/meta/advanced/propagation.agent.php:85 +msgid "disabled agent in source DB" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:86 +#: ../../enterprise/meta/advanced/propagation.agent.php:86 msgid "" -"Passwords didn't match or other problem encountered while updating passwords" +"Not set metaconsole IP in the \"IP list with API access\" guess Pandora " +"Console." msgstr "" -#: ../../operation/users/user_edit.php:86 -#: ../../operation/users/user_edit.php:104 -#: ../../godmode/users/configure_user.php:225 -#: ../../godmode/users/configure_user.php:248 -#: ../../godmode/users/configure_user.php:254 -#: ../../godmode/users/configure_user.php:263 -msgid "User info successfully updated" +#: ../../enterprise/meta/advanced/synchronizing.agent.php:94 +#: ../../enterprise/meta/advanced/propagation.agent.php:94 +msgid "Successfully moved" msgstr "" -#: ../../operation/users/user_edit.php:87 -#: ../../operation/users/user_edit.php:105 -msgid "Error updating user info" +#: ../../enterprise/meta/advanced/synchronizing.agent.php:94 +#: ../../enterprise/meta/advanced/propagation.agent.php:94 +msgid "Could not be moved" msgstr "" -#: ../../operation/users/user_edit.php:127 -#: ../../godmode/users/configure_user.php:336 -msgid "Full (display) name" +#: ../../enterprise/meta/advanced/synchronizing.agent.php:131 +#: ../../enterprise/meta/advanced/propagation.agent.php:131 +msgid "Source Server" msgstr "" -#: ../../operation/users/user_edit.php:143 -msgid "New Password" +#: ../../enterprise/meta/advanced/synchronizing.agent.php:133 +#: ../../enterprise/meta/advanced/propagation.agent.php:133 +msgid "Destination Server" msgstr "" -#: ../../operation/users/user_edit.php:145 -#: ../../godmode/users/configure_user.php:348 -msgid "Password confirmation" +#: ../../enterprise/meta/advanced/synchronizing.agent.php:139 +#: ../../enterprise/meta/advanced/synchronizing.agent.php:141 +#: ../../enterprise/meta/advanced/propagation.agent.php:139 +#: ../../enterprise/meta/advanced/propagation.agent.php:141 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:79 +msgid "Group filter" msgstr "" -#: ../../operation/users/user_edit.php:148 +#: ../../enterprise/meta/advanced/synchronizing.agent.php:153 +#: ../../enterprise/meta/advanced/propagation.agent.php:153 +msgid "Add agents to destination server" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.agent.php:163 +#: ../../enterprise/meta/advanced/propagation.agent.php:163 +msgid "Move" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:286 +#, php-format +msgid "Error creating/updating %s/%s comamnds" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:289 +#, php-format +msgid "Created/Updated %s/%s commands" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:294 +#, php-format +msgid "Error creating/updating %s/%s actions" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:297 +#, php-format +msgid "Created/Updated %s/%s actions" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 +#, php-format +msgid "Error creating/updating %s/%s templates" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.alert.php:305 +#, php-format +msgid "Created/Updated %s/%s templates" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:70 +#: ../../enterprise/meta/include/functions_meta.php:353 +#: ../../include/functions_config.php:324 +#: ../../godmode/setup/performance.php:45 +msgid "Max. days before delete events" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:74 +#: ../../enterprise/meta/include/functions_meta.php:363 +msgid "Active events history" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:373 +#: ../../include/functions_config.php:330 +#: ../../godmode/setup/performance.php:51 +msgid "Max. days before delete audit events" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:84 +#: ../../enterprise/meta/include/functions_meta.php:383 +#: ../../include/functions_config.php:344 +#: ../../godmode/setup/performance.php:93 +msgid "Default hours for event view" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../enterprise/meta/include/functions_meta.php:393 +#: ../../include/functions_config.php:350 +#: ../../godmode/setup/performance.php:103 +msgid "Use agent access graph" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:99 +#: ../../godmode/setup/setup.php:85 ../../godmode/setup/setup.php:115 +msgid "Performance" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:90 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:77 +msgid "Could not be update" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:120 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:107 +#: ../../enterprise/godmode/servers/manage_export.php:105 +#: ../../enterprise/godmode/servers/manage_export.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:35 +#: ../../enterprise/godmode/alerts/alert_events.php:330 +#: ../../enterprise/extensions/cron/main.php:76 +#: ../../enterprise/extensions/cron/main.php:131 +#: ../../godmode/setup/links.php:41 ../../godmode/setup/news.php:45 +#: ../../godmode/setup/gis.php:45 +#: ../../godmode/modules/manage_nc_groups.php:70 +#: ../../godmode/users/configure_user.php:220 +#: ../../godmode/users/profile_list.php:165 +#: ../../godmode/agentes/configurar_agente.php:488 +#: ../../godmode/agentes/planned_downtime.editor.php:247 +#: ../../godmode/snmpconsole/snmp_alert.php:112 +#: ../../godmode/snmpconsole/snmp_filters.php:66 +#: ../../godmode/alerts/alert_special_days.php:86 +#: ../../godmode/alerts/configure_alert_template.php:412 +#: ../../godmode/alerts/alert_commands.php:172 +#: ../../godmode/alerts/alert_actions.php:179 +#: ../../godmode/alerts/alert_list.php:101 +msgid "Successfully created" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:131 +msgid "Could not be delete" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:140 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 +#: ../../enterprise/godmode/policies/policy_alerts.php:76 +#: ../../enterprise/godmode/alerts/alert_events_list.php:197 +#: ../../include/ajax/alert_list.ajax.php:79 +#: ../../godmode/users/user_list.php:174 +#: ../../godmode/agentes/modificar_agente.php:110 +#: ../../godmode/agentes/configurar_agente.php:1260 +#: ../../godmode/massive/massive_enable_disable_alerts.php:78 +#: ../../godmode/alerts/alert_list.php:199 +msgid "Successfully enabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:141 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:124 +#: ../../enterprise/godmode/policies/policy_alerts.php:76 +#: ../../enterprise/godmode/alerts/alert_events_list.php:197 +#: ../../include/ajax/alert_list.ajax.php:81 +#: ../../godmode/agentes/modificar_agente.php:110 +#: ../../godmode/agentes/configurar_agente.php:1260 +#: ../../godmode/massive/massive_enable_disable_alerts.php:78 +#: ../../godmode/alerts/alert_list.php:199 +msgid "Could not be enabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:150 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:129 +#: ../../enterprise/godmode/policies/policy_alerts.php:92 +#: ../../enterprise/godmode/alerts/alert_events_list.php:212 +#: ../../include/ajax/alert_list.ajax.php:90 +#: ../../godmode/users/user_list.php:169 +#: ../../godmode/agentes/modificar_agente.php:124 +#: ../../godmode/agentes/configurar_agente.php:1274 +#: ../../godmode/massive/massive_enable_disable_alerts.php:96 +#: ../../godmode/alerts/alert_list.php:215 +msgid "Successfully disabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:151 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:130 +#: ../../enterprise/godmode/policies/policy_alerts.php:92 +#: ../../enterprise/godmode/alerts/alert_events_list.php:212 +#: ../../include/ajax/alert_list.ajax.php:92 +#: ../../godmode/agentes/modificar_agente.php:124 +#: ../../godmode/agentes/configurar_agente.php:1274 +#: ../../godmode/massive/massive_enable_disable_alerts.php:96 +#: ../../godmode/alerts/alert_list.php:215 +msgid "Could not be disabled" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:200 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:168 +msgid "Pandora FMS Metaconsole item edition" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:201 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:260 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:171 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 +#: ../../godmode/events/custom_events.php:119 +#: ../../godmode/events/custom_events.php:165 +msgid "Server name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:203 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 +msgid "Auth token" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:203 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 msgid "" -"You can not change your password from Pandora FMS under the current " -"authentication scheme" +"Token previously configured on the destination Pandora console in order to " +"use delegated authentification." msgstr "" -#: ../../operation/users/user_edit.php:152 -#: ../../godmode/users/user_list.php:201 -#: ../../godmode/users/configure_user.php:368 -msgid "E-mail" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:205 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:261 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:179 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:248 +msgid "Console URL" msgstr "" -#: ../../operation/users/user_edit.php:155 -#: ../../godmode/users/configure_user.php:372 -msgid "Phone number" -msgstr "" - -#: ../../operation/users/user_edit.php:158 -#: ../../godmode/users/configure_user.php:340 -#: ../../enterprise/extensions/translate_string.php:214 -msgid "Language" -msgstr "" - -#: ../../operation/users/user_edit.php:180 -#: ../../godmode/groups/configure_group.php:121 -#: ../../godmode/users/configure_user.php:398 -msgid "Skin" -msgstr "" - -#: ../../operation/users/user_edit.php:185 -#: ../../godmode/users/configure_user.php:403 -#: ../../godmode/setup/setup_visuals.php:94 -msgid "Flash charts" -msgstr "" - -#: ../../operation/users/user_edit.php:186 -#: ../../godmode/massive/massive_edit_modules.php:325 -#: ../../godmode/massive/massive_edit_modules.php:360 -#: ../../godmode/servers/manage_recontask_form.php:214 -#: ../../godmode/servers/manage_recontask.php:257 -#: ../../godmode/users/configure_user.php:404 -#: ../../godmode/reporting/reporting_builder.php:96 -#: ../../godmode/setup/performance.php:91 -#: ../../godmode/setup/performance.php:98 ../../godmode/setup/setup.php:93 -#: ../../godmode/setup/setup.php:97 ../../godmode/setup/setup.php:112 -#: ../../godmode/setup/setup.php:116 ../../godmode/setup/setup_auth.php:45 -#: ../../godmode/setup/setup_auth.php:71 -#: ../../godmode/setup/setup_visuals.php:76 -#: ../../godmode/setup/setup_visuals.php:95 -#: ../../enterprise/godmode/setup/setup.php:22 -#: ../../enterprise/godmode/setup/setup.php:29 -#: ../../enterprise/godmode/setup/setup.php:36 -#: ../../enterprise/godmode/setup/setup_history.php:46 -#: ../../enterprise/godmode/setup/setup_auth.php:51 -msgid "Yes" -msgstr "" - -#: ../../operation/users/user_edit.php:186 -#: ../../godmode/massive/massive_edit_modules.php:325 -#: ../../godmode/massive/massive_edit_modules.php:360 -#: ../../godmode/servers/manage_recontask_form.php:214 -#: ../../godmode/servers/manage_recontask.php:257 -#: ../../godmode/users/configure_user.php:404 -#: ../../godmode/reporting/reporting_builder.php:98 -#: ../../godmode/setup/performance.php:92 -#: ../../godmode/setup/performance.php:99 ../../godmode/setup/setup.php:94 -#: ../../godmode/setup/setup.php:98 ../../godmode/setup/setup.php:113 -#: ../../godmode/setup/setup.php:117 ../../godmode/setup/setup_auth.php:46 -#: ../../godmode/setup/setup_auth.php:72 -#: ../../godmode/setup/setup_visuals.php:77 -#: ../../godmode/setup/setup_visuals.php:96 -#: ../../enterprise/godmode/setup/setup.php:23 -#: ../../enterprise/godmode/setup/setup.php:30 -#: ../../enterprise/godmode/setup/setup.php:37 -#: ../../enterprise/godmode/setup/setup_history.php:47 -#: ../../enterprise/godmode/setup/setup_auth.php:52 -msgid "No" -msgstr "" - -#: ../../operation/users/user_edit.php:188 -msgid "If checkbox is clicked then block size global configuration is used" -msgstr "" - -#: ../../operation/users/user_edit.php:204 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:205 msgid "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" +"Complete path to Pandora console without last \"/\" character. Example " msgstr "" -#: ../../operation/users/user_edit.php:210 -#: ../../godmode/users/configure_user.php:437 -msgid "Profiles/Groups assigned to this user" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:207 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:183 +#: ../../godmode/setup/setup_general.php:86 +msgid "API password" msgstr "" -#: ../../operation/users/user_edit.php:219 -#: ../../godmode/massive/massive_add_profiles.php:87 -#: ../../godmode/massive/massive_delete_profiles.php:103 -#: ../../godmode/users/configure_user.php:446 -#: ../../godmode/users/configure_profile.php:115 -#: ../../enterprise/godmode/setup/setup_acl.php:106 -msgid "Profile name" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:209 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:262 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:188 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:249 +msgid "DB Host" msgstr "" -#: ../../operation/users/user_edit.php:240 -msgid "This user doesn't have any assigned profile/group" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:211 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 +msgid "DB Name" msgstr "" -#: ../../operation/agentes/group_view.php:73 ../../operation/menu.php:46 -#: ../../enterprise/operation/metaconsole/groupview.php:27 -#: ../../enterprise/operation/menu.php:76 -msgid "Group view" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:213 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:197 +msgid "DB User" msgstr "" -#: ../../operation/agentes/group_view.php:90 -#: ../../enterprise/operation/metaconsole/tactical.php:45 -#: ../../enterprise/operation/metaconsole/groupview.php:44 -msgid "Agent unknown" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:215 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:201 +msgid "DB Password" msgstr "" -#: ../../operation/agentes/group_view.php:92 -#: ../../enterprise/operation/metaconsole/tactical.php:47 -msgid "Not Init" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:217 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 +msgid "Console User" msgstr "" -#: ../../operation/agentes/group_view.php:108 -#: ../../operation/agentes/estado_agente.php:549 -#: ../../godmode/agentes/modificar_agente.php:467 -msgid "There are no defined agents" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:219 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 +msgid "Console Password" msgstr "" -#: ../../operation/agentes/agent_fields.php:28 -#: ../../operation/agentes/custom_fields.php:28 -#: ../../operation/agentes/estado_generalagente.php:36 -msgid "There was a problem loading agent" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:256 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 +msgid "DB" msgstr "" -#: ../../operation/agentes/agent_fields.php:38 -msgid "Agent custom fields" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:257 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 +msgid "API" msgstr "" -#: ../../operation/agentes/agent_fields.php:45 -#: ../../operation/agentes/estado_generalagente.php:199 -msgid "Custom field" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:258 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:246 +msgid "Compatibility" msgstr "" -#: ../../operation/agentes/agent_fields.php:48 -#: ../../operation/agentes/custom_fields.php:69 -#: ../../operation/agentes/estado_generalagente.php:202 -msgid "empty" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:259 +#: ../../enterprise/godmode/setup/setup.php:50 +#: ../../include/functions_config.php:194 +msgid "Events replication" msgstr "" -#: ../../operation/agentes/ver_agente.php:280 -#: ../../enterprise/operation/agentes/ver_agente.php:70 -msgid "Main IP" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:328 +msgid "There aren't server added to metaconsole" msgstr "" -#: ../../operation/agentes/ver_agente.php:286 -#: ../../enterprise/operation/agentes/ver_agente.php:76 -msgid "Last remote contact" +#: ../../enterprise/meta/advanced/metasetup.php:47 +msgid "Consoles Setup" msgstr "" -#: ../../operation/agentes/ver_agente.php:308 -#: ../../enterprise/operation/agentes/ver_agente.php:113 -msgid "Monitors down" +#: ../../enterprise/meta/advanced/metasetup.php:51 +#: ../../enterprise/meta/advanced/metasetup.php:82 +msgid "General setup" msgstr "" -#: ../../operation/agentes/ver_agente.php:376 -#: ../../enterprise/godmode/servers/manage_export_form.php:82 -#: ../../enterprise/godmode/servers/manage_export.php:114 -msgid "Address" +#: ../../enterprise/meta/advanced/metasetup.php:55 +#: ../../enterprise/meta/advanced/metasetup.php:85 +msgid "Passwords setup" msgstr "" -#: ../../operation/agentes/ver_agente.php:403 -#: ../../operation/agentes/estado_generalagente.php:124 -#: ../../godmode/massive/massive_edit_agents.php:238 -#: ../../godmode/groups/configure_group.php:94 -#: ../../godmode/modules/manage_nc_groups_form.php:49 -#: ../../godmode/modules/manage_nc_groups.php:146 -#: ../../godmode/agentes/agent_manager.php:188 -#: ../../godmode/reporting/visual_console_builder.elements.php:72 -#: ../../godmode/reporting/visual_console_builder.editor.php:237 -msgid "Parent" +#: ../../enterprise/meta/advanced/metasetup.php:59 +#: ../../enterprise/meta/advanced/metasetup.php:88 +msgid "Visual setup" msgstr "" -#: ../../operation/agentes/ver_agente.php:412 -msgid "Sons" +#: ../../enterprise/meta/advanced/metasetup.php:63 +#: ../../enterprise/meta/advanced/metasetup.php:91 +msgid "Performance setup" msgstr "" -#: ../../operation/agentes/ver_agente.php:493 -#: ../../operation/search_agents.php:282 -msgid "Manage" +#: ../../enterprise/meta/advanced/metasetup.php:67 +#: ../../enterprise/meta/advanced/metasetup.php:94 +#: ../../godmode/setup/file_manager.php:30 ../../godmode/menu.php:208 +msgid "File manager" msgstr "" -#: ../../operation/agentes/ver_agente.php:504 -#: ../../godmode/reporting/reporting_builder.php:633 -msgid "Main" +#: ../../enterprise/meta/advanced/metasetup.php:71 +#: ../../enterprise/meta/advanced/metasetup.php:97 +msgid "Strings translation" msgstr "" -#: ../../operation/agentes/ver_agente.php:534 -#: ../../operation/agentes/ver_agente.php:661 -#: ../../operation/agentes/sla_view.php:56 -#: ../../operation/agentes/sla_view.php:122 -#: ../../operation/reporting/reporting_xml.php:256 -#: ../../enterprise/include/functions_reporting_csv.php:186 -#: ../../enterprise/include/functions_reporting_pdf.php:2120 -#: ../../include/functions.php:707 ../../include/functions_reporting.php:2284 -msgid "S.L.A." +#: ../../enterprise/meta/advanced/metasetup.php:79 +msgid "Consoles setup" msgstr "" -#: ../../operation/agentes/ver_agente.php:574 -#: ../../godmode/agentes/configurar_agente.php:289 -msgid "GIS data" +#: ../../enterprise/meta/advanced/synchronizing.tag.php:122 +#, php-format +msgid "Error creating/updating %s/%s tags" msgstr "" -#: ../../operation/agentes/ver_agente.php:584 -#: ../../operation/agentes/ver_agente.php:673 -#: ../../godmode/massive/massive_edit_agents.php:395 -#: ../../godmode/agentes/agent_manager.php:346 -msgid "Custom fields" +#: ../../enterprise/meta/advanced/synchronizing.tag.php:125 +#, php-format +msgid "Created/Updated %s/%s tags" msgstr "" -#: ../../operation/agentes/ver_agente.php:655 -msgid "Last data" +#: ../../enterprise/meta/advanced/policymanager.sync.php:253 +#, php-format +msgid "Error creating %s policies" msgstr "" -#: ../../operation/agentes/ver_agente.php:664 -#: ../../godmode/agentes/configurar_agente.php:334 -#: ../../enterprise/operation/agentes/ver_agente.php:173 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/inventory/inventory.php:60 -#: ../../enterprise/godmode/agentes/configurar_agente.php:33 -msgid "Inventory" +#: ../../enterprise/meta/advanced/policymanager.sync.php:256 +#, php-format +msgid "Created %s policies" msgstr "" -#: ../../operation/agentes/ver_agente.php:667 -#: ../../godmode/agentes/configurar_agente.php:331 -#: ../../enterprise/operation/agentes/ver_agente.php:189 -#: ../../enterprise/godmode/agentes/collections.php:218 -#: ../../enterprise/include/functions_groups.php:75 -msgid "Collection" +#: ../../enterprise/meta/advanced/policymanager.sync.php:261 +#, php-format +msgid "Error creating/updating %s/%s policy modules" msgstr "" -#: ../../operation/agentes/ver_agente.php:670 -#: ../../godmode/agentes/configurar_agente.php:346 -msgid "Gis" +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 +#, php-format +msgid "Created/Updated %s/%s policy modules" msgstr "" -#: ../../operation/agentes/ver_agente.php:679 -#: ../../operation/agentes/status_monitor.php:481 -#: ../../operation/agentes/estado_monitores.php:223 -#: ../../operation/agentes/alerts_status.php:261 -#: ../../operation/agentes/alerts_status.php:292 -#: ../../operation/agentes/estado_ultimopaquete.php:258 -#: ../../godmode/agentes/module_manager.php:334 -#: ../../enterprise/extensions/resource_exportation/functions.php:17 -#: ../../enterprise/operation/agentes/collection_view.php:59 -#: ../../enterprise/operation/agentes/policy_view.php:50 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:215 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:251 -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:213 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:92 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:91 -#: ../../enterprise/godmode/agentes/collection_manager.php:122 -#: ../../enterprise/godmode/agentes/inventory_manager.php:207 -#: ../../enterprise/godmode/policies/policy_queue.php:274 -#: ../../enterprise/godmode/policies/policy_queue.php:316 -#: ../../enterprise/include/functions_policies.php:58 -msgid "Policy" +#: ../../enterprise/meta/advanced/policymanager.sync.php:269 +#, php-format +msgid "Error deleting %s policy modules" msgstr "" -#: ../../operation/agentes/estado_agente.php:133 -#: ../../operation/gis_maps/render_view.php:99 -#: ../../operation/visual_console/render_view.php:60 -#: ../../godmode/agentes/configurar_agente.php:224 -#: ../../godmode/agentes/configurar_agente.php:328 ../../godmode/menu.php:204 -#: ../../godmode/reporting/graph_builder.php:155 -#: ../../enterprise/operation/services/services.php:35 -#: ../../enterprise/include/functions_policies.php:3014 -msgid "Setup" +#: ../../enterprise/meta/advanced/policymanager.sync.php:272 +#, php-format +msgid "Deleted %s policy modules" msgstr "" -#: ../../operation/agentes/estado_agente.php:144 ../../operation/menu.php:51 -#: ../../godmode/agentes/agent_manager.php:155 -msgid "Agent detail" +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 +#, php-format +msgid "Error creating %s policy alerts" msgstr "" -#: ../../operation/agentes/estado_agente.php:154 -#: ../../godmode/massive/massive_delete_action_alerts.php:162 -#: ../../godmode/massive/massive_copy_modules.php:75 -#: ../../godmode/massive/massive_copy_modules.php:164 -#: ../../godmode/massive/massive_edit_agents.php:198 -#: ../../godmode/massive/massive_enable_disable_alerts.php:131 -#: ../../godmode/massive/massive_delete_agents.php:103 -#: ../../godmode/massive/massive_add_action_alerts.php:153 -#: ../../godmode/massive/massive_edit_modules.php:282 -#: ../../godmode/massive/massive_delete_alerts.php:150 -#: ../../godmode/massive/massive_add_alerts.php:124 -#: ../../godmode/massive/massive_delete_modules.php:129 -#: ../../godmode/massive/massive_standby_alerts.php:133 -#: ../../godmode/agentes/modificar_agente.php:125 -msgid "Group recursion" +#: ../../enterprise/meta/advanced/policymanager.sync.php:280 +#, php-format +msgid "Created %s policy alerts" msgstr "" -#: ../../operation/agentes/estado_agente.php:159 -#: ../../operation/agentes/alerts_status.functions.php:63 -#: ../../operation/agentes/datos_agente.php:176 -msgid "Free text for search" +#: ../../enterprise/meta/advanced/policymanager.sync.php:285 +#, php-format +msgid "Error deleting %s policy alerts" msgstr "" -#: ../../operation/agentes/estado_agente.php:173 -msgid "Agent status" +#: ../../enterprise/meta/advanced/policymanager.sync.php:288 +#, php-format +msgid "Deleted %s policy alerts" msgstr "" -#: ../../operation/agentes/estado_agente.php:420 -#: ../../operation/agentes/estado_generalagente.php:110 -#: ../../operation/gis_maps/ajax.php:166 ../../operation/search_agents.php:219 -#: ../../godmode/massive/massive_edit_agents.php:261 -#: ../../godmode/servers/manage_recontask_form.php:199 -#: ../../godmode/servers/manage_recontask.php:217 -#: ../../godmode/agentes/modificar_agente.php:358 -#: ../../godmode/agentes/agent_manager.php:214 -#: ../../godmode/agentes/planned_downtime.php:322 -#: ../../enterprise/extensions/tree_view.php:667 -#: ../../enterprise/operation/metaconsole/agentsearch.php:73 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:74 -#: ../../enterprise/godmode/modules/configure_local_component.php:56 -#: ../../enterprise/godmode/modules/local_components.php:227 -#: ../../enterprise/godmode/modules/local_components.php:244 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:138 -msgid "OS" +#: ../../enterprise/meta/advanced/synchronizing.group.php:137 +#, php-format +msgid "Error creating/updating %s/%s groups" msgstr "" -#: ../../operation/agentes/estado_agente.php:477 -#: ../../godmode/agentes/modificar_agente.php:73 -#: ../../godmode/agentes/modificar_agente.php:426 -#: ../../godmode/agentes/configurar_agente.php:214 -#: ../../godmode/gis_maps/index.php:70 ../../godmode/reporting/graphs.php:79 -#: ../../enterprise/operation/agentes/policy_view.php:53 -#: ../../enterprise/godmode/services/manage_services.php:73 -msgid "View" +#: ../../enterprise/meta/advanced/synchronizing.group.php:140 +#, php-format +msgid "Created/Updated %s/%s groups" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:35 -#: ../../enterprise/godmode/alerts/alert_events_list.php:376 -msgid "Alert(s) validated" +#: ../../enterprise/meta/advanced/metasetup.setup.php:68 +#: ../../enterprise/meta/include/functions_meta.php:33 +#: ../../enterprise/godmode/setup/setup.php:40 +#: ../../include/functions_config.php:190 +msgid "Activate Metaconsole" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:36 -msgid "Error processing alert(s)" +#: ../../enterprise/meta/advanced/metasetup.setup.php:74 +#: ../../enterprise/meta/include/functions_meta.php:43 +#: ../../include/functions_config.php:120 +#: ../../godmode/setup/setup_general.php:48 +msgid "Language code for Pandora" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:49 -msgid "All (Enabled)" +#: ../../enterprise/meta/advanced/metasetup.setup.php:80 +#: ../../enterprise/meta/include/functions_meta.php:53 +#: ../../include/functions_config.php:124 +#: ../../godmode/setup/setup_general.php:58 +msgid "Auto login (hash) password" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:51 -#: ../../operation/snmpconsole/snmp_view.php:164 -#: ../../operation/snmpconsole/snmp_view.php:564 -#: ../../enterprise/include/functions_reporting_pdf.php:503 -#: ../../include/functions_reporting.php:1153 +#: ../../enterprise/meta/advanced/metasetup.setup.php:83 +#: ../../enterprise/meta/include/functions_meta.php:63 +#: ../../include/functions_config.php:127 +#: ../../godmode/setup/setup_general.php:61 +msgid "Time source" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:85 +#: ../../godmode/setup/setup_general.php:63 +#: ../../extensions/update_manager/lib/libupdate_manager.php:822 +msgid "Database" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:90 +#: ../../enterprise/meta/include/functions_meta.php:73 +#: ../../include/functions_config.php:131 +#: ../../godmode/setup/setup_general.php:70 +msgid "Enforce https" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:91 +#: ../../godmode/setup/setup_general.php:71 +msgid "" +"If SSL is not properly configured you will lose access to Pandora FMS " +"Console. Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:96 +#: ../../enterprise/meta/include/functions_meta.php:83 +#: ../../include/functions_config.php:133 +#: ../../godmode/setup/setup_general.php:74 +msgid "Attachment store" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:96 +#: ../../godmode/setup/setup_general.php:74 +msgid "Directory where temporary data is stored." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Africa" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "America" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Antarctica" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Arctic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Asia" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Atlantic" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Australia" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Europe" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Indian" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "Pacific" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:101 +#: ../../godmode/setup/setup_general.php:165 +msgid "UTC" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:120 +#: ../../enterprise/meta/include/functions_meta.php:93 +#: ../../include/functions_config.php:153 +#: ../../godmode/setup/setup_general.php:185 +msgid "Timezone setup" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:122 +#: ../../godmode/setup/setup_general.php:187 +msgid "Change timezone" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:128 +#: ../../enterprise/meta/include/functions_meta.php:103 +#: ../../include/functions_config.php:171 +#: ../../godmode/setup/setup_general.php:208 +msgid "License information" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:133 +#: ../../godmode/setup/setup_general.php:213 +#: ../../extensions/update_manager/settings.php:72 +msgid "License Info" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:134 +#: ../../godmode/setup/setup_general.php:213 +#: ../../extensions/update_manager/settings.php:72 +msgid "License info" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:139 +#: ../../enterprise/meta/include/functions_meta.php:113 +#: ../../include/functions_config.php:175 +#: ../../godmode/setup/setup_general.php:216 +msgid "Public URL" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:140 +#: ../../godmode/setup/setup_general.php:217 +msgid "" +"Set this value when your PandoraFMS across inverse proxy or for example with " +"mod_proxy of Apache." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:143 +#: ../../include/functions_config.php:461 +#: ../../godmode/setup/setup_netflow.php:56 +msgid "Disable custom live view filters" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:143 +#: ../../godmode/setup/setup_netflow.php:57 +msgid "" +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:151 +#: ../../enterprise/godmode/modules/configure_local_component.php:129 +#: ../../godmode/modules/manage_network_components_form_common.php:57 +#: ../../godmode/users/configure_user.php:474 +#: ../../godmode/alerts/configure_alert_template.php:639 +msgid "Basic" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:194 +#, php-format +msgid "Error updating user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:197 +#, php-format +msgid "Updated user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:205 +#, php-format +msgid "Error creating user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:208 +#, php-format +msgid "Created user %s" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:338 +#: ../../enterprise/meta/advanced/synchronizing.user.php:471 +#, php-format +msgid "" +"Error creating/updating the followings elements groups/profiles/user " +"profiles (%d/%d/%d)" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:342 +#: ../../enterprise/meta/advanced/synchronizing.user.php:475 +#, php-format +msgid "" +"The followings elements groups/profiles/user profiles were created/updated " +"sucessfully (%d/%d/%d)" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:530 +#: ../../enterprise/godmode/agentes/inventory_manager.php:168 +#: ../../enterprise/godmode/agentes/inventory_manager.php:223 +msgid "Target" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:545 +msgid "Profile mode" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:545 +msgid "Profile synchronization mode." +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:546 +msgid "New profile" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:546 +msgid "Copy profile" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:546 +msgid "Check this to copy user original profiles" +msgstr "" + +#: ../../enterprise/meta/advanced/synchronizing.user.php:552 +#: ../../godmode/users/profile_list.php:200 +msgid "Profiles" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:48 +#: ../../enterprise/meta/include/functions_components_meta.php:66 +#: ../../godmode/menu.php:81 +msgid "Component groups" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:52 +#: ../../enterprise/meta/include/functions_components_meta.php:69 +#: ../../enterprise/godmode/menu.php:35 +msgid "Local components" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:56 +#: ../../enterprise/meta/include/functions_components_meta.php:72 +#: ../../godmode/menu.php:82 +msgid "Network components" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:60 +#: ../../enterprise/meta/include/functions_components_meta.php:75 +msgid "Plugin management" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:81 +msgid "Create plugin" +msgstr "" + +#: ../../enterprise/meta/include/functions_components_meta.php:84 +msgid "Edit plugin" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:54 +#: ../../include/functions_ui.php:1146 +msgid "the Flexible Monitoring System" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:687 +#: ../../include/functions_ui.php:215 ../../include/functions_events.php:1075 +#: ../../include/functions_events.php:1335 ../../include/functions.php:884 +#: ../../godmode/db/db_refine.php:42 ../../godmode/db/db_refine.php:47 +msgid "Error" +msgstr "" + +#: ../../enterprise/meta/include/functions_alerts_meta.php:115 +#: ../../enterprise/meta/include/functions_alerts_meta.php:131 +#: ../../godmode/menu.php:111 +msgid "Commands" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:271 +msgid "Successful update the networkmap." +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:272 +msgid "Unsuccessful update the networkmap." +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:277 +msgid "Unnamed " +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:324 +msgid "Show detailed agent" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:363 +msgid "Show modules" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:363 +msgid "Only the network modules." +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:373 +msgid "Show children Metaconsole" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:404 +msgid "Show modulegroup" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:411 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:73 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:120 +#: ../../enterprise/godmode/policies/policy_modules.php:213 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:274 +#: ../../enterprise/godmode/policies/policy_alerts.php:397 +#: ../../enterprise/godmode/alerts/alert_events_list.php:545 +#: ../../include/functions_visual_map_editor.php:263 +#: ../../godmode/agentes/module_manager_editor.php:413 +#: ../../godmode/agentes/agent_manager.php:323 +#: ../../godmode/massive/massive_add_action_alerts.php:152 +#: ../../godmode/massive/massive_edit_agents.php:365 +#: ../../godmode/alerts/alert_list.list.php:566 +msgid "Advanced options" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:419 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:66 +#: ../../enterprise/godmode/reporting/mysql_builder.php:149 +#: ../../enterprise/extensions/dict.php:98 +#: ../../include/functions_visual_map_editor.php:362 +#: ../../godmode/setup/gis_step_2.php:309 +#: ../../godmode/reporting/visual_console_builder.data.php:93 +#: ../../godmode/reporting/reporting_builder.main.php:32 +#: ../../extensions/insert_data.php:181 +msgid "Save" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:443 +msgid "There is no group selected" +msgstr "" + +#: ../../enterprise/meta/include/functions_networkmap_meta.php:638 +#, php-format +msgid "Cannot connect to %s Pandora to generate networkmap." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:229 +msgid "Latency" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:230 +msgid "Response" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:232 +msgid "Check type" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:249 +#: ../../enterprise/meta/include/functions_wizard_meta.php:299 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:51 +msgid "Web checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:280 +msgid "String to check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:285 +msgid "Add check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:293 +msgid "Delete check" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:398 +#: ../../enterprise/meta/include/functions_wizard_meta.php:487 +#: ../../enterprise/meta/include/functions_wizard_meta.php:668 +msgid "Various" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:406 +#: ../../enterprise/meta/include/functions_wizard_meta.php:850 +#: ../../extensions/net_tools.php:70 +msgid "SNMP Community" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:413 +#: ../../enterprise/meta/include/functions_wizard_meta.php:495 +msgid "Credentials" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:435 +#: ../../enterprise/meta/include/functions_wizard_meta.php:517 +#: ../../enterprise/meta/include/functions_wizard_meta.php:689 +msgid "Thresholds" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:523 +#: ../../enterprise/meta/include/functions_wizard_meta.php:974 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:81 +msgid "Proxy URL" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:528 +msgid "Web configuration" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:744 +msgid "Alerts in module" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:752 +#: ../../include/functions_reporting.php:1646 +msgid "Alert description" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:970 +msgid "Checks" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1238 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1342 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1483 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1576 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1671 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1808 +#: ../../extensions/snmp_explorer.php:235 +msgid "Another module already exists with the same name" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1250 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1352 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1493 +#, php-format +msgid "Error adding module %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1260 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1362 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503 +msgid "" +"There was an error creating the alerts, the operation has been cancelled" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1293 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1392 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1531 +#: ../../enterprise/godmode/policies/policy_modules.php:422 +msgid "Successfully added module." +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1586 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1681 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1818 +#, php-format +msgid "Error updating module %s" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1609 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1704 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1841 +msgid "" +"There was an error updating the alerts, the operation has been cancelled" +msgstr "" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1864 +msgid "Successfully updated module." +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:25 +msgid "No admin user" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:123 +msgid "Netflow disable custom live view filters" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:172 +#: ../../enterprise/meta/include/functions_users_meta.php:196 +#: ../../godmode/users/user_list.php:115 +#: ../../godmode/users/configure_profile.php:43 +#: ../../godmode/users/configure_user.php:84 +#: ../../godmode/users/profile_list.php:47 +msgid "Profile management" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:176 +#: ../../enterprise/meta/include/functions_users_meta.php:199 +msgid "Group management" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:187 +msgid "User synchronization" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:202 +msgid "Group synchronization" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:118 +#: ../../godmode/alerts/alert_templates.php:60 +msgid "Everyday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1063 +#: ../../include/functions_html.php:708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:580 +#: ../../godmode/alerts/alert_templates.php:63 +#: ../../godmode/alerts/configure_alert_special_days.php:75 +#: ../../godmode/alerts/alert_special_days.php:186 +msgid "Monday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1064 +#: ../../include/functions_html.php:708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:586 +#: ../../godmode/alerts/alert_templates.php:64 +#: ../../godmode/alerts/configure_alert_special_days.php:76 +#: ../../godmode/alerts/alert_special_days.php:189 +msgid "Tuesday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:123 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1065 +#: ../../include/functions_html.php:708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:592 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/alerts/configure_alert_special_days.php:77 +#: ../../godmode/alerts/alert_special_days.php:192 +msgid "Wednesday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:124 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066 +#: ../../include/functions_html.php:708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:598 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/alerts/configure_alert_special_days.php:78 +#: ../../godmode/alerts/alert_special_days.php:195 +msgid "Thursday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:125 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1067 +#: ../../include/functions_html.php:708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:604 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/alerts/configure_alert_special_days.php:79 +#: ../../godmode/alerts/alert_special_days.php:198 +msgid "Friday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1068 +#: ../../include/functions_html.php:708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:610 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/alerts/configure_alert_special_days.php:80 +#: ../../godmode/alerts/alert_special_days.php:201 +msgid "Saturday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1069 +#: ../../include/functions_html.php:708 +#: ../../godmode/reporting/reporting_builder.item_editor.php:616 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/alerts/configure_alert_special_days.php:81 +#: ../../godmode/alerts/alert_special_days.php:204 +msgid "Sunday" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 +#: ../../enterprise/godmode/setup/setup_history.php:61 +#: ../../include/functions_config.php:485 +#: ../../godmode/alerts/alert_templates.php:71 +msgid "Days" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 +#: ../../godmode/alerts/alert_templates.php:71 +msgid "Every" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:139 +#: ../../enterprise/dashboard/widgets/tactical.php:33 +#: ../../godmode/alerts/alert_templates.php:81 +msgid "and" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:144 +#: ../../enterprise/godmode/alerts/alert_events.php:436 +#: ../../godmode/snmpconsole/snmp_alert.php:369 +#: ../../godmode/alerts/alert_templates.php:87 +#: ../../godmode/alerts/configure_alert_template.php:515 +msgid "Time threshold" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1158 +#: ../../include/functions_treeview.php:320 +msgid "Next agent contact" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1190 +msgid "Go to agent detail" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1192 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1400 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1576 +#: ../../enterprise/extensions/csv_import/main.php:78 +#: ../../include/functions_filemanager.php:543 +#: ../../include/functions_filemanager.php:686 +#: ../../include/functions_filemanager.php:722 +#: ../../include/functions_filemanager.php:758 +msgid "Go" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1197 +msgid "Create new module" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1244 +#: ../../godmode/groups/configure_modu_group.php:47 +#: ../../godmode/groups/configure_group.php:66 +msgid "There was a problem loading group" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1258 +msgid "Group name" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1271 +#: ../../include/functions_visual_map_editor.php:60 +#: ../../include/functions_visual_map_editor.php:356 +#: ../../include/functions_visual_map.php:1849 +#: ../../godmode/setup/os.builder.php:38 +#: ../../godmode/modules/module_list.php:57 +#: ../../godmode/reporting/visual_console_builder.elements.php:134 +#: ../../godmode/groups/group_list.php:255 +#: ../../godmode/groups/configure_group.php:102 +msgid "Icon" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1335 +#: ../../include/functions_treeview.php:47 +msgid "There was a problem loading module" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1398 +msgid "Go to module detail" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1411 +#: ../../godmode/agentes/module_manager_editor_common.php:137 +msgid "Delete module" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1416 +msgid "Create new alert" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1457 +msgid "There was a problem loading alert" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1472 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:217 +#: ../../enterprise/godmode/reporting/graph_template_list.php:131 +#: ../../godmode/alerts/alert_list.list.php:48 +msgid "Template name" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 +msgid "Stand By" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1574 +msgid "Go to Alert detail" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1580 +msgid "Delete alert" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1624 +msgid "There was a problem loading tag" +msgstr "" + +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1639 +#: ../../godmode/tag/tag.php:159 +msgid "Tag name" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:54 +msgid "Create visualmap" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:95 +#: ../../godmode/reporting/visual_console_builder.php:107 +msgid "Successfully created." +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:99 +#: ../../godmode/reporting/visual_console_builder.php:111 +msgid "Could not be created." +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:132 +#: ../../godmode/category/edit_category.php:46 +msgid "Editor" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:174 +#: ../../godmode/reporting/visual_console_builder.php:437 +msgid "New visual console" +msgstr "" + +#: ../../enterprise/meta/screens/screens.visualmap.php:185 +msgid "Visualmap" +msgstr "" + +#: ../../enterprise/meta/screens/screens.main.php:73 +msgid "Welcome to the Pandora FMS screens." +msgstr "" + +#: ../../enterprise/meta/index.php:305 ../../enterprise/meta/index.php:315 +#: ../../index.php:462 +msgid "Sorry! I can't find the page!" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:32 +msgid "Dashboard replicate" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:41 +msgid "Not copyed. Error copying data. You must select a dashboard" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:63 +#: ../../enterprise/dashboard/dashboard_replicate.php:83 +msgid "Not copyed. Error copying data" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:91 +msgid "Successfully copyed" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:108 +msgid "Source user's group" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:132 +msgid "Destination user's group" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:146 +msgid "Group Dashboards" +msgstr "" + +#: ../../enterprise/dashboard/dashboard_replicate.php:165 +msgid "Replicate Dashboard" +msgstr "" + +#: ../../enterprise/dashboard/widget.php:219 +#: ../../enterprise/dashboard/widgets/post.php:34 +#: ../../enterprise/dashboard/widgets/url.php:50 +#: ../../enterprise/dashboard/widgets/tactical.php:56 +#: ../../enterprise/dashboard/widgets/tactical.php:64 +msgid "Please, configure this widget before use" +msgstr "" + +#: ../../enterprise/dashboard/widget.php:222 +msgid "Widget cannot be loaded" +msgstr "" + +#: ../../enterprise/dashboard/widget.php:223 +msgid "Please, configure the widget again to recover it" +msgstr "" + +#: ../../enterprise/dashboard/widgets/post.php:23 +msgid "Panel with a message" +msgstr "" + +#: ../../enterprise/dashboard/widgets/post.php:26 +msgid "My Post" +msgstr "" + +#: ../../enterprise/dashboard/widgets/maps_status.php:24 +msgid "Maps status" +msgstr "" + +#: ../../enterprise/dashboard/widgets/maps_status.php:26 +msgid "General and quick visual maps report" +msgstr "" + +#: ../../enterprise/dashboard/widgets/maps_status.php:75 +#: ../../godmode/massive/massive_edit_agents.php:349 +msgid "Bad" +msgstr "" + +#: ../../enterprise/dashboard/widgets/monitor_health.php:21 +#: ../../enterprise/dashboard/widgets/tactical.php:83 +msgid "Global health" +msgstr "" + +#: ../../enterprise/dashboard/widgets/monitor_health.php:23 +msgid "Show a list of global monitor health" +msgstr "" + +#: ../../enterprise/dashboard/widgets/monitor_health.php:43 #: ../../include/functions_reporting.php:1245 -#: ../../include/functions_reporting.php:3083 -msgid "Fired" +#: ../../include/functions_reporting.php:1282 +msgid "Server health" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:52 -#: ../../operation/snmpconsole/snmp_view.php:164 -#: ../../operation/snmpconsole/snmp_view.php:566 -msgid "Not fired" +#: ../../enterprise/dashboard/widgets/monitor_health.php:45 +msgid "of servers up" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:57 -#: ../../godmode/alerts/alert_list.list.php:109 -#: ../../enterprise/operation/agentes/policy_view.php:223 -#: ../../include/functions_ui.php:552 -msgid "Standby on" +#: ../../enterprise/dashboard/widgets/monitor_health.php:48 +#: ../../enterprise/dashboard/widgets/tactical.php:86 +#: ../../include/functions_reporting.php:1253 +#: ../../include/functions_reporting.php:1285 +msgid "Monitor health" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:58 -#: ../../godmode/alerts/alert_list.list.php:110 -msgid "Standby off" +#: ../../enterprise/dashboard/widgets/monitor_health.php:50 +#: ../../enterprise/dashboard/widgets/tactical.php:88 +#: ../../include/functions_reporting.php:1255 +#: ../../include/functions_reporting.php:1286 +msgid "of monitors up" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:64 -msgid "Filter by agent name, module name, template name or action name" +#: ../../enterprise/dashboard/widgets/monitor_health.php:52 +#: ../../enterprise/dashboard/widgets/tactical.php:89 +#: ../../include/functions_reporting.php:1261 +#: ../../include/functions_reporting.php:1288 +msgid "Module sanity" msgstr "" -#: ../../operation/agentes/alerts_status.functions.php:66 -#: ../../operation/agentes/alerts_status.php:262 -#: ../../operation/agentes/alerts_status.php:293 -#: ../../operation/agentes/alerts_status.php:323 -#: ../../operation/agentes/alerts_status.php:352 -#: ../../godmode/alerts/alert_list.list.php:107 -#: ../../enterprise/operation/agentes/policy_view.php:195 -#: ../../enterprise/godmode/policies/policy_alerts.php:221 -msgid "Standby" +#: ../../enterprise/dashboard/widgets/monitor_health.php:54 +#: ../../enterprise/dashboard/widgets/tactical.php:91 +#: ../../include/functions_reporting.php:1263 +#: ../../include/functions_reporting.php:1289 +msgid "of total modules inited" msgstr "" -#: ../../operation/agentes/sla_view.php:38 -msgid "There are no modules to evaluate the S.L.A. from" +#: ../../enterprise/dashboard/widgets/monitor_health.php:56 +#: ../../enterprise/dashboard/widgets/tactical.php:92 +#: ../../include/functions_reporting.php:1071 +#: ../../include/functions_reporting.php:1269 +#: ../../include/functions_reporting.php:1291 +msgid "Alert level" msgstr "" -#: ../../operation/agentes/sla_view.php:55 -#: ../../operation/agentes/sla_view.php:121 -#: ../../operation/agentes/status_monitor.php:87 -#: ../../operation/agentes/status_monitor.php:491 -#: ../../operation/agentes/estado_monitores.php:229 -#: ../../operation/agentes/estado_ultimopaquete.php:260 -#: ../../godmode/modules/manage_network_components.php:345 -#: ../../godmode/modules/manage_network_components_form_wmi.php:86 -#: ../../godmode/modules/manage_network_templates_form.php:181 -#: ../../godmode/agentes/agent_template.php:159 -#: ../../godmode/alerts/alert_list.list.php:68 -msgid "Module name" +#: ../../enterprise/dashboard/widgets/monitor_health.php:58 +#: ../../enterprise/dashboard/widgets/tactical.php:94 +#: ../../include/functions_reporting.php:1271 +#: ../../include/functions_reporting.php:1292 +msgid "of defined alerts not fired" msgstr "" -#: ../../operation/agentes/sla_view.php:91 -#: ../../operation/agentes/sla_view.php:134 -msgid "Module Down" +#: ../../enterprise/dashboard/widgets/groups_status.php:24 +msgid "Groups status" msgstr "" -#: ../../operation/agentes/sla_view.php:93 -#: ../../operation/agentes/sla_view.php:136 -msgid "Module Up" +#: ../../enterprise/dashboard/widgets/groups_status.php:26 +msgid "General and quick group status report" msgstr "" -#: ../../operation/agentes/sla_view.php:114 -msgid "User-defined SLA items" +#: ../../enterprise/dashboard/widgets/custom_graph.php:24 +msgid "Show a defined custom graph" msgstr "" -#: ../../operation/agentes/tactical.php:69 ../../operation/menu.php:43 -#: ../../enterprise/operation/metaconsole/tactical.php:26 -#: ../../enterprise/dashboard/widgets/tactical.php:26 -#: ../../enterprise/dashboard/widgets/tactical.php:28 -msgid "Tactical view" +#: ../../enterprise/dashboard/widgets/custom_graph.php:33 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:200 +#: ../../godmode/reporting/graph_builder.main.php:137 +msgid "Stacked" +msgstr "" + +#: ../../enterprise/dashboard/widgets/custom_graph.php:49 +#: ../../include/functions.php:148 +msgid "You don't have access" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:29 +msgid "Show a map of the monitored network" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:37 +msgid "No overlap" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:43 +#: ../../include/functions_config.php:386 +#: ../../godmode/setup/setup_visuals.php:146 +msgid "Font size" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:44 +msgid "8" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:45 +msgid "9" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:46 +msgid "10" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:47 +msgid "11" +msgstr "" + +#: ../../enterprise/dashboard/widgets/network_map.php:48 +msgid "12" +msgstr "" + +#: ../../enterprise/dashboard/widgets/reports.php:27 +#: ../../enterprise/dashboard/widgets/reports.php:34 +#: ../../enterprise/extensions/cron/functions.php:336 +#: ../../enterprise/extensions/cron/main.php:208 +#: ../../enterprise/extensions/cron/main.php:225 +#: ../../enterprise/extensions/cron/main.php:239 +#: ../../extensions/resource_exportation.php:357 +msgid "Report" +msgstr "" + +#: ../../enterprise/dashboard/widgets/reports.php:29 +msgid "Show a report made by user" +msgstr "" + +#: ../../enterprise/dashboard/widgets/single_graph.php:29 +msgid "Single graph" +msgstr "" + +#: ../../enterprise/dashboard/widgets/single_graph.php:31 +msgid "Show a graph of an agent module" +msgstr "" + +#: ../../enterprise/dashboard/widgets/single_graph.php:59 +#: ../../include/functions_netflow.php:849 +#: ../../include/functions_netflow.php:882 +msgid "5 hours" +msgstr "" + +#: ../../enterprise/dashboard/widgets/single_graph.php:60 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:183 +#: ../../enterprise/godmode/agentes/inventory_manager.php:175 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:195 +#: ../../include/functions_netflow.php:850 +#: ../../include/functions_netflow.php:883 ../../include/ajax/module.php:80 +#: ../../godmode/setup/performance.php:82 +msgid "12 hours" +msgstr "" + +#: ../../enterprise/dashboard/widgets/single_graph.php:61 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:184 +#: ../../enterprise/godmode/agentes/inventory_manager.php:176 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:196 +#: ../../include/functions.php:1674 ../../include/functions_netflow.php:851 +#: ../../include/functions_netflow.php:884 ../../include/ajax/module.php:81 +msgid "1 day" +msgstr "" + +#: ../../enterprise/dashboard/widgets/events_list.php:28 +msgid "Latest events list" +msgstr "" + +#: ../../enterprise/dashboard/widgets/events_list.php:36 +msgid "Limit" +msgstr "" + +#: ../../enterprise/dashboard/widgets/events_list.php:46 +msgid "Only pending" +msgstr "" + +#: ../../enterprise/dashboard/widgets/example.php:23 +msgid "Welcome message to Pandora FMS" +msgstr "" + +#: ../../enterprise/dashboard/widgets/example.php:26 +msgid "Welcome" +msgstr "" + +#: ../../enterprise/dashboard/widgets/example.php:36 +msgid "" +"This is an example of a dashboard widget. A widget may contain elements" +msgstr "" + +#: ../../enterprise/dashboard/widgets/example.php:37 +msgid "" +"To add more elements, click on \"Add widgets\" on the top of this " +"page." +msgstr "" + +#: ../../enterprise/dashboard/widgets/example.php:38 +#: ../../enterprise/dashboard/widgets/example.php:40 +msgid "" +"To delete this message, click on the delete button on top right corner of " +"this element." +msgstr "" + +#: ../../enterprise/dashboard/widgets/example.php:39 +msgid "" +"To do so, just click on the title and drag and drop it to the desired place." +msgstr "" + +#: ../../enterprise/dashboard/widgets/example.php:41 +msgid "Thanks for using Pandora FMS" +msgstr "" + +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:25 +msgid "Map made by user" +msgstr "" + +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:27 +msgid "Show a map made by user" +msgstr "" + +#: ../../enterprise/dashboard/widgets/url.php:23 +msgid "Show the URL content" +msgstr "" + +#: ../../enterprise/dashboard/widgets/url.php:25 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1285 +#: ../../godmode/reporting/reporting_builder.item_editor.php:920 +#: ../../godmode/events/event_responses.editor.php:92 +#: ../../godmode/events/event_responses.editor.php:99 +#: ../../godmode/events/event_responses.editor.php:101 +msgid "URL" +msgstr "" + +#: ../../enterprise/dashboard/widgets/url.php:26 +msgid "Height in px (zero for auto)" +msgstr "" + +#: ../../enterprise/dashboard/widgets/url.php:27 +msgid "My URL" +msgstr "" + +#: ../../enterprise/dashboard/widgets/url.php:67 +msgid "Invalid URL" +msgstr "" + +#: ../../enterprise/dashboard/widgets/tactical.php:33 +#: ../../enterprise/dashboard/widgets/tactical.php:96 +#: ../../enterprise/dashboard/widgets/tactical.php:97 +#: ../../include/functions_reporting.php:1213 +msgid "Monitor checks" +msgstr "" + +#: ../../enterprise/dashboard/widgets/tactical.php:36 +#: ../../enterprise/dashboard/widgets/tactical.php:129 +#: ../../include/functions_reporting.php:979 +msgid "Server performance" msgstr "" -#: ../../operation/agentes/tactical.php:89 #: ../../enterprise/dashboard/widgets/tactical.php:85 msgid "of monitors OK" msgstr "" -#: ../../operation/agentes/tactical.php:248 -msgid "Tactical server information" +#: ../../enterprise/dashboard/widgets/tactical.php:99 +msgid "Monitors critical" msgstr "" -#: ../../operation/agentes/tactical.php:295 -msgid "There are no servers configured in the database" +#: ../../enterprise/dashboard/widgets/tactical.php:101 +msgid "Monitors warning" msgstr "" -#: ../../operation/agentes/status_monitor.php:481 -#: ../../operation/agentes/estado_monitores.php:223 -#: ../../operation/agentes/alerts_status.php:261 -#: ../../operation/agentes/alerts_status.php:292 -#: ../../operation/agentes/estado_ultimopaquete.php:258 -#: ../../godmode/agentes/module_manager.php:334 -#: ../../enterprise/operation/agentes/collection_view.php:59 -#: ../../enterprise/godmode/agentes/collection_manager.php:122 -#: ../../enterprise/godmode/agentes/inventory_manager.php:207 -msgid "P." +#: ../../enterprise/dashboard/widgets/tactical.php:103 +msgid "Monitors normal" msgstr "" -#: ../../operation/agentes/status_monitor.php:508 -#: ../../operation/agentes/estado_monitores.php:236 -#: ../../godmode/agentes/module_manager.php:346 -msgid "Warn" +#: ../../enterprise/dashboard/widgets/tactical.php:105 +msgid "Monitors unknown" msgstr "" -#: ../../operation/agentes/status_monitor.php:548 -#: ../../operation/agentes/estado_monitores.php:297 -#: ../../operation/agentes/estado_ultimopaquete.php:337 -#: ../../godmode/agentes/module_manager.php:431 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:326 -msgid "(Adopt) " +#: ../../enterprise/dashboard/widgets/tactical.php:107 +msgid "Monitors not init" msgstr "" -#: ../../operation/agentes/status_monitor.php:558 -#: ../../operation/agentes/estado_monitores.php:307 -#: ../../operation/agentes/estado_ultimopaquete.php:347 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:336 -msgid "(Unlinked) (Adopt) " +#: ../../enterprise/dashboard/widgets/tactical.php:109 +msgid "Alerts defined" msgstr "" -#: ../../operation/agentes/status_monitor.php:562 -#: ../../operation/agentes/estado_monitores.php:311 -#: ../../operation/agentes/estado_ultimopaquete.php:351 -#: ../../godmode/agentes/module_manager.php:445 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:340 -msgid "(Unlinked) " +#: ../../enterprise/dashboard/widgets/tactical.php:130 +msgid "Local modules rate" msgstr "" -#: ../../operation/agentes/status_monitor.php:672 -msgid "This group doesn't have any monitor" +#: ../../enterprise/dashboard/widgets/tactical.php:132 +msgid "Remote modules rate" msgstr "" -#: ../../operation/agentes/networkmap.php:45 -msgid "Network map deleted successfully" +#: ../../enterprise/dashboard/widgets/tactical.php:134 +#: ../../include/functions_reporting.php:894 +msgid "Local modules" msgstr "" -#: ../../operation/agentes/networkmap.php:46 -msgid "Could not delete network map" +#: ../../enterprise/dashboard/widgets/tactical.php:136 +#: ../../include/functions_reporting.php:905 +msgid "Remote modules" msgstr "" -#: ../../operation/agentes/networkmap.php:73 -#: ../../operation/agentes/networkmap.php:79 -msgid "Network map created successfully" +#: ../../enterprise/dashboard/widgets/tactical.php:138 +#: ../../include/functions_reporting.php:878 +msgid "Total running modules" msgstr "" -#: ../../operation/agentes/networkmap.php:74 -#: ../../operation/agentes/networkmap.php:80 -msgid "Could not create network map" +#: ../../enterprise/dashboard/widgets/tactical.php:156 +msgid "Uninitialized modules" msgstr "" -#: ../../operation/agentes/networkmap.php:113 -msgid "Network map saved successfully" +#: ../../enterprise/dashboard/widgets/tactical.php:158 +#: ../../include/functions_groups.php:739 +#: ../../include/functions_groups.php:740 +#: ../../include/functions_groups.php:741 ../../mobile/operation/groups.php:91 +#: ../../mobile/operation/groups.php:92 +msgid "Agents unknown" msgstr "" -#: ../../operation/agentes/networkmap.php:114 -msgid "Could not save network map" +#: ../../enterprise/dashboard/main_dashboard.php:95 +msgid "Could not create dashboard" msgstr "" -#: ../../operation/agentes/networkmap.php:121 -msgid "Each network map must have a different name" +#: ../../enterprise/dashboard/main_dashboard.php:99 +msgid "Dashboard successfuly created" msgstr "" -#: ../../operation/agentes/networkmap.php:175 -#: ../../operation/snmpconsole/snmp_view.php:48 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:760 -msgid "Normal screen" +#: ../../enterprise/dashboard/main_dashboard.php:105 +msgid "Add dashboard" msgstr "" -#: ../../operation/agentes/networkmap.php:185 -#: ../../operation/agentes/networkmap.php:236 -msgid "Policies view" +#: ../../enterprise/dashboard/main_dashboard.php:288 +msgid "Slides mode" msgstr "" -#: ../../operation/agentes/networkmap.php:190 -#: ../../operation/agentes/networkmap.php:233 -msgid "Groups view" +#: ../../enterprise/dashboard/main_dashboard.php:299 +msgid "Next Dashboard" msgstr "" -#: ../../operation/agentes/networkmap.php:194 -#: ../../operation/agentes/networkmap.php:230 -msgid "Topology view" +#: ../../enterprise/dashboard/main_dashboard.php:303 +msgid "Play" msgstr "" -#: ../../operation/agentes/networkmap.php:200 -msgid "No selected" +#: ../../enterprise/dashboard/main_dashboard.php:308 +msgid "Previous Dashboard" msgstr "" -#: ../../operation/agentes/networkmap.php:210 -msgid "Add map" +#: ../../enterprise/dashboard/main_dashboard.php:311 +msgid "Pause" msgstr "" -#: ../../operation/agentes/networkmap.php:215 -msgid "Delete map" +#: ../../enterprise/dashboard/main_dashboard.php:316 +msgid "Next slide in" msgstr "" -#: ../../operation/agentes/networkmap.php:225 -#: ../../godmode/gis_maps/configure_gis_map.php:372 -#: ../../godmode/gis_maps/configure_gis_map.php:379 -#: ../../godmode/gis_maps/configure_gis_map.php:448 -#: ../../godmode/gis_maps/configure_gis_map.php:455 -msgid "Save map" +#: ../../enterprise/dashboard/main_dashboard.php:317 +#: ../../godmode/servers/manage_recontask.php:279 +msgid "Manual" msgstr "" -#: ../../operation/agentes/networkmap.php:244 -#: ../../operation/agentes/networkmap.groups.php:86 -#: ../../operation/agentes/networkmap.topology.php:86 -#: ../../operation/menu.php:49 -#: ../../enterprise/operation/policies/networkmap.policies.php:84 -#: ../../enterprise/dashboard/widgets/network_map.php:25 -msgid "Network map" +#: ../../enterprise/dashboard/main_dashboard.php:317 +#: ../../include/functions.php:429 ../../include/functions_netflow.php:923 +#: ../../include/functions_netflow.php:932 +#: ../../include/functions_netflow.php:949 +#: ../../include/functions_netflow.php:957 +#: ../../include/functions_netflow.php:981 +#: ../../include/functions_html.php:605 +#: ../../godmode/setup/setup_visuals.php:93 +#: ../../godmode/snmpconsole/snmp_alert.php:388 +#: ../../godmode/alerts/configure_alert_action.php:142 +#: ../../extensions/agents_alerts.php:80 +#: ../../extensions/agents_modules.php:88 +msgid "seconds" msgstr "" -#: ../../operation/agentes/networkmap.php:251 -msgid "There are no defined maps in this view" +#: ../../enterprise/dashboard/main_dashboard.php:345 +msgid "Add widget" msgstr "" -#: ../../operation/agentes/networkmap.php:286 -msgid "Show interfaces" +#: ../../enterprise/dashboard/main_dashboard.php:346 +msgid "Rename dashboard" msgstr "" -#: ../../operation/agentes/networkmap.php:291 -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:32 -msgid "Layout" +#: ../../enterprise/dashboard/main_dashboard.php:348 +msgid "Delete dashboard" msgstr "" -#: ../../operation/agentes/networkmap.php:296 -#: ../../operation/agentes/networkmap.php:303 -msgid "Depth" +#: ../../enterprise/dashboard/main_dashboard.php:558 +msgid "Rename" msgstr "" -#: ../../operation/agentes/networkmap.php:304 -#: ../../enterprise/extensions/tree_view.php:676 -#: ../../enterprise/operation/agentes/ver_agente.php:207 -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:180 -#: ../../enterprise/include/functions_groups.php:32 -msgid "Policies" +#: ../../enterprise/dashboard/main_dashboard.php:583 +msgid "Add new dashboard view" msgstr "" -#: ../../operation/agentes/networkmap.php:312 -msgid "No Overlap" +#: ../../enterprise/dashboard/main_dashboard.php:584 +msgid "Add new widget" msgstr "" -#: ../../operation/agentes/networkmap.php:317 -msgid "Only modules with alerts" +#: ../../enterprise/load_enterprise.php:166 +msgid "Invalid license" msgstr "" -#: ../../operation/agentes/networkmap.php:323 -msgid "Hide policy modules" +#: ../../enterprise/load_enterprise.php:166 +msgid "Please contact Artica at info@artica.es for a valid license." msgstr "" -#: ../../operation/agentes/networkmap.php:330 -#: ../../enterprise/dashboard/widgets/network_map.php:40 -msgid "Simple" +#: ../../enterprise/load_enterprise.php:167 +msgid "Or disable Pandora FMS enterprise (mv " msgstr "" -#: ../../operation/agentes/networkmap.php:334 -msgid "Regenerate" +#: ../../enterprise/load_enterprise.php:230 +#: ../../enterprise/load_enterprise.php:356 +msgid "Renew" msgstr "" -#: ../../operation/agentes/networkmap.php:349 -#: ../../enterprise/include/functions_networkmap_enterprise.php:235 -msgid "Zoom" -msgstr "" - -#: ../../operation/agentes/networkmap.php:357 -msgid "Distance between nodes" -msgstr "" - -#: ../../operation/agentes/networkmap.php:358 -msgid "Separation between elements in the map (in Non-overlap mode)" -msgstr "" - -#: ../../operation/agentes/networkmap.php:363 -msgid "Font" -msgstr "" - -#: ../../operation/agentes/networkmap.php:374 -msgid "Map options" -msgstr "" - -#: ../../operation/agentes/custom_fields.php:44 -#: ../../godmode/agentes/fields_manager.php:97 -msgid "No fields defined" -msgstr "" - -#: ../../operation/agentes/custom_fields.php:48 -#: ../../godmode/agentes/fields_manager.php:88 -msgid "Field" -msgstr "" - -#: ../../operation/agentes/custom_fields.php:49 -#: ../../godmode/agentes/configure_field.php:46 -#: ../../godmode/agentes/fields_manager.php:89 -msgid "Display on front" -msgstr "" - -#: ../../operation/agentes/custom_fields.php:49 -#: ../../godmode/agentes/configure_field.php:46 -#: ../../godmode/agentes/fields_manager.php:89 +#: ../../enterprise/load_enterprise.php:273 msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" +"This license has expired. " +"

You can not get updates until you renew the license." msgstr "" -#: ../../operation/agentes/exportdata.php:93 ../../operation/menu.php:60 -msgid "Export data" -msgstr "" - -#: ../../operation/agentes/exportdata.php:132 -msgid "Invalid time specified" -msgstr "" - -#: ../../operation/agentes/exportdata.php:277 -msgid "Invalid method supplied" -msgstr "" - -#: ../../operation/agentes/exportdata.php:293 -msgid "No modules specified" -msgstr "" - -#: ../../operation/agentes/exportdata.php:315 -#: ../../godmode/agentes/manage_config_remote.php:137 -#: ../../godmode/db/db_refine.php:68 -msgid "Source agent" -msgstr "" - -#: ../../operation/agentes/exportdata.php:358 -#: ../../operation/agentes/graphs.php:74 -#: ../../operation/agentes/stat_win.php:205 -msgid "Begin date" -msgstr "" - -#: ../../operation/agentes/exportdata.php:365 -msgid "End date" -msgstr "" - -#: ../../operation/agentes/exportdata.php:371 -msgid "Export type" -msgstr "" - -#: ../../operation/agentes/exportdata.php:374 -msgid "Data table" -msgstr "" - -#: ../../operation/agentes/exportdata.php:376 -msgid "MS Excel" -msgstr "" - -#: ../../operation/agentes/exportdata.php:377 -msgid "Average per hour/day" -msgstr "" - -#: ../../operation/agentes/exportdata.php:405 -msgid "No agents in this category" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:220 -#: ../../operation/agentes/alerts_status.php:263 -#: ../../operation/agentes/alerts_status.php:294 -#: ../../operation/agentes/alerts_status.php:324 -#: ../../operation/agentes/alerts_status.php:353 -#: ../../operation/agentes/estado_ultimopaquete.php:256 -msgid "Force execution" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:220 -#: ../../operation/agentes/alerts_status.php:263 -#: ../../operation/agentes/alerts_status.php:294 -#: ../../operation/agentes/alerts_status.php:324 -#: ../../operation/agentes/alerts_status.php:353 -#: ../../operation/agentes/estado_ultimopaquete.php:256 -msgid "F." -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:423 -msgid "This agent doesn't have any active monitors" -msgstr "" - -#: ../../operation/agentes/estado_monitores.php:426 -msgid "Full list of monitors" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:89 ../../operation/menu.php:54 -msgid "Alert detail" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:94 -msgid "Insufficient permissions to validate alerts" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:239 -#: ../../godmode/alerts/alert_list.list.php:123 -msgid "Alert control filter" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:262 -#: ../../operation/agentes/alerts_status.php:293 -#: ../../operation/agentes/alerts_status.php:323 -#: ../../operation/agentes/alerts_status.php:352 -#: ../../godmode/agentes/module_manager.php:335 -#: ../../godmode/reporting/reporting_builder.list_items.php:201 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/policy_view.php:136 -#: ../../enterprise/operation/agentes/policy_view.php:195 -#: ../../enterprise/operation/agentes/policy_view.php:200 -#: ../../enterprise/operation/metaconsole/eventview.php:573 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/policies/policy_agents.php:338 -#: ../../enterprise/godmode/policies/policy_alerts.php:221 -#: ../../include/functions_events.php:334 -msgid "S." -msgstr "" - -#: ../../operation/agentes/alerts_status.php:371 -msgid "Single alerts" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:395 -msgid "No simple alerts found" -msgstr "" - -#: ../../operation/agentes/alerts_status.php:398 -msgid "Compound alerts" -msgstr "" - -#: ../../operation/agentes/status_events.php:27 -msgid "Latest events for this agent" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:149 -msgid "Received data from" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:163 -msgid "Choose a time from now" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:164 -#: ../../operation/agentes/gis_view.php:95 -#: ../../godmode/massive/massive_edit_agents.php:259 -#: ../../godmode/agentes/agent_manager.php:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:377 -#: ../../godmode/reporting/reporting_builder.item_editor.php:381 -#: ../../godmode/reporting/reporting_builder.item_editor.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:135 -msgid " seconds." -msgstr "" - -#: ../../operation/agentes/datos_agente.php:166 -msgid "Specify time range" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:167 -#: ../../godmode/agentes/planned_downtime.php:214 -msgid "Timestamp from" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:171 -#: ../../godmode/agentes/planned_downtime.php:218 -msgid "Timestamp to" -msgstr "" - -#: ../../operation/agentes/datos_agente.php:216 -#: ../../godmode/agentes/module_manager.php:321 -msgid "No available data to show" -msgstr "" - -#: ../../operation/agentes/graphs.php:78 -#: ../../operation/agentes/stat_win.php:210 -msgid "Zoom factor" -msgstr "" - -#: ../../operation/agentes/graphs.php:87 -#: ../../operation/agentes/stat_win.php:222 -msgid "Time range" -msgstr "" - -#: ../../operation/agentes/graphs.php:101 -msgid "secs" -msgstr "" - -#: ../../operation/agentes/graphs.php:103 -#: ../../operation/agentes/stat_win.php:242 -msgid "Show events" -msgstr "" - -#: ../../operation/agentes/graphs.php:105 -#: ../../operation/agentes/stat_win.php:246 -msgid "Show alerts" -msgstr "" - -#: ../../operation/agentes/graphs.php:116 -msgid "Filter graphs" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:61 -msgid "Agent access rate (24h)" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:67 -msgid "Events generated -by module-" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:85 -msgid "Refresh data" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:86 -msgid "Flag" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:89 -#: ../../operation/gis_maps/ajax.php:164 -#: ../../godmode/servers/modificar_server.php:45 -#: ../../godmode/agentes/agent_manager.php:173 -msgid "IP Address" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:104 -msgid "Other IP addresses" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:144 -#: ../../operation/gis_maps/ajax.php:181 -msgid "Agent Version" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:151 -msgid "Position (Long, Lat)" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:155 -msgid "There is no GIS data." -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:169 -#: ../../operation/gis_maps/ajax.php:189 -msgid "Remote" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:175 -#: ../../operation/agentes/estado_ultimopaquete.php:478 -#: ../../operation/gis_maps/ajax.php:184 -#: ../../godmode/snmpconsole/snmp_alert.php:326 -#: ../../godmode/db/db_main.php:183 -#: ../../enterprise/extensions/cron/main.php:230 -#: ../../include/functions_ui.php:258 -msgid "Never" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:183 -msgid "Timezone Offset" -msgstr "" - -#: ../../operation/agentes/estado_generalagente.php:189 -msgid "Next agent contact" -msgstr "" - -#: ../../operation/agentes/gis_view.php:50 -#: ../../godmode/agentes/agent_conf_gis.php:37 -msgid "There is no default map." -msgstr "" - -#: ../../operation/agentes/gis_view.php:69 -#: ../../godmode/agentes/agent_conf_gis.php:41 +#: ../../enterprise/load_enterprise.php:278 +#, php-format msgid "" -"There is no GIS data for this agent, so it's positioned in default position " -"of map." +"License out of limits

" +"This license allows %d agents and you have %d agents configured." msgstr "" -#: ../../operation/agentes/gis_view.php:88 -msgid "Last position in " -msgstr "" - -#: ../../operation/agentes/gis_view.php:93 -msgid "Period to show data as path" -msgstr "" - -#: ../../operation/agentes/gis_view.php:96 -msgid "Refresh path" -msgstr "" - -#: ../../operation/agentes/gis_view.php:99 -msgid "Positional data from the last" -msgstr "" - -#: ../../operation/agentes/gis_view.php:113 -msgid "This agent doesn't have any GIS data" -msgstr "" - -#: ../../operation/agentes/gis_view.php:122 -#: ../../godmode/setup/gis_step_2.php:299 -msgid "Longitude" -msgstr "" - -#: ../../operation/agentes/gis_view.php:122 -#: ../../godmode/setup/gis_step_2.php:295 -msgid "Latitude" -msgstr "" - -#: ../../operation/agentes/gis_view.php:122 -#: ../../godmode/setup/gis_step_2.php:303 -msgid "Altitude" -msgstr "" - -#: ../../operation/agentes/gis_view.php:122 -#: ../../godmode/agentes/planned_downtime.php:360 -#: ../../godmode/alerts/alert_templates.php:91 -#: ../../godmode/alerts/alert_list.list.php:433 -#: ../../godmode/alerts/configure_alert_compound.php:432 -#: ../../enterprise/godmode/alerts/alert_events_list.php:579 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:221 -#: ../../enterprise/godmode/policies/policy_alerts.php:343 -msgid "From" -msgstr "" - -#: ../../operation/agentes/gis_view.php:122 -#: ../../godmode/agentes/planned_downtime.php:361 -msgid "To" -msgstr "" - -#: ../../operation/agentes/gis_view.php:122 -msgid "of Packages" -msgstr "" - -#: ../../operation/agentes/gis_view.php:122 -#: ../../operation/gis_maps/ajax.php:140 -msgid "Manual placement" -msgstr "" - -#: ../../operation/agentes/gis_view.php:125 -msgid "positional data" -msgstr "" - -#: ../../operation/agentes/gis_view.php:130 ../../godmode/db/db_event.php:54 -#: ../../godmode/db/db_audit.php:75 -#: ../../enterprise/operation/agentes/agent_inventory.php:196 -#: ../../enterprise/operation/inventory/inventory.php:353 -#: ../../enterprise/include/functions_reporting_pdf.php:468 -#: ../../enterprise/include/functions_reporting_pdf.php:481 -#: ../../include/functions_reporting.php:3050 -#: ../../include/functions_reporting.php:3062 -msgid "Total" -msgstr "" - -#: ../../operation/agentes/networkmap.groups.php:35 -#: ../../operation/agentes/networkmap.topology.php:35 -#: ../../enterprise/operation/policies/networkmap.policies.php:33 -#: ../../enterprise/include/functions_networkmap_enterprise.php:47 -msgid "Pandora FMS" -msgstr "" - -#: ../../operation/agentes/networkmap.groups.php:38 -#: ../../operation/agentes/networkmap.groups.php:79 -#: ../../operation/agentes/networkmap.groups.php:89 -#: ../../operation/agentes/networkmap.topology.php:38 -#: ../../operation/agentes/networkmap.topology.php:79 -#: ../../operation/agentes/networkmap.topology.php:89 -#: ../../enterprise/operation/policies/networkmap.policies.php:36 -#: ../../enterprise/operation/policies/networkmap.policies.php:77 -#: ../../enterprise/operation/policies/networkmap.policies.php:87 -msgid "Map could not be generated" -msgstr "" - -#: ../../operation/agentes/stat_win.php:117 -msgid "There was a problem locating the source of the graph" -msgstr "" - -#: ../../operation/agentes/stat_win.php:186 -msgid "Pandora FMS Graph configuration menu" -msgstr "" - -#: ../../operation/agentes/stat_win.php:186 -msgid "Please, make your changes and apply with the Reload button" -msgstr "" - -#: ../../operation/agentes/stat_win.php:196 -msgid "Refresh time" -msgstr "" - -#: ../../operation/agentes/stat_win.php:200 -msgid "Avg. Only" -msgstr "" - -#: ../../operation/agentes/stat_win.php:241 -msgid "secs." -msgstr "" - -#: ../../operation/agentes/stat_win.php:251 -msgid "Draw baseline" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:246 -msgid "This agent doesn't have any module" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:268 -msgid "int" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:278 -msgid "Raw Data" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:413 -msgid "TRACE" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:414 -msgid "DEBUG" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:415 -msgid "INFO" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:416 -msgid "WARN" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:417 -msgid "ERROR" -msgstr "" - -#: ../../operation/agentes/estado_ultimopaquete.php:418 -msgid "FATAL" -msgstr "" - -#: ../../operation/agentes/bulbs.php:21 -#: ../../include/functions_reporting.php:1967 -msgid "All Monitors OK" -msgstr "" - -#: ../../operation/agentes/bulbs.php:22 -msgid "At least one monitor fails" -msgstr "" - -#: ../../operation/agentes/bulbs.php:23 -msgid "Change between Green/Red state" -msgstr "" - -#: ../../operation/agentes/bulbs.php:26 -msgid "Alerts disabled" -msgstr "" - -#: ../../operation/agentes/bulbs.php:30 -#: ../../include/functions_reporting.php:1900 -msgid "Agent without data" -msgstr "" - -#: ../../operation/agentes/bulbs.php:31 -msgid "Agent down" -msgstr "" - -#: ../../operation/search_users.php:189 -#: ../../enterprise/extensions/cron/main.php:209 -msgid "Email" -msgstr "" - -#: ../../operation/search_users.php:195 ../../godmode/users/user_list.php:151 -msgid "Profile" -msgstr "" - -#: ../../operation/search_users.php:208 ../../godmode/users/user_list.php:207 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:227 -msgid "Admin" -msgstr "" - -#: ../../operation/search_users.php:209 ../../godmode/users/user_list.php:208 -#: ../../godmode/users/configure_user.php:359 -msgid "Administrator" -msgstr "" - -#: ../../operation/search_users.php:214 ../../godmode/users/user_list.php:212 -#: ../../godmode/users/configure_user.php:364 -msgid "Standard User" -msgstr "" - -#: ../../operation/search_users.php:227 ../../godmode/users/user_list.php:225 -msgid "The user doesn't have any assigned profile/group" -msgstr "" - -#: ../../operation/integria_incidents/incident.incident.php:85 -#: ../../enterprise/dashboard/widget.php:57 -msgid "Title" -msgstr "" - -#: ../../operation/integria_incidents/incident.incident.php:87 -msgid "Assigned user" -msgstr "" - -#: ../../operation/integria_incidents/incident.incident.php:100 -#: ../../operation/integria_incidents/incident.list.php:97 -msgid "Resolution" -msgstr "" - -#: ../../operation/integria_incidents/incident.incident.php:114 -msgid "Resolution epilog" -msgstr "" - -#: ../../operation/integria_incidents/incident.workunits.php:27 -msgid "Time used" -msgstr "" - -#: ../../operation/integria_incidents/incident.workunits.php:28 -msgid "Have cost" -msgstr "" - -#: ../../operation/integria_incidents/incident.workunits.php:42 -msgid "Add workunit" -msgstr "" - -#: ../../operation/integria_incidents/incident.workunits.php:60 -msgid "said" -msgstr "" - -#: ../../operation/integria_incidents/incident.workunits.php:61 -#: ../../operation/integria_incidents/incident.list.php:134 -msgid "Hours" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:39 -#: ../../operation/integria_incidents/incident.php:50 -msgid "Incidents" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:43 -msgid "New Incident" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:58 -#: ../../operation/integria_incidents/incident.list.php:134 -msgid "Workunits" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:62 -#: ../../enterprise/godmode/agentes/collections.editor.php:35 -#: ../../enterprise/godmode/agentes/collections.editor.php:276 -#: ../../enterprise/godmode/agentes/collections.editor.php:285 -#: ../../enterprise/godmode/agentes/collections.data.php:94 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:228 -#: ../../enterprise/include/functions_collection.php:29 -msgid "Files" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:66 -msgid "Tracking" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:136 -msgid "File is too big" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:139 -msgid "File was partially uploaded. Please try again" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:142 -msgid "No file was uploaded" -msgstr "" - -#: ../../operation/integria_incidents/incident.php:145 -msgid "Generic upload error" -msgstr "" - -#: ../../operation/integria_incidents/incident.files.php:23 -#: ../../godmode/extensions.php:147 -msgid "File" -msgstr "" - -#: ../../operation/integria_incidents/incident.files.php:35 -msgid "Add a file" -msgstr "" - -#: ../../operation/integria_incidents/incident.files.php:66 -msgid "Delete file" -msgstr "" - -#: ../../operation/integria_incidents/incident.list.php:34 -msgid "Not closed" -msgstr "" - -#: ../../operation/integria_incidents/incident.list.php:55 -msgid "Search string" -msgstr "" - -#: ../../operation/integria_incidents/incident.list.php:100 -msgid "Details" -msgstr "" - -#: ../../operation/integria_incidents/incident.list.php:137 -msgid "Delete incident" -msgstr "" - -#: ../../operation/integria_incidents/incident.list.php:137 -msgid "View incident details" -msgstr "" - -#: ../../operation/messages/message.php:32 -#: ../../operation/messages/message.php:34 -#: ../../operation/messages/message.php:37 ../../operation/menu.php:273 -msgid "Messages" -msgstr "" - -#: ../../operation/messages/message.php:32 -#: ../../operation/messages/message.php:270 ../../operation/menu.php:279 -msgid "New message" -msgstr "" - -#: ../../operation/messages/message.php:34 -msgid "Read message" -msgstr "" - -#: ../../operation/messages/message.php:59 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "" - -#: ../../operation/messages/message.php:60 -#, php-format -msgid "Error sending message to user %s" -msgstr "" - -#: ../../operation/messages/message.php:72 -msgid "Message successfully sent" -msgstr "" - -#: ../../operation/messages/message.php:73 -#, php-format -msgid "Error sending message to group %s" -msgstr "" - -#: ../../operation/messages/message.php:102 -#: ../../operation/messages/message.php:150 -msgid "Message from" -msgstr "" - -#: ../../operation/messages/message.php:105 -msgid "Message to" -msgstr "" - -#: ../../operation/messages/message.php:117 -msgid "-Select user-" -msgstr "" - -#: ../../operation/messages/message.php:118 -msgid "OR" -msgstr "" - -#: ../../operation/messages/message.php:119 -msgid "-Select group-" -msgstr "" - -#: ../../operation/messages/message.php:121 -#: ../../operation/messages/message.php:154 -#: ../../operation/messages/message.php:218 ../../godmode/setup/news.php:112 -#: ../../godmode/setup/news.php:141 -msgid "Subject" -msgstr "" - -#: ../../operation/messages/message.php:124 -#: ../../operation/messages/message.php:163 -#: ../../enterprise/dashboard/widgets/example.php:25 -msgid "Message" -msgstr "" - -#: ../../operation/messages/message.php:130 -msgid "Send message" -msgstr "" - -#: ../../operation/messages/message.php:142 -msgid "This message does not exist in the system" -msgstr "" - -#: ../../operation/messages/message.php:151 -msgid "at" -msgstr "" - -#: ../../operation/messages/message.php:175 -msgid "wrote" -msgstr "" - -#: ../../operation/messages/message.php:182 -msgid "Reply" -msgstr "" - -#: ../../operation/messages/message.php:201 -msgid "You have" -msgstr "" - -#: ../../operation/messages/message.php:201 -msgid "unread message(s)" -msgstr "" - -#: ../../operation/messages/message.php:205 -msgid "There are no messages" -msgstr "" - -#: ../../operation/messages/message.php:217 -msgid "Sender" -msgstr "" - -#: ../../operation/messages/message.php:238 -msgid "Mark as unread" -msgstr "" - -#: ../../operation/messages/message.php:242 -msgid "Message unread - click to read" -msgstr "" - -#: ../../operation/messages/message.php:250 -msgid "No Subject" -msgstr "" - -#: ../../operation/menu.php:37 ../../godmode/users/configure_profile.php:123 -msgid "View agents" -msgstr "" - -#: ../../operation/menu.php:57 -msgid "Monitor detail" -msgstr "" - -#: ../../operation/menu.php:68 ../../operation/gis_maps/index.php:26 -msgid "GIS Maps" -msgstr "" - -#: ../../operation/menu.php:197 ../../godmode/users/configure_profile.php:121 -msgid "Manage incidents" -msgstr "" - -#: ../../operation/menu.php:212 -#: ../../godmode/reporting/graph_builder.main.php:157 -msgid "View events" -msgstr "" - -#: ../../operation/menu.php:224 -msgid "RSS" -msgstr "" - -#: ../../operation/menu.php:228 -msgid "CSV File" -msgstr "" - -#: ../../operation/menu.php:232 -msgid "Marquee" -msgstr "" - -#: ../../operation/menu.php:257 -msgid "Edit my user" -msgstr "" - -#: ../../operation/menu.php:284 -#: ../../operation/reporting/reporting_viewer.php:78 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../operation/reporting/graph_viewer.php:119 -#: ../../operation/reporting/graph_viewer.php:202 -#: ../../godmode/reporting/reporting_builder.php:46 -#: ../../godmode/reporting/reporting_builder.php:663 -msgid "Reporting" -msgstr "" - -#: ../../operation/menu.php:289 -#: ../../operation/reporting/reporting_viewer.php:78 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../godmode/reporting/reporting_builder.php:46 -msgid "Custom reporting" -msgstr "" - -#: ../../operation/menu.php:290 -msgid "Custom graphs" -msgstr "" - -#: ../../operation/search_graphs.php:62 -#: ../../operation/reporting/graph_viewer.php:212 -#: ../../godmode/reporting/graphs.php:80 -msgid "Graph name" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:136 ../../operation/gis_maps/ajax.php:156 -#: ../../operation/gis_maps/ajax.php:160 -msgid "Position (Long, Lat, Alt)" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:137 -msgid "Start contact" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:139 -msgid "Num reports" -msgstr "" - -#: ../../operation/gis_maps/ajax.php:156 -msgid "Default position of map." -msgstr "" - -#: ../../operation/gis_maps/render_view.php:112 -#: ../../godmode/reporting/visual_console_builder.elements.php:53 -#: ../../godmode/reporting/visual_console_builder.elements.php:54 -#: ../../godmode/reporting/visual_console_builder.elements.php:55 -#: ../../godmode/reporting/visual_console_builder.elements.php:56 -#: ../../godmode/reporting/visual_console_builder.editor.php:90 -#: ../../godmode/reporting/visual_console_builder.editor.php:91 -#: ../../godmode/reporting/visual_console_builder.editor.php:92 -#: ../../godmode/reporting/visual_console_builder.editor.php:93 -#: ../../godmode/reporting/graph_builder.main.php:128 -#: ../../godmode/reporting/graph_builder.main.php:129 -#: ../../godmode/setup/performance.php:72 -#: ../../enterprise/godmode/agentes/inventory_manager.php:160 -#: ../../enterprise/godmode/agentes/inventory_manager.php:161 -#: ../../enterprise/godmode/agentes/inventory_manager.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:38 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:39 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:40 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:50 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:52 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:49 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:191 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:192 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:193 -#: ../../include/functions.php:422 ../../include/functions_alerts.php:789 -#: ../../include/functions_alerts.php:790 -#: ../../include/functions_alerts.php:791 -#: ../../include/functions_custom_graphs.php:127 -#: ../../include/functions_custom_graphs.php:128 -#: ../../include/functions_custom_graphs.php:129 -#: ../../include/functions_custom_graphs.php:130 -msgid "hours" -msgstr "" - -#: ../../operation/gis_maps/render_view.php:115 -msgid "Refresh: " -msgstr "" - -#: ../../operation/gis_maps/render_view.php:124 -#: ../../godmode/massive/massive_edit_agents.php:353 -#: ../../godmode/agentes/agent_manager.php:303 -#: ../../enterprise/operation/services/services.php:102 -msgid "Ok" -msgstr "" - -#: ../../operation/gis_maps/render_view.php:126 -#: ../../include/functions_graph.php:1002 -#: ../../include/functions_graph.php:1128 -#: ../../include/functions_graph.php:1163 -#: ../../include/functions_graph.php:1198 -#: ../../include/functions_graph.php:1236 -#: ../../include/functions_graph.php:1275 -#: ../../include/functions_graph.php:1319 -#: ../../include/functions_graph.php:1370 -#: ../../include/functions_graph.php:1371 -#: ../../include/functions_graph.php:1372 -#: ../../include/functions_graph.php:1387 -#: ../../include/functions_graph.php:1438 -#: ../../include/functions_graph.php:1485 -msgid "Other" -msgstr "" - -#: ../../operation/gis_maps/render_view.php:127 -msgid "Show agents by state: " -msgstr "" - -#: ../../operation/gis_maps/render_view.php:130 -#: ../../enterprise/dashboard/widgets/network_map.php:35 -msgid "Map" -msgstr "" - -#: ../../operation/gis_maps/index.php:76 -msgid "No maps found" -msgstr "" - -#: ../../operation/visual_console/render_view.php:94 -msgid "Autorefresh time" -msgstr "" - -#: ../../operation/visual_console/render_view.php:140 -msgid "Until refresh" -msgstr "" - -#: ../../operation/visual_console/index.php:67 -msgid "No layouts found" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:56 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/snmpconsole/snmp_filters.php:38 -#: ../../godmode/snmpconsole/snmp_filters.php:42 -#: ../../godmode/snmpconsole/snmp_alert.php:30 -#: ../../godmode/snmpconsole/snmp_alert.php:32 -#: ../../godmode/snmpconsole/snmp_alert.php:34 -#: ../../godmode/snmpconsole/snmp_alert.php:95 -msgid "SNMP Console" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:151 -msgid "There are no SNMP traps in database" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:309 -#: ../../operation/snmpconsole/snmp_view.php:383 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:64 -#: ../../godmode/snmpconsole/snmp_alert.php:187 -#: ../../godmode/snmpconsole/snmp_alert.php:291 -#: ../../godmode/snmpconsole/snmp_alert.php:315 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:54 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:201 -msgid "OID" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:317 -msgid "Search value" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:336 -#: ../../operation/snmpconsole/snmp_view.php:430 -#: ../../operation/snmpconsole/snmp_view.php:560 -msgid "Not validated" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:337 -#: ../../operation/snmpconsole/snmp_view.php:432 -#: ../../operation/snmpconsole/snmp_view.php:558 -#: ../../include/functions_events.php:172 -msgid "Validated" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:341 -msgid "Search by any alphanumeric field in the trap" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:379 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:67 -#: ../../godmode/snmpconsole/snmp_alert.php:201 -#: ../../godmode/snmpconsole/snmp_alert.php:287 -#: ../../godmode/snmpconsole/snmp_alert.php:313 -msgid "SNMP Agent" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:387 -#: ../../godmode/massive/massive_edit_modules.php:336 -#: ../../godmode/alerts/configure_alert_template.php:599 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:76 -#: ../../godmode/reporting/reporting_builder.item_editor.php:563 -#: ../../enterprise/operation/services/services.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 -#: ../../enterprise/include/functions_reporting_csv.php:195 -#: ../../enterprise/include/functions_reporting_csv.php:315 -#: ../../enterprise/include/functions_reporting_csv.php:346 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_csv.php:408 -#: ../../enterprise/include/functions_reporting_csv.php:512 -#: ../../enterprise/include/functions_reporting_csv.php:543 -#: ../../enterprise/include/functions_reporting_csv.php:573 -#: ../../enterprise/include/functions_reporting_csv.php:624 -#: ../../enterprise/include/functions_reporting_pdf.php:562 -#: ../../enterprise/include/functions_reporting_pdf.php:862 -#: ../../enterprise/include/functions_reporting_pdf.php:1108 -#: ../../include/functions_reporting.php:1494 -#: ../../include/functions_reporting.php:2315 -#: ../../include/functions_reporting.php:3141 -#: ../../include/functions_reporting.php:3433 -#: ../../include/functions_reporting.php:3671 -msgid "Value" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:391 -msgid "Custom" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:441 -#: ../../godmode/agentes/modificar_agente.php:142 -#: ../../godmode/agentes/modificar_agente.php:475 -msgid "Create agent" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:446 -msgid "View agent details" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:515 -msgid "Custom data:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:516 -msgid "OID:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:519 -#: ../../enterprise/godmode/agentes/collections.data.php:311 -msgid "Description:" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:537 -msgid "No matching traps found" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:193 -#: ../../include/functions.php:702 ../../include/functions_reporting.php:2077 -msgid "Simple graph" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:205 -#: ../../include/functions.php:704 ../../include/functions_reporting.php:2183 -msgid "Simple baseline graph" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:219 -#: ../../godmode/reporting/reporting_builder.item_editor.php:468 -#: ../../enterprise/dashboard/widgets/custom_graph.php:22 -#: ../../enterprise/include/functions_reporting_pdf.php:2222 -#: ../../include/functions.php:706 ../../include/functions_reporting.php:2223 -msgid "Custom graph" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:260 -#: ../../enterprise/include/functions_reporting_csv.php:201 -#: ../../enterprise/include/functions_reporting_pdf.php:2135 -#: ../../include/functions_reporting.php:2302 -msgid "There are no SLAs defined" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:287 -#: ../../enterprise/include/functions_reporting_pdf.php:2554 -#: ../../include/functions.php:708 ../../include/functions_reporting.php:2470 -msgid "Monitor report" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:302 -#: ../../enterprise/include/functions_reporting_pdf.php:2100 -#: ../../include/functions_graph.php:310 -#: ../../include/functions_graph.php:1923 ../../include/functions.php:709 -#: ../../include/functions_reporting.php:2504 -msgid "Avg. Value" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:312 -#: ../../godmode/modules/manage_network_components_form_common.php:100 -#: ../../godmode/agentes/module_manager_editor_common.php:238 -#: ../../enterprise/include/functions_reporting_pdf.php:2071 -#: ../../include/functions_graph.php:310 -#: ../../include/functions_graph.php:1923 ../../include/functions.php:710 -#: ../../include/functions_reporting.php:2533 -msgid "Max. Value" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:322 -#: ../../godmode/modules/manage_network_components_form_common.php:98 -#: ../../godmode/agentes/module_manager_editor_common.php:236 -#: ../../enterprise/include/functions_reporting_pdf.php:2042 -#: ../../include/functions_graph.php:310 -#: ../../include/functions_graph.php:1924 ../../include/functions.php:711 -#: ../../include/functions_reporting.php:2557 -msgid "Min. Value" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:332 -#: ../../enterprise/include/functions_reporting_pdf.php:2013 -msgid "Sumatory" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:342 -#: ../../include/functions_reporting.php:2616 -msgid "Agent detailed event" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:364 -#: ../../godmode/reporting/reporting_builder.item_editor.php:492 -#: ../../godmode/setup/news.php:115 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:204 -#: ../../enterprise/dashboard/widgets/post.php:25 -#: ../../enterprise/include/functions_reporting_pdf.php:1922 -#: ../../include/functions.php:714 ../../include/functions_reporting.php:2635 -msgid "Text" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:370 -#: ../../enterprise/godmode/reporting/mysql_builder.php:145 -#: ../../enterprise/include/functions_reporting_csv.php:424 -#: ../../enterprise/include/functions_reporting_pdf.php:1761 -#: ../../include/functions_reporting.php:2652 -msgid "SQL" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:419 -#: ../../enterprise/include/functions_reporting_pdf.php:1713 -#: ../../include/functions_reporting.php:2755 -msgid "Group detailed event" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:436 -#: ../../enterprise/include/functions_reporting_pdf.php:1943 -msgid "Agents detailed event" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:453 -#: ../../enterprise/include/functions_reporting_pdf.php:1612 -#: ../../include/functions.php:730 ../../include/functions_reporting.php:2794 -msgid "Alert report module" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:490 -#: ../../enterprise/include/functions_reporting_pdf.php:1566 -#: ../../include/functions.php:731 ../../include/functions_reporting.php:2813 -msgid "Alert report agent" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:529 -#: ../../include/functions.php:724 ../../include/functions_reporting.php:2833 -msgid "Import text from URL" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:541 -#: ../../enterprise/include/functions_reporting_pdf.php:1443 -#: ../../include/functions.php:725 ../../include/functions_reporting.php:2856 -msgid "Serialize data" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:587 -#: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting_pdf.php:1409 -#: ../../include/functions.php:726 ../../include/functions_reporting.php:2916 -msgid "TTRT" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:598 -#: ../../enterprise/include/functions_reporting_csv.php:544 -#: ../../enterprise/include/functions_reporting_pdf.php:1375 -#: ../../include/functions.php:727 ../../include/functions_reporting.php:2944 -msgid "TTO" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:609 -#: ../../enterprise/include/functions_reporting_csv.php:574 -#: ../../enterprise/include/functions_reporting_pdf.php:1341 -#: ../../include/functions.php:728 ../../include/functions_reporting.php:2972 -msgid "MTBF" -msgstr "" - -#: ../../operation/reporting/reporting_xml.php:620 -#: ../../enterprise/include/functions_reporting_csv.php:625 -#: ../../enterprise/include/functions_reporting_pdf.php:1307 -#: ../../include/functions.php:729 ../../include/functions_reporting.php:3000 -msgid "MTTR" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:111 -#: ../../godmode/reporting/reporting_builder.preview.php:101 -msgid "Set initial date of all reports" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:112 -#: ../../godmode/reporting/reporting_builder.preview.php:102 -msgid "This is the begin date for all reports" -msgstr "" - -#: ../../operation/reporting/reporting_viewer.php:149 -#: ../../operation/reporting/graph_viewer.php:195 -#: ../../godmode/reporting/reporting_builder.preview.php:158 -#: ../../godmode/reporting/graph_builder.preview.php:221 -msgid "Invalid date selected" -msgstr "" - -#: ../../operation/reporting/custom_reporting.php:32 -#: ../../operation/reporting/graph_viewer.php:227 -#: ../../godmode/reporting/graphs.php:117 -#: ../../godmode/reporting/reporting_builder.php:118 -msgid "There are no defined reportings" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:36 -#: ../../operation/reporting/graph_viewer.php:43 -#: ../../godmode/modules/manage_nc_groups.php:88 -#: ../../godmode/agentes/planned_downtime.php:87 -#: ../../godmode/reporting/graphs.php:45 ../../godmode/reporting/graphs.php:52 -#: ../../godmode/reporting/map_builder.php:33 -msgid "Not deleted. Error deleting data" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:119 -msgid "Combined image render" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:139 -#: ../../godmode/agentes/module_manager_editor_prediction.php:113 -#: ../../godmode/reporting/reporting_builder.item_editor.php:376 -#: ../../godmode/reporting/reporting_builder.item_editor.php:380 -#: ../../godmode/reporting/visual_console_builder.elements.php:71 -#: ../../godmode/reporting/visual_console_builder.editor.php:178 -#: ../../godmode/reporting/graph_builder.main.php:138 -#: ../../godmode/reporting/graph_builder.preview.php:164 -#: ../../godmode/reporting/reporting_builder.list_items.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:124 -#: ../../enterprise/dashboard/widgets/single_graph.php:55 -#: ../../enterprise/dashboard/widgets/custom_graph.php:32 -#: ../../enterprise/include/functions_reporting_csv.php:194 -#: ../../enterprise/include/functions_reporting_csv.php:284 -#: ../../enterprise/include/functions_reporting_csv.php:315 -#: ../../enterprise/include/functions_reporting_csv.php:346 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_csv.php:408 -#: ../../enterprise/include/functions_reporting_csv.php:432 -#: ../../enterprise/include/functions_reporting_csv.php:512 -#: ../../enterprise/include/functions_reporting_csv.php:543 -#: ../../enterprise/include/functions_reporting_csv.php:573 -#: ../../enterprise/include/functions_reporting_csv.php:624 -#: ../../enterprise/include/functions_reporting_csv.php:650 -#: ../../enterprise/include/functions_reporting_csv.php:761 -#: ../../enterprise/include/functions_reporting_csv.php:923 -#: ../../enterprise/include/functions_reporting_csv.php:1077 -msgid "Period" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:149 -#: ../../operation/reporting/graph_viewer.php:159 -#: ../../godmode/reporting/graph_builder.preview.php:174 -#: ../../godmode/reporting/graph_builder.preview.php:184 -msgid "Graph defined" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:150 -#: ../../godmode/reporting/graph_builder.main.php:148 -#: ../../godmode/reporting/graph_builder.preview.php:175 -msgid "Area" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:151 -#: ../../godmode/reporting/graph_builder.main.php:149 -#: ../../godmode/reporting/graph_builder.preview.php:176 -msgid "Stacked area" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:152 -#: ../../godmode/reporting/graph_builder.main.php:150 -#: ../../godmode/reporting/graph_builder.preview.php:177 -msgid "Line" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:153 -#: ../../godmode/reporting/graph_builder.main.php:151 -#: ../../godmode/reporting/graph_builder.preview.php:178 -msgid "Stacked line" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:160 -#: ../../godmode/reporting/graph_builder.preview.php:185 -msgid "Zoom x1" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:161 -#: ../../godmode/reporting/graph_builder.preview.php:186 -msgid "Zoom x2" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:162 -#: ../../godmode/reporting/graph_builder.preview.php:187 -msgid "Zoom x3" -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:202 -msgid "Custom graph viewer" -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/massive/massive_delete_action_alerts.php:70 -#: ../../godmode/massive/massive_edit_agents.php:89 -#: ../../godmode/massive/massive_delete_agents.php:33 -#: ../../godmode/massive/massive_add_action_alerts.php:71 -#: ../../godmode/massive/massive_delete_alerts.php:69 -#: ../../godmode/massive/massive_add_alerts.php:49 -#: ../../godmode/massive/massive_delete_modules.php:58 -#: ../../enterprise/godmode/policies/policy_agents.php:470 -#: ../../include/functions_visual_map.php:229 -msgid "No agents selected" -msgstr "" - -#: ../../godmode/massive/massive_delete_action_alerts.php:94 -#: ../../godmode/massive/massive_add_action_alerts.php:105 -msgid "No alerts selected" -msgstr "" - -#: ../../godmode/massive/massive_delete_action_alerts.php:138 -#: ../../godmode/massive/massive_add_action_alerts.php:129 -msgid "No action selected" -msgstr "" - -#: ../../godmode/massive/massive_delete_action_alerts.php:177 -#: ../../godmode/massive/massive_add_action_alerts.php:169 -#: ../../godmode/alerts/alert_templates.php:117 -#: ../../godmode/alerts/alert_templates.php:151 -#: ../../godmode/alerts/alert_templates.php:163 -#: ../../godmode/alerts/alert_templates.php:173 -msgid "Alert templates" -msgstr "" - -#: ../../godmode/massive/massive_delete_action_alerts.php:195 -#: ../../godmode/massive/massive_add_action_alerts.php:188 -msgid "Alert compounds" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:105 -#: ../../godmode/alerts/alert_list.list.php:350 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 -#: ../../enterprise/godmode/alerts/alert_events_list.php:447 -msgid "Operations" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:108 -msgid "Copy modules" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:113 -msgid "Copy alerts" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:122 -msgid "No modules for this agent" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:141 -msgid "No alerts for this agent" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:150 -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:215 -#: ../../enterprise/operation/metaconsole/componentmanager.php:255 -#: ../../enterprise/operation/metaconsole/alertmanager.php:257 -msgid "Targets" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:174 -msgid "To agent(s)" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:180 -#: ../../godmode/alerts/alert_actions.php:269 -#: ../../godmode/reporting/map_builder.php:135 -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:186 -#: ../../enterprise/godmode/policies/policies.php:306 -msgid "Copy" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:332 -#: ../../include/functions_agents.php:463 -msgid "No source agent to copy" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:340 -msgid "No operation selected" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:345 -#: ../../godmode/db/db_refine.php:47 ../../include/functions_agents.php:493 -msgid "No modules have been selected" -msgstr "" - -#: ../../godmode/massive/massive_copy_modules.php:350 -#: ../../include/functions_agents.php:468 -msgid "No destiny agent(s) to copy" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:94 -msgid "No values changed" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:121 -msgid "Configuration files deleted successfully" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:122 -msgid "Configuration files cannot be deleted" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:174 -msgid "Agents updated successfully" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:175 -msgid "Agents cannot be updated" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:243 -#: ../../godmode/agentes/agent_manager.php:195 -msgid "Cascade protection" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:246 -#: ../../godmode/massive/massive_edit_agents.php:263 -#: ../../godmode/massive/massive_edit_agents.php:274 -#: ../../godmode/massive/massive_edit_agents.php:305 -#: ../../godmode/massive/massive_edit_agents.php:311 -#: ../../godmode/massive/massive_edit_agents.php:359 -#: ../../godmode/massive/massive_edit_modules.php:325 -#: ../../godmode/massive/massive_edit_modules.php:334 -#: ../../godmode/massive/massive_edit_modules.php:344 -#: ../../godmode/massive/massive_edit_modules.php:354 -#: ../../godmode/massive/massive_edit_modules.php:360 -msgid "No change" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:300 -#: ../../godmode/groups/configure_group.php:116 -#: ../../godmode/agentes/module_manager_editor_common.php:224 -#: ../../godmode/agentes/agent_manager.php:245 -msgid "Custom ID" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:304 -#: ../../godmode/agentes/agent_manager.php:249 -msgid "Module definition" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:306 -#: ../../godmode/agentes/agent_manager.php:250 -msgid "Learning mode" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:307 -#: ../../godmode/agentes/agent_manager.php:251 -msgid "Normal mode" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:313 -#: ../../godmode/massive/massive_edit_agents.php:361 -#: ../../godmode/agentes/agent_manager.php:256 -msgid "Active" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:316 -#: ../../godmode/agentes/agent_manager.php:259 -#: ../../enterprise/godmode/policies/policy_agents.php:337 -msgid "Remote configuration" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:319 -msgid "Delete available remote configurations" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:323 -#: ../../godmode/agentes/agent_manager.php:270 -#: ../../godmode/agentes/agent_manager.php:273 -msgid "Not available" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:349 -#: ../../godmode/agentes/agent_manager.php:281 -msgid "Agent icon" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:351 -#: ../../godmode/agentes/agent_manager.php:301 -msgid "Without status" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:354 -#: ../../godmode/agentes/agent_manager.php:305 -#: ../../enterprise/dashboard/widgets/maps_status.php:75 -msgid "Bad" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:358 -#: ../../godmode/agentes/agent_conf_gis.php:63 -#: ../../godmode/agentes/agent_manager.php:310 -msgid "Ignore new GIS data:" -msgstr "" - -#: ../../godmode/massive/massive_edit_agents.php:364 -#: ../../godmode/massive/massive_add_action_alerts.php:197 -#: ../../godmode/agentes/agent_manager.php:315 -#: ../../godmode/agentes/module_manager_editor.php:349 -#: ../../godmode/alerts/alert_list.list.php:473 -#: ../../godmode/reporting/visual_console_builder.editor.php:209 -#: ../../enterprise/godmode/alerts/alert_events_list.php:617 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:274 -#: ../../enterprise/godmode/policies/policy_modules.php:204 -#: ../../enterprise/godmode/policies/policy_alerts.php:396 -msgid "Advanced options" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:77 -#: ../../godmode/alerts/alert_list.php:185 -#: ../../godmode/alerts/alert_compounds.php:88 -#: ../../enterprise/godmode/alerts/alert_events_list.php:269 -#: ../../enterprise/godmode/policies/policy_alerts.php:75 -#: ../../include/ajax/alert_list.ajax.php:79 -msgid "Successfully enabled" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:77 -#: ../../godmode/alerts/alert_list.php:185 -#: ../../godmode/alerts/alert_compounds.php:89 -#: ../../enterprise/godmode/alerts/alert_events_list.php:269 -#: ../../enterprise/godmode/policies/policy_alerts.php:75 -#: ../../include/ajax/alert_list.ajax.php:81 -msgid "Could not be enabled" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:95 -#: ../../godmode/alerts/alert_list.php:200 -#: ../../godmode/alerts/alert_compounds.php:98 -#: ../../enterprise/godmode/alerts/alert_events_list.php:284 -#: ../../enterprise/godmode/policies/policy_alerts.php:91 -#: ../../include/ajax/alert_list.ajax.php:90 -msgid "Successfully disabled" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:95 -#: ../../godmode/alerts/alert_list.php:200 -#: ../../godmode/alerts/alert_compounds.php:99 -#: ../../enterprise/godmode/alerts/alert_events_list.php:284 -#: ../../enterprise/godmode/policies/policy_alerts.php:91 -#: ../../include/ajax/alert_list.ajax.php:92 -msgid "Could not be disabled" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:147 -msgid "Enabled alerts" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:147 -#: ../../godmode/massive/massive_enable_disable_alerts.php:164 -#: ../../godmode/massive/massive_standby_alerts.php:149 -#: ../../godmode/massive/massive_standby_alerts.php:166 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:81 -msgid "Format" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:158 -msgid "Disable selected alerts" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:162 -msgid "Enable selected alerts" -msgstr "" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:164 -msgid "Disabled alerts" -msgstr "" - -#: ../../godmode/massive/massive_delete_agents.php:52 -msgid "There was an error deleting the agent, the operation has been cancelled" -msgstr "" - -#: ../../godmode/massive/massive_delete_agents.php:53 -msgid "Could not delete agent" -msgstr "" - -#: ../../godmode/massive/massive_add_action_alerts.php:199 -#: ../../godmode/alerts/alert_list.list.php:475 -#: ../../godmode/alerts/alert_list.builder.php:100 -#: ../../enterprise/godmode/alerts/alert_events_list.php:619 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:276 -#: ../../enterprise/godmode/policies/policy_alerts.php:398 -msgid "Number of alerts match from" -msgstr "" - -#: ../../godmode/massive/massive_add_action_alerts.php:201 -#: ../../godmode/agentes/manage_config_remote.php:103 -#: ../../godmode/alerts/alert_templates.php:93 -#: ../../godmode/alerts/alert_list.list.php:434 -#: ../../godmode/alerts/alert_list.list.php:477 -#: ../../godmode/alerts/alert_list.builder.php:102 -#: ../../godmode/alerts/configure_alert_compound.php:433 -#: ../../enterprise/godmode/alerts/alert_events_list.php:580 -#: ../../enterprise/godmode/alerts/alert_events_list.php:621 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:222 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:278 -#: ../../enterprise/godmode/policies/policy_alerts.php:344 -#: ../../enterprise/godmode/policies/policy_alerts.php:400 -msgid "to" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:244 -msgid "Selection mode" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:245 -msgid "Select modules first" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:247 -msgid "Select agents first" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:250 -#: ../../godmode/modules/manage_network_components_form_wmi.php:90 -msgid "Module type" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:259 -msgid "Select all modules of this type" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:276 -msgid "Agent group" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:283 -msgid "Select all modules of this group" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:306 -#: ../../godmode/modules/manage_network_components_form_common.php:71 -#: ../../godmode/agentes/module_manager_editor_common.php:181 -#: ../../include/functions_alerts.php:451 -msgid "Warning status" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:307 -#: ../../godmode/massive/massive_edit_modules.php:314 -#: ../../godmode/massive/massive_edit_modules.php:337 -#: ../../godmode/modules/manage_network_components_form_common.php:72 -#: ../../godmode/modules/manage_network_components_form_common.php:82 -#: ../../godmode/alerts/configure_alert_template.php:614 -#: ../../include/functions_reporting.php:1527 -#: ../../include/functions_alerts.php:448 -msgid "Min." -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:309 -#: ../../godmode/massive/massive_edit_modules.php:316 -#: ../../godmode/massive/massive_edit_modules.php:339 -#: ../../godmode/modules/manage_network_components_form_common.php:75 -#: ../../godmode/modules/manage_network_components_form_common.php:85 -#: ../../godmode/agentes/module_manager_editor_common.php:185 -#: ../../godmode/agentes/module_manager_editor_common.php:195 -#: ../../godmode/alerts/configure_alert_template.php:617 -#: ../../include/functions_reporting.php:1528 -#: ../../include/functions_alerts.php:447 -msgid "Max." -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:311 -#: ../../godmode/massive/massive_edit_modules.php:318 -#: ../../godmode/modules/manage_network_components_form_common.php:78 -#: ../../godmode/modules/manage_network_components_form_common.php:88 -#: ../../godmode/agentes/module_manager_editor_common.php:188 -#: ../../godmode/agentes/module_manager_editor_common.php:198 -msgid "Str." -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:313 -#: ../../godmode/modules/manage_network_components_form_common.php:81 -#: ../../godmode/agentes/module_manager_editor_common.php:191 -#: ../../include/functions_alerts.php:452 -msgid "Critical status" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:327 -#: ../../godmode/modules/manage_network_components_form_plugin.php:50 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/modules/manage_network_components_form_wmi.php:58 -#: ../../godmode/agentes/module_manager_editor_common.php:232 -msgid "Post process" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:329 -msgid "SMNP community" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:346 -#: ../../godmode/modules/manage_network_components_form_plugin.php:39 -#: ../../godmode/modules/manage_network_components_form_wmi.php:50 -#: ../../godmode/modules/manage_network_components_form_wmi.php:177 -#: ../../godmode/agentes/module_manager_editor_wmi.php:50 -#: ../../godmode/agentes/module_manager_editor_plugin.php:59 -#: ../../enterprise/godmode/agentes/inventory_manager.php:169 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:200 -msgid "Username" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:351 -#: ../../godmode/agentes/module_manager_editor_common.php:241 -msgid "Export target" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:357 -#: ../../godmode/modules/manage_network_components_form_common.php:92 -#: ../../godmode/agentes/module_manager_editor_common.php:203 -msgid "FF threshold" -msgstr "" - -#: ../../godmode/massive/massive_edit_modules.php:359 -#: ../../godmode/modules/manage_network_components_form_common.php:95 -#: ../../godmode/agentes/module_manager_editor_common.php:206 -msgid "Historical data" -msgstr "" - -#: ../../godmode/massive/massive_delete_alerts.php:64 -#: ../../godmode/massive/massive_add_alerts.php:54 -msgid "No alert selected" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:35 -msgid "Massive alerts addition" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:35 -msgid "Massive alerts deletion" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:36 -msgid "Massive alert actions addition" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:36 -msgid "Massive alert actions deletion" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:37 -msgid "Massive alert enable/disable" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:37 -msgid "Massive alert setting standby" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:39 -msgid "Massive agents edition" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:39 -msgid "Massive agents deletion" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:42 -msgid "Massive profiles addition" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:42 -msgid "Massive profiles deletion" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:48 -msgid "Massive modules deletion" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:48 -msgid "Massive modules edition" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:49 -msgid "Massive modules copy" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:102 ../../godmode/menu.php:57 -msgid "Alerts operations" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:106 ../../godmode/menu.php:55 -msgid "Users operations" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:110 ../../godmode/menu.php:52 -msgid "Agents operations" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:114 ../../godmode/menu.php:53 -msgid "Modules operations" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:132 ../../godmode/menu.php:47 -msgid "Massive operations" -msgstr "" - -#: ../../godmode/massive/massive_operations.php:137 +#: ../../enterprise/load_enterprise.php:284 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" +"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 "" -#: ../../godmode/massive/massive_operations.php:153 -msgid "Please wait" +#: ../../enterprise/load_enterprise.php:288 +msgid "Please contact Artica at info@artica.es to renew the license." msgstr "" -#: ../../godmode/massive/massive_operations.php:200 -msgid "The blank fields will not be updated" +#: ../../enterprise/godmode/setup/edit_skin.php:42 +#: ../../enterprise/godmode/setup/setup_skins.php:36 +msgid "Skins configuration" msgstr "" -#: ../../godmode/massive/massive_delete_profiles.php:61 -msgid "Not deleted. You must select an existing user" +#: ../../enterprise/godmode/setup/edit_skin.php:45 +msgid "Successfully updated skin" msgstr "" -#: ../../godmode/massive/massive_delete_profiles.php:88 -msgid "Profiles deleted successfully" +#: ../../enterprise/godmode/setup/edit_skin.php:47 +#: ../../enterprise/godmode/setup/edit_skin.php:60 +msgid "Error updating skin" msgstr "" -#: ../../godmode/massive/massive_delete_profiles.php:89 -msgid "Profiles cannot be deleted" +#: ../../enterprise/godmode/setup/edit_skin.php:173 +msgid "Error creating skin" msgstr "" -#: ../../godmode/massive/massive_delete_modules.php:53 -msgid "No module selected" +#: ../../enterprise/godmode/setup/edit_skin.php:178 +msgid "Successfully created skin" msgstr "" -#: ../../godmode/massive/massive_delete_modules.php:67 +#: ../../enterprise/godmode/setup/edit_skin.php:221 +#: ../../enterprise/godmode/setup/setup_skins.php:119 +msgid "Relative path" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:222 msgid "" -"There was an error deleting the modules, the operation has been cancelled" +"Zip file with skin subdirectory. The name of the zip file only can have " +"alphanumeric characters." msgstr "" -#: ../../godmode/massive/massive_delete_modules.php:68 -msgid "Could not delete modules" +#: ../../enterprise/godmode/setup/edit_skin.php:244 +msgid "Group/s" msgstr "" -#: ../../godmode/massive/massive_standby_alerts.php:78 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../enterprise/godmode/alerts/alert_events_list.php:314 -#: ../../enterprise/godmode/policies/policy_alerts.php:123 -msgid "Successfully set off standby" +#: ../../enterprise/godmode/setup/setup_acl.php:40 +msgid "Enterprise ACL setup" msgstr "" -#: ../../godmode/massive/massive_standby_alerts.php:78 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../enterprise/godmode/alerts/alert_events_list.php:314 -#: ../../enterprise/godmode/policies/policy_alerts.php:123 -msgid "Could not be set off standby" +#: ../../enterprise/godmode/setup/setup_acl.php:70 +#: ../../enterprise/godmode/setup/setup_acl.php:94 +msgid "Add new ACL element to profile" msgstr "" -#: ../../godmode/massive/massive_standby_alerts.php:96 -#: ../../godmode/alerts/alert_list.php:215 -#: ../../enterprise/godmode/alerts/alert_events_list.php:299 -#: ../../enterprise/godmode/policies/policy_alerts.php:107 -msgid "Successfully set standby" +#: ../../enterprise/godmode/setup/setup_acl.php:75 +#: ../../enterprise/godmode/setup/setup_acl.php:139 +msgid "Section" msgstr "" -#: ../../godmode/massive/massive_standby_alerts.php:96 -#: ../../godmode/alerts/alert_list.php:215 -#: ../../enterprise/godmode/alerts/alert_events_list.php:299 -#: ../../enterprise/godmode/policies/policy_alerts.php:107 -msgid "Could not be set standby" +#: ../../enterprise/godmode/setup/setup_acl.php:80 +#: ../../enterprise/godmode/setup/setup_acl.php:99 +#: ../../enterprise/godmode/setup/setup_acl.php:140 +msgid "Page" msgstr "" -#: ../../godmode/massive/massive_standby_alerts.php:149 -msgid "Not standby alerts" +#: ../../enterprise/godmode/setup/setup_acl.php:119 +msgid "Filter by profile" msgstr "" -#: ../../godmode/massive/massive_standby_alerts.php:160 -#: ../../godmode/massive/massive_standby_alerts.php:164 -msgid "Set standby selected alerts" +#: ../../enterprise/godmode/setup/setup_acl.php:191 +#: ../../enterprise/godmode/setup/setup_acl.php:204 +#: ../../include/functions_graph.php:1834 +#: ../../include/functions_graph.php:1849 +msgid "Invalid" msgstr "" -#: ../../godmode/massive/massive_standby_alerts.php:166 -msgid "Standby alerts" +#: ../../enterprise/godmode/setup/setup_skins.php:71 +msgid "Error deleting skin" msgstr "" -#: ../../godmode/groups/configure_group.php:54 -#: ../../godmode/groups/configure_modu_group.php:46 -msgid "There was a problem loading group" +#: ../../enterprise/godmode/setup/setup_skins.php:74 +msgid "Successfully deleted skin" msgstr "" -#: ../../godmode/groups/configure_group.php:69 -msgid "Update group" +#: ../../enterprise/godmode/setup/setup_skins.php:93 +msgid "Create skin" msgstr "" -#: ../../godmode/groups/configure_group.php:72 -#: ../../godmode/groups/group_list.php:333 -msgid "Create group" +#: ../../enterprise/godmode/setup/setup_skins.php:118 +msgid "Skin name" msgstr "" -#: ../../godmode/groups/configure_group.php:80 -#: ../../godmode/groups/group_list.php:223 -#: ../../godmode/modules/module_list.php:57 -#: ../../godmode/reporting/visual_console_builder.elements.php:123 -#: ../../godmode/reporting/visual_console_builder.editor.php:69 -#: ../../godmode/reporting/visual_console_builder.editor.php:116 -#: ../../godmode/setup/os.builder.php:38 -#: ../../include/functions_visual_map.php:1172 -msgid "Icon" +#: ../../enterprise/godmode/setup/setup_metaconsole.php:29 +msgid "Metaconsole setup" msgstr "" -#: ../../godmode/groups/configure_group.php:113 -msgid "Propagate ACL" +#: ../../enterprise/godmode/setup/setup_auth.php:31 +msgid "Active directory" msgstr "" -#: ../../godmode/groups/configure_group.php:113 -msgid "Propagate the same ACL security into the child subgroups." +#: ../../enterprise/godmode/setup/setup_auth.php:32 +msgid "Remote Pandora FMS" msgstr "" -#: ../../godmode/groups/modu_group_list.php:54 -msgid "Module groups defined in Pandora" +#: ../../enterprise/godmode/setup/setup_auth.php:33 +msgid "Remote Babel Enterprise" msgstr "" -#: ../../godmode/groups/modu_group_list.php:74 -#: ../../godmode/groups/group_list.php:132 -msgid "Group successfully created" +#: ../../enterprise/godmode/setup/setup_auth.php:34 +msgid "Remote Integria" msgstr "" -#: ../../godmode/groups/modu_group_list.php:77 -#: ../../godmode/groups/group_list.php:134 -msgid "There was a problem creating group" +#: ../../enterprise/godmode/setup/setup_auth.php:46 +#: ../../include/functions_config.php:263 +msgid "Active directory server" msgstr "" -#: ../../godmode/groups/modu_group_list.php:81 -#: ../../godmode/groups/modu_group_list.php:112 -msgid "Each module group must have a different name" +#: ../../enterprise/godmode/setup/setup_auth.php:48 +#: ../../include/functions_config.php:265 +msgid "Active directory port" msgstr "" -#: ../../godmode/groups/modu_group_list.php:85 -#: ../../godmode/groups/modu_group_list.php:116 -msgid "Module group must have a name" +#: ../../enterprise/godmode/setup/setup_auth.php:50 +#: ../../include/functions_config.php:267 +#: ../../include/functions_config.php:278 +#: ../../godmode/setup/setup_auth.php:68 +msgid "Start TLS" msgstr "" -#: ../../godmode/groups/modu_group_list.php:105 -#: ../../godmode/groups/group_list.php:180 -msgid "Group successfully updated" +#: ../../enterprise/godmode/setup/setup_auth.php:53 +#: ../../include/functions_config.php:269 +msgid "Domain" msgstr "" -#: ../../godmode/groups/modu_group_list.php:108 -#: ../../godmode/groups/group_list.php:182 -msgid "There was a problem modifying group" +#: ../../enterprise/godmode/setup/setup_auth.php:61 +#: ../../include/functions_config.php:285 +msgid "Pandora FMS host" msgstr "" -#: ../../godmode/groups/modu_group_list.php:127 -#: ../../godmode/groups/group_list.php:211 -msgid "There was a problem deleting group" +#: ../../enterprise/godmode/setup/setup_auth.php:63 +#: ../../enterprise/godmode/setup/setup_auth.php:79 +#: ../../enterprise/godmode/setup/setup_auth.php:95 +#: ../../include/functions_config.php:287 +#: ../../include/functions_config.php:298 +#: ../../include/functions_config.php:308 +msgid "MySQL port" msgstr "" -#: ../../godmode/groups/modu_group_list.php:129 -#: ../../godmode/groups/group_list.php:208 -msgid "Group successfully deleted" +#: ../../enterprise/godmode/setup/setup_auth.php:65 +#: ../../enterprise/godmode/setup/setup_auth.php:81 +#: ../../enterprise/godmode/setup/setup_auth.php:97 +#: ../../enterprise/godmode/setup/setup_history.php:52 +#: ../../include/functions_config.php:289 +#: ../../include/functions_config.php:300 +#: ../../include/functions_config.php:310 +#: ../../include/functions_config.php:479 +msgid "Database name" msgstr "" -#: ../../godmode/groups/modu_group_list.php:192 -msgid "There are no defined module groups" +#: ../../enterprise/godmode/setup/setup_auth.php:77 +#: ../../include/functions_config.php:296 +msgid "Babel Enterprise host" msgstr "" -#: ../../godmode/groups/modu_group_list.php:197 -msgid "Create module group" +#: ../../enterprise/godmode/setup/setup_auth.php:93 +#: ../../include/functions_config.php:306 +msgid "Integria host" msgstr "" -#: ../../godmode/groups/configure_modu_group.php:29 -msgid "Module group management" +#: ../../enterprise/godmode/setup/setup_history.php:42 +#: ../../include/functions_config.php:473 +msgid "Enable history database" msgstr "" -#: ../../godmode/groups/group_list.php:101 -msgid "Groups defined in Pandora" +#: ../../enterprise/godmode/setup/setup_history.php:46 +#: ../../include/functions_config.php:475 +msgid "Host" msgstr "" -#: ../../godmode/groups/group_list.php:137 -msgid "Each group must have a different name" +#: ../../enterprise/godmode/setup/setup_history.php:49 +#: ../../enterprise/godmode/servers/manage_export_form.php:103 +#: ../../include/functions_config.php:477 +#: ../../godmode/modules/manage_network_components_form_network.php:38 +#: ../../godmode/agentes/module_manager_editor_network.php:58 +#: ../../extensions/snmp_explorer.php:281 +msgid "Port" msgstr "" -#: ../../godmode/groups/group_list.php:141 -msgid "Group must have a name" +#: ../../enterprise/godmode/setup/setup_history.php:55 +#: ../../include/functions_config.php:481 +msgid "Database user" msgstr "" -#: ../../godmode/groups/group_list.php:204 -#, php-format -msgid "The group is not empty. It is use in %s." +#: ../../enterprise/godmode/setup/setup_history.php:58 +#: ../../include/functions_config.php:483 +msgid "Database password" msgstr "" -#: ../../godmode/groups/group_list.php:301 -msgid "Show branch children" +#: ../../enterprise/godmode/setup/setup_history.php:61 +msgid "Number of days before data is transfered to history database." msgstr "" -#: ../../godmode/groups/group_list.php:308 -#: ../../godmode/agentes/agent_conf_gis.php:65 -#: ../../godmode/agentes/agent_manager.php:312 -#: ../../godmode/alerts/configure_alert_template.php:525 -#: ../../godmode/alerts/configure_alert_compound.php:453 -msgid "Enabled" +#: ../../enterprise/godmode/setup/setup_history.php:64 +#: ../../enterprise/godmode/alerts/alert_events.php:79 +#: ../../enterprise/godmode/alerts/alert_events.php:84 +#: ../../enterprise/godmode/alerts/alert_events.php:99 +#: ../../enterprise/godmode/alerts/alert_events.php:104 +#: ../../include/functions_config.php:487 +#: ../../godmode/alerts/configure_alert_template.php:152 +#: ../../godmode/alerts/configure_alert_template.php:157 +#: ../../godmode/alerts/configure_alert_template.php:172 +#: ../../godmode/alerts/configure_alert_template.php:177 +#: ../../godmode/alerts/configure_alert_template.php:192 +#: ../../godmode/alerts/configure_alert_template.php:197 +msgid "Step" msgstr "" -#: ../../godmode/groups/group_list.php:328 -msgid "There are no defined groups" +#: ../../enterprise/godmode/setup/setup_history.php:64 +msgid "" +"Data size of mechanism used to transfer data (similar to a data buffer.)" msgstr "" -#: ../../godmode/modules/manage_network_components.php:29 -#: ../../godmode/modules/manage_network_templates.php:30 -#: ../../godmode/modules/module_list.php:28 -#: ../../godmode/modules/manage_nc_groups.php:29 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:30 -#: ../../enterprise/godmode/modules/local_components.php:79 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -msgid "Module management" +#: ../../enterprise/godmode/setup/setup_history.php:67 +#: ../../include/functions_config.php:489 +msgid "Delay" msgstr "" -#: ../../godmode/modules/manage_network_components.php:29 -msgid "Network component management" +#: ../../enterprise/godmode/setup/setup_history.php:67 +msgid "Time interval between data transfer." msgstr "" -#: ../../godmode/modules/manage_network_components.php:84 -#: ../../godmode/alerts/configure_alert_template.php:92 -#: ../../enterprise/godmode/modules/local_components.php:92 +#: ../../enterprise/godmode/setup/setup.php:27 +#: ../../include/functions_config.php:186 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:33 +#: ../../include/functions_config.php:188 +msgid "Use Enterprise ACL System" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:46 +#: ../../include/functions_config.php:192 +msgid "Size of collection" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:47 +msgid " Bytes" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:56 +#: ../../include/functions_config.php:197 +msgid "Replication interval" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:57 +msgid "Seconds" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:60 +#: ../../include/functions_config.php:199 +msgid "Replication DB host" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../include/functions_config.php:201 +msgid "Replication DB database" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:68 +#: ../../include/functions_config.php:203 +msgid "Replication DB user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:72 +#: ../../include/functions_config.php:205 +msgid "Replication DB password" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:76 +#: ../../include/functions_config.php:207 +msgid "Replication DB port" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:80 +#: ../../include/functions_config.php:209 +msgid "Replication mode" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:81 +msgid "Only validated events" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:85 +#: ../../include/functions_config.php:218 +msgid "Inventory changes blacklist" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:85 +msgid "" +"The inventory modules included in the changes blacklist will not generate " +"events when change." +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:114 +msgid "Out of black list" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:116 +msgid "In black list" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:122 +msgid "Push selected modules into blacklist" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:124 +msgid "Pop selected modules out of blacklist" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:133 +#: ../../include/functions_config.php:214 +msgid "Activate Log Collector" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:158 +msgid "Enterprise options" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:249 +msgid "Enterprise password policy" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:249 +msgid "" +"Rules applied to the management of passwords. This policy applies to all " +"users except the administrator." +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:87 +msgid "Local component management" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:103 +#: ../../godmode/modules/manage_network_components.php:128 +#: ../../godmode/alerts/configure_alert_template.php:123 #, php-format msgid "Successfully created from %s" msgstr "" -#: ../../godmode/modules/manage_network_components.php:151 -#: ../../godmode/servers/recon_script.php:148 +#: ../../enterprise/godmode/modules/local_components.php:223 +#: ../../godmode/modules/manage_network_components.php:217 +#: ../../godmode/servers/recon_script.php:153 msgid "Created successfully" msgstr "" -#: ../../godmode/modules/manage_network_components.php:216 -#: ../../godmode/servers/recon_script.php:127 +#: ../../enterprise/godmode/modules/local_components.php:274 +#: ../../godmode/modules/manage_network_components.php:297 +#: ../../godmode/servers/recon_script.php:132 msgid "Updated successfully" msgstr "" -#: ../../godmode/modules/manage_network_components.php:251 -#: ../../godmode/modules/manage_network_templates.php:67 -#: ../../godmode/modules/manage_nc_groups.php:116 -#: ../../enterprise/godmode/modules/local_components.php:183 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:119 +#: ../../enterprise/godmode/modules/local_components.php:319 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:133 +#: ../../godmode/modules/manage_network_templates.php:83 +#: ../../godmode/modules/manage_network_components.php:347 +#: ../../godmode/modules/manage_nc_groups.php:155 msgid "Successfully multiple deleted" msgstr "" -#: ../../godmode/modules/manage_network_components.php:252 -#: ../../godmode/modules/manage_network_templates.php:68 -#: ../../godmode/modules/manage_nc_groups.php:117 -#: ../../enterprise/godmode/modules/local_components.php:184 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:120 +#: ../../enterprise/godmode/modules/local_components.php:320 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:134 +#: ../../godmode/modules/manage_network_templates.php:84 +#: ../../godmode/modules/manage_network_components.php:348 +#: ../../godmode/modules/manage_nc_groups.php:156 msgid "Not deleted. Error deleting multiple data" msgstr "" -#: ../../godmode/modules/manage_network_components.php:350 -msgid "Max/Min" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:369 -msgid "N/A\t" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:376 -#: ../../godmode/agentes/module_manager.php:500 -#: ../../godmode/alerts/alert_templates.php:269 -#: ../../enterprise/godmode/modules/local_components.php:287 -msgid "Duplicate" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:396 -msgid "There are no defined network components" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:403 -msgid "Create a new network component" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:404 -msgid "Create a new plugin component" -msgstr "" - -#: ../../godmode/modules/manage_network_components.php:405 -msgid "Create a new WMI component" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_plugin.php:21 -msgid "Plugin component" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_plugin.php:47 -#: ../../godmode/agentes/module_manager_editor_plugin.php:67 -msgid "Plugin parameters" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_network.php:49 -#: ../../godmode/agentes/module_manager_editor_network.php:86 -msgid "SNMP OID" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_network.php:69 -#: ../../godmode/agentes/module_manager_editor_network.php:176 -msgid "Privacy pass" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_network.php:91 -#: ../../godmode/agentes/module_manager_editor_network.php:115 -msgid "TCP send" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_network.php:98 -#: ../../godmode/agentes/module_manager_editor_network.php:121 -msgid "TCP receive" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:30 -#: ../../godmode/modules/manage_network_templates_form.php:32 -msgid "Module template management" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:44 -msgid "Template successfully deleted" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:45 -msgid "Error deleting template" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:76 -msgid "This template does not exist" -msgstr "" - -#: ../../godmode/modules/manage_network_templates.php:212 -msgid "There are no defined network profiles" -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_wmi.php:31 -msgid "WMI component management" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:34 -#: ../../godmode/modules/manage_network_components_form_wmi.php:145 -#: ../../godmode/agentes/module_manager_editor_wmi.php:58 -msgid "WMI query" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:36 -#: ../../godmode/modules/manage_network_components_form_wmi.php:153 -#: ../../godmode/agentes/module_manager_editor_wmi.php:66 -msgid "Key string" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:42 -#: ../../godmode/modules/manage_network_components_form_wmi.php:161 -#: ../../godmode/agentes/module_manager_editor_wmi.php:69 -msgid "Field number" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:44 -#: ../../godmode/modules/manage_network_components_form_wmi.php:169 -#: ../../godmode/agentes/module_manager_editor_wmi.php:43 -msgid "Namespace" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:134 -msgid "Module Interval" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:139 -#: ../../godmode/servers/plugin.php:101 -msgid "Max. timeout" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:189 -msgid "Minimum Data" -msgstr "" - -#: ../../godmode/modules/manage_network_components_form_wmi.php:193 -msgid "Maximum Data" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:29 -msgid "Component group management" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:46 -msgid "Could not be created. Blank name" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:54 -#: ../../godmode/users/profile_list.php:156 -#: ../../godmode/users/configure_user.php:182 -#: ../../godmode/agentes/configurar_agente.php:396 -#: ../../godmode/agentes/planned_downtime.php:160 -#: ../../godmode/alerts/alert_actions.php:142 -#: ../../godmode/alerts/configure_alert_template.php:373 -#: ../../godmode/alerts/configure_alert_compound.php:280 -#: ../../godmode/alerts/alert_list.php:93 -#: ../../godmode/alerts/alert_commands.php:72 -#: ../../godmode/snmpconsole/snmp_filters.php:66 -#: ../../godmode/snmpconsole/snmp_alert.php:75 ../../godmode/setup/gis.php:45 -#: ../../godmode/setup/links.php:41 ../../godmode/setup/news.php:45 -#: ../../enterprise/extensions/cron/main.php:76 -#: ../../enterprise/extensions/cron/main.php:130 -#: ../../enterprise/godmode/servers/manage_export.php:99 -#: ../../enterprise/godmode/alerts/alert_events.php:317 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:130 -msgid "Successfully created" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:64 -msgid "Not updated. Blank name" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:72 -#: ../../godmode/setup/news.php:62 -msgid "Not updated. Error updating data" -msgstr "" - -#: ../../godmode/modules/manage_nc_groups.php:189 -msgid "There are no defined component groups" -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:87 -msgid "Successfully updated network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:88 -msgid "Error updating network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:96 -msgid "Successfully added network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:97 -msgid "Error adding network profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:101 -msgid "Cannot create a template without name" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:169 -msgid "No modules for this profile" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:209 -msgid "Add modules" -msgstr "" - -#: ../../godmode/modules/manage_network_templates_form.php:277 -msgid "Components" -msgstr "" - -#: ../../godmode/extensions.php:148 -msgid "Enterprise" -msgstr "" - -#: ../../godmode/extensions.php:148 -msgid "E." -msgstr "" - -#: ../../godmode/extensions.php:149 -msgid "Godmode Function" -msgstr "" - -#: ../../godmode/extensions.php:149 -msgid "G.F." -msgstr "" - -#: ../../godmode/extensions.php:150 -msgid "Godmode Menu" -msgstr "" - -#: ../../godmode/extensions.php:150 -msgid "G.M." -msgstr "" - -#: ../../godmode/extensions.php:151 -msgid "Operation Menu" -msgstr "" - -#: ../../godmode/extensions.php:151 -msgid "O.M." -msgstr "" - -#: ../../godmode/extensions.php:152 -msgid "Operation Function" -msgstr "" - -#: ../../godmode/extensions.php:152 -msgid "O.F." -msgstr "" - -#: ../../godmode/extensions.php:153 -msgid "Login Function" -msgstr "" - -#: ../../godmode/extensions.php:153 -msgid "L.F." -msgstr "" - -#: ../../godmode/extensions.php:154 -msgid "Agent operation tab" -msgstr "" - -#: ../../godmode/extensions.php:154 -msgid "A.O.T." -msgstr "" - -#: ../../godmode/extensions.php:155 -msgid "Agent godmode tab" -msgstr "" - -#: ../../godmode/extensions.php:155 -msgid "A.G.T." -msgstr "" - -#: ../../godmode/extensions.php:156 -msgid "O." -msgstr "" - -#: ../../godmode/extensions.php:254 -#: ../../godmode/alerts/alert_list.list.php:104 -#: ../../godmode/alerts/alert_list.list.php:645 -#: ../../enterprise/godmode/alerts/alert_events_list.php:721 -#: ../../enterprise/godmode/policies/policy_alerts.php:482 -msgid "Enable" -msgstr "" - -#: ../../godmode/extensions.php:258 -#: ../../godmode/alerts/alert_list.list.php:105 -#: ../../godmode/alerts/alert_list.list.php:637 -#: ../../enterprise/godmode/alerts/alert_events_list.php:713 -#: ../../enterprise/godmode/policies/policy_alerts.php:474 -msgid "Disable" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:125 -#: ../../godmode/servers/manage_recontask.php:32 ../../godmode/menu.php:174 -msgid "Manage recontask" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:152 -msgid "" -"You must select a Recon Server for the Task, otherwise the Recon Task will " -"never run" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:159 -msgid "Network sweep" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:160 -#: ../../enterprise/extensions/cron/main.php:213 -msgid "Custom script" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:163 -#: ../../godmode/servers/manage_recontask.php:217 -msgid "Mode" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:173 -#: ../../godmode/servers/manage_recontask.php:267 -#: ../../enterprise/dashboard/main_dashboard.php:213 -msgid "Manual" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:174 -#, php-format -msgid "%d hour" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:175 -#: ../../godmode/servers/manage_recontask_form.php:176 -#: ../../godmode/servers/manage_recontask_form.php:177 -#, php-format -msgid "%d hours" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:178 -#, php-format -msgid "%d day" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:179 -#, php-format -msgid "%d days" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:180 -#, php-format -msgid "%d week" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:181 -#, php-format -msgid "%d weeks" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:182 -#, php-format -msgid "%d month" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:188 -msgid "Module template" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:193 -msgid "Recon script" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:204 -#: ../../godmode/servers/manage_recontask.php:217 -msgid "Ports" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:206 -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:217 -msgid "Choose if the discovery of a new system creates an incident or not." -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:220 -#: ../../godmode/servers/manage_recontask_form.php:224 -msgid "SNMP Default community" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:228 -msgid "Explanation" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:234 -msgid "Script field #1" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:238 -msgid "Script field #2" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:242 -msgid "Script field #3" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:246 -msgid "Script field #4" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:255 -msgid "OS detection" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:259 -msgid "Name resolution" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:263 -msgid "Parent detection" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:267 -msgid "Parent recursion" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:33 -msgid "Update Server" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:56 ../../godmode/menu.php:169 -msgid "Manage servers" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:64 -msgid "Server deleted successfully" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:67 -msgid "There was a problem deleting the server" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:78 -msgid "Server updated successfully" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:81 -msgid "There was a problem updating the server" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:113 -#: ../../godmode/servers/plugin.php:237 ../../godmode/users/user_list.php:153 -#: ../../godmode/users/profile_list.php:199 -#: ../../godmode/alerts/alert_templates.php:239 -#: ../../godmode/alerts/alert_list.list.php:350 +#: ../../enterprise/godmode/modules/local_components.php:419 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:212 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:223 +#: ../../enterprise/godmode/policies/policies.php:222 +#: ../../enterprise/godmode/alerts/alert_events_list.php:375 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +#: ../../godmode/servers/servers.build_table.php:66 +#: ../../godmode/servers/plugin.php:437 ../../godmode/users/user_list.php:199 +#: ../../godmode/users/profile_list.php:219 #: ../../godmode/gis_maps/index.php:73 -#: ../../godmode/reporting/reporting_builder.list_items.php:219 -#: ../../godmode/reporting/reporting_builder.php:77 -#: ../../enterprise/godmode/modules/local_components.php:246 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 -#: ../../enterprise/godmode/alerts/alert_events_list.php:447 -#: ../../enterprise/godmode/policies/policies.php:208 +#: ../../godmode/reporting/reporting_builder.php:378 +#: ../../godmode/reporting/reporting_builder.list_items.php:262 +#: ../../godmode/reporting/graphs.php:153 +#: ../../godmode/alerts/alert_templates.php:274 +#: ../../godmode/alerts/alert_list.list.php:368 msgid "Op." msgstr "" -#: ../../godmode/servers/modificar_server.php:139 -msgid "Modules run by this server will stop working. Do you want to continue?" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:43 -msgid "Successfully deleted recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:46 -msgid "Error deleting recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:56 -#: ../../godmode/servers/manage_recontask.php:142 -msgid "Successfully updated recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:63 -#: ../../godmode/servers/manage_recontask.php:145 -msgid "Error updating recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:181 -msgid "Network provided is not correct" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:194 -msgid "Successfully created recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:197 -msgid "Error creating recon task" -msgstr "" - -#: ../../godmode/servers/manage_recontask.php:295 -msgid "There are no recon task configured" -msgstr "" - -#: ../../godmode/servers/plugin.php:73 -msgid "Plugin creation" -msgstr "" - -#: ../../godmode/servers/plugin.php:75 -msgid "Plugin update" -msgstr "" - -#: ../../godmode/servers/plugin.php:91 -msgid "Plugin command" -msgstr "" - -#: ../../godmode/servers/plugin.php:95 -msgid "Plugin type" -msgstr "" - -#: ../../godmode/servers/plugin.php:97 ../../godmode/servers/plugin.php:256 -msgid "Standard" -msgstr "" - -#: ../../godmode/servers/plugin.php:98 ../../godmode/servers/plugin.php:258 -msgid "Nagios" -msgstr "" - -#: ../../godmode/servers/plugin.php:105 -msgid "IP address option" -msgstr "" - -#: ../../godmode/servers/plugin.php:109 -msgid "Port option" -msgstr "" - -#: ../../godmode/servers/plugin.php:114 -msgid "User option" -msgstr "" - -#: ../../godmode/servers/plugin.php:118 -msgid "Password option" -msgstr "" - -#: ../../godmode/servers/plugin.php:140 -msgid "Plugins registered in Pandora FMS" -msgstr "" - -#: ../../godmode/servers/plugin.php:171 -msgid "Problem updating plugin" -msgstr "" - -#: ../../godmode/servers/plugin.php:174 -msgid "Plugin updated successfully" -msgstr "" - -#: ../../godmode/servers/plugin.php:206 -msgid "Problem creating plugin" -msgstr "" - -#: ../../godmode/servers/plugin.php:209 -msgid "Plugin created successfully" -msgstr "" - -#: ../../godmode/servers/plugin.php:219 -msgid "Problem deleting plugin" -msgstr "" - -#: ../../godmode/servers/plugin.php:222 -msgid "Plugin deleted successfully" -msgstr "" - -#: ../../godmode/servers/plugin.php:236 -#: ../../godmode/servers/recon_script.php:177 -#: ../../godmode/alerts/configure_alert_command.php:52 -#: ../../godmode/alerts/configure_alert_action.php:109 -msgid "Command" -msgstr "" - -#: ../../godmode/servers/plugin.php:269 -msgid "There are no plugins in the system" -msgstr "" - -#: ../../godmode/servers/recon_script.php:67 -msgid "Recon script creation" -msgstr "" - -#: ../../godmode/servers/recon_script.php:69 -msgid "Recon script update" -msgstr "" - -#: ../../godmode/servers/recon_script.php:85 -msgid "Script fullpath" -msgstr "" - -#: ../../godmode/servers/recon_script.php:107 -msgid "Recon scripts registered in Pandora FMS" -msgstr "" - -#: ../../godmode/servers/recon_script.php:125 -msgid "Problem updating" -msgstr "" - -#: ../../godmode/servers/recon_script.php:145 -msgid "Problem creating" -msgstr "" - -#: ../../godmode/servers/recon_script.php:159 -msgid "Problem deleting reconscript" -msgstr "" - -#: ../../godmode/servers/recon_script.php:162 -msgid "reconscript deleted successfully" -msgstr "" - -#: ../../godmode/servers/recon_script.php:206 -msgid "There are no recon scripts in the system" -msgstr "" - -#: ../../godmode/users/user_list.php:97 ../../godmode/users/user_list.php:106 -#: ../../godmode/users/profile_list.php:38 -#: ../../godmode/users/profile_list.php:48 -#: ../../godmode/users/configure_user.php:60 -#: ../../godmode/users/configure_profile.php:34 -#: ../../godmode/users/configure_profile.php:43 -msgid "User management" -msgstr "" - -#: ../../godmode/users/user_list.php:101 -#: ../../godmode/users/profile_list.php:42 -#: ../../godmode/users/configure_user.php:64 -#: ../../godmode/users/configure_profile.php:38 -msgid "Profile management" -msgstr "" - -#: ../../godmode/users/user_list.php:106 -msgid "Users defined in Pandora" -msgstr "" - -#: ../../godmode/users/user_list.php:119 ../../godmode/users/user_list.php:122 -msgid "There was a problem deleting the user" -msgstr "" - -#: ../../godmode/users/user_list.php:130 -#: ../../godmode/users/profile_list.php:62 -msgid "There was a problem deleting the profile" -msgstr "" - -#: ../../godmode/users/user_list.php:198 -msgid "First name" -msgstr "" - -#: ../../godmode/users/user_list.php:199 -msgid "Last name" -msgstr "" - -#: ../../godmode/users/user_list.php:200 -msgid "Phone" -msgstr "" - -#: ../../godmode/users/user_list.php:233 -msgid "Deleting User" -msgstr "" - -#: ../../godmode/users/user_list.php:247 -msgid "Create user" -msgstr "" - -#: ../../godmode/users/user_list.php:251 -#: ../../godmode/users/configure_user.php:112 -msgid "" -"The current authentication scheme doesn't support creating users from " -"Pandora FMS" -msgstr "" - -#: ../../godmode/users/profile_list.php:48 -#: ../../godmode/users/configure_profile.php:43 -msgid "Profiles defined in Pandora" -msgstr "" - -#: ../../godmode/users/profile_list.php:116 -msgid "There was a problem updating this profile" -msgstr "" - -#: ../../godmode/users/profile_list.php:120 -msgid "Profile name cannot be empty" -msgstr "" - -#: ../../godmode/users/profile_list.php:168 -#: ../../godmode/users/profile_list.php:172 -msgid "There was a problem creating this profile" -msgstr "" - -#: ../../godmode/users/profile_list.php:187 -#: ../../enterprise/operation/metaconsole/usermanager.php:164 -msgid "Profiles" -msgstr "" - -#: ../../godmode/users/profile_list.php:189 -msgid "System incidents reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:190 -msgid "System incidents writing" -msgstr "" - -#: ../../godmode/users/profile_list.php:191 -msgid "System incidents management" -msgstr "" - -#: ../../godmode/users/profile_list.php:192 -msgid "Agents reading" -msgstr "" - -#: ../../godmode/users/profile_list.php:193 -msgid "Agents management" -msgstr "" - -#: ../../godmode/users/profile_list.php:194 -msgid "Alerts editing" -msgstr "" - -#: ../../godmode/users/profile_list.php:195 -msgid "Users management" -msgstr "" - -#: ../../godmode/users/profile_list.php:196 -msgid "Database management" -msgstr "" - -#: ../../godmode/users/profile_list.php:197 -msgid "Alerts management" -msgstr "" - -#: ../../godmode/users/profile_list.php:198 -msgid "Systems management" -msgstr "" - -#: ../../godmode/users/profile_list.php:233 -msgid "There are no defined profiles" -msgstr "" - -#: ../../godmode/users/configure_user.php:135 -msgid "User ID cannot be empty" -msgstr "" - -#: ../../godmode/users/configure_user.php:142 -msgid "Passwords cannot be empty" -msgstr "" - -#: ../../godmode/users/configure_user.php:149 -msgid "Passwords didn't match" -msgstr "" - -#: ../../godmode/users/configure_user.php:226 -#: ../../godmode/users/configure_user.php:249 -#: ../../godmode/users/configure_user.php:255 -#: ../../godmode/users/configure_user.php:264 -msgid "Error updating user info (no change?)" -msgstr "" - -#: ../../godmode/users/configure_user.php:229 -msgid "Passwords does not match" -msgstr "" - -#: ../../godmode/users/configure_user.php:276 -msgid "Profile added successfully" -msgstr "" - -#: ../../godmode/users/configure_user.php:277 -msgid "Profile cannot be added" -msgstr "" - -#: ../../godmode/users/configure_user.php:302 -msgid "Extra policy profile added successfully" -msgstr "" - -#: ../../godmode/users/configure_user.php:303 -msgid "Extra policy profile cannot be added" -msgstr "" - -#: ../../godmode/users/configure_user.php:355 -msgid "Global Profile" -msgstr "" - -#: ../../godmode/users/configure_user.php:360 -msgid "" -"This user has permissions to manage all. This is admin user and overwrites " -"all permissions given in profiles/groups" -msgstr "" - -#: ../../godmode/users/configure_user.php:365 -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:404 -msgid "Use global conf" -msgstr "" - -#: ../../godmode/users/configure_profile.php:64 -msgid "Create profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:70 -msgid "There was a problem loading profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:105 -msgid "Update profile" -msgstr "" - -#: ../../godmode/users/configure_profile.php:117 -msgid "View incidents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:119 -msgid "Edit incidents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:125 -msgid "Edit agents" -msgstr "" - -#: ../../godmode/users/configure_profile.php:127 -msgid "Edit alerts" -msgstr "" - -#: ../../godmode/users/configure_profile.php:129 ../../godmode/menu.php:105 -msgid "Manage users" -msgstr "" - -#: ../../godmode/users/configure_profile.php:131 -msgid "Manage Database" -msgstr "" - -#: ../../godmode/users/configure_profile.php:133 ../../godmode/menu.php:83 -#: ../../godmode/alerts/alert_list.php:263 -#: ../../godmode/alerts/alert_list.php:265 -msgid "Manage alerts" -msgstr "" - -#: ../../godmode/users/configure_profile.php:135 -msgid "Pandora management" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:50 -msgid "Create a new data server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:52 -msgid "Create a new network server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:54 -msgid "Create a new plugin server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:56 -msgid "Create a new WMI server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:58 -msgid "Create a new prediction server module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:142 -#: ../../godmode/agentes/configurar_agente.php:950 -msgid "There was a problem deleting the module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:146 -#: ../../godmode/agentes/configurar_agente.php:954 -msgid "Module deleted succesfully" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:441 -msgid "(Adopt) (Unlinked) " -msgstr "" - -#: ../../godmode/agentes/module_manager.php:464 -#: ../../enterprise/operation/agentes/policy_view.php:354 -msgid "Non initialized module" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:509 -msgid "Normalize" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_network.php:43 -msgid "Network server module" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_network.php:105 -msgid "SNMP walk" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_network.php:167 -#: ../../godmode/agentes/module_manager_editor_network.php:176 -msgid "The pass length must be eight character minimum." -msgstr "" - -#: ../../godmode/agentes/configure_field.php:36 -msgid "Update agent custom field" -msgstr "" - -#: ../../godmode/agentes/configure_field.php:38 -msgid "Create agent custom field" -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:43 -msgid "" -"Warning: When you change the Agent position, the agent automatically " -"activates the 'Ignore new GIS data' option" -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:48 -msgid "Agent position" -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:51 -msgid "Latitude: " -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:55 -msgid "Longitude: " -msgstr "" - -#: ../../godmode/agentes/agent_conf_gis.php:59 -msgid "Altitude: " -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:67 -msgid "Using module component" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:73 -#: ../../godmode/agentes/module_manager_editor_common.php:82 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:31 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:41 -msgid "Manual setup" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:78 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:37 -msgid "No component was found" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:132 -msgid "Delete module" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:178 -msgid "Not assigned" -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:182 -#: ../../godmode/agentes/module_manager_editor_common.php:192 -msgid "Min. " -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:230 -msgid "Module execution time interval (in secs)." -msgstr "" - -#: ../../godmode/agentes/module_manager_editor_common.php:243 -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:245 -msgid "Unit" -msgstr "" - +#: ../../enterprise/godmode/modules/local_components.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:264 +#: ../../godmode/modules/manage_network_components.php:513 +#: ../../godmode/agentes/module_manager.php:648 +#: ../../godmode/alerts/alert_templates.php:304 +msgid "Duplicate" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:128 +#: ../../godmode/modules/manage_network_components_form_common.php:56 +#: ../../godmode/alerts/configure_alert_template.php:638 +msgid "Wizard level" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:169 +#: ../../include/functions_alerts.php:554 +#: ../../godmode/modules/manage_network_components_form_common.php:106 +#: ../../godmode/agentes/module_manager_editor_common.php:223 +#: ../../godmode/massive/massive_edit_modules.php:278 +msgid "Warning status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:170 +#: ../../enterprise/godmode/modules/configure_local_component.php:183 +#: ../../include/functions_reporting.php:2259 +#: ../../include/functions_alerts.php:551 +#: ../../include/functions_graph.php:3070 +#: ../../godmode/modules/manage_network_components_form_common.php:107 +#: ../../godmode/modules/manage_network_components_form_common.php:120 +#: ../../godmode/massive/massive_edit_modules.php:282 +#: ../../godmode/massive/massive_edit_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:380 +#: ../../godmode/alerts/configure_alert_template.php:671 +msgid "Min." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:173 +#: ../../enterprise/godmode/modules/configure_local_component.php:186 +#: ../../include/functions_reporting.php:2260 +#: ../../include/functions_alerts.php:550 +#: ../../include/functions_graph.php:3070 +#: ../../godmode/modules/manage_network_components_form_common.php:110 +#: ../../godmode/modules/manage_network_components_form_common.php:123 +#: ../../godmode/agentes/module_manager_editor_common.php:231 #: ../../godmode/agentes/module_manager_editor_common.php:251 +#: ../../godmode/massive/massive_edit_modules.php:291 +#: ../../godmode/massive/massive_edit_modules.php:328 +#: ../../godmode/massive/massive_edit_modules.php:382 +#: ../../godmode/alerts/configure_alert_template.php:674 +msgid "Max." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:176 +#: ../../enterprise/godmode/modules/configure_local_component.php:189 +#: ../../godmode/modules/manage_network_components_form_common.php:113 +#: ../../godmode/modules/manage_network_components_form_common.php:126 +#: ../../godmode/agentes/module_manager_editor_common.php:236 +#: ../../godmode/agentes/module_manager_editor_common.php:256 +#: ../../godmode/massive/massive_edit_modules.php:299 +#: ../../godmode/massive/massive_edit_modules.php:336 +msgid "Str." +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:179 +#: ../../enterprise/godmode/modules/configure_local_component.php:192 +#: ../../godmode/modules/manage_network_components_form_common.php:116 +#: ../../godmode/modules/manage_network_components_form_common.php:129 +#: ../../godmode/agentes/module_manager_editor_common.php:241 +#: ../../godmode/agentes/module_manager_editor_common.php:261 +#: ../../godmode/massive/massive_edit_modules.php:307 +#: ../../godmode/massive/massive_edit_modules.php:344 +msgid "Inverse interval" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:182 +#: ../../include/functions_alerts.php:555 +#: ../../godmode/modules/manage_network_components_form_common.php:119 +#: ../../godmode/agentes/module_manager_editor_common.php:244 +#: ../../godmode/massive/massive_edit_modules.php:315 +msgid "Critical status" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:195 +#: ../../godmode/modules/manage_network_components_form_common.php:132 +#: ../../godmode/agentes/module_manager_editor_common.php:265 +#: ../../godmode/massive/massive_edit_modules.php:409 +msgid "FF threshold" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:198 +#: ../../godmode/modules/manage_network_components_form_common.php:135 +#: ../../godmode/agentes/module_manager_editor_common.php:268 +#: ../../godmode/massive/massive_edit_modules.php:411 +msgid "Historical data" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:207 +#: ../../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:307 +#: ../../godmode/massive/massive_edit_modules.php:357 +msgid "Post process" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:218 +#: ../../godmode/modules/manage_network_components_form_common.php:146 +#: ../../godmode/agentes/module_manager_editor_common.php:410 +#: ../../godmode/massive/massive_edit_modules.php:420 +msgid "Critical instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:218 +#: ../../godmode/modules/manage_network_components_form_common.php:146 +#: ../../godmode/agentes/module_manager_editor_common.php:410 +#: ../../godmode/massive/massive_edit_modules.php:420 +msgid "Instructions when the status is critical" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:221 +#: ../../godmode/modules/manage_network_components_form_common.php:150 +#: ../../godmode/agentes/module_manager_editor_common.php:414 +#: ../../godmode/massive/massive_edit_modules.php:424 +msgid "Warning instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:221 +#: ../../godmode/modules/manage_network_components_form_common.php:150 +#: ../../godmode/agentes/module_manager_editor_common.php:414 +#: ../../godmode/massive/massive_edit_modules.php:424 +msgid "Instructions when the status is warning" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:224 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/agentes/module_manager_editor_common.php:418 +#: ../../godmode/massive/massive_edit_modules.php:428 +msgid "Unknown instructions" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:224 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/agentes/module_manager_editor_common.php:418 +#: ../../godmode/massive/massive_edit_modules.php:428 +msgid "Instructions when the status is unknown" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:231 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/agentes/module_manager_editor_common.php:433 +msgid "Category" +msgstr "" + +#: ../../enterprise/godmode/modules/configure_local_component.php:252 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/agentes/module_manager_editor_common.php:339 msgid "Tags available" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:272 +#: ../../enterprise/godmode/modules/configure_local_component.php:259 +#: ../../godmode/modules/manage_network_components_form_common.php:190 +#: ../../godmode/agentes/module_manager_editor_common.php:393 msgid "Add tags to module" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:273 +#: ../../enterprise/godmode/modules/configure_local_component.php:260 +#: ../../godmode/modules/manage_network_components_form_common.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:394 msgid "Delete tags to module" msgstr "" -#: ../../godmode/agentes/module_manager_editor_common.php:275 +#: ../../enterprise/godmode/modules/configure_local_component.php:262 +#: ../../godmode/modules/manage_network_components_form_common.php:193 +#: ../../godmode/agentes/module_manager_editor_common.php:396 msgid "Tags selected" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:84 -#: ../../godmode/agentes/configurar_agente.php:359 -msgid "Agent configuration" +#: ../../enterprise/godmode/modules/configure_local_component.php:274 +msgid "Macros" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:84 -msgid "Agents defined in Pandora" +#: ../../enterprise/godmode/modules/configure_local_component.php:310 +#: ../../godmode/servers/plugin.php:229 +msgid "Default value" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Success deleted agent." +#: ../../enterprise/godmode/modules/configure_local_component.php:316 +#: ../../include/functions_ui.php:952 ../../godmode/servers/plugin.php:242 +msgid "Help" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Could not be deleted." +#: ../../enterprise/godmode/modules/configure_local_component.php:326 +#: ../../godmode/servers/plugin.php:256 +msgid "Add macro" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:93 -msgid "Maybe the files conf or md5 could not be deleted" +#: ../../enterprise/godmode/modules/configure_local_component.php:333 +#: ../../godmode/servers/plugin.php:263 +msgid "Delete macro" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:129 -#: ../../godmode/admin_access_logs.php:64 -#: ../../godmode/admin_access_logs.php:65 -#: ../../enterprise/extensions/translate_string.php:216 -#: ../../enterprise/extensions/translate_string.php:217 -#: ../../enterprise/godmode/agentes/collection_manager.php:43 -#: ../../enterprise/godmode/agentes/collections.php:198 -#: ../../enterprise/godmode/policies/policies.php:191 -#: ../../enterprise/godmode/policies/policy_collections.php:169 -msgid "Free text for search (*)" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 +#: ../../enterprise/godmode/agentes/inventory_manager.php:128 +msgid "Inventory module error" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:357 -msgid "Remote agent configuration" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:78 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:153 +msgid "Interpreter" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:357 -msgid "R" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:80 +msgid "Left in blank for Network Inventory Modules" msgstr "" -#: ../../godmode/agentes/modificar_agente.php:436 -msgid "Edit remote config" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:83 +#: ../../godmode/massive/massive_standby_alerts.php:149 +#: ../../godmode/massive/massive_standby_alerts.php:166 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_enable_disable_alerts.php:165 +msgid "Format" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:157 -#: ../../godmode/agentes/configurar_agente.php:482 -msgid "No agent name specified" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:84 +msgid "separate fields with " msgstr "" -#: ../../godmode/agentes/configurar_agente.php:161 -#: ../../godmode/agentes/configurar_agente.php:486 -msgid "There is already an agent in the database with this name" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:87 +msgid "Code" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:254 ../../godmode/menu.php:76 -msgid "Module templates" +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:88 +msgid "Put here your script code for the inventory module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:343 ../../godmode/menu.php:88 -msgid "Templates" +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:60 +msgid "Successfully created inventory module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:352 -msgid "SNMP explorer" +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:64 +msgid "Error creating inventory module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:365 -#: ../../enterprise/operation/metaconsole/agentmanager.php:36 -#: ../../enterprise/operation/metaconsole/agentmanager.php:41 -#: ../../enterprise/operation/menu.php:92 -msgid "Agent manager" +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:83 +#: ../../enterprise/godmode/agentes/inventory_manager.php:108 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 +msgid "Successfully updated inventory module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:388 -msgid "Conf file deleted successfully" +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:87 +#: ../../enterprise/godmode/agentes/inventory_manager.php:111 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:145 +msgid "Error updating inventory module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:389 -msgid "Could not delete conf file" +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:96 +#: ../../enterprise/godmode/agentes/inventory_manager.php:69 +msgid "Successfully deleted inventory module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:416 -msgid "No data to normalize" +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:100 +#: ../../enterprise/godmode/agentes/inventory_manager.php:72 +msgid "Error deleting inventory module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:420 -#, php-format -msgid "Deleted data above %d" +#: ../../enterprise/godmode/servers/manage_export.php:41 +#: ../../enterprise/godmode/servers/manage_export_form.php:56 +#: ../../enterprise/godmode/menu.php:78 +msgid "Export targets" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:421 -#, php-format -msgid "Error normalizing module %s" +#: ../../enterprise/godmode/servers/manage_export.php:61 +msgid "Error updating export target" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:517 -msgid "There was a problem updating the agent" +#: ../../enterprise/godmode/servers/manage_export.php:64 +msgid "Successfully updated export target" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:555 -msgid "There was a problem loading the agent" +#: ../../enterprise/godmode/servers/manage_export.php:73 +msgid "Error deleting export target" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:746 -msgid "There was a problem updating module" +#: ../../enterprise/godmode/servers/manage_export.php:76 +msgid "Successfully deleted export target" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:756 -msgid "\"No change\"" +#: ../../enterprise/godmode/servers/manage_export.php:98 +msgid "" +"Can't be created export target: User and password must be filled with FTP " +"mode" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:776 -msgid "Module successfully updated" +#: ../../enterprise/godmode/servers/manage_export.php:129 +#: ../../enterprise/godmode/servers/manage_export_form.php:74 +msgid "Preffix" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:853 -msgid "There was a problem adding module" +#: ../../enterprise/godmode/servers/manage_export.php:129 +#: ../../enterprise/godmode/servers/manage_export_form.php:86 +msgid "Transfer mode" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:879 -#: ../../godmode/reporting/graph_builder.php:199 -msgid "Module added successfully" +#: ../../enterprise/godmode/servers/manage_export_form.php:69 +#: ../../include/functions_servers.php:360 +msgid "Export server" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:968 -msgid "copy of" +#: ../../enterprise/godmode/servers/manage_export_form.php:107 +msgid "Target directory" msgstr "" -#: ../../godmode/agentes/module_manager_editor_prediction.php:75 -msgid "Prediction server module" +#: ../../enterprise/godmode/servers/manage_export_form.php:111 +msgid "Extra options" msgstr "" -#: ../../godmode/agentes/module_manager_editor_prediction.php:78 -msgid "Source module" +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:73 +msgid "Graph template editor" msgstr "" -#: ../../godmode/agentes/module_manager_editor_prediction.php:107 -msgid "Select Module" +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:151 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 +#: ../../godmode/reporting/graph_builder.graph_editor.php:82 +#: ../../godmode/reporting/graph_builder.graph_editor.php:171 +msgid "Weight" msgstr "" -#: ../../godmode/agentes/module_manager_editor_prediction.php:115 -#: ../../enterprise/extensions/cron/functions.php:128 -msgid "Weekly" +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:153 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1556 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1616 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1684 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1739 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1959 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2047 +msgid "Exact match" msgstr "" -#: ../../godmode/agentes/module_manager_editor_prediction.php:116 -#: ../../enterprise/extensions/cron/functions.php:129 -msgid "Monthly" +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:169 +#: ../../godmode/reporting/graph_builder.graph_editor.php:102 +msgid "Decrease Weight" msgstr "" -#: ../../godmode/agentes/module_manager_editor_prediction.php:117 -#: ../../enterprise/extensions/cron/functions.php:127 -msgid "Daily" +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:172 +#: ../../godmode/reporting/graph_builder.graph_editor.php:105 +msgid "Increase Weight" msgstr "" -#: ../../godmode/agentes/agent_manager.php:148 -msgid "The agent's name must be the same as the one defined at the console" +#: ../../enterprise/godmode/reporting/mysql_builder.php:28 +#: ../../enterprise/godmode/reporting/mysql_builder.php:122 +msgid "Custom Mysql template builder" msgstr "" -#: ../../godmode/agentes/agent_manager.php:163 -#: ../../enterprise/godmode/policies/policy_agents.php:378 -msgid "This agent can be remotely configured" +#: ../../enterprise/godmode/reporting/mysql_builder.php:59 +msgid "Create custom SQL" msgstr "" -#: ../../godmode/agentes/agent_manager.php:164 -msgid "You can remotely edit this agent configuration" +#: ../../enterprise/godmode/reporting/mysql_builder.php:70 +#: ../../enterprise/godmode/reporting/mysql_builder.php:90 +msgid ": Create new custom" msgstr "" -#: ../../godmode/agentes/agent_manager.php:170 -msgid "Delete agent" +#: ../../enterprise/godmode/reporting/mysql_builder.php:86 +#: ../../enterprise/godmode/reporting/mysql_builder.php:100 +#: ../../enterprise/godmode/reporting/mysql_builder.php:110 +msgid ": Edit: " msgstr "" -#: ../../godmode/agentes/agent_manager.php:182 -msgid "Delete selected" +#: ../../enterprise/godmode/reporting/mysql_builder.php:125 +msgid "Successfully operation" msgstr "" -#: ../../godmode/agentes/agent_manager.php:266 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:155 +#: ../../enterprise/godmode/reporting/mysql_builder.php:125 +msgid "Could not be operation" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:193 +#: ../../enterprise/godmode/alerts/alert_events_list.php:368 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:396 +#: ../../godmode/reporting/reporting_builder.list_items.php:264 +#: ../../godmode/reporting/reporting_builder.list_items.php:429 +msgid "Sort" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:206 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:250 +#: ../../godmode/reporting/reporting_builder.list_items.php:256 +msgid "Ascendent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:197 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 +#: ../../godmode/reporting/reporting_builder.list_items.php:246 +#: ../../godmode/reporting/reporting_builder.list_items.php:251 +#: ../../godmode/reporting/reporting_builder.list_items.php:257 +msgid "Descent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:212 +#: ../../godmode/reporting/reporting_builder.list_items.php:262 +msgid "Options" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:244 +#: ../../godmode/netflow/nf_item_list.php:204 +#: ../../godmode/netflow/nf_item_list.php:207 +msgid "Move to up" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:251 +#: ../../godmode/netflow/nf_item_list.php:201 +#: ../../godmode/netflow/nf_item_list.php:208 +msgid "Move to down" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:133 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:61 +msgid "Cleanup sucessfully" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:136 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 +msgid "Cleanup error" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:165 +msgid "Sucessfully applied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:165 +msgid "reports" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:165 +msgid "items" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:167 +msgid "Could not be applied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:201 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:139 +msgid "Clean up template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:209 +msgid "Create report per agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:236 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:159 +#: ../../enterprise/godmode/policies/policy_agents.php:240 +#: ../../enterprise/godmode/policies/policy_agents.php:248 +msgid "Filter agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:245 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:170 +msgid "Agents available" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:245 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:251 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:170 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:176 +msgid "Select all" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:251 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:176 +msgid "Agents to apply" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:310 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:201 +msgid "Add agents to template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:205 +msgid "Undo agents to template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:331 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:225 +msgid "Apply template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:578 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:382 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:414 +msgid "Please set template distinct than " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:573 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:409 +msgid "" +"This will be delete all reports created in previous template applications. " +"Do you want to continue?" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:111 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:73 +msgid "Font family" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:114 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:76 +#: ../../include/functions_config.php:390 +#: ../../godmode/setup/setup_visuals.php:174 +msgid "Custom logo" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:77 +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 "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:83 +msgid "Header" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:124 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:86 +msgid "First page" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:89 +msgid "Footer" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:76 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:86 +#: ../../enterprise/godmode/reporting/graph_template_list.php:32 +#: ../../enterprise/godmode/reporting/graph_template_list.php:43 +#: ../../enterprise/godmode/reporting/graph_template_list.php:53 +#: ../../godmode/reporting/graphs.php:39 ../../godmode/reporting/graphs.php:49 +msgid "Graph list" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:94 +msgid "Wizard template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:158 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:39 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../godmode/reporting/reporting_builder.item_editor.php:31 +msgid "Only table" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:40 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../godmode/reporting/reporting_builder.item_editor.php:32 +msgid "Table & Graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:41 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../godmode/reporting/reporting_builder.item_editor.php:33 +msgid "Only graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:164 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1303 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:45 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:166 +#: ../../godmode/reporting/reporting_builder.item_editor.php:37 +#: ../../godmode/reporting/reporting_builder.item_editor.php:939 +msgid "Ascending" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:165 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1305 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:46 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:168 +#: ../../godmode/reporting/reporting_builder.item_editor.php:38 +#: ../../godmode/reporting/reporting_builder.item_editor.php:941 +msgid "Descending" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:983 +#: ../../godmode/reporting/reporting_builder.php:1443 +msgid "Successfull action" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:983 +#: ../../godmode/reporting/reporting_builder.php:1443 +msgid "Unsuccessfull action" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1040 +#: ../../godmode/reporting/reporting_builder.item_editor.php:545 +msgid "Projection period" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1044 +#: ../../godmode/reporting/reporting_builder.item_editor.php:555 +msgid "Data range" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1055 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:137 +#: ../../godmode/reporting/reporting_builder.item_editor.php:564 +msgid "Only display wrong SLAs" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1059 +#: ../../godmode/reporting/reporting_builder.item_editor.php:573 +msgid "Working time" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1072 +#: ../../enterprise/godmode/alerts/alert_events.php:429 +#: ../../godmode/reporting/reporting_builder.item_editor.php:622 +#: ../../godmode/alerts/configure_alert_template.php:507 +msgid "Time from" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1076 +#: ../../enterprise/godmode/alerts/alert_events.php:432 +#: ../../godmode/reporting/reporting_builder.item_editor.php:626 +#: ../../godmode/alerts/configure_alert_template.php:510 +msgid "Time to" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1083 +msgid "Match by regular expression or selection" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1083 +msgid "" +"You can select agents and modules by regular expression or direct selection" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1086 +msgid "Reg expression" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1087 +msgid "Direct selection" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1096 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1098 +#: ../../godmode/reporting/reporting_builder.item_editor.php:909 +#: ../../godmode/reporting/reporting_builder.item_editor.php:911 +msgid "Select server" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1148 +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:1161 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1770 +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:1171 +msgid "Module exact match" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1599 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1656 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1724 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1771 +msgid "Check it if you want to match module name literally" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1207 +msgid "Query SQL" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1211 +msgid "Also you can add agents from this list" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1250 +msgid "You can add modules from this list" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1267 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2389 +#: ../../include/functions_graph.php:675 ../../include/functions_graph.php:676 +#: ../../include/functions_graph.php:677 ../../include/functions_graph.php:680 +#: ../../include/functions_graph.php:1180 +#: ../../include/functions_graph.php:2809 +#: ../../include/functions_graph.php:2814 +#: ../../include/functions_graph.php:3349 +#: ../../include/functions_graph.php:3350 +#: ../../include/functions_graph.php:3351 +#: ../../godmode/reporting/reporting_builder.item_editor.php:821 +msgid "Last" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1273 +#: ../../godmode/reporting/reporting_builder.item_editor.php:916 +msgid "Serialized header" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1273 +#: ../../godmode/reporting/reporting_builder.item_editor.php:916 +msgid "The separator character is |" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1277 +#: ../../godmode/reporting/reporting_builder.item_editor.php:892 +msgid "Custom SQL template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1281 +msgid "SQL preview" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1289 +#: ../../godmode/reporting/reporting_builder.item_editor.php:924 +msgid "Field separator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1289 +#: ../../godmode/reporting/reporting_builder.item_editor.php:924 +msgid "Separator for different fields in the serialized text chain" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:928 +msgid "Line separator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1293 +#: ../../godmode/reporting/reporting_builder.item_editor.php:928 +msgid "" +"Separator in different lines (composed by fields) of the serialized text " +"chain" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1297 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:155 +#: ../../godmode/reporting/reporting_builder.item_editor.php:932 +msgid "Group by agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1301 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1390 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:146 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:163 +#: ../../godmode/netflow/nf_item_list.php:145 +#: ../../godmode/reporting/reporting_builder.item_editor.php:936 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1047 +msgid "Order" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1307 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:170 +#: ../../godmode/reporting/reporting_builder.item_editor.php:943 +msgid "By agent name" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1312 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:949 +msgid "Quantity (n)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1316 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:184 +#: ../../godmode/reporting/reporting_builder.item_editor.php:957 +msgid "Display" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1331 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:205 +#: ../../godmode/reporting/reporting_builder.item_editor.php:974 +msgid "Condition" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1335 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:210 +msgid ">=" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1337 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:212 +msgid "<" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1341 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:216 +#: ../../godmode/reporting/reporting_builder.item_editor.php:985 +msgid "Not OK" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1346 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1002 +msgid "Show graph" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1351 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1007 +msgid "Show resume" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1351 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1007 +msgid "" +"Show a resume table with max, min, average of total modules on the report " +"bottom" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1355 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1011 +msgid "Event filter" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1358 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1014 +msgid "No Validated" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1370 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1027 +msgid "Event graphs" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1373 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1030 +msgid "By agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1375 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1032 +msgid "By user validator" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1377 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1034 +msgid "By criticity" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1036 +msgid "Validated vs unvalidated" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1042 +msgid "Show in two columns" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1390 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:146 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1047 +msgid "SLA items sorted by fulfillment value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1394 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1051 +msgid "Show in landscape" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1401 +msgid "Modules to match" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1403 +msgid "Select the modules to match when create a report for agents" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1479 +msgid "Modules to match (Free text)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1481 +msgid "Free text to filter the modules of agents when apply this template." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1494 +msgid "Create a graph for each agent" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1496 +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:1520 +#: ../../godmode/netflow/nf_item_list.php:258 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 +msgid "Create item" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1525 +#: ../../include/functions_visual_map_editor.php:364 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1070 +msgid "Update item" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1097 +msgid "SLA Limit (%)" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1568 +msgid "Please save the SLA template for start to add items in this list." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1613 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1736 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1962 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2050 +msgid "Not literally" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1650 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1769 +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:1673 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1784 +#: ../../godmode/reporting/reporting_builder.item_editor.php:772 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1189 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1203 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1320 +msgid "Select an Agent first" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1694 +msgid "Please save the template to start adding items into the list." +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:118 +#: ../../godmode/modules/manage_nc_groups.php:80 +#: ../../godmode/netflow/nf_edit_form.php:107 +#: ../../godmode/events/event_edit_filter.php:129 +msgid "Not updated. Blank name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:134 +msgid "Template updated successfully" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:135 +msgid "Error updating template" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:170 +#: ../../include/functions_visual_map_editor.php:188 +#: ../../godmode/setup/gis_step_2.php:256 +#: ../../godmode/reporting/visual_console_builder.wizard.php:100 +#: ../../godmode/reporting/graph_builder.main.php:123 +#: ../../godmode/events/event_responses.editor.php:83 +msgid "Width" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:174 +#: ../../godmode/setup/gis_step_2.php:258 +#: ../../godmode/reporting/visual_console_builder.wizard.php:102 +#: ../../godmode/reporting/graph_builder.main.php:127 +#: ../../godmode/events/event_responses.editor.php:85 +msgid "Height" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:181 +msgid "3 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:182 +#: ../../enterprise/godmode/agentes/inventory_manager.php:174 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:194 +#: ../../include/ajax/module.php:79 +msgid "6 hours" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../enterprise/godmode/agentes/inventory_manager.php:177 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:197 +#: ../../include/functions_netflow.php:852 +#: ../../include/functions_netflow.php:885 +#: ../../godmode/setup/performance.php:84 +msgid "2 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 +msgid "4 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 +#: ../../include/functions_netflow.php:855 +#: ../../godmode/setup/performance.php:86 +msgid "Last week" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 +#: ../../enterprise/godmode/agentes/inventory_manager.php:179 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:199 +#: ../../include/functions.php:1676 ../../include/functions_netflow.php:854 +#: ../../include/functions_netflow.php:887 ../../include/ajax/module.php:83 +msgid "15 days" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 +#: ../../include/functions_netflow.php:856 +#: ../../godmode/setup/performance.php:88 +msgid "Last month" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 +#: ../../include/functions_netflow.php:857 +msgid "2 months" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../include/functions_netflow.php:859 ../../include/ajax/module.php:86 +msgid "6 months" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 +#: ../../include/functions.php:1680 ../../include/ajax/module.php:87 +msgid "1 year" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:115 +msgid "Elements to apply" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:142 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:147 +#: ../../include/functions_visual_map_editor.php:241 +#: ../../include/functions_visual_map_editor.php:249 +msgid "Cancel" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:197 +#: ../../include/functions_visual_map.php:458 +#: ../../godmode/reporting/visual_console_builder.php:275 +#: ../../godmode/massive/massive_edit_modules.php:656 +#: ../../extensions/snmp_explorer.php:137 +msgid "No modules selected" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:59 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:67 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 +msgid "Edit template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:89 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:284 +#: ../../enterprise/godmode/reporting/graph_template_list.php:175 +msgid "Create template" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 +#: ../../enterprise/godmode/policies/policies.php:165 +#: ../../include/functions_agents.php:619 +#: ../../godmode/reporting/map_builder.php:121 +#: ../../godmode/reporting/map_builder.php:130 +#: ../../godmode/alerts/alert_actions.php:137 +msgid "Successfully copied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:194 +#: ../../enterprise/godmode/policies/policies.php:166 +#: ../../godmode/alerts/alert_actions.php:138 +msgid "Could not be copied" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:219 +#: ../../godmode/reporting/reporting_builder.php:371 +msgid "Private" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:128 +msgid "SLA min value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 +msgid "SLA min Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 +msgid "SLA max value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 +msgid "SLA max Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:132 +msgid "SLA Limit %" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:133 +msgid "SLA Limit Value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +#: ../../include/functions_reports.php:571 +msgid "Top n" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +msgid "Sum" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:70 +msgid "Graph template management" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_list.php:170 +msgid "There are no defined graph templates" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:43 +#: ../../enterprise/godmode/agentes/collections.data.php:109 +#: ../../enterprise/godmode/agentes/collections.data.php:123 +#: ../../enterprise/godmode/agentes/collections.data.php:137 +#: ../../enterprise/godmode/agentes/collections.data.php:158 +#: ../../enterprise/godmode/agentes/collections.data.php:196 +msgid "Manager configuration > New" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:86 +#: ../../enterprise/godmode/agentes/collections.data.php:176 +#: ../../enterprise/godmode/agentes/collections.data.php:240 +#: ../../enterprise/godmode/agentes/collections.data.php:257 +#: ../../enterprise/godmode/agentes/collections.data.php:263 +#: ../../enterprise/godmode/agentes/collections.editor.php:39 +msgid "Manager configuration > Edit " +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:114 +#: ../../enterprise/godmode/agentes/collections.data.php:128 +#: ../../enterprise/godmode/agentes/collections.data.php:142 +msgid "Unable to create the collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:114 +msgid "Another collection with the same short name" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:128 +msgid "Invalid characters in short name" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:163 +#: ../../enterprise/godmode/agentes/collections.data.php:203 +msgid "Unable to create the collection." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:183 +#: ../../enterprise/godmode/agentes/collections.data.php:272 +msgid "Correct create collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:244 +msgid "Unable to edit the collection, empty name." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:260 +msgid "Unable to edit the collection." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:288 +msgid "Recreate file" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:301 +msgid "Short name:" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:308 +msgid "" +"The collection's short name is the name of dir in attachment dir and the " +"package collection." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:308 +msgid "Short name must contain only alphanumeric characters, - or _ ." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.data.php:308 +msgid "Empty for default short name fc_X where X is the collection id." +msgstr "" + +#: ../../enterprise/godmode/agentes/collection_manager.php:87 +#: ../../enterprise/godmode/agentes/collections.php:219 +#: ../../enterprise/godmode/policies/policy_collections.php:120 +#: ../../enterprise/godmode/policies/policy_collections.php:188 +msgid "Short Name" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:41 +msgid "Plug-in deleted succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:41 +msgid "Plug-in cannot be deleted" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:47 +#: ../../enterprise/godmode/policies/policy_plugins.php:43 +msgid "Plug-in added succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:47 +#: ../../enterprise/godmode/policies/policy_plugins.php:43 +msgid "Plug-in cannot be added" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in disabled succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 +msgid "Plug-in cannot be disabled" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:69 +msgid "Plug-in enabled succesfully" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:69 +msgid "Plug-in cannot be enabled" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:78 +#: ../../enterprise/godmode/policies/policy_plugins.php:52 +msgid "New plug-in" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:95 +#: ../../enterprise/godmode/policies/policy_plugins.php:68 +msgid "Plugins" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:97 +#: ../../enterprise/godmode/agentes/plugins_manager.php:117 +#: ../../enterprise/godmode/policies/policy_alerts.php:483 +#: ../../enterprise/godmode/alerts/alert_events_list.php:649 +#: ../../godmode/users/user_list.php:305 ../../godmode/extensions.php:289 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:713 +msgid "Enable" +msgstr "" + +#: ../../enterprise/godmode/agentes/plugins_manager.php:97 +#: ../../enterprise/godmode/agentes/plugins_manager.php:120 +#: ../../enterprise/godmode/policies/policy_alerts.php:475 +#: ../../enterprise/godmode/alerts/alert_events_list.php:641 +#: ../../godmode/users/user_list.php:302 ../../godmode/extensions.php:293 +#: ../../godmode/alerts/alert_list.list.php:122 +#: ../../godmode/alerts/alert_list.list.php:704 +msgid "Disable" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:66 +msgid "No files in collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:74 +msgid "File of collection is bigger than the limit (" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:114 +msgid "Success: recreate file" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:117 +msgid "Error: recreate file " +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:130 +#: ../../enterprise/godmode/agentes/collections.php:147 +#: ../../enterprise/godmode/agentes/collections.php:192 +msgid "Collections Management" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:165 +msgid "Manager collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:171 +#: ../../enterprise/godmode/agentes/collections.php:181 +msgid "Successful create collection package." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:181 +msgid "Can not create collection package." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:239 +msgid "Are you sure to delete?" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:240 +msgid "Delete collection" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:244 +msgid "Re-Apply changes" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.php:249 +msgid "Apply changes" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:57 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:81 +msgid "Successfully added inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:60 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:85 +msgid "Error adding inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:80 +msgid "Successfully forced inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:83 +msgid "Error forcing inventory module" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:178 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 +msgid "7 days" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:180 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:200 +#: ../../include/functions.php:1677 ../../include/functions_netflow.php:889 +#: ../../include/ajax/module.php:84 +msgid "1 month" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:183 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:203 +#: ../../godmode/modules/manage_network_components_form_wmi.php:48 +#: ../../godmode/modules/manage_network_components_form_wmi.php:182 +#: ../../godmode/agentes/module_manager_editor_wmi.php:51 +#: ../../godmode/massive/massive_edit_modules.php:392 +msgid "Username" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:188 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:209 +msgid "Update all" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:46 +msgid "Files in " +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:81 +#: ../../enterprise/godmode/agentes/collections.editor.php:132 +msgid "Edit file" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:82 +#: ../../enterprise/godmode/agentes/collections.editor.php:133 +msgid "Back to file explorer" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:114 +#: ../../enterprise/godmode/agentes/collections.editor.php:257 +#: ../../include/functions_filemanager.php:315 +msgid "Security error." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:153 +msgid "Compatibility mode" +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:195 +msgid "Correct update file." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:195 +msgid "Incorrect update file." +msgstr "" + +#: ../../enterprise/godmode/agentes/collections.editor.php:287 +msgid "Please, first save a new collection before to upload files." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:91 +msgid "Error: The conf file of agent is not readble." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:96 +msgid "Error: The conf file of agent is not writable." +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:134 +#: ../../enterprise/godmode/policies/policy_modules.php:201 +msgid "Add module" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:157 +msgid "No module was found" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:183 +msgid "Delete remote conf agent files in Pandora" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:186 +#: ../../godmode/agentes/agent_manager.php:263 msgid "Delete remote configuration file" msgstr "" -#: ../../godmode/agentes/agent_manager.php:267 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:156 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:187 +#: ../../godmode/agentes/agent_manager.php:264 msgid "" "Delete this conf file implies that for restore you must reactive remote " "config in the local agent." msgstr "" -#: ../../godmode/agentes/agent_manager.php:281 -msgid "Agent icon for GIS Maps." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:57 -msgid "Planned Downtime" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:105 -msgid "Not created. Error inserting data" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:122 -#: ../../godmode/agentes/planned_downtime.php:142 -msgid "Each planned downtime must have a different name" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:126 -#: ../../godmode/agentes/planned_downtime.php:146 -msgid "Planned downtime must have a name" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:224 -#: ../../godmode/agentes/planned_downtime.php:394 -msgid "Only alerts" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:254 -msgid "Available agents" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:290 -msgid "Filter by group" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:302 -msgid "Agents planned for this downtime" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:313 -msgid "There are no scheduled downtimes" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:324 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:118 -#: ../../enterprise/godmode/agentes/collection_manager.php:127 -#: ../../enterprise/godmode/policies/policy_collections.php:122 -msgid "Remove" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:357 -msgid "Name #Ag." -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:362 -msgid "Affect" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:365 -#: ../../enterprise/extensions/backup/main.php:88 -#: ../../enterprise/operation/metaconsole/tactical.php:43 -msgid "Running" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:381 -msgid "No planned downtime" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:412 -msgid "Executed" -msgstr "" - -#: ../../godmode/agentes/planned_downtime.php:414 -msgid "Not executed" -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:46 -msgid "The name must be unique" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:49 -msgid "Field successfully created" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:66 -msgid "Field successfully updated" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:69 -msgid "There was a problem modifying field" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:78 -msgid "There was a problem deleting field" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:80 -msgid "Field successfully deleted" -msgstr "" - -#: ../../godmode/agentes/fields_manager.php:124 -msgid "Create field" -msgstr "" - -#: ../../godmode/agentes/manage_config_remote.php:43 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:43 msgid "Data Copy" msgstr "" -#: ../../godmode/agentes/manage_config_remote.php:52 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:52 msgid "No selected agents to copy" msgstr "" -#: ../../godmode/agentes/manage_config_remote.php:65 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:66 msgid "No source agent selected" msgstr "" -#: ../../godmode/agentes/manage_config_remote.php:103 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 msgid "Making copy of configuration file for" msgstr "" -#: ../../godmode/agentes/manage_config_remote.php:121 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 +msgid "Error copying md5 file " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:118 +msgid " md5 file" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:118 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:123 +msgid "Copied " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:121 +msgid "Error copying " +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:121 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:123 +msgid " config file" +msgstr "" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:136 msgid "Remote configuration management" msgstr "" -#: ../../godmode/agentes/manage_config_remote.php:126 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:141 msgid "Source group" msgstr "" -#: ../../godmode/agentes/manage_config_remote.php:167 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:183 msgid "To agent(s):" msgstr "" -#: ../../godmode/agentes/manage_config_remote.php:188 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:204 msgid "Replicate configuration" msgstr "" -#: ../../godmode/agentes/module_manager_editor_data.php:17 -msgid "Data server module" +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 +msgid "Synthetic arithmetic" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:248 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:53 -#: ../../enterprise/godmode/policies/policies.php:162 -#: ../../enterprise/godmode/policies/policy_agents.php:80 -#: ../../enterprise/godmode/policies/policy_linking.php:32 -#: ../../enterprise/godmode/policies/policy_modules.php:257 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:52 -#: ../../enterprise/godmode/policies/policy_alerts.php:48 -#: ../../enterprise/godmode/policies/policy_collections.php:36 -msgid "This policy is applying and cannot be modified" +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:29 +msgid "Synthetic average" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:252 -msgid "Module relinked to the policy successful" +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:98 +msgid "Fixed value" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:260 -msgid "Module unlinked from the policy successful" +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 +#: ../../enterprise/godmode/alerts/alert_events_list.php:375 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +#: ../../godmode/massive/massive_copy_modules.php:105 +#: ../../godmode/alerts/alert_list.list.php:368 +msgid "Operations" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:397 -#: ../../enterprise/godmode/policies/policy_modules.php:619 -msgid "No module name provided" +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 +msgid "Select Service" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:398 -#: ../../enterprise/godmode/policies/policy_modules.php:620 -msgid "No target IP provided" +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:156 +msgid "Netflow filter" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:399 -#: ../../enterprise/godmode/policies/policy_modules.php:621 -msgid "No SNMP OID provided" +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 +msgid "Select filter" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:400 -msgid "No module to predict" +#: ../../enterprise/godmode/agentes/module_manager.php:16 +msgid "Create a new web Server module" msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:401 -msgid "No plug-in provided" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:40 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:41 +msgid "The changes on this field are linked with the configuration data." msgstr "" -#: ../../godmode/agentes/module_manager_editor.php:416 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:46 +msgid "Using local component" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:52 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:62 +#: ../../godmode/agentes/module_manager_editor_common.php:74 +#: ../../godmode/agentes/module_manager_editor_common.php:83 +msgid "Manual setup" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 +#: ../../godmode/agentes/module_manager_editor_common.php:79 +msgid "No component was found" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:118 +msgid "Show configuration data" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:128 +msgid "Hide configuration data" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:136 +msgid "Data configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:141 +msgid "Load basic" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:141 +msgid "Load a basic structure on data configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:144 +msgid "Check the correct structure of the data configuration" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:154 +msgid "First line must be \"module_begin\"" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +msgid "Data configuration is empty" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:156 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:160 +msgid "Last line must be \"module_end\"" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:157 msgid "" -"Error, The field name and name in module_name in data configuration are " -"different." +"Name is missed. Please add a line with \"module_name yourmodulename\" to " +"data configuration" msgstr "" -#: ../../godmode/agentes/module_manager_editor_wmi.php:29 -msgid "WMI server module" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:158 +msgid "" +"Type is missed. Please add a line with \"module_type yourmoduletype\" to " +"data configuration" msgstr "" -#: ../../godmode/agentes/module_manager_editor_plugin.php:39 -msgid "Plugin server module" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:159 +msgid "Type is wrong. Please set a correct type" msgstr "" -#: ../../godmode/agentes/agent_template.php:94 -msgid "Error adding module" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:161 +msgid "Data configuration are built correctly" msgstr "" -#: ../../godmode/agentes/agent_template.php:98 -msgid "Modules successfully added " +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:29 +msgid "Web server module" msgstr "" -#: ../../godmode/agentes/agent_template.php:126 -msgid "Assign" +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:71 +msgid "Requests" msgstr "" -#: ../../godmode/menu.php:28 -msgid "Manage agents" +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:74 +msgid "Agent browser id" msgstr "" -#: ../../godmode/menu.php:33 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:88 +msgid "HTTP auth (login)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:92 +msgid "HTTP auth (pass)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:99 +msgid "HTTP auth (server)" +msgstr "" + +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:103 +msgid "HTTP auth (realm)" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:25 +#: ../../enterprise/godmode/policies/policy_agents.php:345 +#: ../../mobile/operation/agents.php:266 +#: ../../godmode/reporting/visual_console_builder.elements.php:64 +msgid "A." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:42 +msgid "Show extended info" +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:61 +msgid "" +"Maybe delete the extended data or the audit data is previous to table " +"tsession_extended." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:71 +msgid "Security check is ok." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:78 +msgid "Security check is fail." +msgstr "" + +#: ../../enterprise/godmode/admin_access_logs.php:105 +msgid "Extended info:" +msgstr "" + +#: ../../enterprise/godmode/menu.php:16 +#: ../../enterprise/godmode/massive/massive_operations.php:20 +msgid "Policies operations" +msgstr "" + +#: ../../enterprise/godmode/menu.php:23 ../../enterprise/godmode/menu.php:96 msgid "Duplicate config" msgstr "" -#: ../../godmode/menu.php:36 -msgid "Manage groups" +#: ../../enterprise/godmode/menu.php:41 +msgid "Manage policies" msgstr "" -#: ../../godmode/menu.php:37 ../../enterprise/extensions/tree_view.php:673 -msgid "Module groups" +#: ../../enterprise/godmode/menu.php:66 +msgid "ACL Setup" msgstr "" -#: ../../godmode/menu.php:38 -msgid "Scheduled downtime" +#: ../../enterprise/godmode/menu.php:72 +msgid "Skins" msgstr "" -#: ../../godmode/menu.php:39 -msgid "Manage custom fields" +#: ../../enterprise/godmode/menu.php:84 +#: ../../enterprise/godmode/alerts/alert_events_list.php:57 +#: ../../enterprise/godmode/alerts/alert_events_list.php:102 +#: ../../enterprise/godmode/alerts/alert_events_list.php:116 +#: ../../enterprise/godmode/alerts/alert_events_list.php:128 +msgid "Event alerts" msgstr "" -#: ../../godmode/menu.php:68 -msgid "Manage modules" +#: ../../enterprise/godmode/menu.php:90 +msgid "Log Collector" msgstr "" -#: ../../godmode/menu.php:73 -msgid "Component groups" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 +#: ../../enterprise/godmode/policies/policy_modules.php:251 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:37 +#: ../../enterprise/godmode/policies/configure_policy.php:35 +#: ../../enterprise/godmode/policies/configure_policy.php:39 +#: ../../enterprise/godmode/policies/policy_collections.php:29 +#: ../../enterprise/godmode/policies/policy_linking.php:26 +#: ../../enterprise/godmode/policies/policies.php:155 +#: ../../enterprise/godmode/policies/policy_alerts.php:31 +#: ../../enterprise/godmode/policies/policy.php:45 +#: ../../enterprise/godmode/policies/policy.php:50 +#: ../../enterprise/godmode/policies/policy.php:53 +msgid "Policies Management" msgstr "" -#: ../../godmode/menu.php:74 -msgid "Network components" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 +msgid "Inventory modules policy" msgstr "" -#: ../../godmode/menu.php:92 -msgid "Commands" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:53 +#: ../../enterprise/godmode/policies/policy_modules.php:296 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:53 +#: ../../enterprise/godmode/policies/policy_agents.php:80 +#: ../../enterprise/godmode/policies/policy_collections.php:37 +#: ../../enterprise/godmode/policies/policy_linking.php:33 +#: ../../enterprise/godmode/policies/policies.php:176 +#: ../../enterprise/godmode/policies/policy_alerts.php:49 +#: ../../godmode/agentes/module_manager_editor.php:311 +msgid "This policy is applying and cannot be modified" msgstr "" -#: ../../godmode/menu.php:94 -msgid "Correlation" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:65 +msgid "Module is not selected" msgstr "" -#: ../../godmode/menu.php:110 -msgid "Manage profiles" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:93 +#: ../../enterprise/godmode/policies/policy_modules.php:597 +msgid "" +"Successfully added to delete pending modules. Will be deleted in the next " +"policy application." msgstr "" -#: ../../godmode/menu.php:117 -msgid "Manage SNMP console" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:100 +#: ../../enterprise/godmode/policies/policy_plugins.php:37 +#: ../../enterprise/godmode/policies/policy_modules.php:602 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:101 +#: ../../enterprise/godmode/policies/policy_agents.php:95 +#: ../../enterprise/godmode/policies/policy_collections.php:73 +#: ../../enterprise/godmode/policies/policy_alerts.php:154 +msgid "Successfully reverted deletion" msgstr "" -#: ../../godmode/menu.php:123 -msgid "SNMP trap generator" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:103 +#: ../../enterprise/godmode/policies/policy_plugins.php:37 +#: ../../enterprise/godmode/policies/policy_modules.php:603 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:102 +#: ../../enterprise/godmode/policies/policy_agents.php:96 +#: ../../enterprise/godmode/policies/policy_collections.php:74 +#: ../../enterprise/godmode/policies/policy_alerts.php:155 +msgid "Could not be reverted" msgstr "" -#: ../../godmode/menu.php:125 -msgid "SNMP filters" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:188 +msgid "Select inventory module" msgstr "" -#: ../../godmode/menu.php:133 -msgid "Manage reports" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:266 +#: ../../enterprise/godmode/policies/policy_modules.php:669 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:251 +#: ../../enterprise/godmode/policies/policy_agents.php:433 +#: ../../enterprise/godmode/policies/policy_alerts.php:374 +msgid "Undo deletion" msgstr "" -#: ../../godmode/menu.php:139 -msgid "Report builder" +#: ../../enterprise/godmode/policies/policy_plugins.php:31 +msgid "" +"Successfully added to delete pending plugins. Will be deleted in the next " +"policy application." msgstr "" -#: ../../godmode/menu.php:142 ../../godmode/reporting/graph_builder.php:173 -msgid "Graph builder" +#: ../../enterprise/godmode/policies/policy_plugins.php:31 +msgid "Cannot be added to delete pending plugins." msgstr "" -#: ../../godmode/menu.php:149 -#: ../../godmode/reporting/visual_console_builder.php:248 -#: ../../godmode/reporting/map_builder.php:20 -msgid "Visual console builder" +#: ../../enterprise/godmode/policies/policy_modules.php:22 +#: ../../enterprise/godmode/policies/policy_modules.php:755 +#: ../../godmode/agentes/module_manager_editor_common.php:325 +msgid "Not needed" msgstr "" -#: ../../godmode/menu.php:154 ../../godmode/gis_maps/configure_gis_map.php:20 -#: ../../godmode/gis_maps/index.php:65 -msgid "GIS Maps builder" +#: ../../enterprise/godmode/policies/policy_modules.php:152 +msgid "" +"If you change this description, you must change into the text of Data " +"configuration." msgstr "" -#: ../../godmode/menu.php:178 -msgid "Manage plugins" +#: ../../enterprise/godmode/policies/policy_modules.php:251 +msgid "Modules in policy" msgstr "" -#: ../../godmode/menu.php:180 -msgid "Manage recon script" +#: ../../enterprise/godmode/policies/policy_modules.php:275 +msgid "Could not be added module(s). You must select a policy" msgstr "" -#: ../../godmode/menu.php:194 -msgid "System audit log" +#: ../../enterprise/godmode/policies/policy_modules.php:423 +msgid "Could not be added module." msgstr "" -#: ../../godmode/menu.php:199 -msgid "Manage tags" +#: ../../enterprise/godmode/policies/policy_modules.php:585 +msgid "" +"The module type in Data configuration is empty, take from combo box of form." msgstr "" -#: ../../godmode/menu.php:210 -msgid "Authentication" +#: ../../enterprise/godmode/policies/policy_modules.php:588 +msgid "" +"The module name in Data configuration is empty, take from text field of form." msgstr "" -#: ../../godmode/menu.php:211 -msgid "Performance" +#: ../../enterprise/godmode/policies/policy_modules.php:657 +msgid "Local component" msgstr "" -#: ../../godmode/menu.php:212 -msgid "Visual styles" +#: ../../enterprise/godmode/policies/policy_modules.php:703 +#: ../../godmode/massive/massive_copy_modules.php:108 +msgid "Copy modules" msgstr "" -#: ../../godmode/menu.php:213 ../../godmode/setup/file_manager.php:34 -msgid "File manager" +#: ../../enterprise/godmode/policies/policy_modules.php:704 +msgid "Copy selected modules to policy: " msgstr "" -#: ../../godmode/menu.php:215 ../../godmode/setup/gis.php:32 -msgid "Map conections GIS" +#: ../../enterprise/godmode/policies/policy_modules.php:738 +#: ../../godmode/agentes/module_manager_editor.php:457 +msgid "No module name provided" msgstr "" -#: ../../godmode/menu.php:217 -msgid "Site news" +#: ../../enterprise/godmode/policies/policy_modules.php:739 +#: ../../godmode/agentes/module_manager_editor.php:458 +msgid "No target IP provided" msgstr "" -#: ../../godmode/menu.php:218 ../../godmode/setup/os.php:140 -msgid "Edit OS" +#: ../../enterprise/godmode/policies/policy_modules.php:740 +#: ../../godmode/agentes/module_manager_editor.php:459 +msgid "No SNMP OID provided" msgstr "" -#: ../../godmode/menu.php:222 -msgid "Diagnostic info" +#: ../../enterprise/godmode/policies/policy_modules.php:819 +msgid "Variable" msgstr "" -#: ../../godmode/menu.php:228 -msgid "DB maintenance" +#: ../../enterprise/godmode/policies/policy_modules.php:854 +msgid "Are you sure to copy modules into policy?\\n" msgstr "" -#: ../../godmode/menu.php:233 -msgid "DB information" +#: ../../enterprise/godmode/policies/policy_modules.php:874 +msgid "Please select any module to copy" msgstr "" -#: ../../godmode/menu.php:234 ../../godmode/db/db_purge.php:37 -msgid "Database purge" +#: ../../enterprise/godmode/policies/policy_queue.php:101 +msgid "Operations successfully deleted from the queue" msgstr "" -#: ../../godmode/menu.php:235 ../../godmode/db/db_refine.php:33 -#: ../../include/functions_db.php:1024 -msgid "Database debug" +#: ../../enterprise/godmode/policies/policy_queue.php:102 +msgid "Operations cannot be deleted from the queue" msgstr "" -#: ../../godmode/menu.php:236 -msgid "Database audit" +#: ../../enterprise/godmode/policies/policy_queue.php:159 +msgid "Update pending" msgstr "" -#: ../../godmode/menu.php:237 -msgid "Database event" +#: ../../enterprise/godmode/policies/policy_queue.php:161 +msgid "Update pending agents" msgstr "" -#: ../../godmode/menu.php:238 ../../godmode/db/db_main.php:160 -msgid "Database sanity" +#: ../../enterprise/godmode/policies/policy_queue.php:175 +#: ../../enterprise/godmode/policies/policy_agents.php:416 +msgid "Add to apply queue" msgstr "" -#: ../../godmode/alerts/configure_alert_command.php:42 -msgid "Configure alert command" +#: ../../enterprise/godmode/policies/policy_queue.php:179 +msgid "Add to apply queue only for database" msgstr "" -#: ../../godmode/alerts/alert_actions.php:51 -#: ../../godmode/alerts/alert_actions.php:69 -#: ../../godmode/alerts/alert_actions.php:81 -#: ../../godmode/alerts/alert_actions.php:91 -#: ../../godmode/alerts/alert_actions.php:160 -#: ../../godmode/alerts/alert_actions.php:164 -#: ../../godmode/alerts/alert_actions.php:223 -#: ../../godmode/alerts/alert_actions.php:236 -#: ../../godmode/alerts/alert_actions.php:247 -msgid "Alert actions" +#: ../../enterprise/godmode/policies/policy_queue.php:185 +msgid "Link pending modules" msgstr "" -#: ../../godmode/alerts/alert_actions.php:104 -#: ../../godmode/reporting/map_builder.php:110 -#: ../../godmode/reporting/map_builder.php:119 -#: ../../enterprise/godmode/policies/policies.php:151 -#: ../../include/functions_agents.php:585 -msgid "Successfully copied" +#: ../../enterprise/godmode/policies/policy_queue.php:191 +msgid "Will be linked in the next policy application" msgstr "" -#: ../../godmode/alerts/alert_actions.php:105 -#: ../../enterprise/godmode/policies/policies.php:152 -msgid "Could not be copied" +#: ../../enterprise/godmode/policies/policy_queue.php:194 +msgid "Unlink pending modules" msgstr "" -#: ../../godmode/alerts/alert_actions.php:313 -msgid "No alert actions configured" +#: ../../enterprise/godmode/policies/policy_queue.php:200 +msgid "Will be unlinked in the next policy application" msgstr "" -#: ../../godmode/alerts/configure_alert_action.php:46 -#: ../../godmode/alerts/configure_alert_action.php:58 -#: ../../godmode/alerts/configure_alert_action.php:68 -msgid "Configure alert action" +#: ../../enterprise/godmode/policies/policy_queue.php:205 +msgid "Delete pending" msgstr "" -#: ../../godmode/alerts/configure_alert_action.php:116 -msgid "Create Command" +#: ../../enterprise/godmode/policies/policy_queue.php:207 +msgid "Delete pending agents" msgstr "" -#: ../../godmode/alerts/configure_alert_action.php:119 -#: ../../godmode/alerts/alert_list.list.php:437 -#: ../../godmode/alerts/alert_list.list.php:480 -#: ../../godmode/alerts/alert_list.builder.php:113 -#: ../../enterprise/godmode/alerts/alert_events_list.php:583 -#: ../../enterprise/godmode/alerts/alert_events_list.php:624 -#: ../../include/functions_reporting.php:1495 -msgid "Threshold" +#: ../../enterprise/godmode/policies/policy_queue.php:213 +#: ../../enterprise/godmode/policies/policy_queue.php:222 +#: ../../enterprise/godmode/policies/policy_queue.php:231 +#: ../../enterprise/godmode/policies/policy_queue.php:240 +#: ../../enterprise/godmode/policies/policy_queue.php:249 +#: ../../enterprise/godmode/policies/policy_queue.php:258 +#: ../../enterprise/godmode/policies/policy_queue.php:267 +msgid "Will be deleted in the next policy application" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:216 +msgid "Delete pending modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:225 +msgid "Delete pending inventory modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:234 +msgid "Delete pending alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:243 +msgid "Delete pending external alerts" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:252 +msgid "Delete pending file collections" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:261 +msgid "Delete pending plugins" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:273 +msgid "Advices" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:276 +msgid "Queue summary" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:291 +msgid "This operation could take a long time" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:487 +msgid "Delete all" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:38 +msgid "External Alerts Policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:74 +#: ../../enterprise/godmode/policies/policy_alerts.php:133 +msgid "Created successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:78 +msgid "Duplicated alert" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:96 +#: ../../enterprise/godmode/policies/policy_alerts.php:149 +msgid "" +"Successfully added to delete pending alerts. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:121 +#: ../../enterprise/godmode/policies/policy_alerts.php:173 +msgid "Added action successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:141 +#: ../../enterprise/godmode/policies/policy_alerts.php:191 +msgid "Deleted action successfuly" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:170 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:306 +msgid "Modules in policy agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:213 +#: ../../enterprise/godmode/policies/policy_alerts.php:336 +#: ../../enterprise/godmode/alerts/alert_events_list.php:499 +#: ../../include/functions_alerts.php:558 +#: ../../godmode/alerts/alert_list.list.php:479 +msgid "Always" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:215 +#: ../../enterprise/godmode/policies/policy_alerts.php:338 +#: ../../enterprise/godmode/alerts/alert_events_list.php:501 +#: ../../godmode/alerts/alert_list.list.php:481 +msgid "On" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:219 +#: ../../enterprise/godmode/policies/policy_alerts.php:342 +#: ../../enterprise/godmode/alerts/alert_events_list.php:505 +#: ../../godmode/alerts/alert_list.list.php:485 +msgid "Until" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:241 +#: ../../enterprise/godmode/policies/policy_alerts.php:364 +#: ../../enterprise/godmode/alerts/alert_events_list.php:530 +#: ../../enterprise/godmode/alerts/alert_events_list.php:532 +#: ../../godmode/alerts/alert_list.list.php:537 +#: ../../godmode/alerts/alert_list.list.php:541 +msgid "Add action" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:276 +#: ../../enterprise/godmode/policies/policy_alerts.php:399 +#: ../../enterprise/godmode/alerts/alert_events_list.php:547 +#: ../../godmode/massive/massive_add_action_alerts.php:154 +#: ../../godmode/alerts/alert_list.list.php:550 +#: ../../godmode/alerts/alert_list.builder.php:122 +msgid "Number of alerts match from" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:316 +msgid "Alert Template" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:35 +msgid "Setup policy" +msgstr "" + +#: ../../enterprise/godmode/policies/configure_policy.php:39 +msgid "Add policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:90 +msgid "" +"Successfully added to delete pending agents. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:121 +msgid "Successfully added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:122 +msgid "Could not be added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:157 +msgid "Successfully deleted from delete pending agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:158 +msgid "Could not be deleted from delete pending agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:257 +msgid "Agents in Policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:292 +msgid "Add agents to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:298 +msgid "Delete agents from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:333 +msgid "Applied" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:334 +msgid "Not applied" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:344 +msgid "Unlinked modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:344 +msgid "U." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:347 +msgid "Add to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:347 +#: ../../godmode/agentes/module_manager.php:484 +msgid "D." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:387 +#: ../../godmode/agentes/agent_manager.php:168 +msgid "This agent can be remotely configured" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:392 +msgid "This agent can not be remotely configured" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:451 +msgid "Need apply" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:459 +msgid "Applying policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:465 +msgid "Deleting from policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:479 +#: ../../include/functions_visual_map.php:383 +#: ../../include/functions_visual_map.php:594 +#: ../../godmode/massive/massive_add_action_alerts.php:60 +#: ../../godmode/massive/massive_add_alerts.php:49 +#: ../../godmode/massive/massive_delete_agents.php:33 +#: ../../godmode/massive/massive_delete_alerts.php:69 +#: ../../godmode/massive/massive_delete_modules.php:58 +#: ../../godmode/massive/massive_edit_agents.php:90 +msgid "No agents selected" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:29 +msgid "Collections in policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:68 +msgid "" +"Successfully added to delete the collection. Will be deleted in the next " +"policy application." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:26 +msgid "Linking modules" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:57 +msgid "Error: Update linking modules to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:61 +msgid "Success: Update linking modules to policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:69 +msgid "Free text for filter (*)" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:70 +msgid "Free text for filter" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:113 +msgid "List of modules unlinked" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_linking.php:139 +#: ../../godmode/setup/links.php:107 +msgid "Link" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:171 +msgid "All policy agents added to delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:172 +msgid "Policy agents cannot be added to the delete queue" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:206 +msgid "a" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:266 +msgid "Policy updated" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:269 +msgid "Pending update policy only database" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:272 +msgid "Pending update policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:334 +msgid "A policy with agents cannot be deleted. Purge it first" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:340 +msgid "Deleting all policy agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:343 +msgid "All the policy agents will be deleted" +msgstr "" + +#: ../../enterprise/godmode/policies/policies.php:347 +msgid "Delete all agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:31 +msgid "Alerts in policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:108 +#: ../../enterprise/godmode/alerts/alert_events_list.php:227 +#: ../../godmode/massive/massive_standby_alerts.php:96 +#: ../../godmode/alerts/alert_list.php:231 +msgid "Successfully set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:108 +#: ../../enterprise/godmode/alerts/alert_events_list.php:227 +#: ../../godmode/massive/massive_standby_alerts.php:96 +#: ../../godmode/alerts/alert_list.php:231 +msgid "Could not be set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:124 +#: ../../enterprise/godmode/alerts/alert_events_list.php:242 +#: ../../godmode/massive/massive_standby_alerts.php:78 +#: ../../godmode/alerts/alert_list.php:247 +msgid "Successfully set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:124 +#: ../../enterprise/godmode/alerts/alert_events_list.php:242 +#: ../../godmode/massive/massive_standby_alerts.php:78 +#: ../../godmode/alerts/alert_list.php:247 +msgid "Could not be set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:221 +#: ../../godmode/alerts/alert_list.list.php:119 +msgid "Enabled / Disabled" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:221 +msgid "E/D" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:435 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:104 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:104 +#: ../../godmode/massive/massive_add_alerts.php:143 +#: ../../godmode/massive/massive_delete_alerts.php:169 +#: ../../godmode/massive/massive_standby_alerts.php:143 +#: ../../godmode/massive/massive_enable_disable_alerts.php:142 +#: ../../extensions/module_groups.php:46 +msgid "Alert template" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:439 +msgid "Policy module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:492 +#: ../../enterprise/godmode/alerts/alert_events_list.php:658 +#: ../../godmode/alerts/alert_list.list.php:722 +msgid "Set off standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:501 +#: ../../enterprise/godmode/alerts/alert_events_list.php:667 +#: ../../godmode/alerts/alert_list.list.php:731 +msgid "Set standby" +msgstr "" + +#: ../../enterprise/godmode/policies/policy.php:50 +msgid "Agents policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy.php:53 +msgid "Plugins policy" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:51 +#: ../../enterprise/godmode/services/services.service.php:126 +msgid "" +"This values are by default because the service is auto calculate mode." +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:76 +#: ../../enterprise/godmode/services/services.service.php:148 +msgid "Config Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:81 +#: ../../enterprise/godmode/services/services.service.php:153 +msgid "Config Elements" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:85 +msgid "Edit service elements" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:99 +msgid "Error empty module" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:108 +msgid "Error empty agent" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:117 +msgid "Error empty service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:137 +msgid "Service element created successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:138 +msgid "Error creating service element" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:193 +msgid "Service element updated successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:194 +msgid "Error updating service element" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:198 +msgid "Service element deleted successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:199 +msgid "Error deleting service element" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:207 +msgid "Edit element service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:210 +msgid "Create element service" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:260 +msgid "First select an agent" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:277 +msgid "Critical weight" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:282 +msgid "Warning weight" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:288 +msgid "Unknown weight" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:293 +msgid "Ok weight" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:60 +msgid "Service created successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:61 +msgid "Error creating service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:85 +msgid "Service updated successfully" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:86 +msgid "Error updating service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:100 +msgid "New Service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:193 +msgid "Auto calculate" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:208 +msgid "Agent to store data" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:228 +msgid "S.L.A. interval" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:233 +msgid "S.L.A. limit" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:235 +msgid "Please set limit between 0 to 100." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:246 +msgid "Warning Service alert" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:251 +msgid "Critical Service alert" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:264 +msgid "SLA critical service alert" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:52 +msgid "Error parsing MIB" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:116 +msgid "Successfully added trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:119 +msgid "Error adding trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:146 +msgid "No change in data" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:149 +msgid "Successfully updated trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:152 +msgid "Error updating trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:162 +msgid "Successfully deleted trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:166 +msgid "Error deleting trap custom values" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:172 +msgid "Unsupported file type" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:185 +msgid "Load MIB" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 +msgid "Upload MIB" +msgstr "" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:208 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:65 +msgid "Custom OID" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 +msgid "Success: remove the alerts." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 +msgid "Failed: remove the alerts for this modules, please check." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:108 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:109 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:116 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:117 +#: ../../include/functions_alerts.php:548 +msgid "Regular expression" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:111 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:119 +msgid "Modules agents in policy" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:30 +msgid "Massive alerts policy addition" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_operations.php:31 +msgid "Massive alerts policy deletion" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 +msgid "Success: create the alerts." +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 +msgid "Failed: create the alerts for this modules, please check." +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:41 +#: ../../enterprise/godmode/alerts/alert_events_list.php:46 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:64 +#: ../../enterprise/godmode/alerts/alert_events.php:37 +msgid "List event alerts" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:46 +#: ../../enterprise/godmode/alerts/alert_events_list.php:50 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:69 +#: ../../enterprise/godmode/alerts/alert_events.php:42 +msgid "Builder event alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:73 +#: ../../enterprise/godmode/alerts/alert_events.php:48 +msgid "List event rules" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:60 +msgid "Configure event rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:120 +msgid "User comment" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:123 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:132 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:135 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:138 +msgid "This field will be processed with regexp" +msgstr "" + +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:126 +msgid "Window" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:289 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:347 +msgid "Successfully action" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:289 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:347 +msgid "Error processing action" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:304 +msgid "Error validating alert(s)" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:369 +msgid "Ac." +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:374 +msgid "Val." +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:434 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:430 +msgid "Move up" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:446 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:437 +msgid "Move down" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_list.php:587 +msgid "View associated rules" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 +msgid "Event rules" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:193 +msgid "Error creating rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:198 +msgid "Successfully created rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:245 +msgid "Error updating rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:249 +msgid "Successfully updating rule" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 +msgid "Error updating rule operators" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:262 +msgid "Successfully update rule operators" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:398 +msgid "(Agent)" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 +msgid "Operator" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:482 +msgid "Logic expression for these rules:" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:496 +msgid "Update operators" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:60 +msgid "Configure event alert" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:80 +#: ../../enterprise/godmode/alerts/alert_events.php:85 +#: ../../godmode/alerts/configure_alert_template.php:153 +#: ../../godmode/alerts/configure_alert_template.php:158 +msgid "Conditions" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:100 +#: ../../enterprise/godmode/alerts/alert_events.php:105 +#: ../../godmode/alerts/configure_alert_template.php:173 +#: ../../godmode/alerts/configure_alert_template.php:178 +msgid "Firing" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:327 +msgid "Could not be created, please fill alert name" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:413 +#: ../../godmode/alerts/configure_alert_template.php:488 +msgid "Days of week" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:414 +#: ../../include/functions.php:755 +#: ../../godmode/agentes/planned_downtime.editor.php:359 +#: ../../godmode/agentes/planned_downtime.list.php:256 +#: ../../godmode/alerts/configure_alert_template.php:489 +msgid "Mon" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:416 +#: ../../include/functions.php:757 +#: ../../godmode/agentes/planned_downtime.editor.php:362 +#: ../../godmode/agentes/planned_downtime.list.php:260 +#: ../../godmode/alerts/configure_alert_template.php:491 +msgid "Tue" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:418 +#: ../../include/functions.php:759 +#: ../../godmode/agentes/planned_downtime.editor.php:365 +#: ../../godmode/agentes/planned_downtime.list.php:264 +#: ../../godmode/alerts/configure_alert_template.php:493 +msgid "Wed" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:420 +#: ../../include/functions.php:761 +#: ../../godmode/agentes/planned_downtime.editor.php:368 +#: ../../godmode/agentes/planned_downtime.list.php:268 +#: ../../godmode/alerts/configure_alert_template.php:495 +msgid "Thu" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:422 +#: ../../include/functions.php:763 +#: ../../godmode/agentes/planned_downtime.editor.php:371 +#: ../../godmode/agentes/planned_downtime.list.php:272 +#: ../../godmode/alerts/configure_alert_template.php:497 +msgid "Fri" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:424 +#: ../../include/functions.php:765 +#: ../../godmode/agentes/planned_downtime.editor.php:374 +#: ../../godmode/agentes/planned_downtime.list.php:276 +#: ../../godmode/alerts/configure_alert_template.php:499 +msgid "Sat" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:426 +#: ../../include/functions.php:767 +#: ../../godmode/agentes/planned_downtime.editor.php:377 +#: ../../godmode/agentes/planned_downtime.list.php:280 +#: ../../godmode/alerts/configure_alert_template.php:501 +msgid "Sun" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:440 +#: ../../godmode/snmpconsole/snmp_alert.php:361 +#: ../../godmode/alerts/configure_alert_template.php:519 +msgid "Min. number of alerts" +msgstr "" + +#: ../../enterprise/godmode/alerts/alert_events.php:443 +#: ../../godmode/snmpconsole/snmp_alert.php:364 +#: ../../godmode/alerts/configure_alert_template.php:522 +msgid "Max. number of alerts" msgstr "" -#: ../../godmode/alerts/configure_alert_action.php:122 -#: ../../godmode/alerts/configure_alert_template.php:494 #: ../../enterprise/godmode/alerts/alert_events.php:447 msgid "Field 1" msgstr "" -#: ../../godmode/alerts/configure_alert_action.php:125 -#: ../../godmode/alerts/configure_alert_template.php:497 -#: ../../godmode/alerts/configure_alert_template.php:530 -#: ../../godmode/alerts/configure_alert_compound.php:458 #: ../../enterprise/godmode/alerts/alert_events.php:450 msgid "Field 2" msgstr "" -#: ../../godmode/alerts/configure_alert_action.php:128 -#: ../../godmode/alerts/configure_alert_template.php:500 -#: ../../godmode/alerts/configure_alert_template.php:534 -#: ../../godmode/alerts/configure_alert_compound.php:462 #: ../../enterprise/godmode/alerts/alert_events.php:453 msgid "Field 3" msgstr "" -#: ../../godmode/alerts/configure_alert_action.php:131 -msgid "Command preview" +#: ../../enterprise/godmode/alerts/alert_events.php:506 +msgid "Rule evaluation mode" msgstr "" -#: ../../godmode/alerts/configure_alert_template.php:53 -#: ../../godmode/alerts/configure_alert_template.php:65 -#: ../../godmode/alerts/configure_alert_template.php:76 -msgid "Configure alert template" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:110 -#: ../../godmode/alerts/configure_alert_template.php:115 -#: ../../godmode/alerts/configure_alert_template.php:130 -#: ../../godmode/alerts/configure_alert_template.php:135 -#: ../../godmode/alerts/configure_alert_template.php:150 -#: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/configure_alert_compound.php:48 -#: ../../godmode/alerts/configure_alert_compound.php:52 -#: ../../godmode/alerts/configure_alert_compound.php:67 -#: ../../godmode/alerts/configure_alert_compound.php:71 -#: ../../godmode/alerts/configure_alert_compound.php:85 -#: ../../godmode/alerts/configure_alert_compound.php:89 -#: ../../enterprise/godmode/alerts/alert_events.php:66 -#: ../../enterprise/godmode/alerts/alert_events.php:71 -#: ../../enterprise/godmode/alerts/alert_events.php:86 -#: ../../enterprise/godmode/alerts/alert_events.php:91 -#: ../../enterprise/godmode/setup/setup_history.php:67 -msgid "Step" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:111 -#: ../../godmode/alerts/configure_alert_template.php:116 -#: ../../godmode/alerts/configure_alert_compound.php:49 -#: ../../godmode/alerts/configure_alert_compound.php:53 -#: ../../enterprise/godmode/alerts/alert_events.php:67 -#: ../../enterprise/godmode/alerts/alert_events.php:72 -msgid "Conditions" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:131 -#: ../../godmode/alerts/configure_alert_template.php:136 -#: ../../godmode/alerts/configure_alert_compound.php:68 -#: ../../godmode/alerts/configure_alert_compound.php:72 -#: ../../enterprise/godmode/alerts/alert_events.php:87 -#: ../../enterprise/godmode/alerts/alert_events.php:92 -msgid "Firing" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:151 -#: ../../godmode/alerts/configure_alert_template.php:156 -#: ../../godmode/alerts/configure_alert_compound.php:86 -#: ../../godmode/alerts/configure_alert_compound.php:90 -msgid "Recovery" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:456 -#: ../../godmode/alerts/configure_alert_compound.php:348 -#: ../../enterprise/godmode/alerts/alert_events.php:409 -msgid "Days of week" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:457 -#: ../../godmode/alerts/configure_alert_compound.php:349 -#: ../../enterprise/godmode/alerts/alert_events.php:410 -#: ../../include/functions.php:648 -msgid "Mon" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:459 -#: ../../godmode/alerts/configure_alert_compound.php:351 -#: ../../enterprise/godmode/alerts/alert_events.php:412 -#: ../../include/functions.php:650 -msgid "Tue" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:461 -#: ../../godmode/alerts/configure_alert_compound.php:353 -#: ../../enterprise/godmode/alerts/alert_events.php:414 -#: ../../include/functions.php:652 -msgid "Wed" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:463 -#: ../../godmode/alerts/configure_alert_compound.php:355 -#: ../../enterprise/godmode/alerts/alert_events.php:416 -#: ../../include/functions.php:654 -msgid "Thu" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:465 -#: ../../godmode/alerts/configure_alert_compound.php:357 -#: ../../enterprise/godmode/alerts/alert_events.php:418 -#: ../../include/functions.php:656 -msgid "Fri" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:467 -#: ../../godmode/alerts/configure_alert_compound.php:359 -#: ../../enterprise/godmode/alerts/alert_events.php:420 -#: ../../include/functions.php:658 -msgid "Sat" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:469 -#: ../../godmode/alerts/configure_alert_compound.php:361 -#: ../../enterprise/godmode/alerts/alert_events.php:422 -#: ../../include/functions.php:660 -msgid "Sun" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:472 -#: ../../godmode/alerts/configure_alert_compound.php:364 -#: ../../godmode/reporting/reporting_builder.item_editor.php:414 -#: ../../enterprise/godmode/alerts/alert_events.php:425 -msgid "Time from" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:475 -#: ../../godmode/alerts/configure_alert_compound.php:367 -#: ../../godmode/reporting/reporting_builder.item_editor.php:418 -#: ../../enterprise/godmode/alerts/alert_events.php:428 -msgid "Time to" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:479 -#: ../../godmode/alerts/alert_templates.php:86 -#: ../../godmode/alerts/configure_alert_compound.php:371 -#: ../../godmode/snmpconsole/snmp_alert.php:229 -#: ../../enterprise/godmode/alerts/alert_events.php:432 -msgid "Time threshold" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:482 -#: ../../godmode/alerts/configure_alert_compound.php:374 -#: ../../godmode/snmpconsole/snmp_alert.php:243 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:139 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 -#: ../../enterprise/godmode/alerts/alert_events.php:435 -#: ../../include/functions_alerts.php:797 -msgid "Other value" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:487 -#: ../../godmode/alerts/configure_alert_compound.php:379 -#: ../../godmode/snmpconsole/snmp_alert.php:221 -#: ../../enterprise/godmode/alerts/alert_events.php:440 -msgid "Min. number of alerts" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:490 -#: ../../godmode/alerts/configure_alert_compound.php:382 -#: ../../godmode/snmpconsole/snmp_alert.php:224 -#: ../../enterprise/godmode/alerts/alert_events.php:443 -msgid "Max. number of alerts" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:503 -msgid "Default action" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:516 -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\"." -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:524 -#: ../../godmode/alerts/configure_alert_compound.php:452 -msgid "Alert recovery" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:590 -msgid "Condition type" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:595 -msgid "Trigger when matches the value" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:606 -msgid "The regular expression is valid" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:610 -msgid "The regular expression is not valid" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:641 -#: ../../godmode/alerts/configure_alert_compound.php:561 -#: ../../enterprise/godmode/alerts/alert_events.php:542 -msgid "Finish" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:644 -#: ../../godmode/alerts/configure_alert_compound.php:564 -#: ../../enterprise/godmode/alerts/alert_events.php:545 -msgid "Next" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:655 -msgid "" -"The alert would fire when the value matches " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:656 -msgid "" -"The alert would fire when the value doesn't match " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:657 -msgid "The alert would fire when the value is " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:658 -msgid "" -"The alert would fire when the value is not " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:659 -msgid "" -"The alert would fire when the value is between " -"and " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:660 -msgid "" -"The alert would fire when the value is not between and " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:661 -msgid "" -"The alert would fire when the value is below " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:662 -msgid "" -"The alert would fire when the value is above " -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:663 -#: ../../include/functions_ui.php:745 -msgid "The alert would fire when the module is in warning status" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:664 -#: ../../include/functions_ui.php:750 -msgid "The alert would fire when the module is in critical status" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:665 -msgid "The alert would fire when the module value changes" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:666 -msgid "The alert would fire when the module value does not change" -msgstr "" - -#: ../../godmode/alerts/configure_alert_template.php:667 -msgid "The alert would fire when the module is in unknown status" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:59 -msgid "Everyday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:62 -#: ../../godmode/reporting/reporting_builder.item_editor.php:405 -msgid "Monday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:63 -#: ../../godmode/reporting/reporting_builder.item_editor.php:406 -msgid "Tuesday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:407 -msgid "Wednesday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:408 -msgid "Thursday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:66 -#: ../../godmode/reporting/reporting_builder.item_editor.php:409 -msgid "Friday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:67 -#: ../../godmode/reporting/reporting_builder.item_editor.php:410 -msgid "Saturday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:68 -#: ../../godmode/reporting/reporting_builder.item_editor.php:411 -msgid "Sunday" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:70 -#: ../../enterprise/godmode/setup/setup_history.php:64 -msgid "Days" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:70 -msgid "Every" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:80 -#: ../../enterprise/dashboard/widgets/tactical.php:33 -msgid "and" -msgstr "" - -#: ../../godmode/alerts/alert_templates.php:285 -msgid "No alert templates defined" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:46 -msgid "Template name" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:93 -msgid "Field content" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:102 -#: ../../enterprise/godmode/policies/policy_alerts.php:220 -msgid "Enabled / Disabled" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:425 -#: ../../godmode/alerts/configure_alert_compound.php:425 -#: ../../enterprise/godmode/alerts/alert_events_list.php:571 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:213 -#: ../../enterprise/godmode/policies/policy_alerts.php:335 -#: ../../include/functions_alerts.php:455 -msgid "Always" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:427 -#: ../../godmode/alerts/configure_alert_compound.php:427 -#: ../../enterprise/godmode/alerts/alert_events_list.php:573 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:215 -#: ../../enterprise/godmode/policies/policy_alerts.php:337 -msgid "On" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:431 -#: ../../godmode/alerts/configure_alert_compound.php:430 -#: ../../enterprise/godmode/alerts/alert_events_list.php:577 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:219 -#: ../../enterprise/godmode/policies/policy_alerts.php:341 -msgid "Until" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:458 -#: ../../godmode/alerts/alert_list.list.php:460 -#: ../../enterprise/godmode/alerts/alert_events_list.php:602 -#: ../../enterprise/godmode/alerts/alert_events_list.php:604 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:241 -#: ../../enterprise/godmode/policies/policy_alerts.php:363 -msgid "Add action" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:555 -msgid "No alerts defined" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:654 -#: ../../enterprise/godmode/alerts/alert_events_list.php:730 -#: ../../enterprise/godmode/policies/policy_alerts.php:491 -msgid "Set off standby" -msgstr "" - -#: ../../godmode/alerts/alert_list.list.php:663 -#: ../../enterprise/godmode/alerts/alert_events_list.php:739 -#: ../../enterprise/godmode/policies/policy_alerts.php:500 -msgid "Set standby" -msgstr "" - -#: ../../godmode/alerts/alert_list.builder.php:62 -msgid "Latest value" -msgstr "" - -#: ../../godmode/alerts/alert_list.builder.php:87 -msgid "Create Template" -msgstr "" - -#: ../../godmode/alerts/alert_list.builder.php:110 #: ../../enterprise/godmode/alerts/alert_events.php:517 +#: ../../godmode/alerts/alert_list.builder.php:132 msgid "Create Action" msgstr "" -#: ../../godmode/alerts/alert_list.builder.php:121 -msgid "Add alert" +#: ../../enterprise/godmode/alerts/alert_events.php:521 +msgid "Group by" msgstr "" -#: ../../godmode/alerts/configure_alert_compound.php:270 -msgid "Configure correlated alert" +#: ../../enterprise/extensions/resource_registration/functions.php:37 +#, php-format +msgid "Error create '%s' policy, the name exist and there aren't free name." msgstr "" -#: ../../godmode/alerts/configure_alert_compound.php:413 -msgid "Assigned actions" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:484 -msgid "Assigned to" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:491 -#: ../../godmode/reporting/reporting_builder.item_editor.php:567 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:202 -msgid "Condition" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:503 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:404 -msgid "Operator" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:571 -msgid "Add condition" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:612 -#: ../../godmode/alerts/configure_alert_compound.php:797 -#: ../../godmode/alerts/alert_compounds.php:248 -msgid "No alerts found" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:863 -msgid "No name was given" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:867 -msgid "No agent was given" -msgstr "" - -#: ../../godmode/alerts/configure_alert_compound.php:871 -msgid "No conditions were given" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:74 -msgid "Already added" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:254 -msgid "List alerts" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:258 -msgid "Builder alert" -msgstr "" - -#: ../../godmode/alerts/alert_list.php:263 -msgid "List" -msgstr "" - -#: ../../godmode/alerts/alert_commands.php:42 -msgid "Alert commands" -msgstr "" - -#: ../../godmode/alerts/alert_commands.php:182 -msgid "No alert commands configured" -msgstr "" - -#: ../../godmode/alerts/alert_compounds.php:55 -msgid "Correlated alerts" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:162 -msgid "Map successfully created" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:163 -msgid "Map could not be created" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:292 -msgid "Map successfully update" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:293 -msgid "Map could not be update" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:305 -msgid "Map Name" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:305 -msgid "Descriptive name for the map" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:324 -msgid "Add Map connection" -msgstr "" - -#: ../../godmode/gis_maps/configure_gis_map.php:324 +#: ../../enterprise/extensions/resource_registration/functions.php:44 +#, php-format msgid "" -"At least one map connection must be defined, it will be possible to change " -"between the connections in the map" +"Warning create '%s' policy, the name exist, the policy have a name %s." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:342 -msgid "Group that owns the map" +#: ../../enterprise/extensions/resource_registration/functions.php:51 +msgid "Error the policy haven't name." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:345 -msgid "Default zoom" +#: ../../enterprise/extensions/resource_registration/functions.php:65 +#, php-format +msgid "Success create '%s' policy." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:345 -msgid "Default zoom level when opening the map" +#: ../../enterprise/extensions/resource_registration/functions.php:66 +#, php-format +msgid "Error create '%s' policy." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:348 -msgid "Center Latitude" +#: ../../enterprise/extensions/resource_registration/functions.php:102 +#, php-format +msgid "Success add '%s' agent." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:351 -msgid "Center Longitude" +#: ../../enterprise/extensions/resource_registration/functions.php:103 +#, php-format +msgid "Error add '%s' agent." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:354 -msgid "Center Altitude" +#: ../../enterprise/extensions/resource_registration/functions.php:125 +#, php-format +msgid "Success add '%s' collection." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:357 -msgid "Default Latitude" +#: ../../enterprise/extensions/resource_registration/functions.php:126 +#, php-format +msgid "Error add '%s' collection." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:360 -msgid "Default Longitude" +#: ../../enterprise/extensions/resource_registration/functions.php:137 +msgid "Error add the module, haven't type." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:363 -msgid "Default Altitude" +#: ../../enterprise/extensions/resource_registration/functions.php:209 +#: ../../enterprise/extensions/resource_registration/functions.php:239 +#: ../../enterprise/extensions/resource_registration/functions.php:296 +#: ../../enterprise/extensions/resource_registration/functions.php:328 +msgid "Error add the module, error in tag component." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:375 -#: ../../godmode/gis_maps/configure_gis_map.php:451 -msgid "Update map" +#: ../../enterprise/extensions/resource_registration/functions.php:368 +#, php-format +msgid "Success add '%s' module." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:386 -msgid "Layers" +#: ../../enterprise/extensions/resource_registration/functions.php:369 +#, php-format +msgid "Error add '%s' module." msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:386 +#: ../../enterprise/extensions/resource_registration/functions.php:379 +#, php-format +msgid "Error add the alert, the template '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:387 +#, php-format +msgid "Error add the alert, the module '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:399 +#, php-format +msgid "Success add '%s' alert." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:400 +#, php-format +msgid "Error add '%s' alert." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:416 +#, php-format +msgid "Error add the alert, the action '%s' don't exist." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:428 +#, php-format +msgid "Success add '%s' action." +msgstr "" + +#: ../../enterprise/extensions/resource_registration/functions.php:429 +#: ../../extensions/resource_registration.php:328 +#: ../../extensions/resource_registration.php:349 +#: ../../extensions/resource_registration.php:359 +#, php-format +msgid "Error add '%s' action." +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:53 +msgid "Pandora database backup utility" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:88 +#: ../../godmode/agentes/planned_downtime.list.php:200 +msgid "Running" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:113 +msgid "Lost" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:120 +msgid "Download" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:139 +msgid "Backups list" +msgstr "" + +#: ../../enterprise/extensions/backup/main.php:144 +msgid "Create backup" +msgstr "" + +#: ../../enterprise/extensions/dict.php:54 +#: ../../enterprise/extensions/dict.php:134 +msgid "Dictionary" +msgstr "" + +#: ../../enterprise/extensions/dict.php:65 +msgid "Configuration could not be saved" +msgstr "" + +#: ../../enterprise/extensions/dict.php:68 +msgid "Configuration saved" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:160 +#: ../../enterprise/extensions/translate_string.php:317 +msgid "Translate string" +msgstr "" + +#: ../../enterprise/extensions/csv_import.php:27 +msgid "CSV import" +msgstr "" + +#: ../../enterprise/extensions/cron.php:60 +#: ../../enterprise/extensions/cron/main.php:36 +msgid "Cron jobs" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:38 +#, php-format +msgid "Created agent %s" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:39 +#, php-format +msgid "Could not create agent %s" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:43 +msgid "File processed" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:49 +msgid "CSV format" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:50 +msgid "The CSV file must have the fields in the following order" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:62 +#: ../../include/functions_filemanager.php:720 +msgid "Upload file" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:69 +msgid "Separator" +msgstr "" + +#: ../../enterprise/extensions/csv_import/main.php:73 +msgid "Upload CSV file" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:17 +#: ../../enterprise/extensions/cron/functions.php:27 +#: ../../enterprise/extensions/cron/functions.php:48 +#: ../../enterprise/extensions/cron/functions.php:80 +#: ../../enterprise/extensions/cron/functions.php:95 +#: ../../enterprise/extensions/cron/functions.php:136 +msgid "Report to build" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:23 +#: ../../enterprise/extensions/cron/functions.php:81 +msgid "Send to email" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:33 +#: ../../enterprise/extensions/cron/functions.php:38 +#: ../../enterprise/extensions/cron/functions.php:54 +#: ../../enterprise/extensions/cron/functions.php:96 +#: ../../enterprise/extensions/cron/functions.php:137 +msgid "Save to disk into path" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:44 +#: ../../enterprise/extensions/cron/main.php:213 +#: ../../godmode/servers/manage_recontask_form.php:161 +msgid "Custom script" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:82 +msgid "Send custom report by email" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:97 +#: ../../enterprise/extensions/cron/functions.php:138 +msgid "Save custom report to disk" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:110 +#: ../../enterprise/extensions/cron/functions.php:123 +msgid "Backup Pandora database" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:153 +msgid "Not scheduled" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:154 +msgid "Hourly" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:155 +#: ../../godmode/agentes/module_manager_editor_prediction.php:146 +msgid "Daily" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:156 +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../godmode/agentes/module_manager_editor_prediction.php:144 +msgid "Weekly" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:157 +#: ../../godmode/agentes/planned_downtime.editor.php:351 +#: ../../godmode/agentes/module_manager_editor_prediction.php:145 +msgid "Monthly" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:158 +msgid "Yearly" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:337 +msgid "This is the automatic generated report" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:340 +msgid "Open the attached file to view it" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:342 +#: ../../mobile/include/functions_web.php:82 +#: ../../mobile/include/ui.class.php:254 +msgid "Generated at" +msgstr "" + +#: ../../enterprise/extensions/cron/functions.php:346 +msgid "Please do not answer or reply to this email" +msgstr "" + +#: ../../enterprise/extensions/cron/main.php:42 +msgid "Add new job" +msgstr "" + +#: ../../enterprise/extensions/cron/main.php:76 +#: ../../enterprise/extensions/cron/main.php:131 +msgid "Path doesn't exists or is not writable" +msgstr "" + +#: ../../enterprise/extensions/cron/main.php:108 +#: ../../enterprise/extensions/cron/main.php:123 +msgid "Edit job" +msgstr "" + +#: ../../enterprise/extensions/cron/main.php:150 +msgid "Cron extension is not running" +msgstr "" + +#: ../../enterprise/extensions/cron/main.php:151 +msgid "Cron extension has never run or it's not configured well" +msgstr "" + +#: ../../enterprise/extensions/cron/main.php:152 msgid "" -"Each layer can show agents from one group or the agents added to that layer " -"or both." +"This extension relies on a proper setup of cron, the time-based scheduling " +"service" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:393 -msgid "List of layers" +#: ../../enterprise/extensions/cron/main.php:154 +msgid "Please, add the following line to your crontab file" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:393 -msgid "It is possible to edit, delete and reorder the layers." +#: ../../enterprise/extensions/cron/main.php:159 +msgid "Last execution" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:394 -msgid "New layer" +#: ../../enterprise/extensions/cron/main.php:166 +msgid "Cron extension is running" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:402 -msgid "Layer name" +#: ../../enterprise/extensions/cron/main.php:175 +msgid "Scheduled jobs" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:404 -msgid "Visible" +#: ../../enterprise/extensions/cron/main.php:181 +#: ../../enterprise/extensions/cron/main.php:269 +msgid "Task" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:408 -msgid "Show agents from group" +#: ../../enterprise/extensions/cron/main.php:182 +#: ../../enterprise/extensions/cron/main.php:273 +msgid "Scheduled" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:420 -#: ../../enterprise/include/functions_networkmap_enterprise.php:191 -#: ../../enterprise/include/functions_networkmap_enterprise.php:225 -#: ../../enterprise/include/functions_networkmap_enterprise.php:226 -msgid "Add agent" +#: ../../enterprise/extensions/cron/main.php:183 +msgid "Last run" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:425 -msgid "List of Agents to be shown in the layer" +#: ../../enterprise/extensions/cron/main.php:192 +msgid "Force run" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:432 -#: ../../godmode/gis_maps/configure_gis_map.php:636 -#: ../../godmode/gis_maps/configure_gis_map.php:647 -msgid "Save Layer" +#: ../../enterprise/extensions/cron/main.php:226 +#: ../../enterprise/extensions/cron/main.php:240 +msgid "Path" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:679 -#: ../../godmode/gis_maps/configure_gis_map.php:735 -msgid "Update Layer" +#: ../../enterprise/extensions/cron/main.php:276 +msgid "First execution" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:801 -msgid "Do you want to use the default data from the connection?" +#: ../../enterprise/extensions/cron/main.php:279 +#: ../../include/functions_events.php:1674 +#: ../../godmode/events/event_responses.editor.php:90 +msgid "Parameters" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:837 -msgid "The connection" +#: ../../enterprise/extensions/backup.php:57 +msgid "Backup" msgstr "" -#: ../../godmode/gis_maps/configure_gis_map.php:837 -msgid "just added previously." +#: ../../include/functions_ui.php:212 +msgid "Information" msgstr "" -#: ../../godmode/gis_maps/index.php:68 -#: ../../godmode/reporting/map_builder.php:132 -msgid "Map name" +#: ../../include/functions_ui.php:218 +msgid "Success" msgstr "" -#: ../../godmode/gis_maps/index.php:133 -msgid "Caution: Do you want delete the map?" +#: ../../include/functions_ui.php:340 +msgid "Request successfully processed" msgstr "" -#: ../../godmode/gis_maps/index.php:140 -msgid "Do you want to set default the map?" +#: ../../include/functions_ui.php:343 +msgid "Error processing request" msgstr "" -#: ../../godmode/gis_maps/index.php:149 -msgid "There was error on setup the default map." +#: ../../include/functions_ui.php:463 +msgid "" +"Is possible that this view uses part of information which your user has not " +"access" msgstr "" -#: ../../godmode/snmpconsole/snmp_filters.php:35 -msgid "Update filter" +#: ../../include/functions_ui.php:875 +#: ../../godmode/alerts/configure_alert_template.php:717 +msgid "The alert would fire when the value is " msgstr "" -#: ../../godmode/snmpconsole/snmp_filters.php:38 -msgid "Create filter" +#: ../../include/functions_ui.php:879 +#: ../../godmode/alerts/configure_alert_template.php:718 +msgid "The alert would fire when the value is not " msgstr "" -#: ../../godmode/snmpconsole/snmp_filters.php:42 -msgid "Filter overview" +#: ../../include/functions_ui.php:884 +#: ../../godmode/alerts/configure_alert_template.php:715 +msgid "" +"The alert would fire when the value matches " msgstr "" -#: ../../godmode/snmpconsole/snmp_filters.php:51 -msgid "There was a problem updating the filter" +#: ../../include/functions_ui.php:887 +msgid "" +"The alert would fire when the value doesn't match " msgstr "" -#: ../../godmode/snmpconsole/snmp_filters.php:63 -msgid "There was a problem creating the filter" +#: ../../include/functions_ui.php:893 +#: ../../godmode/alerts/configure_alert_template.php:719 +msgid "" +"The alert would fire when the value is between and " +"" msgstr "" -#: ../../godmode/snmpconsole/snmp_filters.php:73 -msgid "There was a problem deleting the filter" +#: ../../include/functions_ui.php:896 +#: ../../godmode/alerts/configure_alert_template.php:720 +msgid "" +"The alert would fire when the value is not between " +"and " msgstr "" -#: ../../godmode/snmpconsole/snmp_filters.php:114 -msgid "There are no SNMP filters" +#: ../../include/functions_ui.php:900 +msgid "The alert would fire when the value is over " msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 -msgid "SNMP Trap generator" +#: ../../include/functions_ui.php:905 +msgid "The alert would fire when the value is under " msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:49 -msgid "Successfully generated" +#: ../../include/functions_ui.php:910 +#: ../../godmode/alerts/configure_alert_template.php:723 +msgid "The alert would fire when the module is in warning status" msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:50 -msgid "Could not be generated" +#: ../../include/functions_ui.php:915 +#: ../../godmode/alerts/configure_alert_template.php:724 +msgid "The alert would fire when the module is in critical status" msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:58 -msgid "Host address" +#: ../../include/functions_ui.php:1684 +msgid "Unknown type" msgstr "" +#: ../../include/functions_ui.php:2440 +msgid "Type at least two characters to search." +msgstr "" + +#: ../../include/functions_ui.php:3068 +msgid "Does not exist agent with this name." +msgstr "" + +#: ../../include/functions_ui.php:3214 +msgid "Problem with Pandora FMS database" +msgstr "" + +#: ../../include/functions_ui.php:3215 +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 "" + +#: ../../include/functions_ui.php:3219 +msgid "DB ERROR" +msgstr "" + +#: ../../include/functions_ui.php:3225 +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 "" + +#: ../../include/functions_ui.php:3229 +msgid "Empty configuration table" +msgstr "" + +#: ../../include/functions_ui.php:3230 +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 "" + +#: ../../include/functions_ui.php:3237 +msgid "No configuration file found" +msgstr "" + +#: ../../include/functions_ui.php:3238 +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 "" + +#: ../../include/functions_ui.php:3249 +#, php-format +msgid "You may try to run the %sinstallation wizard%s to create one." +msgstr "" + +#: ../../include/functions_ui.php:3252 +msgid "Installer active" +msgstr "" + +#: ../../include/functions_ui.php:3253 +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 "" + +#: ../../include/functions_ui.php:3257 +msgid "Bad permission for include/config.php" +msgstr "" + +#: ../../include/functions_ui.php:3258 +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 "" + +#: ../../include/functions_events.php:784 +msgid "Latest events" +msgstr "" + +#: ../../include/functions_events.php:914 +msgid "Events -by module-" +msgstr "" + +#: ../../include/functions_events.php:1034 +msgid "Going to unknown" +msgstr "" + +#: ../../include/functions_events.php:1037 +#: ../../include/functions_events.php:1320 ../../include/functions.php:879 +msgid "Alert recovered" +msgstr "" + +#: ../../include/functions_events.php:1040 +msgid "Alert manually validated" +msgstr "" + +#: ../../include/functions_events.php:1043 +msgid "Going from critical to warning" +msgstr "" + +#: ../../include/functions_events.php:1047 +msgid "Going down to critical state" +msgstr "" + +#: ../../include/functions_events.php:1051 +msgid "Going up to normal state" +msgstr "" + +#: ../../include/functions_events.php:1054 +msgid "Going down from normal to warning" +msgstr "" + +#: ../../include/functions_events.php:1060 +#: ../../include/functions_graph.php:2108 +msgid "SYSTEM" +msgstr "" + +#: ../../include/functions_events.php:1063 +msgid "Recon server detected a new host" +msgstr "" + +#: ../../include/functions_events.php:1066 +msgid "New agent created" +msgstr "" + +#: ../../include/functions_events.php:1069 +#: ../../include/functions_events.php:1338 +msgid "Configuration change" +msgstr "" + +#: ../../include/functions_events.php:1072 +#: ../../include/functions_events.php:1323 ../../include/functions.php:880 +msgid "Alert ceased" +msgstr "" + +#: ../../include/functions_events.php:1079 +msgid "Unknown type:" +msgstr "" + +#: ../../include/functions_events.php:1308 ../../include/functions.php:873 +msgid "Monitor Critical" +msgstr "" + +#: ../../include/functions_events.php:1311 ../../include/functions.php:874 +msgid "Monitor Warning" +msgstr "" + +#: ../../include/functions_events.php:1314 ../../include/functions.php:875 +msgid "Monitor Normal" +msgstr "" + +#: ../../include/functions_events.php:1326 ../../include/functions.php:881 +msgid "Alert manual validation" +msgstr "" + +#: ../../include/functions_events.php:1329 ../../include/functions.php:882 +msgid "Recon host detected" +msgstr "" + +#: ../../include/functions_events.php:1372 ../../include/functions.php:709 +#: ../../include/functions.php:909 ../../include/functions.php:941 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:69 +#: ../../include/functions_graph.php:1815 +#: ../../include/functions_graph.php:2161 +#: ../../include/functions_graph.php:2162 +msgid "Maintenance" +msgstr "" + +#: ../../include/functions_events.php:1375 ../../include/functions.php:712 +#: ../../include/functions.php:910 ../../include/functions.php:944 +#: ../../include/functions_graph.php:2165 +#: ../../include/functions_graph.php:2166 +msgid "Informational" +msgstr "" + +#: ../../include/functions_events.php:1476 +msgid "Agent address" +msgstr "" + +#: ../../include/functions_events.php:1477 +msgid "Agent id" +msgstr "" + +#: ../../include/functions_events.php:1478 +#: ../../godmode/events/custom_events.php:65 +#: ../../godmode/events/custom_events.php:147 +msgid "Event id" +msgstr "" + +#: ../../include/functions_events.php:1554 +msgid "Change owner" +msgstr "" + +#: ../../include/functions_events.php:1584 ../../include/functions_xml.php:125 +msgid "New" +msgstr "" + +#: ../../include/functions_events.php:1584 +#: ../../include/functions_events.php:1590 ../../include/functions_xml.php:129 +msgid "In process" +msgstr "" + +#: ../../include/functions_events.php:1636 +msgid "Custom responses" +msgstr "" + +#: ../../include/functions_events.php:1837 +msgid "Agent details" +msgstr "" + +#: ../../include/functions_events.php:1869 +msgid "View custom fields" +msgstr "" + +#: ../../include/functions_events.php:1881 +msgid "Module details" +msgstr "" + +#: ../../include/functions_events.php:1899 +msgid "No assigned" +msgstr "" + +#: ../../include/functions_events.php:1932 +msgid "Alert details" +msgstr "" + +#: ../../include/functions_events.php:2073 +msgid "First event" +msgstr "" + +#: ../../include/functions_events.php:2073 +msgid "Last event" +msgstr "" + +#: ../../include/functions_events.php:2149 +#: ../../mobile/operation/events.php:440 +msgid "Acknowledged by" +msgstr "" + +#: ../../include/functions_events.php:2235 +msgid "There are no comments" +msgstr "" + +#: ../../include/functions_events.php:2320 +#: ../../include/functions_reporting.php:2625 +msgid "Pandora System" +msgstr "" + +#: ../../include/functions_reporting.php:882 +#: ../../include/functions_reporting.php:898 +#: ../../include/functions_reporting.php:909 +#: ../../include/functions_reporting.php:921 +#: ../../include/functions_reporting.php:933 +#: ../../include/functions_reporting.php:945 +#: ../../include/functions_reporting.php:957 +#: ../../include/functions_reporting.php:969 +msgid "Ratio" +msgstr "" + +#: ../../include/functions_reporting.php:882 +#: ../../include/functions_reporting.php:898 +#: ../../include/functions_reporting.php:909 +#: ../../include/functions_reporting.php:921 +#: ../../include/functions_reporting.php:933 +#: ../../include/functions_reporting.php:945 +#: ../../include/functions_reporting.php:957 +#: ../../include/functions_reporting.php:969 +msgid "Modules by second" +msgstr "" + +#: ../../include/functions_reporting.php:917 +msgid "Network modules" +msgstr "" + +#: ../../include/functions_reporting.php:929 +msgid "Plugin modules" +msgstr "" + +#: ../../include/functions_reporting.php:941 +msgid "Prediction modules" +msgstr "" + +#: ../../include/functions_reporting.php:953 +msgid "WMI modules" +msgstr "" + +#: ../../include/functions_reporting.php:965 +msgid "Web modules" +msgstr "" + +#: ../../include/functions_reporting.php:1022 +msgid "Monitor normal" +msgstr "" + +#: ../../include/functions_reporting.php:1026 +msgid "Monitor unknown" +msgstr "" + +#: ../../include/functions_reporting.php:1033 +msgid "Monitor not init" +msgstr "" + +#: ../../include/functions_reporting.php:1052 +msgid "Monitors by status" +msgstr "" + +#: ../../include/functions_reporting.php:1070 +msgid "Module status" +msgstr "" + +#: ../../include/functions_reporting.php:1143 +msgid "Defined and fired alerts" +msgstr "" + +#: ../../include/functions_reporting.php:1166 +msgid "Defined users" +msgstr "" + +#: ../../include/functions_reporting.php:1221 +msgid "Total agents and monitors" +msgstr "" + +#: ../../include/functions_reporting.php:1245 +#, php-format +msgid "%d Downed servers" +msgstr "" + +#: ../../include/functions_reporting.php:1253 +#, php-format +msgid "%d Not Normal monitors" +msgstr "" + +#: ../../include/functions_reporting.php:1261 +#, php-format +msgid "%d Not inited monitors" +msgstr "" + +#: ../../include/functions_reporting.php:1269 +#: ../../include/functions_reporting.php:6745 +#: ../../include/functions_reporting.php:6753 +#, php-format +msgid "%d Fired alerts" +msgstr "" + +#: ../../include/functions_reporting.php:1647 +#: ../../include/functions_reporting.php:2229 +#: ../../godmode/snmpconsole/snmp_alert.php:468 +msgid "Times fired" +msgstr "" + +#: ../../include/functions_reporting.php:2054 +msgid "Alerts not fired" +msgstr "" + +#: ../../include/functions_reporting.php:2061 +msgid "Total alerts monitored" +msgstr "" + +#: ../../include/functions_reporting.php:2112 +msgid "Total monitors" +msgstr "" + +#: ../../include/functions_reporting.php:2113 +msgid "Monitors down on period" +msgstr "" + +#: ../../include/functions_reporting.php:2129 +msgid "Monitors OK" +msgstr "" + +#: ../../include/functions_reporting.php:2130 +msgid "Monitors BAD" +msgstr "" + +#: ../../include/functions_reporting.php:2202 +#, php-format +msgid "Agents in group: %s" +msgstr "" + +#: ../../include/functions_reporting.php:2295 +msgid "Last failure" +msgstr "" + +#: ../../include/functions_reporting.php:2359 +msgid "N/A(*)" +msgstr "" + +#: ../../include/functions_reporting.php:2391 +#: ../../include/functions_reporting.php:4351 +msgid "Monitors" +msgstr "" + +#: ../../include/functions_reporting.php:2793 +#: ../../include/functions_agents.php:2015 +#: ../../include/functions_agents.php:2032 +msgid "At least one module in CRITICAL status" +msgstr "" + +#: ../../include/functions_reporting.php:2797 +#: ../../include/functions_agents.php:2018 +#: ../../include/functions_agents.php:2035 +msgid "At least one module in WARNING status" +msgstr "" + +#: ../../include/functions_reporting.php:2801 +#: ../../include/functions_agents.php:2021 +#: ../../include/functions_agents.php:2038 +msgid "At least one module is in UKNOWN status" +msgstr "" + +#: ../../include/functions_reporting.php:3234 +msgid "Max/Min Values" +msgstr "" + +#: ../../include/functions_reporting.php:3254 +#: ../../include/functions_reporting.php:3338 +msgid "Plannified downtime" +msgstr "" + +#: ../../include/functions_reporting.php:3842 +msgid "" +"Due security restrictions, there are some tokens or words you cannot use" +msgstr "" + +#: ../../include/functions_reporting.php:3843 +msgid "or" +msgstr "" + +#: ../../include/functions_reporting.php:4014 +msgid "Module detailed event" +msgstr "" + +#: ../../include/functions_reporting.php:4523 +#: ../../include/functions_reporting.php:4563 +msgid "Minimal" +msgstr "" + +#: ../../include/functions_reporting.php:4526 +#: ../../include/functions_reporting.php:4566 +msgid "Maximun" +msgstr "" + +#: ../../include/functions_reporting.php:4530 +#: ../../include/functions_reporting.php:4570 +msgid "Average" +msgstr "" + +#: ../../include/functions_reporting.php:5010 +msgid "Insuficient data" +msgstr "" + +#: ../../include/functions_reporting.php:5187 +msgid "Modules under or equal to" +msgstr "" + +#: ../../include/functions_reporting.php:5193 +#: ../../include/functions_reporting.php:5394 +msgid "Modules over" +msgstr "" + +#: ../../include/functions_reporting.php:5196 +#: ../../include/functions_alerts.php:552 +msgid "Equal to" +msgstr "" + +#: ../../include/functions_reporting.php:5199 +#: ../../include/functions_alerts.php:553 +msgid "Not equal to" +msgstr "" + +#: ../../include/functions_reporting.php:5388 +msgid "Modules less or equal to" +msgstr "" + +#: ../../include/functions_reporting.php:5391 +msgid "Modules less" +msgstr "" + +#: ../../include/functions_reporting.php:5397 +msgid "Modules equal to" +msgstr "" + +#: ../../include/functions_reporting.php:5400 +msgid "Modules not equal to" +msgstr "" + +#: ../../include/functions_reporting.php:5403 +msgid "Modules normal status" +msgstr "" + +#: ../../include/functions_reporting.php:5592 +#: ../../extensions/agents_modules.php:167 +msgid "There are no agents with modules" +msgstr "" + +#: ../../include/functions_reporting.php:5800 +msgid "Agent configuration: " +msgstr "" + +#: ../../include/functions_reporting.php:5849 +#: ../../include/functions_reporting.php:5995 +msgid " MODULES" +msgstr "" + +#: ../../include/functions_reporting.php:5929 +msgid "Group configuration: " +msgstr "" + +#: ../../include/functions_reporting.php:6740 +#, php-format +msgid "%d Total modules" +msgstr "" + +#: ../../include/functions_reporting.php:6741 +#, php-format +msgid "%d Normal modules" +msgstr "" + +#: ../../include/functions_reporting.php:6742 +#, php-format +msgid "%d Critical modules" +msgstr "" + +#: ../../include/functions_reporting.php:6743 +#, php-format +msgid "%d Warning modules" +msgstr "" + +#: ../../include/functions_reporting.php:6744 +#, php-format +msgid "%d Unknown modules" +msgstr "" + +#: ../../include/functions_reporting.php:6748 +#, php-format +msgid "%d Total agents" +msgstr "" + +#: ../../include/functions_reporting.php:6749 +#, php-format +msgid "%d Normal agents" +msgstr "" + +#: ../../include/functions_reporting.php:6750 +#, php-format +msgid "%d Critical agents" +msgstr "" + +#: ../../include/functions_reporting.php:6751 +#, php-format +msgid "%d Warning agents" +msgstr "" + +#: ../../include/functions_reporting.php:6752 +#, php-format +msgid "%d Unknown agents" +msgstr "" + +#: ../../include/functions_db.php:74 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "" + +#: ../../include/functions_db.php:1044 ../../godmode/db/db_refine.php:33 +#: ../../godmode/menu.php:240 +msgid "Database debug" +msgstr "" + +#: ../../include/functions_db.php:1060 +msgid "SQL sentence" +msgstr "" + +#: ../../include/functions_db.php:1061 +msgid "Result" +msgstr "" + +#: ../../include/functions_db.php:1062 +msgid "Rows" +msgstr "" + +#: ../../include/functions_db.php:1063 +msgid "Saved" +msgstr "" + +#: ../../include/functions_db.php:1064 +msgid "Time (ms)" +msgstr "" + +#: ../../include/functions.php:152 +msgid "You don't have enough permission to access this resource" +msgstr "" + +#: ../../include/functions.php:169 ../../include/functions.php:173 +msgid "Unmanaged error" +msgstr "" + +#: ../../include/functions.php:246 +msgid "." +msgstr "" + +#: ../../include/functions.php:248 +msgid "," +msgstr "" + +#: ../../include/functions.php:430 ../../include/functions_html.php:608 +#: ../../godmode/db/db_main.php:82 ../../godmode/db/db_main.php:88 +#: ../../godmode/setup/setup_visuals.php:96 +msgid "days" +msgstr "" + +#: ../../include/functions.php:431 ../../include/functions_html.php:610 +#: ../../godmode/setup/setup_visuals.php:97 +msgid "months" +msgstr "" + +#: ../../include/functions.php:432 ../../include/functions_html.php:611 +#: ../../godmode/setup/setup_visuals.php:98 +msgid "years" +msgstr "" + +#: ../../include/functions.php:433 ../../include/functions_html.php:606 +#: ../../godmode/setup/setup_visuals.php:94 +msgid "minutes" +msgstr "" + +#: ../../include/functions.php:434 ../../include/functions_html.php:607 +#: ../../godmode/setup/setup_visuals.php:95 +msgid "hours" +msgstr "" + +#: ../../include/functions.php:438 +msgid "s" +msgstr "" + +#: ../../include/functions.php:439 +msgid "d" +msgstr "" + +#: ../../include/functions.php:440 +msgid "M" +msgstr "" + +#: ../../include/functions.php:441 +msgid "Y" +msgstr "" + +#: ../../include/functions.php:442 +msgid "m" +msgstr "" + +#: ../../include/functions.php:443 +msgid "h" +msgstr "" + +#: ../../include/functions.php:444 +msgid "N" +msgstr "" + +#: ../../include/functions.php:724 ../../include/functions.php:912 +#: ../../include/functions.php:956 ../../include/functions_graph.php:2173 +#: ../../include/functions_graph.php:2174 +msgid "Minor" +msgstr "" + +#: ../../include/functions.php:727 ../../include/functions.php:914 +#: ../../include/functions.php:959 ../../include/functions_graph.php:2181 +#: ../../include/functions_graph.php:2182 +msgid "Major" +msgstr "" + +#: ../../include/functions.php:876 +msgid "Monitor Unknown" +msgstr "" + +#: ../../include/functions.php:885 +msgid "Configuration change " +msgstr "" + +#: ../../include/functions.php:1664 +msgid "custom" +msgstr "" + +#: ../../include/functions.php:1669 ../../include/functions.php:1670 +#, php-format +msgid "%s minutes" +msgstr "" + +#: ../../include/functions.php:1672 ../../include/functions.php:1673 +#, php-format +msgid "%s hours" +msgstr "" + +#: ../../include/functions.php:1675 ../../include/functions_netflow.php:888 +#: ../../include/ajax/module.php:82 +msgid "1 week" +msgstr "" + +#: ../../include/functions.php:1678 ../../include/functions.php:1679 +#, php-format +msgid "%s months" +msgstr "" + +#: ../../include/functions.php:1681 ../../include/functions.php:1682 +#, php-format +msgid "%s years" +msgstr "" + +#: ../../include/functions.php:1685 +msgid "Default values will be used" +msgstr "" + +#: ../../include/get_file.php:47 +msgid "Security error. Please contact the administrator." +msgstr "" + +#: ../../include/get_file.php:55 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" + +#: ../../include/functions_servers.php:325 +msgid "Data server" +msgstr "" + +#: ../../include/functions_servers.php:330 +msgid "Network server" +msgstr "" + +#: ../../include/functions_servers.php:335 +msgid "SNMP Trap server" +msgstr "" + +#: ../../include/functions_servers.php:340 +#: ../../godmode/servers/manage_recontask_form.php:153 +msgid "Recon server" +msgstr "" + +#: ../../include/functions_servers.php:345 +msgid "Plugin server" +msgstr "" + +#: ../../include/functions_servers.php:350 +msgid "Prediction server" +msgstr "" + +#: ../../include/functions_servers.php:355 +msgid "WMI server" +msgstr "" + +#: ../../include/functions_servers.php:365 +msgid "Inventory server" +msgstr "" + +#: ../../include/functions_servers.php:370 +msgid "Web server" +msgstr "" + +#: ../../include/functions_servers.php:375 +msgid "Event server" +msgstr "" + +#: ../../include/functions_servers.php:380 +msgid "Enterprise ICMP server" +msgstr "" + +#: ../../include/functions_servers.php:385 +msgid "Enterprise SNMP server" +msgstr "" + +#: ../../include/functions_netflow.php:356 +msgid "Total flows" +msgstr "" + +#: ../../include/functions_netflow.php:358 +msgid "Total bytes" +msgstr "" + +#: ../../include/functions_netflow.php:360 +msgid "Total packets" +msgstr "" + +#: ../../include/functions_netflow.php:362 +msgid "Average bits per second" +msgstr "" + +#: ../../include/functions_netflow.php:364 +msgid "Average packets per second" +msgstr "" + +#: ../../include/functions_netflow.php:366 +msgid "Average bytes per packet" +msgstr "" + +#: ../../include/functions_netflow.php:828 +msgid "Area graph" +msgstr "" + +#: ../../include/functions_netflow.php:829 +msgid "Pie graph and Summary table" +msgstr "" + +#: ../../include/functions_netflow.php:830 +msgid "Statistics table" +msgstr "" + +#: ../../include/functions_netflow.php:844 +#: ../../include/functions_netflow.php:877 +msgid "10 mins" +msgstr "" + +#: ../../include/functions_netflow.php:845 +#: ../../include/functions_netflow.php:878 +msgid "15 mins" +msgstr "" + +#: ../../include/functions_netflow.php:846 +#: ../../include/functions_netflow.php:879 +msgid "30 mins" +msgstr "" + +#: ../../include/functions_netflow.php:853 +#: ../../include/functions_netflow.php:886 +msgid "5 days" +msgstr "" + +#: ../../include/functions_netflow.php:858 ../../include/ajax/module.php:85 +msgid "3 months" +msgstr "" + +#: ../../include/functions_netflow.php:860 +msgid "Last year" +msgstr "" + +#: ../../include/functions_netflow.php:861 ../../include/ajax/module.php:88 +msgid "2 years" +msgstr "" + +#: ../../include/functions_netflow.php:874 +msgid "1 min" +msgstr "" + +#: ../../include/functions_netflow.php:875 +msgid "2 mins" +msgstr "" + +#: ../../include/functions_netflow.php:876 +msgid "5 mins" +msgstr "" + +#: ../../include/functions_netflow.php:921 +#: ../../include/functions_netflow.php:930 +#: ../../include/functions_netflow.php:979 +#: ../../include/functions_netflow.php:1035 +#: ../../include/functions_netflow.php:1041 +#: ../../include/functions_netflow.php:1074 +msgid "Aggregate" +msgstr "" + +#: ../../include/functions_netflow.php:1113 +msgid "Error generating report" +msgstr "" + +#: ../../include/functions_netflow.php:1310 +msgid "MB" +msgstr "" + +#: ../../include/functions_netflow.php:1312 +msgid "MB/s" +msgstr "" + +#: ../../include/functions_netflow.php:1314 +msgid "kB" +msgstr "" + +#: ../../include/functions_netflow.php:1316 +msgid "kB/s" +msgstr "" + +#: ../../include/functions_netflow.php:1320 +msgid "B/s" +msgstr "" + +#: ../../include/functions_netflow.php:1334 +msgid "Dst port" +msgstr "" + +#: ../../include/functions_netflow.php:1336 +msgid "Dst IP" +msgstr "" + +#: ../../include/functions_netflow.php:1340 +msgid "Src IP" +msgstr "" + +#: ../../include/functions_netflow.php:1342 +msgid "Src port" +msgstr "" + +#: ../../include/functions_alerts.php:549 +msgid "Max and min" +msgstr "" + +#: ../../include/functions_alerts.php:556 +msgid "Unknown status" +msgstr "" + +#: ../../include/functions_alerts.php:557 +msgid "On Change" +msgstr "" + +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:54 +#: ../../include/functions_graph.php:1810 +msgid "Informative" +msgstr "" + +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:57 +#: ../../include/functions_graph.php:1811 +msgid "Low" +msgstr "" + +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:60 +#: ../../include/functions_graph.php:1812 +msgid "Medium" +msgstr "" + +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:63 +#: ../../include/functions_graph.php:1813 +msgid "Serious" +msgstr "" + +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:66 +#: ../../include/functions_graph.php:1814 +msgid "Very serious" +msgstr "" + +#: ../../include/functions_incidents.php:87 +#: ../../include/functions_incidents.php:106 +msgid "Active incidents" +msgstr "" + +#: ../../include/functions_incidents.php:88 +#: ../../include/functions_incidents.php:109 +msgid "Active incidents, with comments" +msgstr "" + +#: ../../include/functions_incidents.php:89 +#: ../../include/functions_incidents.php:112 +msgid "Rejected incidents" +msgstr "" + +#: ../../include/functions_incidents.php:90 +#: ../../include/functions_incidents.php:115 +msgid "Expired incidents" +msgstr "" + +#: ../../include/functions_incidents.php:91 +#: ../../include/functions_incidents.php:118 +msgid "Closed incidents" +msgstr "" + +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 +#: ../../include/functions_gis.php:36 +msgid "Hierarchy of agents" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:53 +#: ../../include/functions_visual_map_editor.php:164 +#: ../../godmode/reporting/visual_console_builder.data.php:90 +#: ../../godmode/reporting/visual_console_builder.elements.php:85 +msgid "Background" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:54 +#: ../../include/functions_visual_map_editor.php:351 +#: ../../godmode/reporting/visual_console_builder.wizard.php:77 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +msgid "Static Graph" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:55 +#: ../../include/functions_visual_map_editor.php:352 +#: ../../godmode/reporting/visual_console_builder.wizard.php:78 +msgid "Percentile Item" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:56 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:353 +#: ../../mobile/operation/events.php:449 +#: ../../godmode/reporting/visual_console_builder.elements.php:116 +msgid "Module Graph" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:58 +#: ../../godmode/reporting/visual_console_builder.wizard.php:80 +msgid "Simple value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:82 +#: ../../include/functions_visual_map_editor.php:88 +#: ../../include/functions_visual_map_editor.php:355 +#: ../../include/functions_visual_map.php:1845 +#: ../../godmode/reporting/visual_console_builder.wizard.php:174 +#: ../../godmode/reporting/visual_console_builder.elements.php:58 +#: ../../godmode/reporting/visual_console_builder.elements.php:131 +msgid "Label" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:94 +#: ../../godmode/reporting/visual_console_builder.wizard.php:89 +#: ../../godmode/reporting/visual_console_builder.elements.php:59 +msgid "Image" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:102 +msgid "Enable link" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:156 +#: ../../godmode/reporting/visual_console_builder.wizard.php:114 +msgid "Min value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:157 +#: ../../include/functions_visual_map_editor.php:194 +#: ../../godmode/reporting/visual_console_builder.wizard.php:115 +#: ../../godmode/reporting/visual_console_builder.wizard.php:126 +msgid "Max value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:158 +#: ../../godmode/reporting/visual_console_builder.wizard.php:116 +msgid "Avg value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:170 +msgid "Original Size" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:176 +msgid "Aspect ratio" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:177 +msgid "Width proportional" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:183 +msgid "Height proportional" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:209 +#: ../../godmode/reporting/visual_console_builder.wizard.php:139 +msgid "Value to show" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:277 +#: ../../godmode/reporting/reporting_builder.list_items.php:242 +#: ../../godmode/reporting/visual_console_builder.elements.php:61 +msgid "Position" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:288 +msgid "For use the original image file size, set 0 width and 0 height." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:312 +#: ../../godmode/reporting/visual_console_builder.elements.php:62 +msgid "Map linked" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:324 +msgid "Label color" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:354 +#: ../../include/functions_visual_map.php:1841 +#: ../../godmode/reporting/visual_console_builder.elements.php:119 +msgid "Simple Value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:360 +msgid "Auto Save" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:363 +msgid "Show grid" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:365 +msgid "Delete item" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:390 +msgid "No image or name defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:391 +msgid "No label defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:392 +msgid "No image defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:393 +msgid "No process defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:394 +msgid "No Max value defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:395 +msgid "No width defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:396 +msgid "No period defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:397 +msgid "No agent defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:398 +msgid "No module defined." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:400 +msgid "Successfully save the changes." +msgstr "" + +#: ../../include/functions_visual_map_editor.php:401 +msgid "Could not be save" +msgstr "" + +#: ../../include/functions_filemanager.php:159 +#: ../../include/functions_filemanager.php:216 +#: ../../include/functions_filemanager.php:268 +#: ../../include/functions_filemanager.php:349 +msgid "Security error" +msgstr "" + +#: ../../include/functions_filemanager.php:172 +msgid "Upload error" +msgstr "" + +#: ../../include/functions_filemanager.php:176 +#: ../../include/functions_filemanager.php:231 +#: ../../include/functions_filemanager.php:293 +msgid "Upload correct" +msgstr "" + +#: ../../include/functions_filemanager.php:228 +msgid "Error creating file" +msgstr "" + +#: ../../include/functions_filemanager.php:237 +#: ../../include/functions_filemanager.php:329 +msgid "Error creating file with empty name" +msgstr "" + +#: ../../include/functions_filemanager.php:279 +msgid "Attach error" +msgstr "" + +#: ../../include/functions_filemanager.php:324 +msgid "Directory created" +msgstr "" + +#: ../../include/functions_filemanager.php:473 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "" + +#: ../../include/functions_filemanager.php:496 +msgid "Last modification" +msgstr "" + +#: ../../include/functions_filemanager.php:512 +msgid "Parent directory" +msgstr "" + +#: ../../include/functions_filemanager.php:538 +#: ../../include/functions_filemanager.php:682 +#: ../../include/functions_filemanager.php:756 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "" + +#: ../../include/functions_filemanager.php:541 +msgid "Decompress" +msgstr "" + +#: ../../include/functions_filemanager.php:643 +msgid "Create directory" +msgstr "" + +#: ../../include/functions_filemanager.php:646 +msgid "Create text" +msgstr "" + +#: ../../include/functions_filemanager.php:649 +msgid "Upload file/s" +msgstr "" + +#: ../../include/functions_filemanager.php:655 +msgid "The directory is read-only" +msgstr "" + +#: ../../include/functions_filemanager.php:676 +#: ../../include/functions_filemanager.php:714 +#: ../../include/functions_filemanager.php:750 +#: ../../include/functions_filemanager.php:786 +msgid "Current directory is not writable by HTTP Server" +msgstr "" + +#: ../../include/functions_filemanager.php:678 +#: ../../include/functions_filemanager.php:716 +#: ../../include/functions_filemanager.php:752 +#: ../../include/functions_filemanager.php:788 +msgid "Please check that current directory has write rights for HTTP server" +msgstr "" + +#: ../../include/functions_filemanager.php:684 +msgid "Multiple files zipped" +msgstr "" + +#: ../../include/functions_filemanager.php:685 +msgid "One" +msgstr "" + +#: ../../include/functions_filemanager.php:756 +msgid "Upload zip file: " +msgstr "" + +#: ../../include/functions_filemanager.php:792 +msgid "Create text file: " +msgstr "" + +#: ../../include/functions_reports.php:505 +msgid "SQL vertical bar graph" +msgstr "" + +#: ../../include/functions_reports.php:507 +msgid "SQL pie graph" +msgstr "" + +#: ../../include/functions_reports.php:509 +msgid "SQL horizonal bar graph" +msgstr "" + +#: ../../include/functions_reports.php:513 +msgid "Automatic combined Graph" +msgstr "" + +#: ../../include/functions_reports.php:518 +#: ../../include/functions_reports.php:520 +#: ../../include/functions_reports.php:522 +#: ../../include/functions_reports.php:524 +msgid "ITIL" +msgstr "" + +#: ../../include/functions_reports.php:534 +#: ../../include/functions_reports.php:536 +msgid "Forecasting" +msgstr "" + +#: ../../include/functions_reports.php:556 +#: ../../include/functions_reports.php:558 +#: ../../include/functions_reports.php:560 +#: ../../include/functions_reports.php:563 +#: ../../include/functions_reports.php:567 +#: ../../include/functions_reports.php:570 +msgid "Grouped" +msgstr "" + +#: ../../include/functions_reports.php:568 +#: ../../godmode/reporting/reporting_builder.item_editor.php:896 +msgid "SQL query" +msgstr "" + +#: ../../include/functions_reports.php:575 +#: ../../include/functions_reports.php:577 +msgid "Text/HTML " +msgstr "" + +#: ../../include/functions_reports.php:592 +msgid "Event report agent" +msgstr "" + +#: ../../include/functions_reports.php:594 +msgid "Event report module" +msgstr "" + +#: ../../include/functions_reports.php:596 +msgid "Event report group" +msgstr "" + +#: ../../include/functions_reports.php:613 +msgid "Netflow area chart" +msgstr "" + +#: ../../include/functions_reports.php:615 +msgid "Netflow pie chart" +msgstr "" + +#: ../../include/functions_reports.php:617 +msgid "Netflow data table" +msgstr "" + +#: ../../include/functions_reports.php:619 +msgid "Netflow statistics table" +msgstr "" + +#: ../../include/functions_reports.php:621 +msgid "Netflow summary table" +msgstr "" + +#: ../../include/functions_graph.php:639 +msgid "Units. Value" +msgstr "" + +#: ../../include/functions_graph.php:955 +#, php-format +msgid "projection for %s" +msgstr "" + +#: ../../include/functions_graph.php:1626 +#: ../../include/functions_graph.php:1632 +#: ../../include/functions_graph.php:1638 +#: ../../include/functions_graph.php:1646 +msgid "Today" +msgstr "" + +#: ../../include/functions_graph.php:1627 +#: ../../include/functions_graph.php:1633 +#: ../../include/functions_graph.php:1639 +#: ../../include/functions_graph.php:1646 +msgid "Week" +msgstr "" + +#: ../../include/functions_graph.php:1628 +#: ../../include/functions_graph.php:1634 +#: ../../include/functions_graph.php:1640 +#: ../../include/functions_graph.php:1647 ../../include/functions_html.php:717 +msgid "Month" +msgstr "" + +#: ../../include/functions_graph.php:1629 +#: ../../include/functions_graph.php:1635 +#: ../../include/functions_graph.php:1641 +#: ../../include/functions_graph.php:1644 +#: ../../include/functions_graph.php:1647 +msgid "Months" +msgstr "" + +#: ../../include/functions_graph.php:1630 +#: ../../include/functions_graph.php:1636 +#: ../../include/functions_graph.php:1642 +#: ../../include/functions_graph.php:1644 +#: ../../include/functions_graph.php:1647 +msgid "Older" +msgstr "" + +#: ../../include/functions_graph.php:1831 +#: ../../include/functions_graph.php:1843 +msgid "Open incident" +msgstr "" + +#: ../../include/functions_graph.php:1832 +#: ../../include/functions_graph.php:1845 +msgid "Closed incident" +msgstr "" + +#: ../../include/functions_graph.php:1833 +#: ../../include/functions_graph.php:1847 +msgid "Outdated" +msgstr "" + +#: ../../include/functions_graph.php:2790 +msgid "Units" +msgstr "" + +#: ../../include/functions_graph.php:3070 +msgid "Avg." +msgstr "" + +#: ../../include/functions_graph.php:3862 +msgid "No data to show" +msgstr "" + +#: ../../include/functions_custom_graphs.php:101 +msgid "Empty graph" +msgstr "" + +#: ../../include/functions_agents.php:99 +msgid "Agent keepalive monitor" +msgstr "" + +#: ../../include/functions_agents.php:472 +#: ../../godmode/massive/massive_copy_modules.php:350 +msgid "No source agent to copy" +msgstr "" + +#: ../../include/functions_agents.php:477 +#: ../../godmode/massive/massive_copy_modules.php:368 +msgid "No destiny agent(s) to copy" +msgstr "" + +#: ../../include/functions_agents.php:502 ../../godmode/db/db_refine.php:47 +#: ../../godmode/massive/massive_copy_modules.php:363 +msgid "No modules have been selected" +msgstr "" + +#: ../../include/functions_agents.php:607 +msgid "" +"There was an error copying the agent configuration, the copy has been " +"cancelled" +msgstr "" + +#: ../../include/functions_treeview.php:140 +msgid "There was a problem loading alerts" +msgstr "" + +#: ../../include/functions_treeview.php:178 +msgid "Go to alerts detail" +msgstr "" + +#: ../../include/functions_treeview.php:416 +msgid "There aren't agents in this agrupation" +msgstr "" + +#: ../../include/auth/mysql.php:471 +msgid "Your installation of PHP does not support LDAP" +msgstr "" + +#: ../../include/functions_visual_map.php:435 +msgid "Agent successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:569 +msgid "Modules successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:697 +msgid "Agents successfully added to layout" +msgstr "" + +#: ../../include/functions_visual_map.php:1832 +msgid "Percentile bar" +msgstr "" + +#: ../../include/functions_visual_map.php:1836 +msgid "Static graph" +msgstr "" + +#: ../../include/graphs/functions_flot.php:231 +msgid "Cancel zoom" +msgstr "" + +#: ../../include/graphs/functions_flot.php:233 +msgid "Warning and Critical thresholds" +msgstr "" + +#: ../../include/graphs/functions_flot.php:235 +msgid "Overview graph" +msgstr "" + +#: ../../include/functions_html.php:609 +msgid "weeks" +msgstr "" + +#: ../../include/functions_html.php:716 +msgid "Month day" +msgstr "" + +#: ../../include/functions_html.php:718 +msgid "Week day" +msgstr "" + +#: ../../include/functions_html.php:1910 +msgid "Type at least two characters to search the module." +msgstr "" + +#: ../../include/functions_networkmap.php:1038 +msgid "Create a new topology map" +msgstr "" + +#: ../../include/functions_networkmap.php:1039 +msgid "Create a new group map" +msgstr "" + +#: ../../include/functions_config.php:85 +msgid "Failed updated: User did not login." +msgstr "" + +#: ../../include/functions_config.php:93 +msgid "Failed updated: User is not admin." +msgstr "" + +#: ../../include/functions_config.php:122 +#: ../../godmode/setup/setup_general.php:53 +msgid "Remote config directory" +msgstr "" + +#: ../../include/functions_config.php:129 +#: ../../godmode/setup/setup_general.php:66 +msgid "Automatic check for updates" +msgstr "" + +#: ../../include/functions_config.php:135 +#: ../../godmode/setup/setup_general.php:77 +msgid "IP list with API access" +msgstr "" + +#: ../../include/functions_config.php:137 +#: ../../include/functions_config.php:145 +#: ../../godmode/setup/setup_general.php:144 +msgid "Integria API password" +msgstr "" + +#: ../../include/functions_config.php:139 +#: ../../godmode/setup/setup_general.php:90 +msgid "Enable GIS features in Pandora Console" +msgstr "" + +#: ../../include/functions_config.php:141 +#: ../../godmode/setup/setup_general.php:94 +msgid "Enable Integria incidents in Pandora Console" +msgstr "" + +#: ../../include/functions_config.php:143 +#: ../../godmode/setup/setup_general.php:161 +msgid "Integria inventory" +msgstr "" + +#: ../../include/functions_config.php:147 +#: ../../godmode/setup/setup_general.php:137 +msgid "Integria URL" +msgstr "" + +#: ../../include/functions_config.php:149 +#: ../../godmode/setup/setup_general.php:98 +msgid "Enable Netflow" +msgstr "" + +#: ../../include/functions_config.php:156 +#: ../../godmode/setup/setup_general.php:193 +msgid "Sound for Alert fired" +msgstr "" + +#: ../../include/functions_config.php:158 +#: ../../godmode/setup/setup_general.php:198 +msgid "Sound for Monitor critical" +msgstr "" + +#: ../../include/functions_config.php:160 +#: ../../godmode/setup/setup_general.php:203 +msgid "Sound for Monitor warning" +msgstr "" + +#: ../../include/functions_config.php:177 +#: ../../godmode/setup/setup_general.php:220 +msgid "Referer security" +msgstr "" + +#: ../../include/functions_config.php:179 +#: ../../godmode/setup/setup_general.php:228 +msgid "Event storm protection" +msgstr "" + +#: ../../include/functions_config.php:181 +#: ../../godmode/setup/setup_general.php:237 +msgid "Command Snapshot" +msgstr "" + +#: ../../include/functions_config.php:211 +msgid "Show events list in local console (read only)" +msgstr "" + +#: ../../include/functions_config.php:252 +#: ../../godmode/setup/setup_auth.php:37 +msgid "Authentication method" +msgstr "" + +#: ../../include/functions_config.php:254 +#: ../../godmode/setup/setup_auth.php:42 +msgid "Autocreate remote users" +msgstr "" + +#: ../../include/functions_config.php:256 +#: ../../godmode/setup/setup_auth.php:46 +msgid "Autocreate profile" +msgstr "" + +#: ../../include/functions_config.php:258 +#: ../../godmode/setup/setup_auth.php:52 +msgid "Autocreate profile group" +msgstr "" + +#: ../../include/functions_config.php:260 +#: ../../godmode/setup/setup_auth.php:54 +msgid "Autocreate blacklist" +msgstr "" + +#: ../../include/functions_config.php:272 +#: ../../godmode/setup/setup_auth.php:61 +msgid "LDAP server" +msgstr "" + +#: ../../include/functions_config.php:274 +#: ../../godmode/setup/setup_auth.php:63 +msgid "LDAP port" +msgstr "" + +#: ../../include/functions_config.php:276 +#: ../../godmode/setup/setup_auth.php:65 +msgid "LDAP version" +msgstr "" + +#: ../../include/functions_config.php:280 +#: ../../godmode/setup/setup_auth.php:71 +msgid "Base DN" +msgstr "" + +#: ../../include/functions_config.php:282 +#: ../../godmode/setup/setup_auth.php:73 +msgid "Login attribute" +msgstr "" + +#: ../../include/functions_config.php:326 +#: ../../godmode/setup/performance.php:48 +msgid "Max. days before delete traps" +msgstr "" + +#: ../../include/functions_config.php:328 +#: ../../godmode/setup/performance.php:54 +msgid "Max. days before delete string data" +msgstr "" + +#: ../../include/functions_config.php:332 +#: ../../godmode/setup/performance.php:57 +msgid "Max. days before delete GIS data" +msgstr "" + +#: ../../include/functions_config.php:334 +#: ../../godmode/setup/performance.php:60 +msgid "Max. days before purge" +msgstr "" + +#: ../../include/functions_config.php:336 +#: ../../godmode/setup/performance.php:66 +msgid "Max. days before delete unknown modules" +msgstr "" + +#: ../../include/functions_config.php:338 +#: ../../godmode/setup/performance.php:63 +msgid "Max. days before compact data" +msgstr "" + +#: ../../include/functions_config.php:340 +#: ../../godmode/setup/performance.php:76 +msgid "Compact interpolation in hours (1 Fine-20 bad)" +msgstr "" + +#: ../../include/functions_config.php:342 +#: ../../godmode/setup/performance.php:90 +msgid "SLA period (seconds)" +msgstr "" + +#: ../../include/functions_config.php:346 +#: ../../godmode/setup/performance.php:96 +msgid "Use realtime statistics" +msgstr "" + +#: ../../include/functions_config.php:348 +#: ../../godmode/setup/performance.php:100 +msgid "Batch statistics period (secs)" +msgstr "" + +#: ../../include/functions_config.php:354 +#: ../../godmode/setup/performance.php:107 +msgid "Max. recommended number of files in attachment directory" +msgstr "" + +#: ../../include/functions_config.php:376 +#: ../../godmode/setup/setup_visuals.php:116 +msgid "Style template" +msgstr "" + +#: ../../include/functions_config.php:382 +#: ../../godmode/setup/setup_visuals.php:132 +msgid "Status icon set" +msgstr "" + +#: ../../include/functions_config.php:384 +#: ../../godmode/setup/setup_visuals.php:140 +msgid "Font path" +msgstr "" + +#: ../../include/functions_config.php:392 +#: ../../godmode/setup/setup_visuals.php:188 +msgid "Default interval for refresh on Visual Console" +msgstr "" + +#: ../../include/functions_config.php:394 +#: ../../include/functions_config.php:396 +#: ../../godmode/setup/setup_visuals.php:193 +msgid "Agent size text" +msgstr "" + +#: ../../include/functions_config.php:398 +#: ../../godmode/setup/setup_visuals.php:199 +msgid "Module size text" +msgstr "" + +#: ../../include/functions_config.php:400 +#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_visuals.php:205 +msgid "Description size text" +msgstr "" + +#: ../../include/functions_config.php:404 +#: ../../godmode/setup/setup_visuals.php:210 +msgid "Item title size text" +msgstr "" + +#: ../../include/functions_config.php:406 +#: ../../godmode/setup/setup_visuals.php:215 +msgid "GIS Labels" +msgstr "" + +#: ../../include/functions_config.php:408 +#: ../../godmode/setup/setup_visuals.php:228 +msgid "Default icon in GIS" +msgstr "" + +#: ../../include/functions_config.php:444 +#: ../../godmode/setup/setup_visuals.php:106 +msgid "Delete interval" +msgstr "" + +#: ../../include/functions_config.php:449 +#: ../../godmode/setup/setup_netflow.php:43 +msgid "Data storage path" +msgstr "" + +#: ../../include/functions_config.php:451 +#: ../../godmode/setup/setup_netflow.php:46 +msgid "Daemon interval" +msgstr "" + +#: ../../include/functions_config.php:453 +#: ../../godmode/setup/setup_netflow.php:48 +msgid "Daemon binary path" +msgstr "" + +#: ../../include/functions_config.php:455 +#: ../../godmode/setup/setup_netflow.php:50 +msgid "Nfdump binary path" +msgstr "" + +#: ../../include/functions_config.php:457 +#: ../../godmode/setup/setup_netflow.php:52 +msgid "Nfexpire binary path" +msgstr "" + +#: ../../include/functions_config.php:459 +#: ../../godmode/setup/setup_netflow.php:54 +msgid "Maximum chart resolution" +msgstr "" + +#: ../../include/functions_config.php:463 +#: ../../include/functions_config.php:467 +#: ../../godmode/setup/setup_netflow.php:60 +msgid "Netflow max lifetime" +msgstr "" + +#: ../../include/functions_config.php:469 +msgid "Log max lifetime" +msgstr "" + +#: ../../include/functions_config.php:501 +#, php-format +msgid "Failed updated: the next values cannot update: %s" +msgstr "" + +#: ../../include/functions_config.php:1096 +msgid "Default password for \"Admin\" user has not been changed." +msgstr "" + +#: ../../include/functions_config.php:1096 +msgid "" +"Please change the default password because is a common vulnerability " +"reported." +msgstr "" + +#: ../../include/functions_config.php:1104 +msgid "Attachment directory is not writable by HTTP Server" +msgstr "" + +#: ../../include/functions_config.php:1104 +msgid "" +"Please check that the web server has write rights on the " +"{HOMEDIR}/attachment directory" +msgstr "" + +#: ../../include/functions_config.php:1115 +#: ../../include/functions_config.php:1123 +#: ../../include/functions_config.php:1131 +msgid "Remote configuration directory is not writtable for the console" +msgstr "" + +#: ../../include/functions_config.php:1143 +msgid "Too much files in your tempora/attachment directory" +msgstr "" + +#: ../../include/functions_config.php:1144 +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:1144 +msgid "files" +msgstr "" + +#: ../../include/functions_config.php:1161 +msgid "Database maintance problem" +msgstr "" + +#: ../../include/functions_config.php:1162 +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:1170 +msgid "Default font doesnt exist" +msgstr "" + +#: ../../include/functions_config.php:1171 +msgid "" +"Your defined font doesnt exist or is not defined. Please check font " +"parameters in your config" +msgstr "" + +#: ../../include/functions_config.php:1180 +msgid "Developer mode is enabled" +msgstr "" + +#: ../../include/functions_config.php:1181 +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:1191 +msgid "Error first setup Open update" +msgstr "" + +#: ../../include/functions_config.php:1200 +msgid "New update of Pandora Console" +msgstr "" + +#: ../../include/functions_config.php:1201 +msgid "" +"There is a new update please go to menu operation and into extensions go to " +"Update Manager for more details." +msgstr "" + +#: ../../include/functions_menu.php:385 +msgid "Configure user" +msgstr "" + +#: ../../include/functions_menu.php:386 +msgid "Configure profile" +msgstr "" + +#: ../../include/functions_menu.php:388 +#: ../../godmode/servers/manage_recontask_form.php:125 +#: ../../godmode/servers/manage_recontask.php:32 ../../godmode/menu.php:177 +msgid "Manage recontask" +msgstr "" + +#: ../../include/functions_menu.php:390 +msgid "Module templates management" +msgstr "" + +#: ../../include/functions_menu.php:391 +msgid "Inventory modules management" +msgstr "" + +#: ../../include/functions_menu.php:392 +msgid "Tags management" +msgstr "" + +#: ../../include/functions_menu.php:394 +#: ../../godmode/users/profile_list.php:206 +msgid "Agents management" +msgstr "" + +#: ../../include/functions_menu.php:396 +msgid "View agent" +msgstr "" + +#: ../../include/functions_menu.php:398 +#: ../../godmode/alerts/configure_alert_template.php:68 +#: ../../godmode/alerts/configure_alert_template.php:87 +#: ../../godmode/alerts/configure_alert_template.php:105 +msgid "Configure alert template" +msgstr "" + +#: ../../include/functions_menu.php:400 +msgid "Manage network map" +msgstr "" + +#: ../../include/functions_menu.php:402 +msgid "View reporting" +msgstr "" + +#: ../../include/functions_menu.php:403 +msgid "View visual console" +msgstr "" + +#: ../../include/functions_menu.php:404 +msgid "Manage custom graphs" +msgstr "" + +#: ../../include/functions_menu.php:405 +msgid "Copy dashboard" +msgstr "" + +#: ../../include/functions_menu.php:408 +msgid "Manage GIS Maps" +msgstr "" + +#: ../../include/functions_menu.php:410 +msgid "Incidents statistics" +msgstr "" + +#: ../../include/functions_menu.php:411 +msgid "Manage messages" +msgstr "" + +#: ../../include/functions_menu.php:413 ../../godmode/menu.php:41 +msgid "Manage groups" +msgstr "" + +#: ../../include/functions_menu.php:414 +msgid "Manage module groups" +msgstr "" + +#: ../../include/functions_menu.php:415 +msgid "Manage custom field" +msgstr "" + +#: ../../include/functions_menu.php:417 +msgid "Manage alert actions" +msgstr "" + +#: ../../include/functions_menu.php:418 +msgid "Manage commands" +msgstr "" + +#: ../../include/functions_menu.php:419 +msgid "Manage event alerts" +msgstr "" + +#: ../../include/functions_menu.php:421 +msgid "Manage export targets" +msgstr "" + +#: ../../include/functions_menu.php:423 +msgid "Manage services" +msgstr "" + +#: ../../include/functions_menu.php:429 +msgid "Manage incident" +msgstr "" + +#: ../../include/functions_menu.php:431 +msgid "Manage visual console" +msgstr "" + +#: ../../include/functions_users.php:361 +#, php-format +msgid "User %s login at %s" +msgstr "" + +#: ../../include/functions_users.php:422 +#, php-format +msgid "User %s was deleted in the DB at %s" +msgstr "" + +#: ../../include/functions_users.php:427 +#, php-format +msgid "User %s logout at %s" +msgstr "" + +#: ../../include/ajax/networkmap.ajax.php:107 +#: ../../include/ajax/networkmap.ajax.php:164 +msgid "Map summary" +msgstr "" + +#: ../../include/ajax/module.php:89 +msgid "3 years" +msgstr "" + +#: ../../include/ajax/module.php:91 +msgid "Select period:" +msgstr "" + +#: ../../include/ajax/events.php:145 +#, php-format +msgid "Executing command: %s" +msgstr "" + +#: ../../include/ajax/events.php:152 +msgid "Execute again" +msgstr "" + +#: ../../include/ajax/events.php:285 +msgid "Agent fields" +msgstr "" + +#: ../../include/ajax/events.php:289 ../../godmode/events/events.php:61 +msgid "Responses" +msgstr "" + +#: ../../include/ajax/events.php:349 +msgid "Error adding comment" +msgstr "" + +#: ../../include/ajax/events.php:350 +msgid "Comment added successfully" +msgstr "" + +#: ../../include/ajax/events.php:351 +msgid "Error changing event status" +msgstr "" + +#: ../../include/ajax/events.php:352 +msgid "Event status changed successfully" +msgstr "" + +#: ../../include/ajax/events.php:353 +msgid "Error changing event owner" +msgstr "" + +#: ../../include/ajax/events.php:354 +msgid "Event owner changed successfully" +msgstr "" + +#: ../../include/ajax/events.php:449 +msgid "Auto" +msgstr "" + +#: ../../include/functions_snmp_browser.php:145 +msgid "Target IP cannot be blank." +msgstr "" + +#: ../../include/functions_snmp_browser.php:307 +msgid "Numeric OID" +msgstr "" + +#: ../../include/functions_snmp_browser.php:323 +msgid "Syntax" +msgstr "" + +#: ../../include/functions_snmp_browser.php:328 +msgid "Display hint" +msgstr "" + +#: ../../include/functions_snmp_browser.php:333 +msgid "Max access" +msgstr "" + +#: ../../include/functions_snmp_browser.php:380 +#: ../../godmode/agentes/module_manager_editor_wmi.php:42 +#: ../../godmode/agentes/module_manager_editor_network.php:56 +#: ../../extensions/snmp_explorer.php:278 +msgid "Target IP" +msgstr "" + +#: ../../include/functions_snmp_browser.php:382 #: ../../godmode/snmpconsole/snmp_trap_generator.php:61 msgid "Community" msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:70 -msgid "SNMP Type" +#: ../../include/functions_snmp_browser.php:384 +msgid "Expand the tree" msgstr "" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 -msgid "Generate trap" +#: ../../include/functions_snmp_browser.php:384 +msgid "can be slow" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:30 -msgid "Create alert" +#: ../../include/functions_snmp_browser.php:385 +msgid "Collapse the tree" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:32 -#: ../../godmode/snmpconsole/snmp_alert.php:34 -msgid "Update alert" +#: ../../include/functions_snmp_browser.php:386 +msgid "Starting OID" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:72 -msgid "There was a problem creating the alert" +#: ../../include/functions_snmp_browser.php:388 +msgid "Search text" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:88 -msgid "There was a problem updating the alert" +#: ../../include/functions_snmp_browser.php:391 +msgid "First match" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:95 -msgid "Alert overview" +#: ../../include/functions_snmp_browser.php:392 +msgid "Previous match" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:142 -msgid "There was a problem deleting the alert" +#: ../../include/functions_snmp_browser.php:393 +msgid "Next match" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:156 -#: ../../godmode/snmpconsole/snmp_alert.php:285 -msgid "Alert action" +#: ../../include/functions_snmp_browser.php:394 +msgid "Last match" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:192 -msgid "Custom data" +#: ../../include/functions_snmp_browser.php:403 +msgid "Browse" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:206 -msgid "Field #1 (Alias, name)" +#: ../../include/functions_snmp_browser.php:413 +#: ../../godmode/agentes/module_manager_editor_network.php:22 +msgid "Search matches" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:212 -msgid "Field #2 (Single Line)" +#: ../../include/functions_api.php:73 +msgid "No set or get or help operation." msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:216 -msgid "Field #3 (Full Text)" +#: ../../include/functions_api.php:77 +msgid "This operation does not exist." msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:273 -msgid "There are no SNMP alerts" +#: ../../include/functions_api.php:81 +msgid "Id does not exist in BD." msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:294 -#: ../../godmode/snmpconsole/snmp_alert.php:317 -msgid "Custom Value/OID" +#: ../../include/functions_api.php:879 +msgid "Correct Delete" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:299 -#: ../../include/functions_reporting.php:1100 -#: ../../include/functions_reporting.php:1497 -msgid "Times fired" +#: ../../include/functions_api.php:1182 +msgid "Error in creation network module. Agent name doesn't exists." msgstr "" -#: ../../godmode/admin_access_logs.php:33 -msgid "Pandora audit" +#: ../../include/functions_api.php:1187 +msgid "" +"Error in creation network module. Id_module_type is not correct for network " +"modules." msgstr "" -#: ../../godmode/admin_access_logs.php:33 -msgid "Review Logs" +#: ../../include/functions_api.php:1223 +msgid "Error in creation network module." msgstr "" -#: ../../godmode/db/db_event.php:21 ../../godmode/db/db_purge.php:37 -#: ../../godmode/db/db_info.php:25 ../../godmode/db/db_sanity.php:29 -#: ../../godmode/db/db_audit.php:19 ../../godmode/db/db_refine.php:33 +#: ../../include/functions_api.php:1250 +msgid "Error updating network module. Module name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1257 +msgid "Error updating network module. Id_module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:1269 +msgid "Error updating network module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:1294 +msgid "Network module updated." +msgstr "" + +#: ../../include/functions_api.php:1317 +msgid "Error in creation plugin module. Id_plugin cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1324 +msgid "Error in creation plugin module. Agent name doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:1364 +msgid "Error in creation plugin module." +msgstr "" + +#: ../../include/functions_api.php:1390 +msgid "Error updating plugin module. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1397 +msgid "Error updating plugin module. Id_module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:1409 +msgid "Error updating plugin module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:1435 +msgid "Plugin module updated." +msgstr "" + +#: ../../include/functions_api.php:1458 +msgid "Error in creation data module. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1465 +msgid "Error in creation data module. Agent name doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:1495 +msgid "Error in creation data module." +msgstr "" + +#: ../../include/functions_api.php:1522 +msgid "Error updating data module. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1529 +msgid "Error updating data module. Id_module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:1541 +msgid "Error updating data module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:1566 +msgid "Data module updated." +msgstr "" + +#: ../../include/functions_api.php:1597 +msgid "Error in creation SNMP module. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1602 +msgid "" +"Error in creation SNMP module. Invalid id_module_type for a SNMP module." +msgstr "" + +#: ../../include/functions_api.php:1609 +msgid "Error in creation SNMP module. Agent name doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:1619 ../../include/functions_api.php:1757 +#: ../../include/functions_api.php:3523 +msgid "" +"Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " +"'AES' or 'DES'. " +msgstr "" + +#: ../../include/functions_api.php:1624 ../../include/functions_api.php:1762 +#: ../../include/functions_api.php:3528 +msgid "" +"Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" + +#: ../../include/functions_api.php:1629 ../../include/functions_api.php:1767 +#: ../../include/functions_api.php:3533 +msgid "" +"Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " +"'MD5' or 'SHA'. " +msgstr "" + +#: ../../include/functions_api.php:1699 +msgid "Error in creation SNMP module." +msgstr "" + +#: ../../include/functions_api.php:1728 +msgid "Error updating SNMP module. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1735 +msgid "Error updating SNMP module. Id_module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:1747 +msgid "Error updating SNMP module. Id_module exists in the new agent." +msgstr "" + +#: ../../include/functions_api.php:1797 +msgid "SNMP module updated." +msgstr "" + +#: ../../include/functions_api.php:1821 +msgid "" +"Error creating network component. Network component name cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:1826 +msgid "" +"Error creating network component. Incorrect value for Network component type " +"field." +msgstr "" + +#: ../../include/functions_api.php:1831 +msgid "" +"Error creating network component. Network component group cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:1859 +msgid "" +"Error creating network component. This network component already exists." +msgstr "" + +#: ../../include/functions_api.php:1892 +msgid "" +"Error creating plugin component. Plugin component name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1897 +msgid "Error creating plugin component. Incorrect value for Id plugin." +msgstr "" + +#: ../../include/functions_api.php:1902 +msgid "" +"Error creating plugin component. Plugin component group cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1933 +msgid "" +"Error creating plugin component. This plugin component already exists." +msgstr "" + +#: ../../include/functions_api.php:1967 +msgid "" +"Error creating SNMP component. SNMP component name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1972 +msgid "" +"Error creating SNMP component. Incorrect value for Snmp component type field." +msgstr "" + +#: ../../include/functions_api.php:1977 +msgid "" +"Error creating SNMP component. Snmp component group cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:1985 +msgid "" +"Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " +"'AES' or 'DES'. " +msgstr "" + +#: ../../include/functions_api.php:1990 +msgid "" +"Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" + +#: ../../include/functions_api.php:1995 +msgid "" +"Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " +"'MD5' or 'SHA'. " +msgstr "" + +#: ../../include/functions_api.php:2060 +msgid "Error creating SNMP component. This SNMP component already exists." +msgstr "" + +#: ../../include/functions_api.php:2091 +msgid "" +"Error creating local component. Local component name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2096 +msgid "" +"Error creating local component. Local component group cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2108 +msgid "Error creating local component." +msgstr "" + +#: ../../include/functions_api.php:2113 +msgid "Error creating local component. This local component already exists." +msgstr "" + +#: ../../include/functions_api.php:2141 +msgid "" +"Error getting module value from all agents. Module name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2148 +msgid "" +"Error getting module value from all agents. Module name doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2188 +msgid "Error creating alert template. Template name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2260 +msgid "Error creating alert template." +msgstr "" + +#: ../../include/functions_api.php:2288 +msgid "Error updating alert template. Id_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2296 +msgid "Error updating alert template. Id_template doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2322 +msgid "Error updating alert template." +msgstr "" + +#: ../../include/functions_api.php:2327 +msgid "Correct updating of alert template" +msgstr "" + +#: ../../include/functions_api.php:2348 +msgid "Error deleting alert template. Id_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2357 +msgid "Error deleting alert template." +msgstr "" + +#: ../../include/functions_api.php:2361 +msgid "Correct deleting of alert template." +msgstr "" + +#: ../../include/functions_api.php:2395 +msgid "Error getting all alert templates." +msgstr "" + +#: ../../include/functions_api.php:2424 +msgid "Error getting alert template. Id_template doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2441 +msgid "Error getting alert template." +msgstr "" + +#: ../../include/functions_api.php:2477 +msgid "Error getting module groups." +msgstr "" + +#: ../../include/functions_api.php:2513 +msgid "Error getting plugins." +msgstr "" + +#: ../../include/functions_api.php:2532 +msgid "Error creating module from network component. Agent doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2539 +msgid "" +"Error creating module from network component. Network component doesn't " +"exists." +msgstr "" + +#: ../../include/functions_api.php:2557 +msgid "Error creating module from network component. Error creating module." +msgstr "" + +#: ../../include/functions_api.php:2579 +msgid "Error assigning module to template. Id_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2584 +msgid "Error assigning module to template. Id_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2589 +msgid "Error assigning module to template. Id_agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2596 +msgid "Error assigning module to template. Id_template doensn't exists." +msgstr "" + +#: ../../include/functions_api.php:2606 +msgid "Error assigning module to template. Id_agent doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2613 +msgid "Error assigning module to template. Id_module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2621 +msgid "Error assigning module to template." +msgstr "" + +#: ../../include/functions_api.php:2644 +msgid "" +"Error deleting module template. Id_module_template cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2651 +msgid "Error deleting module template. Id_module_template doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2659 +msgid "Error deleting module template." +msgstr "" + +#: ../../include/functions_api.php:2662 +msgid "Correct deleting of module template." +msgstr "" + +#: ../../include/functions_api.php:2734 +msgid "Error validate all alerts. Failed " +msgstr "" + +#: ../../include/functions_api.php:2737 +msgid "Correct validating of all alerts." +msgstr "" + +#: ../../include/functions_api.php:2760 +msgid "Error validating all alert policies." +msgstr "" + +#: ../../include/functions_api.php:2817 +msgid "Error validate all policy alerts. Failed " +msgstr "" + +#: ../../include/functions_api.php:2820 +msgid "Correct validating of all policy alerts." +msgstr "" + +#: ../../include/functions_api.php:2839 +msgid "Error stopping downtime. Id_downtime cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2855 +msgid "Downtime stopped." +msgstr "" + +#: ../../include/functions_api.php:2875 +msgid "Error adding agent to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2880 +msgid "Error adding agent to policy. Id_agent cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2888 +msgid "Error adding agent to policy. Id_agent doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:2896 +msgid "Error adding agent to policy." +msgstr "" + +#: ../../include/functions_api.php:2904 +msgid "Error adding agent to policy. The agent is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:2933 +msgid "Error adding data module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2938 +msgid "Error adding data module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:2946 +msgid "Error adding data module to policy." +msgstr "" + +#: ../../include/functions_api.php:2969 +msgid "" +"Error adding data module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:3003 +msgid "Error updating data module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3008 +msgid "" +"Error updating data module in policy. Id_policy_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3016 +msgid "Error updating data module in policy. Module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:3021 ../../include/functions_api.php:3165 +msgid "" +"Error updating network module in policy. Module type is not network type." +msgstr "" + +#: ../../include/functions_api.php:3045 +msgid "Data policy module updated." +msgstr "" + +#: ../../include/functions_api.php:3068 +msgid "" +"Error adding network module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3073 +msgid "" +"Error adding network module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3078 +msgid "" +"Error adding network module to policy. Id_module_type is not correct for " +"network modules." +msgstr "" + +#: ../../include/functions_api.php:3086 +msgid "Error adding network module to policy." +msgstr "" + +#: ../../include/functions_api.php:3114 +msgid "" +"Error adding network module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:3147 +msgid "" +"Error updating network module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3152 +msgid "" +"Error updating network module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:3160 +msgid "Error updating network module in policy. Module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:3191 +msgid "Network policy module updated." +msgstr "" + +#: ../../include/functions_api.php:3212 +msgid "Error adding plugin module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3217 +msgid "" +"Error adding plugin module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3222 +msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3230 +msgid "Error adding plugin module to policy." +msgstr "" + +#: ../../include/functions_api.php:3262 +msgid "" +"Error adding plugin module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:3296 +msgid "" +"Error updating plugin module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3302 +msgid "" +"Error updating plugin module in policy. Id_policy_module cannot be left " +"blank." +msgstr "" + +#: ../../include/functions_api.php:3311 +msgid "Error updating plugin module in policy. Module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:3317 +msgid "" +"Error updating plugin module in policy. Module type is not network type." +msgstr "" + +#: ../../include/functions_api.php:3344 +msgid "Plugin policy module updated." +msgstr "" + +#: ../../include/functions_api.php:3497 +msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3502 +msgid "Error adding SNMP module to policy. Module_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3510 +msgid "Error adding SNMP module to policy." +msgstr "" + +#: ../../include/functions_api.php:3515 +msgid "" +"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " +"modules." +msgstr "" + +#: ../../include/functions_api.php:3595 +msgid "" +"Error adding SNMP module to policy. The module is already in the policy." +msgstr "" + +#: ../../include/functions_api.php:3630 +msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3635 +msgid "" +"Error updating SNMP module in policy. Id_policy_module cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3643 +msgid "Error updating SNMP module in policy. Module doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:3648 +msgid "Error updating SNMP module in policy. Module type is not SNMP type." +msgstr "" + +#: ../../include/functions_api.php:3657 +msgid "" +"Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " +"'AES' or 'DES'. " +msgstr "" + +#: ../../include/functions_api.php:3663 +msgid "" +"Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" + +#: ../../include/functions_api.php:3669 +msgid "" +"Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " +"'MD5' or 'SHA'. " +msgstr "" + +#: ../../include/functions_api.php:3700 +msgid "SNMP policy module updated." +msgstr "" + +#: ../../include/functions_api.php:3719 +msgid "Error applying policy. Id_policy cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3732 ../../include/functions_api.php:3756 +msgid "Error applying policy." +msgstr "" + +#: ../../include/functions_api.php:3743 +msgid "Error applying policy. This policy is already pending to apply." +msgstr "" + +#: ../../include/functions_api.php:3797 +msgid "Error applying all policies." +msgstr "" + +#: ../../include/functions_api.php:3845 +msgid "Error in group creation. Group_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3850 +msgid "Error in group creation. Icon_name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3858 ../../include/functions_api.php:3919 +msgid "Error in group creation. Id_parent_group doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:3881 +msgid "Error in group creation." +msgstr "" + +#: ../../include/functions_api.php:3907 +msgid "Error in netflow filter creation. Filter name cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3912 +msgid "Error in netflow filter creation. Group id cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3925 +msgid "Error in netflow filter creation. Filter cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3930 +msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3935 +msgid "Error in netflow filter creation. Output_format cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:3953 +msgid "Error in netflow filter creation." +msgstr "" + +#: ../../include/functions_api.php:4073 +msgid "Create user." +msgstr "" + +#: ../../include/functions_api.php:4097 +msgid "Error updating user. Id_user cannot be left blank." +msgstr "" + +#: ../../include/functions_api.php:4104 +msgid "Error updating user. Id_user doesn't exists." +msgstr "" + +#: ../../include/functions_api.php:4120 +msgid "Error updating user. Password info incorrect." +msgstr "" + +#: ../../include/functions_api.php:4128 +msgid "Updated user." +msgstr "" + +#: ../../include/functions_api.php:4173 +msgid "Error in user enabling/disabling." +msgstr "" + +#: ../../include/functions_api.php:4177 +msgid "Enabled user." +msgstr "" + +#: ../../include/functions_api.php:4180 +msgid "Disabled user." +msgstr "" + +#: ../../include/functions_api.php:5283 +msgid "Delete user." +msgstr "" + +#: ../../include/functions_api.php:5308 +msgid "Add user profile." +msgstr "" + +#: ../../include/functions_api.php:5337 +msgid "Delete user profile." +msgstr "" + +#: ../../include/functions_api.php:5423 +msgid "Correct module disable" +msgstr "" + +#: ../../include/functions_api.php:5426 +msgid "Error disabling module" +msgstr "" + +#: ../../include/functions_api.php:5447 +msgid "Correct module enable" +msgstr "" + +#: ../../include/functions_api.php:5450 +msgid "Error enabling module" +msgstr "" + +#: ../../include/functions_groups.php:59 +msgid "Alert Actions" +msgstr "" + +#: ../../include/functions_groups.php:74 +msgid "Alert Templates" +msgstr "" + +#: ../../include/functions_groups.php:88 +msgid "Recon task" +msgstr "" + +#: ../../include/functions_groups.php:131 +msgid "Layout visual console" +msgstr "" + +#: ../../include/functions_groups.php:145 +msgid "Plannet down time" +msgstr "" + +#: ../../include/functions_groups.php:172 +msgid "GIS maps" +msgstr "" + +#: ../../include/functions_groups.php:186 +msgid "GIS connections" +msgstr "" + +#: ../../include/functions_groups.php:200 +msgid "GIS map layers" +msgstr "" + +#: ../../include/functions_groups.php:213 +msgid "Network maps" +msgstr "" + +#: ../../mobile/operation/home.php:30 +msgid "PandoraFMS: Home" +msgstr "" + +#: ../../mobile/operation/home.php:45 +msgid "Tactical" +msgstr "" + +#: ../../mobile/operation/modules.php:171 +msgid "PandoraFMS: Modules" +msgstr "" + +#: ../../mobile/operation/modules.php:174 +#, php-format +msgid "Filter Modules by %s" +msgstr "" + +#: ../../mobile/operation/modules.php:234 +#: ../../mobile/operation/events.php:581 ../../mobile/operation/alerts.php:199 +#: ../../mobile/operation/agents.php:190 +msgid "Apply Filter" +msgstr "" + +#: ../../mobile/operation/modules.php:437 +msgid "Interval." +msgstr "" + +#: ../../mobile/operation/modules.php:443 +msgid "Last update." +msgstr "" + +#: ../../mobile/operation/modules.php:522 +msgid "No modules" +msgstr "" + +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/events.php:768 +#: ../../mobile/operation/module_graph.php:399 +#: ../../mobile/operation/agents.php:321 +#: ../../godmode/reporting/visual_console_builder.wizard.php:216 +msgid "Loading..." +msgstr "" + +#: ../../mobile/operation/modules.php:614 +#: ../../mobile/operation/events.php:997 ../../mobile/operation/alerts.php:292 +#: ../../mobile/operation/agents.php:392 +msgid "(Default)" +msgstr "" + +#: ../../mobile/operation/modules.php:627 +#, php-format +msgid "" +"(Status: %s - Group: %s - Module group: %s - Tag: %s - Free Search: %s)" +msgstr "" + +#: ../../mobile/operation/groups.php:66 +msgid "PandoraFMS: Groups" +msgstr "" + +#: ../../mobile/operation/events.php:335 ../../mobile/operation/events.php:336 +#: ../../mobile/operation/events.php:513 ../../mobile/operation/events.php:514 +msgid "Preset Filters" +msgstr "" + +#: ../../mobile/operation/events.php:401 +msgid "Event detail" +msgstr "" + +#: ../../mobile/operation/events.php:474 +msgid "Sucessful validate" +msgstr "" + +#: ../../mobile/operation/events.php:476 +msgid "Fail validate" +msgstr "" + +#: ../../mobile/operation/events.php:486 +msgid "ERROR: Event detail" +msgstr "" + +#: ../../mobile/operation/events.php:488 +msgid "Error connecting to DB pandora." +msgstr "" + +#: ../../mobile/operation/events.php:492 +msgid "PandoraFMS: Events" +msgstr "" + +#: ../../mobile/operation/events.php:498 +#, php-format +msgid "Filter Events by %s" +msgstr "" + +#: ../../mobile/operation/events.php:1003 +#, php-format +msgid "Filter: %s" +msgstr "" + +#: ../../mobile/operation/events.php:1018 +#, php-format +msgid "(Status: %s - Hours: %s - Type: %s - Severity: %s - Free Search: %s)" +msgstr "" + +#: ../../mobile/operation/alerts.php:86 ../../mobile/operation/alerts.php:87 +#: ../../mobile/operation/alerts.php:189 ../../mobile/operation/alerts.php:190 +msgid "Stand by" +msgstr "" + +#: ../../mobile/operation/alerts.php:145 +msgid "PandoraFMS: Alerts" +msgstr "" + +#: ../../mobile/operation/alerts.php:148 +#, php-format +msgid "Filter Alerts by %s" +msgstr "" + +#: ../../mobile/operation/alerts.php:259 +msgid "Last Fired" +msgstr "" + +#: ../../mobile/operation/alerts.php:269 +msgid "No alerts" +msgstr "" + +#: ../../mobile/operation/alerts.php:299 +#, php-format +msgid "(Status: %s - Standby: %s - Group: %s - Free Search: %s)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:298 +#: ../../mobile/operation/agent.php:77 +#, php-format +msgid "PandoraFMS: %s" +msgstr "" + +#: ../../mobile/operation/module_graph.php:312 +msgid "Show Alerts" +msgstr "" + +#: ../../mobile/operation/module_graph.php:320 +msgid "Show Events" +msgstr "" + +#: ../../mobile/operation/module_graph.php:328 +msgid "Time compare (Separated)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:336 +msgid "Time compare (Overlapped)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:352 +msgid "Avg Only" +msgstr "" + +#: ../../mobile/operation/module_graph.php:357 +msgid "Time range (hours)" +msgstr "" + +#: ../../mobile/operation/module_graph.php:391 +msgid "Update graph" +msgstr "" + +#: ../../mobile/operation/module_graph.php:400 +msgid "Error get the graph" +msgstr "" + +#: ../../mobile/operation/tactical.php:58 +msgid "PandoraFMS: Tactical" +msgstr "" + +#: ../../mobile/operation/tactical.php:133 +msgid "Last activity" +msgstr "" + +#: ../../mobile/operation/agent.php:80 ../../mobile/operation/agents.php:152 +msgid "PandoraFMS: Agents" +msgstr "" + +#: ../../mobile/operation/agent.php:85 +msgid "No agent found" +msgstr "" + +#: ../../mobile/operation/agent.php:159 +#, php-format +msgid "Last %s Events" +msgstr "" + +#: ../../mobile/operation/agents.php:155 +#, php-format +msgid "Filter Agents by %s" +msgstr "" + +#: ../../mobile/operation/agents.php:262 +msgid "I." +msgstr "" + +#: ../../mobile/operation/agents.php:268 +msgid "M." +msgstr "" + +#: ../../mobile/operation/agents.php:281 +msgid "L." +msgstr "" + +#: ../../mobile/operation/agents.php:310 +msgid "No agents" +msgstr "" + +#: ../../mobile/operation/agents.php:400 +#, php-format +msgid "(Status: %s - Group: %s - Free Search: %s)" +msgstr "" + +#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:126 +#: ../../mobile/include/ui.class.php:168 +msgid "Pandora FMS mobile" +msgstr "" + +#: ../../mobile/include/ui.class.php:181 +msgid "Home" +msgstr "" + +#: ../../mobile/include/ui.class.php:619 +msgid "Not found header." +msgstr "" + +#: ../../mobile/include/ui.class.php:622 +msgid "Not found content." +msgstr "" + +#: ../../mobile/include/ui.class.php:625 +msgid "Not found footer." +msgstr "" + +#: ../../mobile/include/ui.class.php:628 +msgid "Incorrect form." +msgstr "" + +#: ../../mobile/include/ui.class.php:631 +msgid "Incorrect grid." +msgstr "" + +#: ../../mobile/include/ui.class.php:634 +msgid "Incorrect collapsible." +msgstr "" + +#: ../../mobile/include/user.class.php:143 +msgid "Login Failed" +msgstr "" + +#: ../../mobile/include/user.class.php:144 +msgid "User not found in database or incorrect password." +msgstr "" + +#: ../../mobile/include/user.class.php:151 +msgid "Login out" +msgstr "" + +#: ../../mobile/include/user.class.php:168 +msgid "user" +msgstr "" + +#: ../../mobile/include/user.class.php:175 +msgid "password" +msgstr "" + +#: ../../mobile/include/user.class.php:180 +msgid "Login" +msgstr "" + +#: ../../godmode/db/db_purge.php:37 ../../godmode/db/db_event.php:21 +#: ../../godmode/db/db_audit.php:19 ../../godmode/db/db_info.php:25 +#: ../../godmode/db/db_refine.php:33 ../../godmode/db/db_sanity.php:29 msgid "Database maintenance" msgstr "" +#: ../../godmode/db/db_purge.php:37 ../../godmode/menu.php:239 +msgid "Database purge" +msgstr "" + +#: ../../godmode/db/db_purge.php:42 +msgid "Get data from agent" +msgstr "" + +#: ../../godmode/db/db_purge.php:73 +msgid "Purge task launched for agent" +msgstr "" + +#: ../../godmode/db/db_purge.php:73 +msgid "Data older than" +msgstr "" + +#: ../../godmode/db/db_purge.php:74 +msgid "" +"Please be patient. This operation can take a long time depending on the " +"amount of modules." +msgstr "" + +#: ../../godmode/db/db_purge.php:88 +msgid "Deleting records for module" +msgstr "" + +#: ../../godmode/db/db_purge.php:132 +msgid "Total records deleted: " +msgstr "" + +#: ../../godmode/db/db_purge.php:137 +msgid "Deleting records for all agents" +msgstr "" + +#: ../../godmode/db/db_purge.php:150 +msgid "Choose agent" +msgstr "" + +#: ../../godmode/db/db_purge.php:156 +msgid "Select the agent you want information about" +msgstr "" + +#: ../../godmode/db/db_purge.php:158 +msgid "Get data" +msgstr "" + +#: ../../godmode/db/db_purge.php:159 +msgid "Click here to get the data from the agent specified in the select box" +msgstr "" + +#: ../../godmode/db/db_purge.php:163 +#, php-format +msgid "Information on agent %s in the database" +msgstr "" + +#: ../../godmode/db/db_purge.php:166 +msgid "Information on all agents in the database" +msgstr "" + +#: ../../godmode/db/db_purge.php:273 +msgid "Packets less than three months old" +msgstr "" + +#: ../../godmode/db/db_purge.php:275 +msgid "Packets less than one month old" +msgstr "" + +#: ../../godmode/db/db_purge.php:277 +msgid "Packets less than two weeks old" +msgstr "" + +#: ../../godmode/db/db_purge.php:279 +msgid "Packets less than one week old" +msgstr "" + +#: ../../godmode/db/db_purge.php:281 +msgid "Packets less than three days old" +msgstr "" + +#: ../../godmode/db/db_purge.php:283 +msgid "Packets less than one day old" +msgstr "" + +#: ../../godmode/db/db_purge.php:285 +msgid "Total number of packets" +msgstr "" + +#: ../../godmode/db/db_purge.php:291 ../../godmode/db/db_event.php:66 +#: ../../godmode/db/db_audit.php:92 +msgid "Purge data" +msgstr "" + +#: ../../godmode/db/db_purge.php:296 +msgid "Purge data over 3 months" +msgstr "" + +#: ../../godmode/db/db_purge.php:297 +msgid "Purge data over 1 month" +msgstr "" + +#: ../../godmode/db/db_purge.php:298 +msgid "Purge data over 2 weeks" +msgstr "" + +#: ../../godmode/db/db_purge.php:299 +msgid "Purge data over 1 week" +msgstr "" + +#: ../../godmode/db/db_purge.php:300 +msgid "Purge data over 3 days" +msgstr "" + +#: ../../godmode/db/db_purge.php:301 +msgid "Purge data over 1 day" +msgstr "" + +#: ../../godmode/db/db_purge.php:302 +msgid "All data until now" +msgstr "" + +#: ../../godmode/db/db_purge.php:306 +msgid "Purge" +msgstr "" + #: ../../godmode/db/db_event.php:21 msgid "Event database cleanup" msgstr "" @@ -10036,11 +19142,11 @@ msgstr "" msgid "Error deleting old events" msgstr "" -#: ../../godmode/db/db_event.php:55 ../../godmode/db/db_audit.php:76 +#: ../../godmode/db/db_event.php:55 ../../godmode/db/db_audit.php:81 msgid "Records" msgstr "" -#: ../../godmode/db/db_event.php:57 ../../godmode/db/db_audit.php:79 +#: ../../godmode/db/db_event.php:57 ../../godmode/db/db_audit.php:84 msgid "First date" msgstr "" @@ -10048,11 +19154,6 @@ msgstr "" msgid "Latest data" msgstr "" -#: ../../godmode/db/db_event.php:66 ../../godmode/db/db_purge.php:239 -#: ../../godmode/db/db_audit.php:87 -msgid "Purge data" -msgstr "" - #: ../../godmode/db/db_event.php:74 msgid "Purge event data over 90 days" msgstr "" @@ -10081,10 +19182,114 @@ msgstr "" msgid "Purge all event data" msgstr "" -#: ../../godmode/db/db_event.php:85 ../../godmode/db/db_audit.php:102 +#: ../../godmode/db/db_event.php:85 ../../godmode/db/db_audit.php:107 msgid "Do it!" 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: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_info.php:25 +msgid "Database information" +msgstr "" + +#: ../../godmode/db/db_info.php:50 +msgid "Modules per agent" +msgstr "" + +#: ../../godmode/db/db_info.php:56 +msgid "Packets per agent" +msgstr "" + +#: ../../godmode/db/db_info.php:61 +msgid "Press here to get database information as text" +msgstr "" + +#: ../../godmode/db/db_info.php:70 +msgid "Assigned modules" +msgstr "" + +#: ../../godmode/db/db_info.php:71 +msgid "Total data" +msgstr "" + +#: ../../godmode/db/db_info.php:94 +msgid "Press here to get database information as a graph" +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:61 +msgid "Filtering completed" +msgstr "" + +#: ../../godmode/db/db_refine.php:73 +msgid "No agent selected" +msgstr "" + +#: ../../godmode/db/db_refine.php:77 +msgid "Get Info" +msgstr "" + +#: ../../godmode/db/db_refine.php:90 +msgid "Purge data out of these limits" +msgstr "" + +#: ../../godmode/db/db_refine.php:92 ../../godmode/db/db_refine.php:94 +msgid "Minimum" +msgstr "" + +#: ../../godmode/db/db_refine.php:97 ../../godmode/db/db_refine.php:99 +msgid "Maximum" +msgstr "" + #: ../../godmode/db/db_main.php:69 msgid "Current database maintenance setup" msgstr "" @@ -10097,31 +19302,6 @@ msgstr "" msgid "Max. time before compact data" msgstr "" -#: ../../godmode/db/db_main.php:82 ../../godmode/db/db_main.php:88 -#: ../../godmode/reporting/visual_console_builder.elements.php:58 -#: ../../godmode/reporting/visual_console_builder.elements.php:60 -#: ../../godmode/reporting/visual_console_builder.editor.php:95 -#: ../../godmode/reporting/visual_console_builder.editor.php:97 -#: ../../godmode/reporting/graph_builder.main.php:130 -#: ../../godmode/reporting/graph_builder.main.php:131 -#: ../../godmode/setup/performance.php:74 -#: ../../godmode/setup/performance.php:75 -#: ../../enterprise/godmode/agentes/inventory_manager.php:164 -#: ../../enterprise/godmode/agentes/inventory_manager.php:165 -#: ../../enterprise/godmode/agentes/inventory_manager.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:42 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:44 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:54 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:56 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:195 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:196 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:197 -#: ../../include/functions.php:419 -msgid "days" -msgstr "" - #: ../../godmode/db/db_main.php:86 msgid "Max. time before purge" msgstr "" @@ -10154,6 +19334,10 @@ msgstr "" msgid "Total agent access records" msgstr "" +#: ../../godmode/db/db_main.php:160 ../../godmode/menu.php:243 +msgid "Database sanity" +msgstr "" + #: ../../godmode/db/db_main.php:164 msgid "Total uknown agents" msgstr "" @@ -10166,160 +19350,13 @@ msgstr "" msgid "Last time on DB maintance" msgstr "" -#: ../../godmode/db/db_main.php:199 +#: ../../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_purge.php:42 -msgid "Get data from agent" -msgstr "" - -#: ../../godmode/db/db_purge.php:79 -msgid "Purge task launched for agent" -msgstr "" - -#: ../../godmode/db/db_purge.php:79 -msgid "Data older than" -msgstr "" - -#: ../../godmode/db/db_purge.php:80 -msgid "" -"Please be patient. This operation can take a long time depending on the " -"amount of modules." -msgstr "" - -#: ../../godmode/db/db_purge.php:94 -msgid "Deleting records for module" -msgstr "" - -#: ../../godmode/db/db_purge.php:138 -msgid "Total records deleted: " -msgstr "" - -#: ../../godmode/db/db_purge.php:142 -msgid "Deleting records for all agents" -msgstr "" - -#: ../../godmode/db/db_purge.php:155 -msgid "Choose agent" -msgstr "" - -#: ../../godmode/db/db_purge.php:156 -msgid "All agents" -msgstr "" - -#: ../../godmode/db/db_purge.php:161 -msgid "Select the agent you want information about" -msgstr "" - -#: ../../godmode/db/db_purge.php:163 -msgid "Get data" -msgstr "" - -#: ../../godmode/db/db_purge.php:164 -msgid "Click here to get the data from the agent specified in the select box" -msgstr "" - -#: ../../godmode/db/db_purge.php:168 -#, php-format -msgid "Information on agent %s in the database" -msgstr "" - -#: ../../godmode/db/db_purge.php:170 -msgid "Information on all agents in the database" -msgstr "" - -#: ../../godmode/db/db_purge.php:221 -msgid "Packets less than three months old" -msgstr "" - -#: ../../godmode/db/db_purge.php:223 -msgid "Packets less than one month old" -msgstr "" - -#: ../../godmode/db/db_purge.php:225 -msgid "Packets less than two weeks old" -msgstr "" - -#: ../../godmode/db/db_purge.php:227 -msgid "Packets less than one week old" -msgstr "" - -#: ../../godmode/db/db_purge.php:229 -msgid "Packets less than three days old" -msgstr "" - -#: ../../godmode/db/db_purge.php:231 -msgid "Packets less than one day old" -msgstr "" - -#: ../../godmode/db/db_purge.php:233 -msgid "Total number of packets" -msgstr "" - -#: ../../godmode/db/db_purge.php:244 -msgid "Purge data over 3 months" -msgstr "" - -#: ../../godmode/db/db_purge.php:245 -msgid "Purge data over 1 month" -msgstr "" - -#: ../../godmode/db/db_purge.php:246 -msgid "Purge data over 2 weeks" -msgstr "" - -#: ../../godmode/db/db_purge.php:247 -msgid "Purge data over 1 week" -msgstr "" - -#: ../../godmode/db/db_purge.php:248 -msgid "Purge data over 3 days" -msgstr "" - -#: ../../godmode/db/db_purge.php:249 -msgid "Purge data over 1 day" -msgstr "" - -#: ../../godmode/db/db_purge.php:250 -msgid "All data until now" -msgstr "" - -#: ../../godmode/db/db_purge.php:254 -msgid "Purge" -msgstr "" - -#: ../../godmode/db/db_info.php:25 -msgid "Database information" -msgstr "" - -#: ../../godmode/db/db_info.php:50 -msgid "Modules per agent" -msgstr "" - -#: ../../godmode/db/db_info.php:56 -msgid "Packets per agent" -msgstr "" - -#: ../../godmode/db/db_info.php:61 -msgid "Press here to get database information as text" -msgstr "" - -#: ../../godmode/db/db_info.php:70 -msgid "Assigned modules" -msgstr "" - -#: ../../godmode/db/db_info.php:71 -msgid "Total data" -msgstr "" - -#: ../../godmode/db/db_info.php:94 -msgid "Press here to get database information as a graph" -msgstr "" - #: ../../godmode/db/db_sanity.php:29 msgid "Database sanity tool" msgstr "" @@ -10328,15 +19365,23 @@ msgstr "" msgid "Checking tagente_estado table" msgstr "" -#: ../../godmode/db/db_sanity.php:56 +#: ../../godmode/db/db_sanity.php:55 +msgid "Check tagente_estado table: Done" +msgstr "" + +#: ../../godmode/db/db_sanity.php:57 msgid "Checking database consistency" msgstr "" -#: ../../godmode/db/db_sanity.php:82 +#: ../../godmode/db/db_sanity.php:81 +msgid "Check database consistency: Done" +msgstr "" + +#: ../../godmode/db/db_sanity.php:84 msgid "Deleting non-init data" msgstr "" -#: ../../godmode/db/db_sanity.php:101 +#: ../../godmode/db/db_sanity.php:108 msgid "" "Pandora FMS Sanity tool is used to remove bad database structure data, " "created modules with missing status, or modules that cannot be initialized " @@ -10347,1116 +19392,14 @@ msgid "" "compact your database, only delete bad structured data." msgstr "" -#: ../../godmode/db/db_sanity.php:106 +#: ../../godmode/db/db_sanity.php:113 msgid "Sanitize my database now" msgstr "" -#: ../../godmode/db/db_sanity.php:113 +#: ../../godmode/db/db_sanity.php:120 msgid "Delete non-initialized modules now" msgstr "" -#: ../../godmode/db/db_audit.php:19 -msgid "Database audit purge" -msgstr "" - -#: ../../godmode/db/db_audit.php:83 -msgid "Latest date" -msgstr "" - -#: ../../godmode/db/db_audit.php:92 -msgid "Purge audit data over 90 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:93 -msgid "Purge audit data over 30 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:94 -msgid "Purge audit data over 14 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:95 -msgid "Purge audit data over 7 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:96 -msgid "Purge audit data over 3 days" -msgstr "" - -#: ../../godmode/db/db_audit.php:97 -msgid "Purge audit data over 1 day" -msgstr "" - -#: ../../godmode/db/db_audit.php:98 -msgid "Purge all audit data" -msgstr "" - -#: ../../godmode/db/db_refine.php:42 ../../godmode/db/db_refine.php:47 -#: ../../include/functions.php:897 -msgid "Error" -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:61 -msgid "Filtering completed" -msgstr "" - -#: ../../godmode/db/db_refine.php:73 -#: ../../enterprise/operation/inventory/inventory.php:182 -msgid "No agent selected" -msgstr "" - -#: ../../godmode/db/db_refine.php:77 -msgid "Get Info" -msgstr "" - -#: ../../godmode/db/db_refine.php:89 -msgid "Purge data out of these limits" -msgstr "" - -#: ../../godmode/db/db_refine.php:91 ../../godmode/db/db_refine.php:93 -msgid "Minimum" -msgstr "" - -#: ../../godmode/db/db_refine.php:96 ../../godmode/db/db_refine.php:98 -msgid "Maximum" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:26 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:64 -msgid "Only table" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:27 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:38 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:65 -msgid "Table & Graph" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:28 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:39 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:66 -msgid "Only graph" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:32 -#: ../../godmode/reporting/reporting_builder.item_editor.php:539 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:43 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:163 -msgid "Ascending" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:33 -#: ../../godmode/reporting/reporting_builder.item_editor.php:541 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:44 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:165 -msgid "Descending" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:384 -msgid "Projection period" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:388 -msgid "Data range" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:390 -#: ../../godmode/reporting/reporting_builder.item_editor.php:554 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:184 -#: ../../enterprise/include/functions_reporting_csv.php:195 -#: ../../include/functions_graph.php:336 ../../include/functions_graph.php:694 -#: ../../include/functions_graph.php:1935 ../../include/functions_ui.php:1351 -#: ../../include/pchart_graph.php:189 ../../include/pchart_graph.php:192 -#: ../../include/pchart_graph.php:348 -msgid "Max" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:392 -#: ../../godmode/reporting/reporting_builder.item_editor.php:556 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:186 -#: ../../enterprise/include/functions_reporting_csv.php:195 -#: ../../include/functions_graph.php:337 ../../include/functions_graph.php:694 -#: ../../include/functions_graph.php:1936 ../../include/functions_ui.php:1351 -#: ../../include/pchart_graph.php:187 ../../include/pchart_graph.php:190 -#: ../../include/pchart_graph.php:348 -msgid "Min" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:397 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:138 -msgid "Only display wrong SLAs" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:401 -msgid "Working time" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:460 -#: ../../godmode/reporting/reporting_builder.item_editor.php:708 -#: ../../godmode/reporting/reporting_builder.item_editor.php:722 -#: ../../godmode/reporting/reporting_builder.item_editor.php:795 -#: ../../godmode/reporting/reporting_builder.item_editor.php:806 -msgid "Select an Agent first" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:496 -msgid "Query SQL" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:503 -#: ../../godmode/reporting/reporting_builder.item_editor.php:505 -msgid "Select server" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:509 -msgid "Serialized header" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:509 -msgid "The separator character is |" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:513 -msgid "Custom SQL template" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:517 -msgid "SQL preview" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:521 -#: ../../enterprise/dashboard/widgets/url.php:25 -msgid "URL" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:525 -msgid "Field separator" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:525 -msgid "Separator for different fields in the serialized text chain" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:529 -msgid "Line separator" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:529 -msgid "" -"Separator in different lines (composed by fields) of the serialized text " -"chain" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:533 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:152 -msgid "Group by agent" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:537 -#: ../../godmode/reporting/reporting_builder.item_editor.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:147 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:160 -msgid "Order" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:543 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:167 -msgid "By agent name" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:548 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:173 -msgid "Quantity (n)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:552 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:181 -msgid "Display" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:558 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:188 -#: ../../include/functions_graph.php:329 ../../include/functions_graph.php:694 -#: ../../include/functions_graph.php:1928 ../../include/pchart_graph.php:188 -#: ../../include/pchart_graph.php:191 ../../include/pchart_graph.php:208 -#: ../../include/pchart_graph.php:209 ../../include/pchart_graph.php:348 -msgid "Avg" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:569 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:205 -#: ../../enterprise/include/functions_reporting_csv.php:901 -#: ../../enterprise/include/functions_reporting_pdf.php:823 -#: ../../include/functions_reporting.php:3626 -msgid "Everything" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:571 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:207 -msgid ">=" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:573 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:209 -msgid "<" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:575 -#: ../../enterprise/extensions/backup/main.php:108 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:211 -#: ../../enterprise/dashboard/widgets/maps_status.php:72 -#: ../../enterprise/include/functions_reporting_csv.php:242 -#: ../../enterprise/include/functions_reporting_pdf.php:2199 -#: ../../include/functions_db.php:1054 -#: ../../include/functions_reporting.php:2388 -msgid "OK" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:577 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:213 -msgid "Not OK" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:582 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:144 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:219 -msgid "Show graph" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:587 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:227 -msgid "Show resume" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:587 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:227 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:591 -msgid "Show in two columns" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:147 -msgid "SLA items sorted by fulfillment value" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:600 -msgid "Show in landscape" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:611 -msgid "Create item" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:614 -#: ../../godmode/reporting/visual_console_builder.editor.php:71 -msgid "Edit item" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:638 -#: ../../enterprise/include/functions_reporting_pdf.php:2160 -msgid "SLA Min. (value)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:639 -#: ../../enterprise/include/functions_reporting_pdf.php:2159 -msgid "SLA Max. (value)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:640 -msgid "SLA Limit (%)" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:649 -msgid "Please save the SLA for start to add items in this list." -msgstr "" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:742 -msgid "Please save the report to start adding items into the list." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:57 -#: ../../godmode/reporting/visual_console_builder.editor.php:94 -#: ../../godmode/setup/performance.php:73 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:41 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:53 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:50 -#: ../../include/functions_graph.php:203 ../../include/functions_graph.php:389 -#: ../../include/functions_graph.php:470 ../../include/functions_graph.php:729 -#: ../../include/functions_graph.php:1807 -#: ../../include/functions_graph.php:1906 -#: ../../include/functions_graph.php:2108 -#: ../../include/functions_forecast.php:154 -msgid "Last day" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:59 -#: ../../godmode/reporting/visual_console_builder.editor.php:96 -#: ../../godmode/reporting/graph_builder.main.php:130 -#: ../../godmode/setup/performance.php:76 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:43 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:55 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 -#: ../../include/functions_graph.php:207 ../../include/functions_graph.php:393 -#: ../../include/functions_graph.php:473 ../../include/functions_graph.php:732 -#: ../../include/functions_graph.php:1811 -#: ../../include/functions_graph.php:1910 -#: ../../include/functions_graph.php:2112 -#: ../../include/functions_forecast.php:158 -msgid "Last week" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:61 -#: ../../godmode/reporting/visual_console_builder.editor.php:98 -#: ../../godmode/reporting/graph_builder.main.php:131 -#: ../../godmode/setup/performance.php:78 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:45 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:54 -#: ../../include/functions_graph.php:211 ../../include/functions_graph.php:397 -#: ../../include/functions_graph.php:476 ../../include/functions_graph.php:735 -#: ../../include/functions_graph.php:1815 -#: ../../include/functions_graph.php:1914 -#: ../../include/functions_graph.php:2116 -#: ../../include/functions_forecast.php:162 -msgid "Last month" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:62 -#: ../../godmode/reporting/visual_console_builder.elements.php:63 -#: ../../godmode/reporting/visual_console_builder.editor.php:99 -#: ../../godmode/reporting/visual_console_builder.editor.php:100 -#: ../../godmode/reporting/graph_builder.main.php:131 -#: ../../godmode/reporting/graph_builder.main.php:132 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:46 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:47 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:58 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:59 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:55 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:56 -#: ../../include/functions.php:420 ../../include/functions_alerts.php:796 -msgid "months" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:68 -#: ../../godmode/reporting/visual_console_builder.elements.php:120 -#: ../../godmode/reporting/visual_console_builder.editor.php:68 -#: ../../godmode/reporting/visual_console_builder.editor.php:115 -#: ../../godmode/reporting/visual_console_builder.editor.php:120 -#: ../../include/functions_visual_map.php:1168 -msgid "Label" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:69 -#: ../../godmode/reporting/visual_console_builder.editor.php:124 -#: ../../godmode/reporting/visual_console_builder.wizard.php:53 -msgid "Image" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:70 -msgid "Width x Height
Max value" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:71 -#: ../../godmode/reporting/visual_console_builder.editor.php:215 -msgid "Position" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:72 -#: ../../godmode/reporting/visual_console_builder.editor.php:246 -msgid "Map linked" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:86 -#: ../../godmode/reporting/visual_console_builder.editor.php:111 -#: ../../godmode/reporting/visual_console_builder.editor.php:146 -#: ../../godmode/reporting/visual_console_builder.data.php:64 -msgid "Background" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:108 -#: ../../godmode/reporting/visual_console_builder.editor.php:64 -#: ../../godmode/reporting/visual_console_builder.editor.php:112 -msgid "Static Graph" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:111 -#: ../../godmode/reporting/visual_console_builder.editor.php:65 -#: ../../godmode/reporting/visual_console_builder.editor.php:113 -msgid "Percentile Bar" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:114 -#: ../../godmode/reporting/visual_console_builder.editor.php:66 -msgid "Module Graph" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:117 -#: ../../godmode/reporting/visual_console_builder.editor.php:67 -#: ../../include/functions_visual_map.php:1164 -msgid "Simple Value" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.elements.php:177 -#: ../../godmode/reporting/visual_console_builder.editor.php:131 -msgid "Type at least two characters to search." -msgstr "" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:82 -#: ../../godmode/reporting/graph_builder.graph_editor.php:137 -msgid "Weight" -msgstr "" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:102 -msgid "Decrease Weight" -msgstr "" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:105 -msgid "Increase Weight" -msgstr "" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:123 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:114 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:122 -#: ../../enterprise/godmode/policies/policy_agents.php:223 -#: ../../enterprise/godmode/policies/policy_agents.php:230 -#: ../../enterprise/include/functions_networkmap_enterprise.php:227 -msgid "Filter group" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:72 -msgid "Delete item" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:114 -#: ../../include/functions_visual_map.php:1022 -msgid "Simple value" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:140 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:205 -msgid "Process" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:141 -msgid "Min value" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:142 -#: ../../godmode/reporting/visual_console_builder.editor.php:170 -msgid "Max value" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:143 -msgid "Avg value" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:150 -msgid "Original Size" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:151 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:299 -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:195 -#: ../../enterprise/godmode/policies/policy_agents.php:340 -#: ../../enterprise/godmode/policies/policy_queue.php:356 -msgid "Apply" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:154 -msgid "Aspect ratio" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:155 -msgid "Width proportional" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:159 -msgid "Height proportional" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:162 -#: ../../godmode/reporting/graph_builder.main.php:120 -#: ../../godmode/reporting/visual_console_builder.wizard.php:60 -#: ../../godmode/setup/gis_step_2.php:256 -msgid "Width" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:194 -#: ../../godmode/reporting/visual_console_builder.editor.php:202 -msgid "Cancel" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:227 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:254 -msgid "Label color" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:295 -msgid "No image or name defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:296 -msgid "No label defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:297 -msgid "No image defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:298 -msgid "No process defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:299 -msgid "No Max value defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:300 -msgid "No width defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:301 -msgid "No period defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:302 -msgid "No agent defined." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:303 -msgid "No module defined." -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:124 -#: ../../godmode/reporting/visual_console_builder.wizard.php:61 -#: ../../godmode/setup/gis_step_2.php:258 -msgid "Height" -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:129 -#: ../../enterprise/godmode/agentes/inventory_manager.php:163 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:194 -#: ../../include/functions_alerts.php:792 -msgid "day" -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:132 -msgid "1 year" -msgstr "" - -#: ../../godmode/reporting/graph_builder.main.php:142 -#: ../../enterprise/dashboard/widgets/custom_graph.php:34 -msgid "Stacked" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:68 -msgid "Successfully update." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:71 -msgid "Could not be update." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:83 -msgid "Successfully created." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:86 -msgid "Could not be created." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:151 -msgid "Successfully delete." -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:228 -msgid "List elements" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:231 -#: ../../enterprise/include/functions_reporting.php:24 -msgid "Wizard" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:234 -msgid "Editor" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.php:237 -#: ../../godmode/reporting/graph_builder.php:161 -#: ../../godmode/reporting/reporting_builder.php:648 -msgid "Preview" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:56 -msgid "Image range (px)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:59 -msgid "Image size (px)" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:70 -msgid "Are you sure to add many elements\\nin visual map?" -msgstr "" - -#: ../../godmode/reporting/graphs.php:35 -msgid "Graphs management" -msgstr "" - -#: ../../godmode/reporting/graphs.php:82 -msgid "Number of Graphs" -msgstr "" - -#: ../../godmode/reporting/graphs.php:122 -msgid "Create graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.preview.php:146 -#: ../../include/functions_custom_graphs.php:101 -msgid "Empty graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:158 -msgid "Graph editor" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:196 -msgid "Graph stored successfully" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:196 -msgid "There was a problem storing Graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:199 -msgid "There was a problem adding Module" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:202 -msgid "Update the graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:202 -msgid "Bad update the graph" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:205 -msgid "Graph deleted successfully" -msgstr "" - -#: ../../godmode/reporting/graph_builder.php:205 -msgid "There was a problem deleting Graph" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.data.php:48 -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:51 -#: ../../enterprise/godmode/agentes/collections.data.php:291 -msgid "Group:" -msgstr "" - -#: ../../godmode/reporting/map_builder.php:114 -#: ../../godmode/reporting/map_builder.php:124 -msgid "Not copied. Error copying data" -msgstr "" - -#: ../../godmode/reporting/map_builder.php:134 -msgid "Items" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:134 -msgid "Items filter" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:201 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:399 -#: ../../enterprise/godmode/alerts/alert_events_list.php:440 -msgid "Sort" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:204 -#: ../../godmode/reporting/reporting_builder.list_items.php:209 -#: ../../godmode/reporting/reporting_builder.list_items.php:214 -msgid "Ascendent" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:205 -#: ../../godmode/reporting/reporting_builder.list_items.php:210 -#: ../../godmode/reporting/reporting_builder.list_items.php:215 -msgid "Descent" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:219 -msgid "Options" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:223 -msgid "No items" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:252 -msgid "Move to up" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.list_items.php:259 -msgid "Move to down" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:75 -msgid "Private" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:123 -msgid "Create report" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:636 -msgid "List items" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:639 -msgid "Item editor" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:666 -msgid "Successfull action" -msgstr "" - -#: ../../godmode/reporting/reporting_builder.php:666 -msgid "Unsuccessfull action" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:43 ../../godmode/tag/tag.php:63 -msgid "List tags" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:48 ../../godmode/tag/tag.php:68 -msgid "Tags configuration" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:67 -msgid "Error updating tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:69 -msgid "Successfully updated tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:92 -msgid "Error creating tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:96 -msgid "Successfully created tag" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:141 -msgid "Url" -msgstr "" - -#: ../../godmode/tag/edit_tag.php:142 -msgid "Hyperlink to help information that has to exist previously." -msgstr "" - -#: ../../godmode/tag/tag.php:48 -msgid "Number of modules" -msgstr "" - -#: ../../godmode/tag/tag.php:51 -msgid "Number of policy modules" -msgstr "" - -#: ../../godmode/tag/tag.php:77 -msgid "Error deleting tag" -msgstr "" - -#: ../../godmode/tag/tag.php:79 -msgid "Successfully deleted tag" -msgstr "" - -#: ../../godmode/tag/tag.php:114 -msgid "Create tag" -msgstr "" - -#: ../../godmode/tag/tag.php:137 -msgid "Tag name" -msgstr "" - -#: ../../godmode/tag/tag.php:139 -msgid "Detail information" -msgstr "" - -#: ../../godmode/tag/tag.php:140 -msgid "Number of modules affected" -msgstr "" - -#: ../../godmode/tag/tag.php:172 -msgid "No tags selected" -msgstr "" - -#: ../../godmode/setup/performance.php:40 -msgid "Performance configuration" -msgstr "" - -#: ../../godmode/setup/performance.php:46 -msgid "Max. days before delete events" -msgstr "" - -#: ../../godmode/setup/performance.php:49 -msgid "Max. days before delete traps" -msgstr "" - -#: ../../godmode/setup/performance.php:52 -msgid "Max. days before delete audit events" -msgstr "" - -#: ../../godmode/setup/performance.php:55 -msgid "Max. days before delete string data" -msgstr "" - -#: ../../godmode/setup/performance.php:58 -msgid "Max. days before delete GIS data" -msgstr "" - -#: ../../godmode/setup/performance.php:61 -msgid "Max. days before purge" -msgstr "" - -#: ../../godmode/setup/performance.php:64 -msgid "Max. days before compact data" -msgstr "" - -#: ../../godmode/setup/performance.php:67 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "" - -#: ../../godmode/setup/performance.php:77 -#: ../../include/functions_alerts.php:794 -msgid "weeks" -msgstr "" - -#: ../../godmode/setup/performance.php:80 -msgid "SLA period (seconds)" -msgstr "" - -#: ../../godmode/setup/performance.php:80 -msgid "You can see this in SLA agent tab." -msgstr "" - -#: ../../godmode/setup/performance.php:83 -msgid "Default hours for event view" -msgstr "" - -#: ../../godmode/setup/performance.php:90 -msgid "Use realtime statistics" -msgstr "" - -#: ../../godmode/setup/performance.php:94 -msgid "Batch statistics period (secs)" -msgstr "" - -#: ../../godmode/setup/performance.php:94 -msgid "" -"If realtime statistics are disabled, statistics interval resfresh will be " -"set here." -msgstr "" - -#: ../../godmode/setup/performance.php:97 -msgid "Use agent access graph" -msgstr "" - -#: ../../godmode/setup/performance.php:101 -msgid "Max. days before delete unknown modules" -msgstr "" - -#: ../../godmode/setup/os.list.php:67 -msgid "There are no defined operating systems" -msgstr "" - -#: ../../godmode/setup/setup.php:52 -msgid "General configuration" -msgstr "" - -#: ../../godmode/setup/setup.php:76 -msgid "Language code for Pandora" -msgstr "" - -#: ../../godmode/setup/setup.php:80 -msgid "Remote config directory" -msgstr "" - -#: ../../godmode/setup/setup.php:80 -msgid "Directory where agent remote configuration is stored." -msgstr "" - -#: ../../godmode/setup/setup.php:84 -msgid "Auto login (hash) password" -msgstr "" - -#: ../../godmode/setup/setup.php:87 -msgid "Time source" -msgstr "" - -#: ../../godmode/setup/setup.php:92 -msgid "Automatic check for updates" -msgstr "" - -#: ../../godmode/setup/setup.php:96 -msgid "Enforce https" -msgstr "" - -#: ../../godmode/setup/setup.php:97 -msgid "" -"If SSL is not properly configured you will lose access to Pandora FMS " -"Console. Do you want to continue?" -msgstr "" - -#: ../../godmode/setup/setup.php:100 -msgid "Attachment store" -msgstr "" - -#: ../../godmode/setup/setup.php:100 -msgid "Directory where temporary data is stored." -msgstr "" - -#: ../../godmode/setup/setup.php:103 -msgid "IP list with API access" -msgstr "" - -#: ../../godmode/setup/setup.php:107 -msgid "API password" -msgstr "" - -#: ../../godmode/setup/setup.php:108 -msgid "Please be careful if you put a password put https access." -msgstr "" - -#: ../../godmode/setup/setup.php:111 -msgid "Enable GIS features in Pandora Console" -msgstr "" - -#: ../../godmode/setup/setup.php:115 -msgid "Enable Integria incidents in Pandora Console" -msgstr "" - -#: ../../godmode/setup/setup.php:152 -msgid "Integria URL" -msgstr "" - -#: ../../godmode/setup/setup.php:156 -msgid "URL and/or Integria password are incorrect" -msgstr "" - -#: ../../godmode/setup/setup.php:159 -msgid "Integria API password" -msgstr "" - -#: ../../godmode/setup/setup.php:175 -msgid "Integria inventory" -msgstr "" - -#: ../../godmode/setup/setup.php:179 -msgid "Timezone setup" -msgstr "" - -#: ../../godmode/setup/setup.php:183 -msgid "Sound for Alert fired" -msgstr "" - -#: ../../godmode/setup/setup.php:188 -msgid "Sound for Monitor critical" -msgstr "" - -#: ../../godmode/setup/setup.php:193 -msgid "Sound for Monitor warning" -msgstr "" - -#: ../../godmode/setup/setup.php:222 -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_auth.php:33 -msgid "Authentication configuration" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:39 -msgid "Authentication method" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:40 -msgid "Local Pandora FMS" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:40 -msgid "ldap" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:44 -msgid "Autocreate remote users" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:48 -msgid "Autocreate profile" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:54 -msgid "Autocreate profile group" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:56 -msgid "Autocreate blacklist" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:63 -msgid "LDAP server" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:65 -msgid "LDAP port" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:67 -msgid "LDAP version" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:70 -#: ../../enterprise/godmode/setup/setup_auth.php:50 -msgid "Start TLS" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:73 -msgid "Base DN" -msgstr "" - -#: ../../godmode/setup/setup_auth.php:75 -msgid "Login attribute" -msgstr "" - #: ../../godmode/setup/os.php:70 msgid "Fail creating OS" msgstr "" @@ -11493,12 +19436,244 @@ msgstr "" msgid "Builder OS" msgstr "" -#: ../../godmode/setup/gis.php:62 -msgid "Map connection name" +#: ../../godmode/setup/os.php:139 ../../godmode/menu.php:214 +msgid "Edit OS" msgstr "" -#: ../../godmode/setup/gis.php:82 -msgid "Do you wan delete this connection?" +#: ../../godmode/setup/performance.php:83 +msgid "Last day" +msgstr "" + +#: ../../godmode/setup/performance.php:85 +msgid "10 days" +msgstr "" + +#: ../../godmode/setup/performance.php:87 +msgid "2 weeks" +msgstr "" + +#: ../../godmode/setup/performance.php:90 +msgid "You can see this in SLA agent tab." +msgstr "" + +#: ../../godmode/setup/performance.php:100 +msgid "" +"If realtime statistics are disabled, statistics interval resfresh will be " +"set here." +msgstr "" + +#: ../../godmode/setup/performance.php:107 +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:112 +msgid "Database maintenance options" +msgstr "" + +#: ../../godmode/setup/performance.php:118 +msgid "Others" +msgstr "" + +#: ../../godmode/setup/os.list.php:67 +msgid "There are no defined operating systems" +msgstr "" + +#: ../../godmode/setup/setup_general.php:54 +msgid "Directory where agent remote configuration is stored." +msgstr "" + +#: ../../godmode/setup/setup_general.php:87 +msgid "Please be careful if you put a password put https access." +msgstr "" + +#: ../../godmode/setup/setup_general.php:141 +msgid "URL and/or Integria password are incorrect" +msgstr "" + +#: ../../godmode/setup/setup_general.php:185 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches " +"of time." +msgstr "" + +#: ../../godmode/setup/setup_general.php:195 +#: ../../godmode/setup/setup_general.php:200 +#: ../../godmode/setup/setup_general.php:205 +msgid "Play sound" +msgstr "" + +#: ../../godmode/setup/setup_general.php:221 +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:229 +msgid "" +"If set to yes no events or alerts will be generated, but agents will " +"continue receiving data." +msgstr "" + +#: ../../godmode/setup/setup_general.php:238 +msgid "The string modules with several lines show as command output" +msgstr "" + +#: ../../godmode/setup/setup_general.php:245 +msgid "General options" +msgstr "" + +#: ../../godmode/setup/setup_general.php:305 +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_auth.php:38 +msgid "Local Pandora FMS" +msgstr "" + +#: ../../godmode/setup/setup_auth.php:38 +msgid "ldap" +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:85 ../../godmode/setup/news.php:90 +msgid "Name error" +msgstr "" + +#: ../../godmode/setup/links.php:104 ../../godmode/setup/links.php:134 +msgid "Link name" +msgstr "" + +#: ../../godmode/setup/links.php:130 +msgid "There isn't links" +msgstr "" + +#: ../../godmode/setup/setup.php:81 ../../godmode/setup/setup.php:111 +msgid "Authentication" +msgstr "" + +#: ../../godmode/setup/setup.php:89 ../../godmode/setup/setup.php:120 +msgid "Visual styles" +msgstr "" + +#: ../../godmode/setup/setup.php:136 +msgid "Correct update the setup options" +msgstr "" + +#: ../../godmode/setup/setup_netflow.php:44 +msgid "Directory where netflow data will be stored." +msgstr "" + +#: ../../godmode/setup/setup_netflow.php:54 +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:60 +msgid "Sets the maximum lifetime for netflow data in days." +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:90 +msgid "Interval values" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:100 +msgid "Add new custom value to intervals" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:133 +msgid "Colors" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:134 +msgid "Faces" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:135 +msgid "Colors and text" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:188 +msgid "This interval will affect to Visual Console pages" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:193 +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:194 +#: ../../godmode/setup/setup_visuals.php:200 +msgid "Small:" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:195 +#: ../../godmode/setup/setup_visuals.php:201 +msgid "Normal:" +msgstr "" + +#: ../../godmode/setup/setup_visuals.php:199 +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:205 +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:210 +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:215 +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:228 +msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" +msgstr "" + +#: ../../godmode/setup/news.php:28 +msgid "Site news management" +msgstr "" + +#: ../../godmode/setup/news.php:62 +#: ../../godmode/modules/manage_nc_groups.php:96 +#: ../../godmode/netflow/nf_edit_form.php:129 +#: ../../godmode/events/event_edit_filter.php:136 +msgid "Not updated. Error updating data" +msgstr "" + +#: ../../godmode/setup/news.php:138 +msgid "There are no defined news" msgstr "" #: ../../godmode/setup/gis_step_2.php:39 @@ -11601,13 +19776,6 @@ msgstr "" msgid "Right" msgstr "" -#: ../../godmode/setup/gis_step_2.php:249 -#: ../../enterprise/include/functions_reporting_csv.php:753 -#: ../../enterprise/include/functions_reporting_pdf.php:1081 -#: ../../include/functions_reporting.php:3403 -msgid "Top" -msgstr "" - #: ../../godmode/setup/gis_step_2.php:253 msgid "Image Size" msgstr "" @@ -11651,4578 +19819,4112 @@ msgstr "" msgid "Refresh preview map" msgstr "" -#: ../../godmode/setup/file_manager.php:111 -#, php-format -msgid "Index of %s" +#: ../../godmode/setup/gis.php:32 ../../godmode/menu.php:211 +msgid "Map conections GIS" msgstr "" -#: ../../godmode/setup/links.php:27 -msgid "Link management" +#: ../../godmode/setup/gis.php:62 +msgid "Map connection name" msgstr "" -#: ../../godmode/setup/links.php:39 -msgid "There was a problem creating link" +#: ../../godmode/setup/gis.php:82 +msgid "Do you wan delete this connection?" msgstr "" -#: ../../godmode/setup/links.php:56 -msgid "There was a problem modifying link" +#: ../../godmode/modules/manage_network_templates.php:30 +#: ../../godmode/modules/manage_network_templates_form.php:32 +msgid "Module template management" msgstr "" -#: ../../godmode/setup/links.php:67 -msgid "There was a problem deleting link" +#: ../../godmode/modules/manage_network_templates.php:52 +msgid "Template successfully deleted" msgstr "" -#: ../../godmode/setup/links.php:85 ../../godmode/setup/news.php:89 -msgid "Name error" +#: ../../godmode/modules/manage_network_templates.php:53 +msgid "Error deleting template" msgstr "" -#: ../../godmode/setup/links.php:104 ../../godmode/setup/links.php:134 -msgid "Link name" +#: ../../godmode/modules/manage_network_templates.php:92 +msgid "This template does not exist" msgstr "" -#: ../../godmode/setup/links.php:107 -#: ../../enterprise/godmode/policies/policy_linking.php:141 -msgid "Link" +#: ../../godmode/modules/manage_network_templates.php:230 +msgid "There are no defined network profiles" msgstr "" -#: ../../godmode/setup/links.php:130 -msgid "There isn't links" +#: ../../godmode/modules/manage_network_components_form_network.php:40 +#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/massive/massive_edit_modules.php:363 +#: ../../extensions/snmp_explorer.php:292 +msgid "SNMP version" msgstr "" -#: ../../godmode/setup/setup_visuals.php:42 -msgid "Visual configuration" +#: ../../godmode/modules/manage_network_components_form_network.php:47 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +msgid "SNMP OID" msgstr "" -#: ../../godmode/setup/setup_visuals.php:47 -msgid "Date format string" +#: ../../godmode/modules/manage_network_components_form_network.php:50 +#: ../../godmode/agentes/module_manager_editor_network.php:69 +#: ../../extensions/snmp_explorer.php:289 +msgid "SNMP community" msgstr "" -#: ../../godmode/setup/setup_visuals.php:48 -msgid "Example" +#: ../../godmode/modules/manage_network_components_form_network.php:57 +#: ../../godmode/agentes/module_manager_editor_network.php:163 +#: ../../godmode/massive/massive_edit_modules.php:365 +#: ../../extensions/snmp_explorer.php:308 +msgid "Auth user" msgstr "" -#: ../../godmode/setup/setup_visuals.php:51 -msgid "Timestamp or time comparation" +#: ../../godmode/modules/manage_network_components_form_network.php:59 +#: ../../godmode/agentes/module_manager_editor_network.php:165 +#: ../../godmode/massive/massive_edit_modules.php:367 +#: ../../extensions/snmp_explorer.php:310 +msgid "Auth password" msgstr "" -#: ../../godmode/setup/setup_visuals.php:52 -msgid "Comparation in rollover" +#: ../../godmode/modules/manage_network_components_form_network.php:65 +#: ../../godmode/agentes/module_manager_editor_network.php:172 +#: ../../godmode/massive/massive_edit_modules.php:369 +#: ../../extensions/snmp_explorer.php:314 +msgid "Privacy method" msgstr "" -#: ../../godmode/setup/setup_visuals.php:54 -msgid "Timestamp in rollover" +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../extensions/snmp_explorer.php:315 +msgid "DES" msgstr "" -#: ../../godmode/setup/setup_visuals.php:57 -msgid "Graph color (min)" +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/module_manager_editor_network.php:173 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../extensions/snmp_explorer.php:315 +msgid "AES" msgstr "" -#: ../../godmode/setup/setup_visuals.php:60 -msgid "Graph color (avg)" +#: ../../godmode/modules/manage_network_components_form_network.php:67 +#: ../../godmode/agentes/module_manager_editor_network.php:174 +#: ../../godmode/massive/massive_edit_modules.php:371 +msgid "Privacy pass" msgstr "" -#: ../../godmode/setup/setup_visuals.php:63 -msgid "Graph color (max)" +#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:373 +#: ../../extensions/snmp_explorer.php:319 +msgid "Auth method" msgstr "" -#: ../../godmode/setup/setup_visuals.php:66 -msgid "Graphic resolution (1-low, 5-high)" +#: ../../godmode/modules/manage_network_components_form_network.php:73 +#: ../../godmode/agentes/module_manager_editor_network.php:181 +#: ../../godmode/massive/massive_edit_modules.php:374 +#: ../../extensions/snmp_explorer.php:320 +msgid "MD5" msgstr "" -#: ../../godmode/setup/setup_visuals.php:69 -msgid "Style template" +#: ../../godmode/modules/manage_network_components_form_network.php:73 +#: ../../godmode/agentes/module_manager_editor_network.php:181 +#: ../../godmode/massive/massive_edit_modules.php:374 +#: ../../extensions/snmp_explorer.php:320 +msgid "SHA" msgstr "" -#: ../../godmode/setup/setup_visuals.php:75 -msgid "Use round corners" +#: ../../godmode/modules/manage_network_components_form_network.php:74 +#: ../../godmode/agentes/module_manager_editor_network.php:182 +#: ../../godmode/massive/massive_edit_modules.php:375 +#: ../../extensions/snmp_explorer.php:321 +msgid "Security level" msgstr "" -#: ../../godmode/setup/setup_visuals.php:79 -msgid "Status icon set" +#: ../../godmode/modules/manage_network_components_form_network.php:75 +#: ../../godmode/agentes/module_manager_editor_network.php:183 +#: ../../godmode/massive/massive_edit_modules.php:376 +#: ../../extensions/snmp_explorer.php:322 +msgid "Not auth and not privacy method" msgstr "" -#: ../../godmode/setup/setup_visuals.php:80 -msgid "Colors" +#: ../../godmode/modules/manage_network_components_form_network.php:76 +#: ../../godmode/agentes/module_manager_editor_network.php:184 +#: ../../godmode/massive/massive_edit_modules.php:377 +#: ../../extensions/snmp_explorer.php:323 +msgid "Auth and not privacy method" msgstr "" -#: ../../godmode/setup/setup_visuals.php:81 -msgid "Faces" +#: ../../godmode/modules/manage_network_components_form_network.php:76 +#: ../../godmode/agentes/module_manager_editor_network.php:184 +#: ../../godmode/massive/massive_edit_modules.php:377 +#: ../../extensions/snmp_explorer.php:323 +msgid "Auth and privacy method" msgstr "" -#: ../../godmode/setup/setup_visuals.php:82 -msgid "Colors and text" +#: ../../godmode/modules/manage_network_components_form_network.php:89 +#: ../../godmode/agentes/module_manager_editor_network.php:113 +msgid "TCP send" msgstr "" -#: ../../godmode/setup/setup_visuals.php:86 -msgid "Font path" +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../godmode/agentes/module_manager_editor_network.php:119 +msgid "TCP receive" msgstr "" -#: ../../godmode/setup/setup_visuals.php:91 -#: ../../enterprise/dashboard/widgets/network_map.php:43 -msgid "Font size" +#: ../../godmode/modules/manage_network_components_form_plugin.php:22 +#: ../../godmode/agentes/module_manager_editor_plugin.php:47 +#: ../../extensions/plugin_registration.php:189 +msgid "Plugin" msgstr "" -#: ../../godmode/setup/setup_visuals.php:94 -msgid "Whether to use Flash charts or static PNG graphs" +#: ../../godmode/modules/manage_network_templates_form.php:54 +msgid "Successfully deleted module from profile" msgstr "" -#: ../../godmode/setup/setup_visuals.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:76 -msgid "Custom logo" +#: ../../godmode/modules/manage_network_templates_form.php:55 +msgid "Error deleting module from profile" msgstr "" -#: ../../godmode/setup/setup_visuals.php:112 -msgid "Global default interval for refresh" +#: ../../godmode/modules/manage_network_templates_form.php:70 +msgid "Successfully added module to profile" msgstr "" -#: ../../godmode/setup/setup_visuals.php:112 -msgid "This interval will affect all pages" +#: ../../godmode/modules/manage_network_templates_form.php:71 +msgid "Error adding module to profile" msgstr "" -#: ../../godmode/setup/setup_visuals.php:115 -msgid "Default interval for refresh on Visual Console" +#: ../../godmode/modules/manage_network_templates_form.php:94 +msgid "Successfully updated network profile" msgstr "" -#: ../../godmode/setup/setup_visuals.php:115 -msgid "This interval will affect to Visual Console pages" +#: ../../godmode/modules/manage_network_templates_form.php:95 +msgid "Error updating network profile" msgstr "" -#: ../../godmode/setup/news.php:28 -msgid "Site news management" +#: ../../godmode/modules/manage_network_templates_form.php:110 +msgid "Successfully added network profile" msgstr "" -#: ../../godmode/setup/news.php:136 -msgid "There are no defined news" +#: ../../godmode/modules/manage_network_templates_form.php:111 +msgid "Error adding network profile" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:37 -#, php-format -msgid "Error create '%s' policy, the name exist and there aren't free name." +#: ../../godmode/modules/manage_network_templates_form.php:116 +msgid "Cannot create a template without name" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:44 -#, php-format -msgid "Warning create '%s' policy, the name exist, the policy have a name %s." +#: ../../godmode/modules/manage_network_templates_form.php:184 +msgid "No modules for this profile" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:51 -msgid "Error the policy haven't name." +#: ../../godmode/modules/manage_network_templates_form.php:224 +msgid "Add modules" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:65 -#, php-format -msgid "Success create '%s' policy." +#: ../../godmode/modules/manage_network_templates_form.php:292 +msgid "Components" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:66 -#, php-format -msgid "Error create '%s' policy." +#: ../../godmode/modules/manage_network_components.php:40 +msgid "Network component management" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:102 -#, php-format -msgid "Success add '%s' agent." +#: ../../godmode/modules/manage_network_components.php:488 +msgid "Max/Min" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:103 -#, php-format -msgid "Error add '%s' agent." +#: ../../godmode/modules/manage_network_components.php:534 +msgid "There are no defined network components" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:125 -#, php-format -msgid "Success add '%s' collection." +#: ../../godmode/modules/manage_network_components.php:540 +msgid "Create a new network component" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:126 -#, php-format -msgid "Error add '%s' collection." +#: ../../godmode/modules/manage_network_components.php:541 +msgid "Create a new plugin component" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:137 -msgid "Error add the module, haven't type." +#: ../../godmode/modules/manage_network_components.php:542 +msgid "Create a new WMI component" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:207 -#: ../../enterprise/extensions/resource_registration/functions.php:237 -#: ../../enterprise/extensions/resource_registration/functions.php:292 -#: ../../enterprise/extensions/resource_registration/functions.php:324 -msgid "Error add the module, error in tag component." +#: ../../godmode/modules/manage_network_components_form_common.php:139 +msgid "Any value below this number is discarted" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:364 -#, php-format -msgid "Success add '%s' module." +#: ../../godmode/modules/manage_network_components_form_common.php:141 +msgid "Any value over this number is discarted" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:365 -#, php-format -msgid "Error add '%s' module." +#: ../../godmode/modules/manage_network_components_form_wmi.php:32 +#: ../../godmode/modules/manage_network_components_form_wmi.php:150 +#: ../../godmode/agentes/module_manager_editor_wmi.php:59 +msgid "WMI query" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:375 -#, php-format -msgid "Error add the alert, the template '%s' don't exist." +#: ../../godmode/modules/manage_network_components_form_wmi.php:34 +#: ../../godmode/modules/manage_network_components_form_wmi.php:158 +#: ../../godmode/agentes/module_manager_editor_wmi.php:67 +msgid "Key string" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:383 -#, php-format -msgid "Error add the alert, the module '%s' don't exist." +#: ../../godmode/modules/manage_network_components_form_wmi.php:40 +#: ../../godmode/modules/manage_network_components_form_wmi.php:166 +#: ../../godmode/agentes/module_manager_editor_wmi.php:70 +msgid "Field number" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:395 -#, php-format -msgid "Success add '%s' alert." +#: ../../godmode/modules/manage_network_components_form_wmi.php:42 +#: ../../godmode/modules/manage_network_components_form_wmi.php:174 +#: ../../godmode/agentes/module_manager_editor_wmi.php:44 +msgid "Namespace" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:396 -#, php-format -msgid "Error add '%s' alert." +#: ../../godmode/modules/manage_network_components_form_wmi.php:133 +msgid "Module Interval" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:412 -#, php-format -msgid "Error add the alert, the action '%s' don't exist." +#: ../../godmode/modules/manage_network_components_form_wmi.php:138 +#: ../../godmode/servers/plugin.php:119 +msgid "Max. timeout" msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:424 -#, php-format -msgid "Success add '%s' action." +#: ../../godmode/modules/manage_network_components_form_wmi.php:144 +#: ../../godmode/servers/plugin.php:121 +msgid "Max. retries" msgstr "" -#: ../../enterprise/extensions/tree_view.php:465 -msgid "

There aren't agents in this agrupation.

" +#: ../../godmode/modules/manage_network_components_form_wmi.php:194 +msgid "Minimum Data" msgstr "" -#: ../../enterprise/extensions/tree_view.php:683 -msgid "Tree view" +#: ../../godmode/modules/manage_network_components_form_wmi.php:198 +msgid "Maximum Data" msgstr "" -#: ../../enterprise/extensions/tree_view.php:683 -msgid "Sort the agents by" +#: ../../godmode/modules/manage_nc_groups.php:38 +msgid "Component group management" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:38 -#, php-format -msgid "Created agent %s" +#: ../../godmode/modules/manage_nc_groups.php:55 +msgid "Could not be created. Blank name" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:39 -#, php-format -msgid "Could not create agent %s" +#: ../../godmode/modules/manage_nc_groups.php:235 +msgid "There are no defined component groups" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:43 -msgid "File processed" +#: ../../godmode/modules/module_list.php:28 +msgid "Defined modules" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:49 -msgid "CSV format" +#: ../../godmode/modules/module_list.php:50 +msgid "Problem modifying module" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:50 -msgid "The CSV file must have the fields in the following order" +#: ../../godmode/modules/module_list.php:52 +msgid "Module updated successfully" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:62 -#: ../../include/functions_filemanager.php:709 -msgid "Upload file" +#: ../../godmode/netflow/nf_item_list.php:39 +msgid "Report list" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:69 -msgid "Separator" +#: ../../godmode/netflow/nf_item_list.php:44 +#: ../../godmode/netflow/nf_item_list.php:54 +msgid "Report items" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:73 -msgid "Upload CSV file" +#: ../../godmode/netflow/nf_item_list.php:49 +msgid "Edit report" msgstr "" -#: ../../enterprise/extensions/csv_import/main.php:78 -#: ../../include/functions_filemanager.php:536 -#: ../../include/functions_filemanager.php:676 -#: ../../include/functions_filemanager.php:711 -#: ../../include/functions_filemanager.php:746 -msgid "Go" +#: ../../godmode/netflow/nf_item_list.php:58 +msgid "Netflow reports" msgstr "" -#: ../../enterprise/extensions/csv_import.php:27 -msgid "CSV import" +#: ../../godmode/netflow/nf_item_list.php:59 +msgid "Item list" msgstr "" -#: ../../enterprise/extensions/backup.php:57 -msgid "Backup" +#: ../../godmode/netflow/nf_item_list.php:149 +msgid "Chart type" msgstr "" -#: ../../enterprise/extensions/dict.php:48 -#: ../../enterprise/extensions/dict.php:138 -msgid "Dictionary" +#: ../../godmode/netflow/nf_item_list.php:253 +msgid "There are no defined items" msgstr "" -#: ../../enterprise/extensions/dict.php:59 -msgid "Configuration could not be saved" +#: ../../godmode/netflow/nf_edit.php:37 +msgid "Manage Netflow Filter" msgstr "" -#: ../../enterprise/extensions/dict.php:62 -msgid "Configuration saved" +#: ../../godmode/netflow/nf_edit.php:41 ../../godmode/netflow/nf_edit.php:45 +#: ../../godmode/netflow/nf_edit_form.php:63 +#: ../../godmode/netflow/nf_edit_form.php:68 ../../godmode/menu.php:226 +msgid "Netflow filters" msgstr "" -#: ../../enterprise/extensions/backup/main.php:53 -msgid "Pandora database backup utility" +#: ../../godmode/netflow/nf_edit.php:160 +#: ../../godmode/events/event_filter.php:151 +msgid "There are no defined filters" msgstr "" -#: ../../enterprise/extensions/backup/main.php:113 -msgid "Lost" +#: ../../godmode/netflow/nf_edit.php:165 +#: ../../godmode/snmpconsole/snmp_filters.php:38 +#: ../../godmode/events/events.php:39 +#: ../../godmode/events/event_filter.php:156 +msgid "Create filter" msgstr "" -#: ../../enterprise/extensions/backup/main.php:120 -msgid "Download" +#: ../../godmode/netflow/nf_edit_form.php:52 +msgid "Filter list" msgstr "" -#: ../../enterprise/extensions/backup/main.php:139 -msgid "Backups list" +#: ../../godmode/netflow/nf_edit_form.php:56 +#: ../../godmode/netflow/nf_edit_form.php:64 +msgid "Add filter" msgstr "" -#: ../../enterprise/extensions/backup/main.php:144 -msgid "Create backup" +#: ../../godmode/netflow/nf_edit_form.php:59 +msgid "Netflow Filter" msgstr "" -#: ../../enterprise/extensions/cron.php:57 -#: ../../enterprise/extensions/cron/main.php:36 -msgid "Cron jobs" +#: ../../godmode/netflow/nf_edit_form.php:192 +msgid "Filter:" msgstr "" -#: ../../enterprise/extensions/translate_string.php:146 -#: ../../enterprise/extensions/translate_string.php:281 -msgid "Translate string" +#: ../../godmode/servers/servers.build_table.php:32 +msgid "There are no servers configured into the database" msgstr "" -#: ../../enterprise/extensions/translate_string.php:232 -msgid "Please search for anything text." +#: ../../godmode/servers/servers.build_table.php:49 +msgid "Tactical server information" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:67 -#: ../../enterprise/extensions/cron/functions.php:82 -msgid "Report to build" +#: ../../godmode/servers/servers.build_table.php:57 +msgid "Load" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:68 -msgid "Send to email" +#: ../../godmode/servers/servers.build_table.php:57 +msgid "Modules running on this server / Total modules of this type" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:69 -msgid "Send custom report by email" +#: ../../godmode/servers/servers.build_table.php:59 +msgid "Lag" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:83 -msgid "Save to disk into path" +#: ../../godmode/servers/servers.build_table.php:59 +msgid "Modules delayed / Max. Delay (sec)" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:84 -msgid "Save custom report to disk" +#: ../../godmode/servers/servers.build_table.php:60 +msgid "T/Q" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:97 -#: ../../enterprise/extensions/cron/functions.php:110 -msgid "Backup Pandora database" +#: ../../godmode/servers/servers.build_table.php:60 +msgid "Threads / Queued modules currently" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:125 -msgid "Not scheduled" +#: ../../godmode/servers/servers.build_table.php:87 +msgid "This is a master server" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:126 -msgid "Hourly" +#: ../../godmode/servers/servers.build_table.php:98 +#: ../../godmode/servers/servers.build_table.php:103 +msgid "of" msgstr "" -#: ../../enterprise/extensions/cron/functions.php:130 -msgid "Yearly" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:296 -msgid "This is the automatic generated report" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:299 -msgid "Open the attached file to view it" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:305 -msgid "Please do not answer or reply to this email" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:42 -msgid "Add new job" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:76 -#: ../../enterprise/extensions/cron/main.php:130 -msgid "Path doesn't exists or is not writable" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:108 -#: ../../enterprise/extensions/cron/main.php:123 -msgid "Edit job" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:149 -msgid "Cron extension is not running" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:150 -msgid "Cron extension has never run or it's not configured well" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:151 +#: ../../godmode/servers/servers.build_table.php:121 msgid "" -"This extension relies on a proper setup of cron, the time-based scheduling " -"service" +"Modules run by this server will stop working. Do you want to continue?" msgstr "" -#: ../../enterprise/extensions/cron/main.php:153 -msgid "Please, add the following line to your crontab file" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:159 -msgid "Last execution" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:166 -msgid "Cron extension is running" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:175 -msgid "Scheduled jobs" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:181 -#: ../../enterprise/extensions/cron/main.php:255 -#: ../../include/graphs/functions_fsgraph.php:722 -msgid "Task" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:182 -#: ../../enterprise/extensions/cron/main.php:259 -msgid "Scheduled" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:183 -msgid "Last run" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:192 -msgid "Force run" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:226 -msgid "Path" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:262 -msgid "First execution" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:265 -msgid "Parameters" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:70 -msgid "Succesfully created" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:115 -msgid "Succesfully updated" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:122 -msgid "Succesfully duplicate" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:123 -msgid "Could not be duplicated" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:130 -msgid "Succesfully deleted" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:142 -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:741 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:146 -msgid "Networkmap enterprise" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:174 -msgid "Not networkmap defined." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:187 -msgid "Config" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.php:201 -msgid "Create networkmap" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.popup.php:40 -msgid "Details of node " -msgstr "" - -#: ../../enterprise/operation/agentes/agent_inventory.php:52 -#: ../../enterprise/godmode/agentes/inventory_manager.php:199 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:234 -msgid "No inventory modules found" -msgstr "" - -#: ../../enterprise/operation/agentes/agent_inventory.php:84 -#: ../../enterprise/operation/inventory/inventory.php:173 -#: ../../include/functions.php:423 -msgid "Now" -msgstr "" - -#: ../../enterprise/operation/agentes/agent_inventory.php:208 -#: ../../enterprise/operation/inventory/inventory.php:216 -#: ../../enterprise/operation/inventory/inventory.php:225 -msgid "No data found." -msgstr "" - -#: ../../enterprise/operation/agentes/collection_view.php:47 -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -msgid "This agent have not a remote configuration, please set it." -msgstr "" - -#: ../../enterprise/operation/agentes/collection_view.php:53 -msgid "This agent doesn't have any collection" -msgstr "" - -#: ../../enterprise/operation/agentes/collection_view.php:61 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/godmode/agentes/collection_manager.php:124 -msgid "Dir" -msgstr "" - -#: ../../enterprise/operation/agentes/collection_view.php:87 -#: ../../enterprise/operation/agentes/policy_view.php:156 -#: ../../enterprise/godmode/agentes/collection_manager.php:102 -#: ../../enterprise/godmode/agentes/collection_manager.php:153 -msgid "Show files" -msgstr "" - -#: ../../enterprise/operation/agentes/collection_view.php:95 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collection_manager.php:167 -#: ../../enterprise/godmode/policies/policy_collections.php:154 -#: ../../enterprise/godmode/policies/policy_collections.php:205 -msgid "Outdate" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:96 -msgid "Success be updated." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:99 -msgid "Could not be updated." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:305 -msgid "Name: " -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:345 -msgid "Policy: " -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:389 -msgid "Status: " -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:425 -msgid "Data: " -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:428 -msgid "Last contact: " -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:742 -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:149 -msgid "Not found networkmap." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.view.php:769 -#, php-format -msgid "Networkmap enterprise - %s" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:170 -msgid "Generate networkmap from" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:172 -msgid "The networkmap has been generated already." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:178 -msgid "Size of networkmap (Width x Height)" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:179 -msgid "x" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:188 -msgid "Method generation networkmap" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:199 -msgid "Refresh networkmap state" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:202 -msgid "Resize the networkmap" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:203 -msgid "This operation can't be undone, because it is on DB." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:215 -msgid "Save networkmap" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:220 -msgid "Update networkmap" -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:258 -msgid "Networkmap resized." -msgstr "" - -#: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:265 -msgid "Error process map" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:37 -msgid "This agent has no policy assigned" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:41 -msgid "Pandora agents " -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:41 -msgid "Policy view" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:52 -#: ../../enterprise/godmode/policies/policy_agents.php:341 -msgid "Last application" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:53 -#: ../../include/functions_events.php:331 -msgid "V." -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:64 -#: ../../enterprise/godmode/policies/policy_agents.php:438 -msgid "Policy applied" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:67 -msgid "Policy outdate" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:132 -#: ../../enterprise/operation/agentes/policy_view.php:139 -msgid "Toggle the collection table" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:135 -msgid "Descripttion" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:140 -msgid "Show Collection" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:194 -#: ../../enterprise/operation/agentes/policy_view.php:203 -msgid "Toggle the alert table" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:204 -msgid "Show Alert" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:302 -#: ../../enterprise/operation/agentes/policy_view.php:311 -msgid "Toggle the module table" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:303 -msgid "Relationship" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:303 -#: ../../enterprise/godmode/policies/policy_agents.php:337 -msgid "R." -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:312 -msgid "Show Modules" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:332 -msgid "(Un-adopted)" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:336 -msgid "(Adopted)" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:342 -msgid "(Un-adopted) (Unlinked)" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:346 -msgid "(Adopted) (Unlinked)" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:50 -#: ../../enterprise/godmode/policies/policy_queue.php:43 -msgid "Operation successfully deleted from the queue" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:51 -#: ../../enterprise/godmode/policies/policy_queue.php:44 -msgid "Operation cannot be deleted from the queue" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:221 -#: ../../enterprise/godmode/policies/policy_queue.php:287 -msgid "Apply (database and files)" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:221 -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:302 -#: ../../enterprise/godmode/policies/policy_queue.php:287 -#: ../../enterprise/godmode/policies/policy_queue.php:359 -msgid "Apply (only database)" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:227 -#: ../../enterprise/godmode/policies/policy_queue.php:293 -msgid "Complete" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:227 -#: ../../enterprise/godmode/policies/policy_queue.php:293 -msgid "Incomplete" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:241 -#: ../../enterprise/godmode/policies/policy_queue.php:307 -msgid "Queue filter" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:255 -#: ../../enterprise/godmode/policies/policy_queue.php:320 -msgid "Finished" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:327 -#: ../../enterprise/godmode/policies/policy_queue.php:383 -msgid "Delete from queue" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.queue.php:345 -#: ../../enterprise/godmode/policies/policy_queue.php:396 -msgid "Empty queue" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:119 -#: ../../enterprise/godmode/policies/policy.php:109 -#: ../../enterprise/godmode/policies/policy.php:130 -msgid "Duplicated or incompatible operation in the queue" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:126 -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:130 -#: ../../enterprise/godmode/policies/policy.php:103 -#: ../../enterprise/godmode/policies/policy.php:126 -msgid "Operation successfully added to the queue" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:130 -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:138 -msgid "Only database" -msgstr "" - -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:134 -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:138 -#: ../../enterprise/operation/metaconsole/policymanager.apply.php:142 -#: ../../enterprise/godmode/policies/policy.php:106 -#: ../../enterprise/godmode/policies/policy.php:127 -msgid "Operation cannot be added to the queue" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:62 -msgid "redirected ip server in conf into source DB" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:63 -msgid "created agent in destination DB" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:64 -msgid "created agent modules in destination DB" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:65 -msgid "created agent alerts in destination DB" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:66 -msgid "created alerts actions in destination DB" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:67 -msgid "disabled agent in source DB" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:68 +#: ../../godmode/servers/manage_recontask_form.php:153 msgid "" -"Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -"Console." +"You must select a Recon Server for the Task, otherwise the Recon Task will " +"never run" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:76 -msgid "Successfully moved" +#: ../../godmode/servers/manage_recontask_form.php:160 +msgid "Network sweep" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:76 -msgid "Could not be moved" +#: ../../godmode/servers/manage_recontask_form.php:164 +#: ../../godmode/servers/manage_recontask.php:227 +msgid "Mode" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:119 -msgid "Source Server" +#: ../../godmode/servers/manage_recontask_form.php:177 +msgid "The minimum recomended interval for Recon Task is 5 minutes" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:121 -msgid "Destination Server" +#: ../../godmode/servers/manage_recontask_form.php:181 +msgid "Module template" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:127 -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:129 -msgid "Group filter" +#: ../../godmode/servers/manage_recontask_form.php:186 +msgid "Recon script" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:141 -#: ../../enterprise/godmode/policies/policy_agents.php:286 -msgid "Add modules to policy" +#: ../../godmode/servers/manage_recontask_form.php:197 +#: ../../godmode/servers/manage_recontask.php:227 +msgid "Ports" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.move_agent.php:151 -msgid "Move" +#: ../../godmode/servers/manage_recontask_form.php:199 +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 "" -#: ../../enterprise/operation/metaconsole/policymanager.php:36 -msgid "Sync policies" +#: ../../godmode/servers/manage_recontask_form.php:210 +msgid "Choose if the discovery of a new system creates an incident or not." msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.php:40 -msgid "Apply policies" +#: ../../godmode/servers/manage_recontask_form.php:213 +#: ../../godmode/servers/manage_recontask_form.php:217 +msgid "SNMP Default community" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.php:44 -#: ../../enterprise/operation/metaconsole/policymanager.php:56 -msgid "Policies queue" +#: ../../godmode/servers/manage_recontask_form.php:221 +msgid "Explanation" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.php:50 -msgid "Policies synchronization" +#: ../../godmode/servers/manage_recontask_form.php:227 +msgid "Script field #1" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.php:53 -msgid "Policies apply" +#: ../../godmode/servers/manage_recontask_form.php:227 +msgid "" +"several networks separated by comma. For example: " +"192.168.100.0/24,192.168.50.0/24" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.php:62 -#: ../../enterprise/operation/metaconsole/tactical.php:26 -#: ../../enterprise/operation/metaconsole/groupview.php:27 -#: ../../enterprise/operation/metaconsole/componentmanager.php:30 -#: ../../enterprise/operation/metaconsole/agentsearch.php:26 -#: ../../enterprise/operation/metaconsole/usermanager.php:33 -#: ../../enterprise/operation/metaconsole/alertmanager.php:30 -#: ../../enterprise/operation/metaconsole/eventview.php:107 -#: ../../enterprise/operation/menu.php:70 ../../enterprise/godmode/menu.php:73 -#: ../../enterprise/include/functions_groups.php:47 -msgid "Metaconsole" +#: ../../godmode/servers/manage_recontask_form.php:231 +msgid "Script field #2" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.php:62 -#: ../../enterprise/operation/menu.php:86 -msgid "Policy manager" +#: ../../godmode/servers/manage_recontask_form.php:231 +msgid "" +"several communities separated by comma. For example: " +"snmp_community,public,private " msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:41 -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:191 -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:219 -#: ../../enterprise/operation/metaconsole/componentmanager.php:46 -#: ../../enterprise/operation/metaconsole/componentmanager.php:234 -#: ../../enterprise/operation/metaconsole/componentmanager.php:258 -#: ../../enterprise/operation/metaconsole/usermanager.php:49 -#: ../../enterprise/operation/metaconsole/usermanager.php:128 -#: ../../enterprise/operation/metaconsole/usermanager.php:155 -#: ../../enterprise/operation/metaconsole/usermanager.php:167 -#: ../../enterprise/operation/metaconsole/alertmanager.php:46 -#: ../../enterprise/operation/metaconsole/alertmanager.php:236 -#: ../../enterprise/operation/metaconsole/alertmanager.php:260 +#: ../../godmode/servers/manage_recontask_form.php:235 +msgid "Script field #3" +msgstr "" + +#: ../../godmode/servers/manage_recontask_form.php:239 +msgid "Script field #4" +msgstr "" + +#: ../../godmode/servers/manage_recontask_form.php:248 +msgid "OS detection" +msgstr "" + +#: ../../godmode/servers/manage_recontask_form.php:252 +msgid "Name resolution" +msgstr "" + +#: ../../godmode/servers/manage_recontask_form.php:256 +msgid "Parent detection" +msgstr "" + +#: ../../godmode/servers/manage_recontask_form.php:260 +msgid "Parent recursion" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:33 +msgid "Update Server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:57 +msgid "Pandora servers" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:75 +msgid "Server deleted successfully" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:78 +msgid "There was a problem deleting the server" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:89 +msgid "Server updated successfully" +msgstr "" + +#: ../../godmode/servers/modificar_server.php:92 +msgid "There was a problem updating the server" +msgstr "" + +#: ../../godmode/servers/plugin.php:84 +msgid "Plugin creation" +msgstr "" + +#: ../../godmode/servers/plugin.php:86 +msgid "Plugin update" +msgstr "" + +#: ../../godmode/servers/plugin.php:113 +msgid "Plugin type" +msgstr "" + +#: ../../godmode/servers/plugin.php:114 ../../godmode/servers/plugin.php:456 +msgid "Standard" +msgstr "" + +#: ../../godmode/servers/plugin.php:115 ../../godmode/servers/plugin.php:458 +msgid "Nagios" +msgstr "" + +#: ../../godmode/servers/plugin.php:119 +msgid "" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" + +#: ../../godmode/servers/plugin.php:119 +msgid "" +"If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" + +#: ../../godmode/servers/plugin.php:162 +msgid "Plugin command" +msgstr "" + +#: ../../godmode/servers/plugin.php:170 +msgid "Plug-in parameters" +msgstr "" + +#: ../../godmode/servers/plugin.php:178 +#: ../../godmode/alerts/configure_alert_action.php:143 +msgid "Command preview" +msgstr "" + +#: ../../godmode/servers/plugin.php:182 ../../godmode/servers/plugin.php:436 +#: ../../godmode/servers/recon_script.php:182 +#: ../../godmode/events/event_responses.editor.php:92 +#: ../../godmode/events/event_responses.editor.php:99 +#: ../../godmode/events/event_responses.editor.php:101 +#: ../../godmode/alerts/configure_alert_command.php:76 +#: ../../godmode/alerts/configure_alert_action.php:129 +msgid "Command" +msgstr "" + +#: ../../godmode/servers/plugin.php:271 +msgid "Parameters macros" +msgstr "" + +#: ../../godmode/servers/plugin.php:294 +msgid "Plugins registered in Pandora FMS" +msgstr "" + +#: ../../godmode/servers/plugin.php:345 +msgid "Problem updating plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:348 +msgid "Plugin updated successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:400 +msgid "Problem creating plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:404 +msgid "Plugin created successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:414 +msgid "Problem deleting plugin" +msgstr "" + +#: ../../godmode/servers/plugin.php:417 +msgid "Plugin deleted successfully" +msgstr "" + +#: ../../godmode/servers/plugin.php:463 +msgid "All the modules that are using this plugin will be deleted" +msgstr "" + +#: ../../godmode/servers/plugin.php:469 +msgid "There are no plugins in the system" +msgstr "" + +#: ../../godmode/servers/plugin.php:519 +msgid "" +"The plugin command cannot be updated because some modules or components are " +"using the plugin." +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:43 +msgid "Successfully deleted recon task" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:46 +msgid "Error deleting recon task" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:56 +#: ../../godmode/servers/manage_recontask.php:146 +msgid "Successfully updated recon task" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:63 +#: ../../godmode/servers/manage_recontask.php:149 +msgid "Error updating recon task" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:138 +#: ../../godmode/servers/manage_recontask.php:193 +msgid "Incorrect format in Subnet field" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:186 +msgid "Network provided is not correct" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:201 +msgid "Successfully created recon task" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:204 +msgid "Error creating recon task" +msgstr "" + +#: ../../godmode/servers/manage_recontask.php:309 +msgid "There are no recon task configured" +msgstr "" + +#: ../../godmode/servers/recon_script.php:71 +msgid "Recon script creation" +msgstr "" + +#: ../../godmode/servers/recon_script.php:73 +msgid "Recon script update" +msgstr "" + +#: ../../godmode/servers/recon_script.php:89 +msgid "Script fullpath" +msgstr "" + +#: ../../godmode/servers/recon_script.php:111 +msgid "Recon scripts registered in Pandora FMS" +msgstr "" + +#: ../../godmode/servers/recon_script.php:129 +msgid "Problem updating" +msgstr "" + +#: ../../godmode/servers/recon_script.php:150 +msgid "Problem creating" +msgstr "" + +#: ../../godmode/servers/recon_script.php:164 +msgid "Problem deleting reconscript" +msgstr "" + +#: ../../godmode/servers/recon_script.php:167 +msgid "reconscript deleted successfully" +msgstr "" + +#: ../../godmode/servers/recon_script.php:212 +msgid "There are no recon scripts in the system" +msgstr "" + +#: ../../godmode/users/user_list.php:119 +msgid "Users defined in Pandora" +msgstr "" + +#: ../../godmode/users/user_list.php:145 ../../godmode/users/user_list.php:148 +msgid "There was a problem deleting the user" +msgstr "" + +#: ../../godmode/users/user_list.php:155 +#: ../../godmode/users/profile_list.php:71 +msgid "There was a problem deleting the profile" +msgstr "" + +#: ../../godmode/users/user_list.php:170 +msgid "There was a problem disabling user" +msgstr "" + +#: ../../godmode/users/user_list.php:175 +msgid "There was a problem enabling user" +msgstr "" + +#: ../../godmode/users/user_list.php:266 +msgid "First name" +msgstr "" + +#: ../../godmode/users/user_list.php:267 +msgid "Last name" +msgstr "" + +#: ../../godmode/users/user_list.php:268 +msgid "Phone" +msgstr "" + +#: ../../godmode/users/user_list.php:309 +msgid "Deleting User" +msgstr "" + +#: ../../godmode/users/user_list.php:324 +msgid "Create user" +msgstr "" + +#: ../../godmode/users/user_list.php:328 +#: ../../godmode/users/configure_user.php:134 +msgid "" +"The current authentication scheme doesn't support creating users from " +"Pandora FMS" +msgstr "" + +#: ../../godmode/users/configure_profile.php:47 +#: ../../godmode/users/profile_list.php:51 +msgid "Profiles defined in Pandora" +msgstr "" + +#: ../../godmode/users/configure_profile.php:83 +msgid "Create profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:89 +msgid "There was a problem loading profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:136 +msgid "Update profile" +msgstr "" + +#: ../../godmode/users/configure_profile.php:148 +msgid "View incidents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:150 +msgid "Edit incidents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:152 +msgid "Manage incidents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:154 +msgid "View agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:156 +msgid "Edit agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:158 +msgid "Disable agents" +msgstr "" + +#: ../../godmode/users/configure_profile.php:160 +msgid "Edit alerts" +msgstr "" + +#: ../../godmode/users/configure_profile.php:162 ../../godmode/menu.php:125 +msgid "Manage users" +msgstr "" + +#: ../../godmode/users/configure_profile.php:164 +msgid "Manage Database" +msgstr "" + +#: ../../godmode/users/configure_profile.php:170 +msgid "Edit reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:172 +msgid "Manage reports" +msgstr "" + +#: ../../godmode/users/configure_profile.php:176 +msgid "Edit events" +msgstr "" + +#: ../../godmode/users/configure_profile.php:180 +msgid "Pandora management" +msgstr "" + +#: ../../godmode/users/configure_user.php:166 +msgid "User ID cannot be empty" +msgstr "" + +#: ../../godmode/users/configure_user.php:173 +msgid "Passwords cannot be empty" +msgstr "" + +#: ../../godmode/users/configure_user.php:180 +msgid "Passwords didn't match" +msgstr "" + +#: ../../godmode/users/configure_user.php:278 +#: ../../godmode/users/configure_user.php:288 +#: ../../godmode/users/configure_user.php:316 +#: ../../godmode/users/configure_user.php:322 +#: ../../godmode/users/configure_user.php:331 +msgid "Error updating user info (no change?)" +msgstr "" + +#: ../../godmode/users/configure_user.php:292 +msgid "Passwords does not match" +msgstr "" + +#: ../../godmode/users/configure_user.php:353 +msgid "Profile added successfully" +msgstr "" + +#: ../../godmode/users/configure_user.php:354 +msgid "Profile cannot be added" +msgstr "" + +#: ../../godmode/users/configure_user.php:407 +msgid "Global Profile" +msgstr "" + +#: ../../godmode/users/configure_user.php:412 +msgid "" +"This user has permissions to manage all. This is admin user and overwrites " +"all permissions given in profiles/groups" +msgstr "" + +#: ../../godmode/users/configure_user.php:417 +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:459 +msgid "Use global conf" +msgstr "" + +#: ../../godmode/users/configure_user.php:473 +msgid "Metaconsole access" +msgstr "" + +#: ../../godmode/users/configure_user.php:481 +msgid "Not Login" +msgstr "" + +#: ../../godmode/users/configure_user.php:482 +msgid "The user with not login set only can access to API." +msgstr "" + +#: ../../godmode/users/configure_user.php:488 +msgid "Enable agents managment" +msgstr "" + +#: ../../godmode/users/configure_user.php:495 +msgid "Assigned node" +msgstr "" + +#: ../../godmode/users/configure_user.php:495 +msgid "Server where the agents managed of this user will be placed" +msgstr "" + +#: ../../godmode/users/configure_user.php:507 +msgid "Enable node access" +msgstr "" + +#: ../../godmode/users/configure_user.php:507 +msgid "With this option enabled, the user will can access to nodes console" +msgstr "" + +#: ../../godmode/users/profile_list.php:150 +msgid "There was a problem updating this profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:154 +msgid "Profile name cannot be empty" +msgstr "" + +#: ../../godmode/users/profile_list.php:181 +#: ../../godmode/users/profile_list.php:185 +msgid "There was a problem creating this profile" +msgstr "" + +#: ../../godmode/users/profile_list.php:202 +msgid "System incidents reading" +msgstr "" + +#: ../../godmode/users/profile_list.php:203 +msgid "System incidents writing" +msgstr "" + +#: ../../godmode/users/profile_list.php:204 +msgid "System incidents management" +msgstr "" + +#: ../../godmode/users/profile_list.php:205 +msgid "Agents reading" +msgstr "" + +#: ../../godmode/users/profile_list.php:207 +msgid "Agents disable" +msgstr "" + +#: ../../godmode/users/profile_list.php:208 +msgid "Alerts editing" +msgstr "" + +#: ../../godmode/users/profile_list.php:209 +msgid "Users management" +msgstr "" + +#: ../../godmode/users/profile_list.php:210 +msgid "Database management" +msgstr "" + +#: ../../godmode/users/profile_list.php:211 +msgid "Alerts management" +msgstr "" + +#: ../../godmode/users/profile_list.php:212 +msgid "Reports reading" +msgstr "" + +#: ../../godmode/users/profile_list.php:213 +msgid "Reports writing" +msgstr "" + +#: ../../godmode/users/profile_list.php:214 +msgid "Reports management" +msgstr "" + +#: ../../godmode/users/profile_list.php:215 +msgid "Events reading" +msgstr "" + +#: ../../godmode/users/profile_list.php:216 +msgid "Events writing" +msgstr "" + +#: ../../godmode/users/profile_list.php:217 +msgid "Events management" +msgstr "" + +#: ../../godmode/users/profile_list.php:218 +msgid "Systems management" +msgstr "" + +#: ../../godmode/users/profile_list.php:260 +msgid "There are no defined profiles" +msgstr "" + +#: ../../godmode/extensions.php:145 +msgid "E." +msgstr "" + +#: ../../godmode/extensions.php:146 +msgid "Godmode Function" +msgstr "" + +#: ../../godmode/extensions.php:146 +msgid "G.F." +msgstr "" + +#: ../../godmode/extensions.php:147 +msgid "Godmode Menu" +msgstr "" + +#: ../../godmode/extensions.php:147 +msgid "G.M." +msgstr "" + +#: ../../godmode/extensions.php:148 +msgid "Operation Menu" +msgstr "" + +#: ../../godmode/extensions.php:148 +msgid "O.M." +msgstr "" + +#: ../../godmode/extensions.php:149 +msgid "Operation Function" +msgstr "" + +#: ../../godmode/extensions.php:149 +msgid "O.F." +msgstr "" + +#: ../../godmode/extensions.php:150 +msgid "Login Function" +msgstr "" + +#: ../../godmode/extensions.php:150 +msgid "L.F." +msgstr "" + +#: ../../godmode/extensions.php:151 +msgid "Agent operation tab" +msgstr "" + +#: ../../godmode/extensions.php:151 +msgid "A.O.T." +msgstr "" + +#: ../../godmode/extensions.php:152 +msgid "Agent godmode tab" +msgstr "" + +#: ../../godmode/extensions.php:152 +msgid "A.G.T." +msgstr "" + +#: ../../godmode/extensions.php:153 +msgid "O." +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:20 +#: ../../godmode/gis_maps/index.php:65 ../../godmode/menu.php:139 +msgid "GIS Maps builder" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:162 +msgid "Map successfully created" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:163 +msgid "Map could not be created" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:263 +msgid "Map successfully update" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:264 +msgid "Map could not be update" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:316 +msgid "Map Name" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:316 +msgid "Descriptive name for the map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:335 +msgid "Add Map connection" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:335 +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:353 +msgid "Group that owns the map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:356 +msgid "Default zoom" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:356 +msgid "Default zoom level when opening the map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:359 +msgid "Center Latitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:362 +msgid "Center Longitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:365 +msgid "Center Altitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:368 +msgid "Default Latitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:371 +msgid "Default Longitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:374 +msgid "Default Altitude" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:386 +#: ../../godmode/gis_maps/configure_gis_map.php:473 +msgid "Update map" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:397 +msgid "Layers" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:397 +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:404 +msgid "List of layers" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:404 +msgid "It is possible to edit, delete and reorder the layers." +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:405 +msgid "New layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:413 +msgid "Layer name" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:415 +msgid "Visible" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:419 +msgid "Show agents from group" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:447 +msgid "List of Agents to be shown in the layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:454 +#: ../../godmode/gis_maps/configure_gis_map.php:631 +#: ../../godmode/gis_maps/configure_gis_map.php:642 +msgid "Save Layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:675 +#: ../../godmode/gis_maps/configure_gis_map.php:731 +msgid "Update Layer" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:797 +msgid "Do you want to use the default data from the connection?" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:833 +msgid "The connection" +msgstr "" + +#: ../../godmode/gis_maps/configure_gis_map.php:833 +msgid "just added previously." +msgstr "" + +#: ../../godmode/gis_maps/index.php:68 +#: ../../godmode/reporting/map_builder.php:143 +msgid "Map name" +msgstr "" + +#: ../../godmode/gis_maps/index.php:133 +msgid "Caution: Do you want delete the map?" +msgstr "" + +#: ../../godmode/gis_maps/index.php:140 +msgid "Do you want to set default the map?" +msgstr "" + +#: ../../godmode/gis_maps/index.php:149 +msgid "There was error on setup the default map." +msgstr "" + +#: ../../godmode/reporting/map_builder.php:125 +#: ../../godmode/reporting/map_builder.php:135 +msgid "Not copied. Error copying data" +msgstr "" + +#: ../../godmode/reporting/map_builder.php:145 +msgid "Items" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:297 +msgid "Free text for search: " +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:409 +msgid "HTML view" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:410 +msgid "Export to XML" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.php:475 +msgid "Create report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:145 +msgid "Items filter" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:270 +msgid "No items" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:421 +msgid "Sort items" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:422 +msgid "Sort selected items from position: " +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:424 +msgid "Move before to" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:424 +msgid "Move after to" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:444 +msgid "Delete items" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:445 +msgid "Delete selected items from position: " +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:447 +msgid "Delete above to" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:447 +msgid "Delete below to" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:475 +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:496 +msgid "Please select any item to order" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:521 +msgid "Are you sure to delete the items into the report?\\n" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.list_items.php:543 +msgid "Please select any item to delete" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:94 +msgid "Range between elements (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:99 +msgid "Size (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:120 +msgid "Width (px)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:159 +msgid "One item per agent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:175 +#: ../../godmode/reporting/visual_console_builder.wizard.php:374 +msgid "Agent - Module" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:182 +msgid "Enable link agent" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:191 +#: ../../godmode/reporting/visual_console_builder.wizard.php:196 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:321 +msgid "Please select any module or modules." +msgstr "" + +#: ../../godmode/reporting/graphs.php:145 +msgid "Number of Graphs" +msgstr "" + +#: ../../godmode/reporting/graphs.php:193 +msgid "There are no defined graphs" +msgstr "" + +#: ../../godmode/reporting/graphs.php:199 +msgid "Create graph" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:202 +msgid "Graph builder" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:222 +msgid "Graph stored successfully" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:222 +msgid "There was a problem storing Graph" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:225 +#: ../../godmode/agentes/configurar_agente.php:1055 +msgid "Module added successfully" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:225 +msgid "There was a problem adding Module" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:228 +msgid "Update the graph" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:228 +msgid "Bad update the graph" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:231 +msgid "Graph deleted successfully" +msgstr "" + +#: ../../godmode/reporting/graph_builder.php:231 +msgid "There was a problem deleting Graph" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.data.php:74 +msgid "" +"Use [ or ( as first character, for example '[*] Map name', to render this " +"map name in main menu" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:65 +msgid "Only the group can view the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:66 +msgid "The next group can edit the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:67 +msgid "Only the user and admin user can edit the report" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:69 +msgid "Write Access" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.main.php:70 +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/visual_console_builder.php:89 +msgid "Successfully update." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.php:93 +msgid "Could not be update." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.php:206 +msgid "Successfully delete." +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:60 +msgid "Width x Height
Max value" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:110 +msgid "Percentile Bar" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:113 +msgid "Percentile Bubble" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:122 +msgid "Simple Value (Process Max)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:125 +msgid "Simple Value (Process Min)" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.elements.php:128 +msgid "Simple Value (Process Avg)" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:470 +msgid "Not valid" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:868 +msgid "Target server" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:978 +msgid "Greater or equal (>=)" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:979 +msgid "Less or equal (<=)" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:980 +msgid "Less (<)" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:981 +msgid "Greater (>)" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:982 +msgid "Equal (=)" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:983 +msgid "Not equal (!=)" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1106 +msgid "Please save the SLA for start to add items in this list." +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1222 +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:1231 +msgid "Please save the report to start adding items into the list." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:61 +msgid "Agents defined in Pandora" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:86 +msgid "Success deleted agent." +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:86 +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:405 +msgid "Remote agent configuration" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:525 +msgid "Enable agent" +msgstr "" + +#: ../../godmode/agentes/modificar_agente.php:530 +msgid "Disable agent" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor.php:390 #, php-format -msgid "Error connecting to %s" +msgid "DEBUG: Invalid module type specified in %s:%s" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:71 -#, php-format -msgid "Error creating policy %s" +#: ../../godmode/agentes/module_manager_editor.php:392 +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 "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:74 -#, php-format -msgid "Created policy %s" +#: ../../godmode/agentes/module_manager_editor.php:460 +msgid "No module to predict" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:103 -#, php-format -msgid "Updated module %s" +#: ../../godmode/agentes/module_manager_editor.php:461 +msgid "No plug-in provided" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:104 -#, php-format -msgid "Error updating module %s" +#: ../../godmode/agentes/module_manager_editor.php:484 +msgid "" +"Error, The field name and name in module_name in data configuration are " +"different." msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:112 -#, php-format -msgid "Created module %s" +#: ../../godmode/agentes/configure_field.php:36 +msgid "Update agent custom field" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:113 -#, php-format -msgid "Error creating module %s" +#: ../../godmode/agentes/configure_field.php:39 +msgid "Create agent custom field" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:120 -#, php-format -msgid "Deleted module %s" +#: ../../godmode/agentes/module_manager_editor_wmi.php:29 +msgid "WMI server module" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:121 -#, php-format -msgid "Error deleting module %s" +#: ../../godmode/agentes/agent_template.php:68 +msgid "Created by template " msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:168 -#, php-format -msgid "Created alert %s for module %s" +#: ../../godmode/agentes/agent_template.php:120 +msgid "Error adding modules" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:169 -#, php-format -msgid "Error creating alert %s for module %s" +#: ../../godmode/agentes/agent_template.php:122 +msgid "Error adding modules. The following errors already exists: " msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:184 -#, php-format -msgid "Deleted alert %s for module %s" +#: ../../godmode/agentes/agent_template.php:125 +msgid "Modules successfully added" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:185 -#, php-format -msgid "Error deleting alert %s for module %s" +#: ../../godmode/agentes/agent_template.php:153 +msgid "Assign" msgstr "" -#: ../../enterprise/operation/metaconsole/policymanager.sync.php:226 -#: ../../enterprise/operation/metaconsole/componentmanager.php:265 -#: ../../enterprise/operation/metaconsole/usermanager.php:174 -#: ../../enterprise/operation/metaconsole/alertmanager.php:267 -msgid "Sync" +#: ../../godmode/agentes/module_manager_editor_common.php:68 +msgid "Using module component" msgstr "" -#: ../../enterprise/operation/metaconsole/agentmanager.php:30 -#: ../../enterprise/operation/metaconsole/agentmanager.php:36 -msgid "Move agents" +#: ../../godmode/agentes/module_manager_editor_common.php:228 +#: ../../godmode/agentes/module_manager_editor_common.php:248 +msgid "Min. " msgstr "" -#: ../../enterprise/operation/metaconsole/tactical.php:93 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:252 -msgid "Check" +#: ../../godmode/agentes/module_manager_editor_common.php:293 +#: ../../godmode/agentes/agent_manager.php:242 +#: ../../godmode/groups/configure_group.php:136 +#: ../../godmode/massive/massive_edit_agents.php:295 +msgid "Custom ID" msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:30 -#: ../../enterprise/operation/menu.php:89 -msgid "Component manager" +#: ../../godmode/agentes/module_manager_editor_common.php:298 +msgid "FF interval" msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:174 -#, php-format -msgid "Error updating local component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:300 +msgid "Module execution flip flop time interval (in secs)." msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:176 -#, php-format -msgid "Updated local component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:314 +msgid "Any value below this number is discarted." msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:185 -#, php-format -msgid "Error creating local component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:316 +msgid "Any value over this number is discarted." msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:187 -#, php-format -msgid "Created local component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:318 +#: ../../godmode/massive/massive_edit_modules.php:398 +msgid "Export target" msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:215 -#, php-format -msgid "Error updating network component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:329 +msgid "" +"In case you use an Export server you can link this module and export data to " +"one these." msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:217 -#, php-format -msgid "Updated network component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:405 +msgid "The module still stores data but the alerts and events will be stop" msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:226 -#, php-format -msgid "Error creating network component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:422 +msgid "Cron" msgstr "" -#: ../../enterprise/operation/metaconsole/componentmanager.php:228 -#, php-format -msgid "Created network component %s" +#: ../../godmode/agentes/module_manager_editor_common.php:422 +msgid "" +"If cron is set the module interval is ignored and the module runs on the " +"specified date and time" msgstr "" -#: ../../enterprise/operation/metaconsole/agentsearch.php:59 -msgid "Search results for" -msgstr "" - -#: ../../enterprise/operation/metaconsole/agentsearch.php:167 -msgid "There are no agents included in this group" -msgstr "" - -#: ../../enterprise/operation/metaconsole/usermanager.php:33 -#: ../../enterprise/operation/menu.php:80 -msgid "User manager" -msgstr "" - -#: ../../enterprise/operation/metaconsole/usermanager.php:92 -#, php-format -msgid "Error updating user %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/usermanager.php:94 -#, php-format -msgid "Updated user %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/usermanager.php:101 -#, php-format -msgid "Error creating user %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/usermanager.php:103 -#, php-format -msgid "Created user %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/usermanager.php:152 -#: ../../enterprise/godmode/agentes/inventory_manager.php:156 -#: ../../enterprise/godmode/agentes/inventory_manager.php:210 -msgid "Target" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:30 -#: ../../enterprise/operation/menu.php:83 -msgid "Alert manager" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:103 -#, php-format -msgid "Error updating command %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:105 -#, php-format -msgid "Updated command %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:112 -#, php-format -msgid "Error creating command %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:114 -#, php-format -msgid "Created command %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:151 -#, php-format -msgid "Error updating action %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:153 -#, php-format -msgid "Updated action %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:164 -#, php-format -msgid "Error creating action %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:166 -#, php-format -msgid "Created action %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:214 -#, php-format -msgid "Error updating template %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:216 -#, php-format -msgid "Updated template %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:226 -#, php-format -msgid "Error creating template %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/alertmanager.php:228 -#, php-format -msgid "Created template %s" -msgstr "" - -#: ../../enterprise/operation/metaconsole/eventview.php:107 -msgid "Event view" -msgstr "" - -#: ../../enterprise/operation/metaconsole/eventview.php:790 -msgid "Agent module source" -msgstr "" - -#: ../../enterprise/operation/menu.php:30 -#: ../../enterprise/operation/services/services.php:41 -#: ../../enterprise/operation/services/services.php:44 -#: ../../enterprise/godmode/menu.php:56 -#: ../../enterprise/include/functions_groups.php:61 -msgid "Services" -msgstr "" - -#: ../../enterprise/operation/menu.php:47 -msgid "Copy Dashboard" -msgstr "" - -#: ../../enterprise/operation/menu.php:58 -msgid "Network console" -msgstr "" - -#: ../../enterprise/operation/menu.php:78 -msgid "Event viewer" -msgstr "" - -#: ../../enterprise/operation/reporting/custom_reporting.php:16 -msgid "PDF" -msgstr "" - -#: ../../enterprise/operation/services/services.php:38 -#: ../../enterprise/godmode/services/manage_services.php:76 -msgid "List Services" -msgstr "" - -#: ../../enterprise/operation/services/services.php:63 -#: ../../enterprise/godmode/services/manage_services.main.php:37 -msgid "There are no services defined" -msgstr "" - -#: ../../enterprise/operation/services/services.php:133 -msgid "List of Monitors for service" -msgstr "" - -#: ../../enterprise/operation/services/services.php:144 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:50 -msgid "There are no service elements defined" -msgstr "" - -#: ../../enterprise/operation/services/services.php:156 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:63 -msgid "Agent Name" -msgstr "" - -#: ../../enterprise/operation/services/services.php:157 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:64 -msgid "Module Name" -msgstr "" - -#: ../../enterprise/operation/services/services.php:159 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:66 -msgid "Weight Critical" -msgstr "" - -#: ../../enterprise/operation/services/services.php:160 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:67 -msgid "Weight Warning" -msgstr "" - -#: ../../enterprise/operation/services/services.php:161 -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:68 -msgid "Weight Ok" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 -msgid "Success: create the alerts." -msgstr "" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 -msgid "Failed: create the alerts for this modules, please check." -msgstr "" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:117 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:108 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:109 -#: ../../include/functions_alerts.php:445 -msgid "Regular expression" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:119 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:111 -msgid "Modules agents in policy" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Success: remove the alerts." -msgstr "" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:20 -#: ../../enterprise/godmode/menu.php:16 -msgid "Policies operations" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:30 -msgid "Massive alerts policy addition" -msgstr "" - -#: ../../enterprise/godmode/massive/massive_operations.php:31 -msgid "Massive alerts policy deletion" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:30 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/menu.php:28 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:224 -#: ../../enterprise/include/functions_policies.php:3032 -msgid "Inventory modules" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../enterprise/godmode/agentes/inventory_manager.php:116 -msgid "Inventory module error" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:78 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:139 -msgid "Interpreter" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:82 -msgid "separate fields with " -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:85 -msgid "Code" -msgstr "" - -#: ../../enterprise/godmode/modules/configure_local_component.php:71 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:158 -msgid "Configuration" -msgstr "" - -#: ../../enterprise/godmode/modules/local_components.php:79 -msgid "Component" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:59 -msgid "Successfully created inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:62 -msgid "Error creating inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:80 -#: ../../enterprise/godmode/agentes/inventory_manager.php:96 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:140 -msgid "Successfully updated inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:83 -#: ../../enterprise/godmode/agentes/inventory_manager.php:99 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 -msgid "Error updating inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:91 -#: ../../enterprise/godmode/agentes/inventory_manager.php:68 -msgid "Successfully deleted inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:94 -#: ../../enterprise/godmode/agentes/inventory_manager.php:71 -msgid "Error deleting inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:179 -msgid "There are no defined inventory modules" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export_form.php:56 -#: ../../enterprise/godmode/servers/manage_export.php:41 -#: ../../enterprise/godmode/menu.php:91 -msgid "Export targets" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export_form.php:74 -#: ../../enterprise/godmode/servers/manage_export.php:114 -msgid "Preffix" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export_form.php:86 -#: ../../enterprise/godmode/servers/manage_export.php:114 -msgid "Transfer mode" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export_form.php:107 -msgid "Target directory" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export_form.php:111 -msgid "Extra options" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export.php:61 -msgid "Error updating export target" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export.php:64 -msgid "Successfully updated export target" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export.php:73 -msgid "Error deleting export target" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export.php:76 -msgid "Successfully deleted export target" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export.php:105 -msgid "There are no export targets configured" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager.php:16 -msgid "Create a new web Server module" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:29 -msgid "Web server module" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:51 -msgid "Web checks" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:71 +#: ../../godmode/agentes/module_manager_editor_common.php:426 msgid "Timeout" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:73 -msgid "Agent browser id" +#: ../../godmode/agentes/module_manager_editor_common.php:427 +msgid "Seconds that agent will wait for the execution of the module." msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:80 -msgid "Proxy URL" +#: ../../godmode/agentes/module_manager_editor_common.php:429 +msgid "Retries" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:87 -msgid "HTTP auth (login)" +#: ../../godmode/agentes/module_manager_editor_common.php:430 +msgid "Number of retries that the module will attempt to run." msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:90 -msgid "HTTP auth (pass)" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:97 -msgid "HTTP auth (server)" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:100 -msgid "HTTP auth (realm)" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:106 -msgid "Requests" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:39 -#: ../../enterprise/godmode/agentes/collections.data.php:86 -#: ../../enterprise/godmode/agentes/collections.data.php:176 -#: ../../enterprise/godmode/agentes/collections.data.php:240 -#: ../../enterprise/godmode/agentes/collections.data.php:257 -#: ../../enterprise/godmode/agentes/collections.data.php:263 -msgid "Manager configuration > Edit " -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:46 -msgid "Files in " -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:81 -#: ../../enterprise/godmode/agentes/collections.editor.php:132 -msgid "Edit file" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:82 -#: ../../enterprise/godmode/agentes/collections.editor.php:133 -msgid "Back to file explorer" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:114 -#: ../../enterprise/godmode/agentes/collections.editor.php:256 -#: ../../include/functions_filemanager.php:157 -#: ../../include/functions_filemanager.php:213 -#: ../../include/functions_filemanager.php:263 -#: ../../include/functions_filemanager.php:310 -#: ../../include/functions_filemanager.php:342 -msgid "Security error." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:153 -msgid "Compatibility mode" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:195 -msgid "Correct update file." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:195 -msgid "Incorrect update file." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.editor.php:286 -msgid "Please, first save a new collection before to upload files." -msgstr "" - -#: ../../enterprise/godmode/agentes/collection_manager.php:87 -#: ../../enterprise/godmode/agentes/collections.php:219 -#: ../../enterprise/godmode/policies/policy_collections.php:119 -#: ../../enterprise/godmode/policies/policy_collections.php:185 -msgid "Short Name" -msgstr "" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:68 -msgid "Error: The conf file of agent is not readble." -msgstr "" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:73 -msgid "Error: The conf file of agent is not writable." -msgstr "" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:103 -#: ../../enterprise/godmode/policies/policy_modules.php:192 -msgid "Add module" -msgstr "" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 -msgid "No module was found" -msgstr "" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:152 -msgid "Delete remote conf agent files in Pandora" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:23 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:86 -msgid "Service" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 -msgid "Synthetic arithmetic" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:29 -msgid "Synthetic average" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:52 -msgid "Fixed value" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:95 -msgid "Select Service" -msgstr "" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:21 +#: ../../godmode/agentes/agent_conf_gis.php:46 msgid "" -"If you change this name, you must change into the text of Data configuration." +"Warning: When you change the Agent position, the agent automatically " +"activates the 'Ignore new GIS data' option" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:22 -msgid "" -"If you change this type, you must change into the text of Data configuration." +#: ../../godmode/agentes/agent_conf_gis.php:51 +msgid "Agent position" msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:25 -msgid "Using local component" +#: ../../godmode/agentes/agent_conf_gis.php:54 +msgid "Latitude: " msgstr "" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:53 -msgid "Data configuration" +#: ../../godmode/agentes/agent_conf_gis.php:58 +msgid "Longitude: " msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:66 -msgid "No files in collection" +#: ../../godmode/agentes/agent_conf_gis.php:62 +msgid "Altitude: " msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:74 -msgid "File of collection is bigger than the limit (" +#: ../../godmode/agentes/agent_conf_gis.php:66 +#: ../../godmode/agentes/agent_manager.php:307 +#: ../../godmode/massive/massive_edit_agents.php:353 +msgid "Ignore new GIS data:" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:114 -msgid "Success: recreate file" +#: ../../godmode/agentes/configurar_agente.php:176 +#: ../../godmode/agentes/configurar_agente.php:576 +msgid "No agent name specified" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:117 -msgid "Error: recreate file " +#: ../../godmode/agentes/configurar_agente.php:181 +#: ../../godmode/agentes/configurar_agente.php:581 +msgid "There is already an agent in the database with this name" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:130 -#: ../../enterprise/godmode/agentes/collections.php:147 -#: ../../enterprise/godmode/agentes/collections.php:192 -msgid "Collections Management" +#: ../../godmode/agentes/configurar_agente.php:281 ../../godmode/menu.php:84 +msgid "Module templates" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:165 -msgid "Manager collection" +#: ../../godmode/agentes/configurar_agente.php:439 +msgid "SNMP explorer" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:171 -#: ../../enterprise/godmode/agentes/collections.php:181 -msgid "Successful create collection package." +#: ../../godmode/agentes/configurar_agente.php:454 +msgid "Agent manager" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:181 -msgid "Can not create collection package." +#: ../../godmode/agentes/configurar_agente.php:476 +msgid "Conf file deleted successfully" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:239 -msgid "Are you sure to delete?" +#: ../../godmode/agentes/configurar_agente.php:477 +msgid "Could not delete conf file" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:240 -msgid "Delete collection" +#: ../../godmode/agentes/configurar_agente.php:508 +msgid "No data to normalize" msgstr "" -#: ../../enterprise/godmode/agentes/collections.php:244 -msgid "Re-Apply changes" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.php:249 -msgid "Apply changes" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.php:258 -msgid "There are no defined collections." -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:56 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:80 -msgid "Successfully added inventory module" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:59 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 -msgid "Error adding inventory module" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:167 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 -#: ../../include/functions_alerts.php:795 -msgid "month" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:174 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:206 -msgid "Update all" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:43 -#: ../../enterprise/godmode/agentes/collections.data.php:109 -#: ../../enterprise/godmode/agentes/collections.data.php:123 -#: ../../enterprise/godmode/agentes/collections.data.php:137 -#: ../../enterprise/godmode/agentes/collections.data.php:158 -#: ../../enterprise/godmode/agentes/collections.data.php:196 -msgid "Manager configuration > New" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:114 -#: ../../enterprise/godmode/agentes/collections.data.php:128 -#: ../../enterprise/godmode/agentes/collections.data.php:142 -msgid "Unable to create the collection" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:114 -msgid "Another collection with the same short name" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:128 -msgid "Invalid characters in short name" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:142 -msgid "Empty name" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:163 -#: ../../enterprise/godmode/agentes/collections.data.php:203 -msgid "Unable to create the collection." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:183 -#: ../../enterprise/godmode/agentes/collections.data.php:272 -msgid "Correct create collection" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:244 -msgid "Unable to edit the collection, empty name." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:260 -msgid "Unable to edit the collection." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:288 -msgid "Recreate file" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:301 -msgid "Short name:" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:308 -msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:308 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:308 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" - -#: ../../enterprise/godmode/menu.php:22 -#: ../../enterprise/godmode/policies/policies.php:274 -#: ../../enterprise/godmode/policies/policy_collections.php:166 -#: ../../enterprise/include/functions_policies.php:3070 -msgid "Collections" -msgstr "" - -#: ../../enterprise/godmode/menu.php:34 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:22 -msgid "SNMP trap editor" -msgstr "" - -#: ../../enterprise/godmode/menu.php:40 -msgid "Local components" -msgstr "" - -#: ../../enterprise/godmode/menu.php:46 -msgid "Manage policies" -msgstr "" - -#: ../../enterprise/godmode/menu.php:65 -#: ../../enterprise/godmode/setup/setup_history.php:40 -msgid "History database" -msgstr "" - -#: ../../enterprise/godmode/menu.php:71 -msgid "ACL Setup" -msgstr "" - -#: ../../enterprise/godmode/menu.php:79 -msgid "Skins" -msgstr "" - -#: ../../enterprise/godmode/menu.php:85 -msgid "Custom SQL" -msgstr "" - -#: ../../enterprise/godmode/menu.php:97 -#: ../../enterprise/godmode/alerts/alert_events_list.php:136 -#: ../../enterprise/godmode/alerts/alert_events_list.php:179 -#: ../../enterprise/godmode/alerts/alert_events_list.php:191 -#: ../../enterprise/godmode/alerts/alert_events_list.php:201 -msgid "Event alerts" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:64 -#: ../../enterprise/godmode/alerts/alert_events_list.php:125 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:41 -#: ../../enterprise/godmode/alerts/alert_events.php:37 -msgid "List event alerts" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:69 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:46 -#: ../../enterprise/godmode/alerts/alert_events.php:42 -msgid "Builder event alert" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:73 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 -msgid "List event rules" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:78 -msgid "Event rules" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:195 -msgid "Error creating rule" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:199 -msgid "Successfully created rule" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:250 -msgid "Error updating rule" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:253 -msgid "Successfully updating rule" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:263 -msgid "Error updating rule operators" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:265 -msgid "Successfully update rule operators" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:350 -#: ../../enterprise/godmode/alerts/alert_events_list.php:361 -msgid "Successfully action" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:350 -#: ../../enterprise/godmode/alerts/alert_events_list.php:361 -msgid "Error processing action" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 -msgid "(Agent)" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:431 -#: ../../enterprise/godmode/alerts/alert_events_list.php:506 -msgid "Move up" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:438 -#: ../../enterprise/godmode/alerts/alert_events_list.php:518 -msgid "Move down" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:488 -msgid "Update operators" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:493 -msgid "No Rules found" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:376 -msgid "Error validating alert(s)" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:441 -msgid "Ac." -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:446 -msgid "Val." -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:658 -msgid "View associated rules" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:674 -msgid "No event alert defined" -msgstr "" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:56 -msgid "Configure event rule" -msgstr "" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:111 -msgid "User comment" -msgstr "" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:115 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:156 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:163 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:170 -msgid "This field will be processed with regexp" -msgstr "" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:121 -msgid "Window" -msgstr "" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:170 -msgid "Module alerts" -msgstr "" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:179 -#: ../../enterprise/include/functions_reporting_pdf.php:1961 -#: ../../include/functions_reporting.php:1724 -#: ../../include/functions_reporting.php:1782 -#: ../../include/functions_reporting.php:1842 -msgid "Criticity" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events.php:47 -msgid "Configure event alert" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events.php:314 -msgid "Could not be created, please fill alert name" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events.php:506 -msgid "Rule evaluation mode" -msgstr "" - -#: ../../enterprise/godmode/alerts/alert_events.php:521 -msgid "Group by" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:63 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:202 -msgid "Custom OID" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:52 -msgid "Error parsing MIB" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:108 -msgid "Successfully added trap custom values" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:111 -msgid "Error adding trap custom values" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:137 -msgid "No change in data" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:140 -msgid "Successfully updated trap custom values" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:143 -msgid "Error updating trap custom values" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:157 -msgid "Successfully deleted trap custom values" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:160 -msgid "Error deleting trap custom values" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:166 -msgid "Unsupported file type" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:179 -msgid "Load MIB" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:181 -msgid "Upload MIB" -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:235 -msgid "There are no trap custom values defined" -msgstr "" - -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/policies/policy_agents.php:340 -msgid "A." -msgstr "" - -#: ../../enterprise/godmode/admin_access_logs.php:42 -msgid "Show extended info" -msgstr "" - -#: ../../enterprise/godmode/admin_access_logs.php:61 -msgid "" -"Maybe delete the extended data or the audit data is previous to table " -"tsession_extended." -msgstr "" - -#: ../../enterprise/godmode/admin_access_logs.php:71 -msgid "Security check is ok." -msgstr "" - -#: ../../enterprise/godmode/admin_access_logs.php:78 -msgid "Security check is fail." -msgstr "" - -#: ../../enterprise/godmode/admin_access_logs.php:105 -msgid "Extended info:" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:73 -msgid "Font family" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:77 -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 "" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:83 -msgid "Header" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:86 -msgid "First page" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:89 -msgid "Footer" -msgstr "" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:28 -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Custom Mysql template builder" -msgstr "" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:56 -msgid "There are no defined custom SQL" -msgstr "" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:62 -msgid "Create custom SQL" -msgstr "" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:73 -#: ../../enterprise/godmode/reporting/mysql_builder.php:93 -msgid ": Create new custom" -msgstr "" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:89 -#: ../../enterprise/godmode/reporting/mysql_builder.php:103 -#: ../../enterprise/godmode/reporting/mysql_builder.php:113 -msgid ": Edit: " -msgstr "" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:128 -msgid "Successfully operation" -msgstr "" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:128 -msgid "Could not be operation" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 -msgid "SLA min value" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 -msgid "SLA min Value" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 -msgid "SLA max value" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:132 -msgid "SLA max Value" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:133 -msgid "SLA Limit %" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:134 -msgid "SLA Limit Value" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:59 -#: ../../include/functions.php:737 -msgid "Top n" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 -#: ../../enterprise/include/functions_reporting_csv.php:898 -#: ../../enterprise/include/functions_reporting_pdf.php:820 -#: ../../include/functions.php:738 ../../include/functions_reporting.php:3623 -msgid "Exception" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:61 -#: ../../enterprise/include/functions_reporting_csv.php:643 -#: ../../enterprise/include/functions_reporting_pdf.php:534 -#: ../../include/functions.php:735 ../../include/functions_reporting.php:3109 -msgid "General" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:81 -msgid "Service Editor" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:86 -msgid "Monitors editor" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:107 -#: ../../enterprise/godmode/services/manage_services.php:110 -#: ../../enterprise/godmode/services/manage_services.php:115 -msgid "Service management" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:121 -msgid "Service created successfully" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:124 -msgid "Error creating service" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:130 -msgid "Service updated successfully" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:133 -msgid "Error updating service" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:139 -msgid "Service deleted successfully" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:142 -msgid "Error deleting service" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:156 -msgid "Service element created successfully" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:159 -msgid "Error creating service element" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:173 -msgid "Service element updated successfully" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:176 -msgid "Error updating service element" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:184 -msgid "Service element deleted successfully" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.php:187 -msgid "Error deleting service element" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.edit_element.php:43 -msgid "First select an agent" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.edit_element.php:50 -msgid "Critical weight" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.edit_element.php:53 -msgid "Warning weight" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.edit_element.php:56 -msgid "Ok weight" -msgstr "" - -#: ../../enterprise/godmode/services/manage_services.edit_elements.php:82 -msgid "Delete service element" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_skins.php:36 -#: ../../enterprise/godmode/setup/edit_skin.php:42 -msgid "Skins configuration" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_skins.php:72 -msgid "Error deleting skin" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_skins.php:75 -msgid "Successfully deleted skin" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_skins.php:94 -msgid "Create 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:220 -msgid "Relative path" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_skins.php:146 -msgid "No skins selected" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:40 -msgid "Enterprise ACL setup" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:69 -msgid "Add new ACL element to profile" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:74 -msgid "Section" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:79 -msgid "Page" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:90 -msgid "Filter by profile" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:107 -msgid "Section code" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:108 -msgid "Page code" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_acl.php:144 -msgid "There aren't profiles defined" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:21 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:27 -msgid "Use Enterprise ACL System" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:34 -msgid "Activate Metaconsole" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:40 -msgid "Size of collection" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:41 -msgid " Bytes" -msgstr "" - -#: ../../enterprise/godmode/setup/edit_skin.php:45 -msgid "Successfully updated skin" -msgstr "" - -#: ../../enterprise/godmode/setup/edit_skin.php:47 -#: ../../enterprise/godmode/setup/edit_skin.php:60 -msgid "Error updating skin" -msgstr "" - -#: ../../enterprise/godmode/setup/edit_skin.php:171 -msgid "Error creating skin" -msgstr "" - -#: ../../enterprise/godmode/setup/edit_skin.php:176 -msgid "Successfully created skin" -msgstr "" - -#: ../../enterprise/godmode/setup/edit_skin.php:221 -msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." -msgstr "" - -#: ../../enterprise/godmode/setup/edit_skin.php:243 -msgid "Group/s" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:45 -msgid "Enable history database" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:49 -msgid "Host" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:55 -#: ../../enterprise/godmode/setup/setup_auth.php:65 -#: ../../enterprise/godmode/setup/setup_auth.php:81 -#: ../../enterprise/godmode/setup/setup_auth.php:97 -msgid "Database name" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:58 -msgid "Database user" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:61 -msgid "Database password" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:64 -msgid "Number of days before data is transfered to history database." -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:67 -msgid "" -"Data size of mechanism used to transfer data (similar to a data buffer.)" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:70 -msgid "Delay" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_history.php:70 -msgid "Time interval between data transfer." -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:31 -msgid "Active directory" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:32 -msgid "Remote Pandora FMS" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:33 -msgid "Remote Babel Enterprise" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "Remote Integria" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:46 -msgid "Active directory server" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:48 -msgid "Active directory port" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:53 -msgid "Domain" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:61 -msgid "Pandora FMS host" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:63 -#: ../../enterprise/godmode/setup/setup_auth.php:79 -#: ../../enterprise/godmode/setup/setup_auth.php:95 -msgid "MySQL port" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:77 -msgid "Babel Enterprise host" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:93 -msgid "Integria host" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:49 -msgid "Metaconsole setup" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:74 -msgid "Successfully delete" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:75 -msgid "Could not be delete" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:101 -msgid "Successfully update" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:102 -msgid "Could not be update" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -msgid "Pandora FMS Metaconsole item edition" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:160 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:224 -msgid "Server name" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:167 -msgid "Auth token" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:167 -msgid "" -"Token previously configured on the destination Pandora console in order to " -"use delegated authentification." -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:172 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:225 -msgid "Console URL" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:178 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:226 -msgid "DB Host" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:182 -msgid "DB Name" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:187 -msgid "DB User" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:191 -msgid "DB Password" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:290 -msgid "There aren't server added to metaconsole" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:37 -#: ../../enterprise/godmode/policies/policies.php:141 -#: ../../enterprise/godmode/policies/policy_linking.php:26 -#: ../../enterprise/godmode/policies/policy.php:45 -#: ../../enterprise/godmode/policies/policy.php:48 -#: ../../enterprise/godmode/policies/policy_modules.php:240 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 -#: ../../enterprise/godmode/policies/policy_alerts.php:31 -#: ../../enterprise/godmode/policies/policy_collections.php:29 -#: ../../enterprise/godmode/policies/configure_policy.php:35 -#: ../../enterprise/godmode/policies/configure_policy.php:37 -msgid "Policies Management" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:38 -msgid "External Alerts Policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:74 -#: ../../enterprise/godmode/policies/policy_alerts.php:132 -msgid "Created successfuly" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:78 -msgid "Duplicated alert" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:96 -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_collections.php:67 -msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next " -"policy application." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:101 -#: ../../enterprise/godmode/policies/policy_agents.php:95 -#: ../../enterprise/godmode/policies/policy_modules.php:513 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:99 -#: ../../enterprise/godmode/policies/policy_alerts.php:153 -#: ../../enterprise/godmode/policies/policy_collections.php:72 -msgid "Successfully reverted deletion" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:102 -#: ../../enterprise/godmode/policies/policy_agents.php:96 -#: ../../enterprise/godmode/policies/policy_modules.php:514 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:102 -#: ../../enterprise/godmode/policies/policy_alerts.php:154 -#: ../../enterprise/godmode/policies/policy_collections.php:73 -msgid "Could not be reverted" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:121 -#: ../../enterprise/godmode/policies/policy_alerts.php:172 -msgid "Added action successfuly" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:141 -#: ../../enterprise/godmode/policies/policy_alerts.php:190 -msgid "Deleted action successfuly" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:306 -msgid "Modules in policy agents" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:251 -#: ../../enterprise/godmode/policies/policy_agents.php:424 -#: ../../enterprise/godmode/policies/policy_modules.php:579 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:264 -#: ../../enterprise/godmode/policies/policy_alerts.php:373 -msgid "Undo deletion" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:316 -msgid "Alert Template" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:157 -msgid "All policy agents added to delete queue" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:158 -msgid "Policy agents cannot be added to the delete queue" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:192 -msgid "a" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:252 -msgid "Policy updated" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:255 -msgid "Pending update policy only database" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:258 -msgid "Pending update policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:270 -#: ../../enterprise/godmode/policies/policy_linking.php:126 -#: ../../enterprise/include/functions_policies.php:3061 -msgid "Linking" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:286 -#: ../../enterprise/include/functions_policies.php:3051 -msgid "External alerts" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:290 -#: ../../enterprise/godmode/policies/policy.php:45 -#: ../../enterprise/include/functions_policies.php:3079 -msgid "Queue" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:320 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:326 -msgid "Deleting all policy agents" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:329 -msgid "All the policy agents will be deleted" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:333 -msgid "Delete all agents" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:342 -msgid "There aren't policies in database" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:90 -msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:121 -msgid "Successfully added to delete queue" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:122 -msgid "Could not be added to delete queue" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:157 -msgid "Successfully deleted from delete pending agents" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:158 -msgid "Could not be deleted from delete pending agents" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:238 -#: ../../enterprise/godmode/policies/policy_agents.php:245 -msgid "Filter agent" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:253 -msgid "Agents in Policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:293 -msgid "Delete modules from policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:328 -msgid "Applied" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:329 -msgid "Not applied" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:339 -msgid "Unlinked modules" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:339 -msgid "U." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:342 -msgid "Add to delete queue" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:342 -msgid "D." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:383 -msgid "This agent can not be remotely configured" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:407 -#: ../../enterprise/godmode/policies/policy_queue.php:103 -msgid "Add to apply queue" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:442 -msgid "Need apply" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:450 -msgid "Applying policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_agents.php:456 -msgid "Deleting from policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_linking.php:26 -msgid "Linking modules" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_linking.php:56 -msgid "Error: Update linking modules to policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_linking.php:60 -msgid "Success: Update linking modules to policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_linking.php:68 -msgid "Free text for filter (*)" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_linking.php:69 -msgid "Free text for filter" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_linking.php:112 -msgid "List of modules unlinked" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_linking.php:115 -msgid "Empty list" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:87 -msgid "Update pending" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:89 -msgid "Update pending agents" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:107 -msgid "Add to apply queue only for database" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:113 -msgid "Link pending modules" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:119 -msgid "Will be linked in the next policy application" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:122 -msgid "Unlink pending modules" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:128 -msgid "Will be unlinked in the next policy application" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:133 -msgid "Delete pending" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:135 -msgid "Delete pending agents" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:141 -#: ../../enterprise/godmode/policies/policy_queue.php:150 -#: ../../enterprise/godmode/policies/policy_queue.php:159 -#: ../../enterprise/godmode/policies/policy_queue.php:168 -#: ../../enterprise/godmode/policies/policy_queue.php:177 -#: ../../enterprise/godmode/policies/policy_queue.php:186 -msgid "Will be deleted in the next policy application" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:144 -msgid "Delete pending modules" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:153 -msgid "Delete pending inventory modules" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:162 -msgid "Delete pending alerts" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:171 -msgid "Delete pending external alerts" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:180 -msgid "Delete pending file collections" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:192 -msgid "Advices" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:195 -msgid "Queue summary" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_queue.php:210 -msgid "This operation could take a long time" -msgstr "" - -#: ../../enterprise/godmode/policies/policy.php:48 -msgid "Agents policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:22 -#: ../../enterprise/godmode/policies/policy_modules.php:636 -msgid "Not needed" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:143 -msgid "" -"If you change this description, you must change into the text of Data " -"configuration." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:240 -msgid "Modules in policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:353 -msgid "Successfully added module." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:354 -msgid "Could not be added module." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:496 -msgid "" -"The module type in Data configuration is empty, take from combo box of form." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:499 -msgid "" -"The module name in Data configuration is empty, take from text field of form." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:508 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:92 -msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:568 -msgid "Local component" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_modules.php:712 -msgid "Variable" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 -msgid "Inventory modules policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:64 -msgid "Module is not selected" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:187 -msgid "Select inventory module" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_alerts.php:31 -msgid "Alerts in policy" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_alerts.php:220 -msgid "E/D" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_alerts.php:438 -msgid "Policy module" -msgstr "" - -#: ../../enterprise/godmode/policies/policy_collections.php:29 -msgid "Collections in policy" -msgstr "" - -#: ../../enterprise/godmode/policies/configure_policy.php:35 -msgid "Setup policy" -msgstr "" - -#: ../../enterprise/godmode/policies/configure_policy.php:37 -msgid "Add policy" -msgstr "" - -#: ../../enterprise/dashboard/dashboard_replicate.php:29 -msgid "Dashboard replicate" -msgstr "" - -#: ../../enterprise/dashboard/dashboard_replicate.php:55 -#: ../../enterprise/dashboard/dashboard_replicate.php:75 -msgid "Not copyed. Error copying data" -msgstr "" - -#: ../../enterprise/dashboard/dashboard_replicate.php:82 -msgid "Successfully copyed" -msgstr "" - -#: ../../enterprise/dashboard/dashboard_replicate.php:95 -msgid "Source user" -msgstr "" - -#: ../../enterprise/dashboard/dashboard_replicate.php:122 -msgid "Destination user" -msgstr "" - -#: ../../enterprise/dashboard/dashboard_replicate.php:136 -msgid "User Dashboards" -msgstr "" - -#: ../../enterprise/dashboard/dashboard_replicate.php:154 -msgid "Replicate Dashboard" -msgstr "" - -#: ../../enterprise/dashboard/widget.php:213 -#: ../../enterprise/dashboard/widgets/post.php:34 -#: ../../enterprise/dashboard/widgets/tactical.php:56 -#: ../../enterprise/dashboard/widgets/tactical.php:64 -#: ../../enterprise/dashboard/widgets/url.php:50 -msgid "Please, configure this widget before use" -msgstr "" - -#: ../../enterprise/dashboard/widget.php:216 -msgid "Widget cannot be loaded" -msgstr "" - -#: ../../enterprise/dashboard/widget.php:217 -msgid "Please, configure the widget again to recover it" -msgstr "" - -#: ../../enterprise/dashboard/widgets/reports.php:28 -msgid "Show a report made by user" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:29 -msgid "Show a map of the monitored network" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:37 -msgid "No overlap" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:44 -msgid "8" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:45 -msgid "9" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:46 -msgid "10" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:47 -msgid "11" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:48 -msgid "12" -msgstr "" - -#: ../../enterprise/dashboard/widgets/post.php:23 -msgid "Panel with a message" -msgstr "" - -#: ../../enterprise/dashboard/widgets/post.php:26 -msgid "My Post" -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_status.php:24 -msgid "Maps status" -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_status.php:26 -msgid "General and quick visual maps report" -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:23 -msgid "Welcome message to Pandora FMS" -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:26 -msgid "Welcome" -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:35 -msgid "Welcome to Pandora FMS" -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:36 -msgid "This is an example of a dashboard widget. A widget may contain elements" -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:37 -msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:38 -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"To delete this message, click on the delete button on top right corner of " -"this element." -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:39 -msgid "" -"To do so, just click on the title and drag and drop it to the desired place." -msgstr "" - -#: ../../enterprise/dashboard/widgets/example.php:41 -msgid "Thanks for using Pandora FMS" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:28 -msgid "Latest events list" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:36 -#: ../../enterprise/dashboard/widgets/single_graph.php:56 -#: ../../include/functions_custom_graphs.php:126 -msgid "1 hour" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:37 -#: ../../enterprise/dashboard/widgets/single_graph.php:57 -msgid "2 hours" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:38 -#: ../../enterprise/dashboard/widgets/single_graph.php:58 -msgid "5 hours" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:39 -#: ../../enterprise/dashboard/widgets/single_graph.php:59 -msgid "12 hours" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:40 -#: ../../enterprise/dashboard/widgets/single_graph.php:60 -#: ../../include/functions_custom_graphs.php:131 -msgid "1 day" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:41 -#: ../../include/functions_custom_graphs.php:132 -msgid "2 days" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:43 -msgid "Limit" -msgstr "" - -#: ../../enterprise/dashboard/widgets/events_list.php:53 -msgid "Only pending" -msgstr "" - -#: ../../enterprise/dashboard/widgets/groups_status.php:24 -msgid "Groups status" -msgstr "" - -#: ../../enterprise/dashboard/widgets/groups_status.php:26 -msgid "General and quick group status report" -msgstr "" - -#: ../../enterprise/dashboard/widgets/single_graph.php:29 -msgid "Single graph" -msgstr "" - -#: ../../enterprise/dashboard/widgets/single_graph.php:31 -msgid "Show a graph of an agent module" -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:25 -msgid "Map made by user" -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:27 -msgid "Show a map made by user" -msgstr "" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:24 -msgid "Show a defined custom graph" -msgstr "" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:50 -#: ../../include/functions.php:153 -msgid "You don't have access" -msgstr "" - -#: ../../enterprise/dashboard/widgets/url.php:23 -msgid "Show the URL content" -msgstr "" - -#: ../../enterprise/dashboard/widgets/url.php:26 -msgid "Height in px (zero for auto)" -msgstr "" - -#: ../../enterprise/dashboard/widgets/url.php:27 -msgid "My URL" -msgstr "" - -#: ../../enterprise/dashboard/widgets/url.php:67 -msgid "Invalid URL" -msgstr "" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:23 -msgid "Show a list of global monitor health" -msgstr "" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:43 -msgid "Server health" -msgstr "" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:45 -msgid "of servers up" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:72 -msgid "Could not create dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:75 -msgid "Dashboard successfuly created" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:81 -msgid "Add dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:184 -msgid "Slides mode" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:195 -msgid "Next Dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:199 -msgid "Play" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:204 -msgid "Previous Dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:207 -msgid "Pause" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:212 -msgid "Next slide in" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:243 -msgid "Add widget" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:244 -msgid "Rename dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:246 -msgid "Delete dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:436 -msgid "Rename" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:461 -msgid "Add new dashboard view" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:462 -msgid "Add new widget" -msgstr "" - -#: ../../enterprise/include/functions_alert_event.php:929 -msgid "Module alert" -msgstr "" - -#: ../../enterprise/include/functions_local_components.php:190 -#: ../../include/functions_network_components.php:376 -#: ../../include/functions_alerts.php:813 -msgid "Copy of" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:144 -msgid "Generated" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:159 -msgid "Simple Graph" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:195 -msgid "% Limit" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:246 -#: ../../enterprise/include/functions_reporting_pdf.php:2202 -#: ../../include/functions_reporting.php:2393 -msgid "Fail" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:284 -#: ../../enterprise/include/functions_reporting_csv.php:315 -#: ../../enterprise/include/functions_reporting_csv.php:346 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_csv.php:408 -#: ../../enterprise/include/functions_reporting_csv.php:512 -#: ../../enterprise/include/functions_reporting_csv.php:543 -#: ../../enterprise/include/functions_reporting_csv.php:573 -#: ../../enterprise/include/functions_reporting_csv.php:593 -#: ../../enterprise/include/functions_reporting_csv.php:624 -msgid "Report type" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:284 -msgid "% OK" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:284 -msgid "% Wrong" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:285 -msgid "Monitor Report" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:316 -msgid "AVG. Value" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:347 -msgid "MAX Value" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:378 -msgid "MIN Value" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:409 -#: ../../include/functions.php:712 ../../include/functions_reporting.php:2586 -msgid "Summatory" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:484 -#: ../../include/functions_reporting.php:2712 -msgid "Illegal query" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Uknown agents" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Total modules" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Normal modules" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Critical modules" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Warning modules" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Unknown modules" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Not init modules" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Defined alerts" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Fired alerts" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:593 -msgid "Last 8 hours events" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/include/functions_reporting_pdf.php:460 -#: ../../include/functions.php:736 ../../include/functions_reporting.php:3044 -msgid "Group report" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:672 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:946 -#: ../../include/functions_reporting.php:3131 -#: ../../include/functions_reporting.php:3222 -#: ../../include/functions_reporting.php:3422 -#: ../../include/functions_reporting.php:3660 -msgid "There are no Agent/Modules defined" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:904 -#: ../../enterprise/include/functions_reporting_csv.php:1004 -#: ../../enterprise/include/functions_reporting_pdf.php:826 -#: ../../enterprise/include/functions_reporting_pdf.php:961 -#: ../../include/functions_reporting.php:3629 -#: ../../include/functions_reporting.php:3772 -msgid "Modules over or equal to" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:907 -#: ../../enterprise/include/functions_reporting_csv.php:1007 -#: ../../enterprise/include/functions_reporting_pdf.php:829 -#: ../../enterprise/include/functions_reporting_pdf.php:964 -#: ../../include/functions_reporting.php:3632 -#: ../../include/functions_reporting.php:3775 -msgid "Modules under" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:910 -#: ../../enterprise/include/functions_reporting_csv.php:1010 -#: ../../enterprise/include/functions_reporting_pdf.php:832 -#: ../../enterprise/include/functions_reporting_pdf.php:967 -#: ../../include/functions_reporting.php:3635 -#: ../../include/functions_reporting.php:3778 -msgid "Modules at normal status" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:913 -#: ../../enterprise/include/functions_reporting_pdf.php:835 -#: ../../include/functions_reporting.php:3638 -msgid "Modules at critical or warning status" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:1001 -#: ../../enterprise/include/functions_reporting_pdf.php:958 -#: ../../include/functions_reporting.php:3769 -msgid "There are no" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:1013 -#: ../../enterprise/include/functions_reporting_pdf.php:970 -#: ../../include/functions_reporting.php:3781 -msgid "Modules at critial or warning status" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:1016 -#: ../../enterprise/include/functions_reporting_pdf.php:973 -#: ../../include/functions_reporting.php:3784 -msgid "Modules under those conditions" -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:1068 -msgid "Serialized data " -msgstr "" - -#: ../../enterprise/include/functions_reporting_csv.php:1094 -#: ../../enterprise/include/functions_reporting_pdf.php:1466 -#: ../../enterprise/include/functions_reporting_pdf.php:1788 -msgid "There are no data." -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:27 -msgid "Wizard SLA" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:30 -msgid "Global" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:33 -msgid "Advance options" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:158 -msgid "Made with the wizard." -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:193 -#: ../../enterprise/include/functions_networkmap_enterprise.php:300 -#: ../../enterprise/include/functions_networkmap_enterprise.php:793 -msgid "Circle" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:193 -#: ../../enterprise/include/functions_networkmap_enterprise.php:300 -#: ../../enterprise/include/functions_networkmap_enterprise.php:793 -msgid "Square" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:193 -#: ../../enterprise/include/functions_networkmap_enterprise.php:300 -#: ../../enterprise/include/functions_networkmap_enterprise.php:793 -msgid "Rhombus" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:200 -#: ../../enterprise/include/functions_networkmap_enterprise.php:797 -msgid "Shape" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:201 -#: ../../enterprise/include/functions_networkmap_enterprise.php:798 -msgid "Radius" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:202 -#: ../../enterprise/include/functions_networkmap_enterprise.php:799 -msgid "Color" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:203 -#: ../../enterprise/include/functions_networkmap_enterprise.php:801 -msgid "Network map linked" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:215 -msgid "Open Minimap" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:223 -msgid "Update config" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:224 -msgid "Update node status" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:230 -msgid "Add fictional point" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:232 -msgid "Search agent" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:240 -msgid "Open menu" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:249 -msgid "Created nodes" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:305 -msgid "Set Child" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:306 -msgid "To Front" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:307 -msgid "Erase" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:308 -msgid "Show details" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:314 -msgid "Set center" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:320 -msgid "Set Parent" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:321 -msgid "Cancel action set parent" -msgstr "" - -#: ../../enterprise/include/functions_networkmap_enterprise.php:901 -msgid "Copy of " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:43 -msgid "Automated Pandora FMS report for user defined report" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:299 -msgid "There are no agents with modules." -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:502 -#: ../../include/functions_reporting.php:3082 -msgid "Defined" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:515 -#: ../../include/functions_reporting.php:3094 -msgid "Last 8 hours" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:542 -#: ../../enterprise/include/functions_reporting_pdf.php:845 -#: ../../enterprise/include/functions_reporting_pdf.php:1090 -#: ../../enterprise/include/functions_reporting_pdf.php:1323 -#: ../../enterprise/include/functions_reporting_pdf.php:1357 -#: ../../enterprise/include/functions_reporting_pdf.php:1391 -#: ../../enterprise/include/functions_reporting_pdf.php:1425 -#: ../../enterprise/include/functions_reporting_pdf.php:1883 -#: ../../enterprise/include/functions_reporting_pdf.php:2019 -#: ../../enterprise/include/functions_reporting_pdf.php:2048 -#: ../../enterprise/include/functions_reporting_pdf.php:2077 -#: ../../enterprise/include/functions_reporting_pdf.php:2106 -#: ../../enterprise/include/functions_reporting_pdf.php:2126 -#: ../../enterprise/include/functions_reporting_pdf.php:2258 -#: ../../enterprise/include/functions_reporting_pdf.php:2311 -#: ../../enterprise/include/functions_reporting_pdf.php:2380 -#: ../../enterprise/include/functions_reporting_pdf.php:2426 -#: ../../enterprise/include/functions_reporting_pdf.php:2492 -#: ../../enterprise/include/functions_reporting_pdf.php:2537 -#: ../../enterprise/include/functions_reporting_pdf.php:2570 -msgid "Period: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:553 -#: ../../enterprise/include/functions_reporting_pdf.php:639 -#: ../../enterprise/include/functions_reporting_pdf.php:853 -#: ../../enterprise/include/functions_reporting_pdf.php:1099 -msgid "There are no Agent/Modules defined." -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:802 -#: ../../enterprise/include/functions_reporting_pdf.php:1064 -#: ../../enterprise/include/functions_reporting_pdf.php:1285 -#: ../../include/functions_reporting.php:3607 -#: ../../include/functions_reporting.php:3872 -msgid "Max Value" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:803 -#: ../../enterprise/include/functions_reporting_pdf.php:1065 -#: ../../enterprise/include/functions_reporting_pdf.php:1286 -#: ../../include/functions_reporting.php:3609 -#: ../../include/functions_reporting.php:3874 -msgid "Min Value" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:804 -#: ../../enterprise/include/functions_reporting_pdf.php:1066 -#: ../../enterprise/include/functions_reporting_pdf.php:1287 -#: ../../include/functions_reporting.php:3611 -#: ../../include/functions_reporting.php:3876 -msgid "Average Value" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1045 -#: ../../enterprise/include/functions_reporting_pdf.php:1249 -#: ../../include/functions_graph.php:911 -#: ../../include/functions_graph.php:1556 -#: ../../include/functions_reporting.php:1331 -#: ../../include/functions_reporting.php:1405 -#: ../../include/functions_reporting.php:2435 -#: ../../include/functions_reporting.php:3574 -#: ../../include/functions_reporting.php:3857 -msgid "other" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1518 -msgid "Import text from URL: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1623 -msgid "There are no alerts for this module." -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1663 -msgid "Modules detailed event" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1674 -msgid "There are no events for this module." -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1723 -msgid "There are no events in group." -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1840 -#: ../../include/functions_reporting.php:2725 -msgid "User defined graph" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:1955 -msgid "There are no Events." -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2139 -msgid "Info" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2140 -msgid "SLA result" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2161 -#: ../../include/functions_reporting.php:2314 -msgid "SLA Limit" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2197 -msgid "SLA final result: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2332 -#: ../../enterprise/include/functions_reporting_pdf.php:2502 -#: ../../include/functions_visual_map.php:1021 -#: ../../include/functions_visual_map.php:1151 -msgid "Module graph" -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2572 -msgid "Up: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2573 -msgid "Down: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2639 -#: ../../enterprise/include/functions_reporting_pdf.php:2674 -msgid "Report: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2640 -msgid "Generated: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2641 -msgid "Description: " -msgstr "" - -#: ../../enterprise/include/functions_reporting_pdf.php:2654 -msgid "CONTENTS" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:147 -msgid "No description" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:245 -#: ../../enterprise/include/functions_backup.php:327 -msgid "Restoring a backup" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:247 -#: ../../enterprise/include/functions_backup.php:329 -msgid "Restoring a Pandora database backup must be done manually" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:248 -#: ../../enterprise/include/functions_backup.php:330 -msgid "" -"It's a complex operation that needs human intervation to avoid system " -"failures and data loosing" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:249 -#: ../../enterprise/include/functions_backup.php:331 -msgid "To restore the selected backup, please follow these steps" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:255 -#: ../../enterprise/include/functions_backup.php:337 -msgid "Open a root shell in your system located at " -msgstr "" - -#: ../../enterprise/include/functions_backup.php:259 -msgid "Connect to MySQL database using the following command" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:266 -msgid "Create a new database" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:279 -msgid "Restore the backup" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:287 -#: ../../enterprise/include/functions_backup.php:352 -msgid "Modify console configuration to use this new database" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:288 -#: ../../enterprise/include/functions_backup.php:353 -msgid "Open configuration file" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:292 -#: ../../enterprise/include/functions_backup.php:304 -#: ../../enterprise/include/functions_backup.php:357 -#: ../../enterprise/include/functions_backup.php:369 -msgid "Find" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:294 -#: ../../enterprise/include/functions_backup.php:307 -#: ../../enterprise/include/functions_backup.php:359 -#: ../../enterprise/include/functions_backup.php:372 -msgid "and replace with" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:301 -#: ../../enterprise/include/functions_backup.php:366 -msgid "Modify servers configuration to use this new database" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:302 -#: ../../enterprise/include/functions_backup.php:367 -msgid "Find servers configuration file and replace the following lines" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:314 -#: ../../enterprise/include/functions_backup.php:379 -msgid "Restart the servers and login again into the console" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:344 -msgid "Run import command using the following command" -msgstr "" - -#: ../../enterprise/include/functions_backup.php:348 -msgid "Into your destination database." -msgstr "" - -#: ../../enterprise/include/functions_policies.php:48 -msgid "Extra policies access to this user" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:710 -#: ../../include/functions_alerts.php:280 -msgid "copy" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2846 -msgid "Policy linkation" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2851 -msgid "Module linked" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2853 -#: ../../enterprise/include/functions_policies.php:2863 -msgid "Unlink from policy" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2856 -msgid "Module unlinked" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2858 -#: ../../enterprise/include/functions_policies.php:2868 -msgid "Relink to policy" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2861 -msgid "Module pending to link" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2861 -msgid "Module will be linked in the next application" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2866 -msgid "Module pending to unlink" -msgstr "" - -#: ../../enterprise/include/functions_policies.php:2866 -msgid "Module will be unlinked in the next application" -msgstr "" - -#: ../../include/functions_graph.php:199 ../../include/functions_graph.php:385 -#: ../../include/functions_graph.php:467 ../../include/functions_graph.php:726 -#: ../../include/functions_graph.php:1803 -#: ../../include/functions_graph.php:1902 -#: ../../include/functions_graph.php:2104 -#: ../../include/functions_forecast.php:150 -msgid "Last hour" -msgstr "" - -#: ../../include/functions_graph.php:215 ../../include/functions_graph.php:401 -#: ../../include/functions_graph.php:479 ../../include/functions_graph.php:738 -#: ../../include/functions_graph.php:1819 -#: ../../include/functions_graph.php:1918 -#: ../../include/functions_graph.php:2120 -#: ../../include/functions_forecast.php:166 +#: ../../godmode/agentes/configurar_agente.php:512 #, php-format -msgid "Last %s days" +msgid "Deleted data above %d" msgstr "" -#: ../../include/functions_graph.php:310 -msgid "Units. Value" -msgstr "" - -#: ../../include/functions_graph.php:338 -#: ../../include/functions_graph.php:1937 -msgid "Baseline" -msgstr "" - -#: ../../include/functions_graph.php:339 ../../include/functions_graph.php:694 -msgid "Units" -msgstr "" - -#: ../../include/functions_graph.php:919 -#: ../../include/functions_reporting.php:2327 -#: ../../include/functions_reporting.php:2333 -#: ../../include/functions_reporting.php:2367 -#: ../../include/functions_reporting.php:2368 -msgid "Out of limits" -msgstr "" - -#: ../../include/functions_graph.php:976 ../../include/functions_graph.php:982 -#: ../../include/functions_graph.php:988 ../../include/functions_graph.php:996 -#: ../../include/graphs/functions_fsgraph.php:865 -msgid "Today" -msgstr "" - -#: ../../include/functions_graph.php:977 ../../include/functions_graph.php:983 -#: ../../include/functions_graph.php:989 ../../include/functions_graph.php:996 -#: ../../include/graphs/functions_fsgraph.php:830 -msgid "Week" -msgstr "" - -#: ../../include/functions_graph.php:978 ../../include/functions_graph.php:984 -#: ../../include/functions_graph.php:990 ../../include/functions_graph.php:997 -msgid "Month" -msgstr "" - -#: ../../include/functions_graph.php:979 ../../include/functions_graph.php:985 -#: ../../include/functions_graph.php:991 ../../include/functions_graph.php:994 -#: ../../include/functions_graph.php:997 -msgid "Months" -msgstr "" - -#: ../../include/functions_graph.php:980 ../../include/functions_graph.php:986 -#: ../../include/functions_graph.php:992 ../../include/functions_graph.php:994 -#: ../../include/functions_graph.php:997 -msgid "Older" -msgstr "" - -#: ../../include/functions_graph.php:1155 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:49 -msgid "Informative" -msgstr "" - -#: ../../include/functions_graph.php:1156 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:52 -msgid "Low" -msgstr "" - -#: ../../include/functions_graph.php:1157 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:55 -msgid "Medium" -msgstr "" - -#: ../../include/functions_graph.php:1158 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:58 -msgid "Serious" -msgstr "" - -#: ../../include/functions_graph.php:1159 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:61 -msgid "Very serious" -msgstr "" - -#: ../../include/functions_graph.php:1160 -#: ../../include/functions_graph.php:1406 -#: ../../include/functions_graph.php:1407 -#: ../../include/functions_graph.php:1408 -#: ../../include/functions_incidents.php:34 -#: ../../include/functions_incidents.php:64 ../../include/functions.php:610 -#: ../../include/functions.php:917 ../../include/functions.php:942 -msgid "Maintenance" -msgstr "" - -#: ../../include/functions_graph.php:1176 -#: ../../include/functions_graph.php:1188 -msgid "Open incident" -msgstr "" - -#: ../../include/functions_graph.php:1177 -#: ../../include/functions_graph.php:1190 -msgid "Closed incident" -msgstr "" - -#: ../../include/functions_graph.php:1178 -#: ../../include/functions_graph.php:1192 -msgid "Outdated" -msgstr "" - -#: ../../include/functions_graph.php:1179 -#: ../../include/functions_graph.php:1194 -msgid "Invalid" -msgstr "" - -#: ../../include/functions_graph.php:1375 -#: ../../include/functions_events.php:619 -msgid "SYSTEM" -msgstr "" - -#: ../../include/functions_graph.php:1412 -#: ../../include/functions_graph.php:1413 -#: ../../include/functions_graph.php:1414 ../../include/functions.php:613 -#: ../../include/functions.php:918 ../../include/functions.php:945 -msgid "Informational" -msgstr "" - -#: ../../include/functions_config.php:662 -msgid "Default password for \"Admin\" user has not been changed." -msgstr "" - -#: ../../include/functions_config.php:662 -msgid "" -"Please change the default password because is a common vulnerability " -"reported." -msgstr "" - -#: ../../include/functions_config.php:667 -msgid "Attachment directory is not writable by HTTP Server" -msgstr "" - -#: ../../include/functions_config.php:667 -msgid "" -"Please check that the web server has write rights on the {HOMEDIR}/" -"attachment directory" -msgstr "" - -#: ../../include/functions_config.php:677 -#: ../../include/functions_config.php:683 -#: ../../include/functions_config.php:689 -msgid "Remote configuration directory is not writtable for the console" -msgstr "" - -#: ../../include/functions_config.php:699 -msgid "Too much files in your tempora/attachment directory" -msgstr "" - -#: ../../include/functions_config.php:700 -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:700 -msgid "files" -msgstr "" - -#: ../../include/functions_config.php:715 -msgid "Database maintance problem" -msgstr "" - -#: ../../include/functions_config.php:716 -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:722 -msgid "Default font doesnt exist" -msgstr "" - -#: ../../include/functions_config.php:723 -msgid "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" -msgstr "" - -#: ../../include/functions_config.php:730 -msgid "Developer mode is enabled" -msgstr "" - -#: ../../include/functions_config.php:731 -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_incidents.php:82 -#: ../../include/functions_incidents.php:101 -msgid "Active incidents" -msgstr "" - -#: ../../include/functions_incidents.php:83 -#: ../../include/functions_incidents.php:104 -msgid "Active incidents, with comments" -msgstr "" - -#: ../../include/functions_incidents.php:84 -#: ../../include/functions_incidents.php:107 -msgid "Rejected incidents" -msgstr "" - -#: ../../include/functions_incidents.php:85 -#: ../../include/functions_incidents.php:110 -msgid "Expired incidents" -msgstr "" - -#: ../../include/functions_incidents.php:86 -#: ../../include/functions_incidents.php:113 -msgid "Closed incidents" -msgstr "" - -#: ../../include/functions_modules.php:934 -msgid "Software agent data" -msgstr "" - -#: ../../include/functions_modules.php:937 -msgid "Software agent monitor" -msgstr "" - -#: ../../include/functions_modules.php:940 -msgid "Network agent data" -msgstr "" - -#: ../../include/functions_modules.php:943 -msgid "Network agent monitor" -msgstr "" - -#: ../../include/functions.php:157 -msgid "You don't have enough permission to access this resource" -msgstr "" - -#: ../../include/functions.php:172 ../../include/functions.php:176 -msgid "Unmanaged error" -msgstr "" - -#: ../../include/functions.php:247 -msgid "." -msgstr "" - -#: ../../include/functions.php:249 -msgid "," -msgstr "" - -#: ../../include/functions.php:426 -msgid "s" -msgstr "" - -#: ../../include/functions.php:427 -msgid "d" -msgstr "" - -#: ../../include/functions.php:429 -msgid "m" -msgstr "" - -#: ../../include/functions.php:430 -msgid "h" -msgstr "" - -#: ../../include/functions.php:431 -msgid "N" -msgstr "" - -#: ../../include/functions.php:718 -msgid "SQL query" -msgstr "" - -#: ../../include/functions.php:719 -msgid "SQL vertical bar graph" -msgstr "" - -#: ../../include/functions.php:720 -msgid "SQL pie graph" -msgstr "" - -#: ../../include/functions.php:721 -msgid "SQL horizonal bar graph" -msgstr "" - -#: ../../include/functions.php:732 -msgid "Event report agent" -msgstr "" - -#: ../../include/functions.php:733 -msgid "Event report module" -msgstr "" - -#: ../../include/functions.php:734 -msgid "Event report group" -msgstr "" - -#: ../../include/functions.php:741 ../../include/functions_reporting.php:2103 -msgid "Projection graph" -msgstr "" - -#: ../../include/functions.php:742 ../../include/functions_reporting.php:2151 -msgid "Prediction date" -msgstr "" - -#: ../../include/functions.php:887 -msgid "Monitor Critical" -msgstr "" - -#: ../../include/functions.php:888 -msgid "Monitor Warning" -msgstr "" - -#: ../../include/functions.php:889 -msgid "Monitor Normal" -msgstr "" - -#: ../../include/functions.php:892 ../../include/functions_events.php:596 -msgid "Alert recovered" -msgstr "" - -#: ../../include/functions.php:893 -msgid "Alert ceased" -msgstr "" - -#: ../../include/functions.php:894 -msgid "Alert manual validation" -msgstr "" - -#: ../../include/functions.php:895 -msgid "Recon host detected" -msgstr "" - -#: ../../include/functions_db.php:1040 -msgid "SQL sentence" -msgstr "" - -#: ../../include/functions_db.php:1041 -msgid "Result" -msgstr "" - -#: ../../include/functions_db.php:1042 -msgid "Rows" -msgstr "" - -#: ../../include/functions_db.php:1043 -msgid "Saved" -msgstr "" - -#: ../../include/functions_db.php:1044 -msgid "Time (ms)" -msgstr "" - -#: ../../include/functions_reporting.php:1099 -msgid "Alert description" -msgstr "" - -#: ../../include/functions_reporting.php:1328 -msgid "Alerts not fired" -msgstr "" - -#: ../../include/functions_reporting.php:1335 -msgid "Total alerts monitored" -msgstr "" - -#: ../../include/functions_reporting.php:1384 -msgid "Total monitors" -msgstr "" - -#: ../../include/functions_reporting.php:1385 -msgid "Monitors down on period" -msgstr "" - -#: ../../include/functions_reporting.php:1401 -msgid "Monitors OK" -msgstr "" - -#: ../../include/functions_reporting.php:1402 -msgid "Monitors BAD" -msgstr "" - -#: ../../include/functions_reporting.php:1471 -msgid "Agents in group" -msgstr "" - -#: ../../include/functions_reporting.php:1562 -msgid "Last failure" -msgstr "" - -#: ../../include/functions_reporting.php:1657 -#: ../../include/functions_reporting.php:3071 -msgid "Monitors" -msgstr "" - -#: ../../include/functions_reporting.php:1955 -msgid "At least one module in CRITICAL status" -msgstr "" - -#: ../../include/functions_reporting.php:1959 -msgid "At least one module in WARNING status" -msgstr "" - -#: ../../include/functions_reporting.php:1963 -msgid "At least one module is in UKNOWN status" -msgstr "" - -#: ../../include/functions_reporting.php:2313 -msgid "Max/Min Values" -msgstr "" - -#: ../../include/functions_reporting.php:2326 -#: ../../include/functions_reporting.php:2332 -#: ../../include/functions_reporting.php:2363 -#: ../../include/functions_reporting.php:2364 -msgid "Inside limits" -msgstr "" - -#: ../../include/functions_reporting.php:2328 -#: ../../include/functions_reporting.php:2334 -#: ../../include/functions_reporting.php:2359 -#: ../../include/functions_reporting.php:2360 -msgid "On the edge" -msgstr "" - -#: ../../include/functions_reporting.php:2713 -msgid "" -"Due security restrictions, there are some tokens or words you cannot use" -msgstr "" - -#: ../../include/functions_reporting.php:2714 -msgid "or" -msgstr "" - -#: ../../include/functions_reporting.php:2775 -msgid "Module detailed event" -msgstr "" - -#: ../../include/functions_alerts.php:446 -msgid "Max and min" -msgstr "" - -#: ../../include/functions_alerts.php:449 -msgid "Equal to" -msgstr "" - -#: ../../include/functions_alerts.php:450 -msgid "Not equal to" -msgstr "" - -#: ../../include/functions_alerts.php:453 -msgid "Unknown status" -msgstr "" - -#: ../../include/functions_alerts.php:454 -msgid "On Change" -msgstr "" - -#: ../../include/functions_alerts.php:793 -msgid "week" -msgstr "" - -#: ../../include/functions_custom_graphs.php:133 -msgid "1 week" -msgstr "" - -#: ../../include/functions_custom_graphs.php:134 -msgid "1 month" -msgstr "" - -#: ../../include/functions_custom_graphs.php:135 -msgid "6 months" -msgstr "" - -#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 -#: ../../include/functions_gis.php:36 -msgid "Hierarchy of agents" -msgstr "" - -#: ../../include/functions_events.php:175 -msgid "Setted in process" -msgstr "" - -#: ../../include/functions_events.php:323 -msgid "Latest events" -msgstr "" - -#: ../../include/functions_events.php:599 -msgid "Alert manually validated" -msgstr "" - -#: ../../include/functions_events.php:602 -msgid "Going from critical to warning" -msgstr "" - -#: ../../include/functions_events.php:606 -msgid "Going down to critical state" -msgstr "" - -#: ../../include/functions_events.php:610 -msgid "Going up to normal state" -msgstr "" - -#: ../../include/functions_events.php:613 -msgid "Going down from normal to warning" -msgstr "" - -#: ../../include/functions_events.php:622 -msgid "Recon server detected a new host" -msgstr "" - -#: ../../include/functions_events.php:625 -msgid "New agent created" -msgstr "" - -#: ../../include/functions_events.php:629 -msgid "Unknown type:" -msgstr "" - -#: ../../include/functions_servers.php:168 -msgid "SNMP Trap server" -msgstr "" - -#: ../../include/functions_servers.php:208 -msgid "Event server" -msgstr "" - -#: ../../include/functions_servers.php:213 -msgid "Enterprise ICMP server" -msgstr "" - -#: ../../include/functions_servers.php:218 -msgid "Enterprise SNMP server" -msgstr "" - -#: ../../include/functions_ui.php:197 -msgid "Request successfully processed" -msgstr "" - -#: ../../include/functions_ui.php:200 -msgid "Error processing request" -msgstr "" - -#: ../../include/functions_ui.php:710 -msgid "The alert would fire when the value is " -msgstr "" - -#: ../../include/functions_ui.php:714 -msgid "The alert would fire when the value is not " -msgstr "" - -#: ../../include/functions_ui.php:719 -msgid "The alert would fire when the value matches " -msgstr "" - -#: ../../include/functions_ui.php:722 -msgid "" -"The alert would fire when the value doesn't match " -msgstr "" - -#: ../../include/functions_ui.php:728 -msgid "" -"The alert would fire when the value is between and " -"" -msgstr "" - -#: ../../include/functions_ui.php:731 -msgid "" -"The alert would fire when the value is not between " -"and " -msgstr "" - -#: ../../include/functions_ui.php:735 -msgid "The alert would fire when the value is over " -msgstr "" - -#: ../../include/functions_ui.php:740 -msgid "The alert would fire when the value is under " -msgstr "" - -#: ../../include/functions_ui.php:778 -msgid "Help" -msgstr "" - -#: ../../include/functions_ui.php:913 -msgid "the Flexible Monitoring System" -msgstr "" - -#: ../../include/functions_ui.php:1322 -msgid "Unknown type" -msgstr "" - -#: ../../include/graphs/functions_fsgraph.php:840 -msgid "Planned" -msgstr "" - -#: ../../include/graphs/functions_fsgraph.php:843 -msgid "Actual" -msgstr "" - -#: ../../include/graphs/functions_fsgraph.php:848 -msgid "Completion" -msgstr "" - -#: ../../include/graphs/functions_fsgraph.php:857 -msgid "Milestones" -msgstr "" - -#: ../../include/functions_api.php:64 -msgid "No set or get or help operation." -msgstr "" - -#: ../../include/functions_api.php:68 -msgid "This operation does not exist." -msgstr "" - -#: ../../include/functions_api.php:72 -msgid "Id does not exist in BD." -msgstr "" - -#: ../../include/functions_api.php:751 -msgid "Correct Delete" -msgstr "" - -#: ../../include/functions_api.php:805 -msgid "Error in creation network module." -msgstr "" - -#: ../../include/functions_api.php:874 -msgid "Create user." -msgstr "" - -#: ../../include/functions_api.php:1900 -msgid "Delete user." -msgstr "" - -#: ../../include/functions_api.php:1925 -msgid "Add user profile." -msgstr "" - -#: ../../include/functions_api.php:1954 -msgid "Delete user profile." -msgstr "" - -#: ../../include/functions_api.php:2037 -msgid "Correct module disable" -msgstr "" - -#: ../../include/functions_api.php:2054 -msgid "Correct module enable" -msgstr "" - -#: ../../include/functions_html.php:1428 -msgid "Type at least two characters to search the module." -msgstr "" - -#: ../../include/functions_groups.php:59 -msgid "Alert Actions" -msgstr "" - -#: ../../include/functions_groups.php:74 -msgid "Alert Templates" -msgstr "" - -#: ../../include/functions_groups.php:88 -msgid "Recon task" -msgstr "" - -#: ../../include/functions_groups.php:131 -msgid "Layout visual console" -msgstr "" - -#: ../../include/functions_groups.php:145 -msgid "Plannet down time" -msgstr "" - -#: ../../include/functions_groups.php:172 -msgid "GIS maps" -msgstr "" - -#: ../../include/functions_groups.php:186 -msgid "GIS connections" -msgstr "" - -#: ../../include/functions_groups.php:200 -msgid "GIS map layers" -msgstr "" - -#: ../../include/functions_groups.php:213 -msgid "Network maps" -msgstr "" - -#: ../../include/functions_filemanager.php:169 -msgid "Upload error" -msgstr "" - -#: ../../include/functions_filemanager.php:173 -#: ../../include/functions_filemanager.php:226 -#: ../../include/functions_filemanager.php:288 -msgid "Upload correct" -msgstr "" - -#: ../../include/functions_filemanager.php:223 -msgid "Error create file." -msgstr "" - -#: ../../include/functions_filemanager.php:232 -#: ../../include/functions_filemanager.php:322 -msgid "Error create file with empty name." -msgstr "" - -#: ../../include/functions_filemanager.php:274 -msgid "attach_error" -msgstr "" - -#: ../../include/functions_filemanager.php:317 -msgid "Created directory" -msgstr "" - -#: ../../include/functions_filemanager.php:345 -msgid "Deleting" -msgstr "" - -#: ../../include/functions_filemanager.php:465 +#: ../../godmode/agentes/configurar_agente.php:513 #, php-format -msgid "Directory %s doesn't exist!" +msgid "Error normalizing module %s" msgstr "" -#: ../../include/functions_filemanager.php:485 -msgid "Last modification" +#: ../../godmode/agentes/configurar_agente.php:617 +msgid "There was a problem updating the agent" msgstr "" -#: ../../include/functions_filemanager.php:500 -msgid "Parent directory" +#: ../../godmode/agentes/configurar_agente.php:651 +msgid "There was a problem loading the agent" msgstr "" -#: ../../include/functions_filemanager.php:517 -#: ../../include/functions_filemanager.php:529 -#: ../../include/functions_filemanager.php:546 -msgid "Close" -msgstr "" - -#: ../../include/functions_filemanager.php:531 -#: ../../include/functions_filemanager.php:672 -#: ../../include/functions_filemanager.php:744 -msgid "The zip upload in this dir, easy to upload multiple files." -msgstr "" - -#: ../../include/functions_filemanager.php:534 -msgid "Decompress" -msgstr "" - -#: ../../include/functions_filemanager.php:633 -msgid "Create directory" -msgstr "" - -#: ../../include/functions_filemanager.php:636 -msgid "Create text" -msgstr "" - -#: ../../include/functions_filemanager.php:639 -msgid "Upload file/s" -msgstr "" - -#: ../../include/functions_filemanager.php:646 -msgid "The directory is read-only" -msgstr "" - -#: ../../include/functions_filemanager.php:667 -#: ../../include/functions_filemanager.php:704 -#: ../../include/functions_filemanager.php:739 -#: ../../include/functions_filemanager.php:774 -msgid "Current directory is not writable by HTTP Server" -msgstr "" - -#: ../../include/functions_filemanager.php:669 -#: ../../include/functions_filemanager.php:706 -#: ../../include/functions_filemanager.php:741 -#: ../../include/functions_filemanager.php:776 -msgid "Please check that current directory has write rights for HTTP server" -msgstr "" - -#: ../../include/functions_filemanager.php:674 -msgid "Multiple files zipped" -msgstr "" - -#: ../../include/functions_filemanager.php:675 -msgid "One" -msgstr "" - -#: ../../include/functions_filemanager.php:744 -msgid "Upload zip file: " -msgstr "" - -#: ../../include/functions_filemanager.php:779 -msgid "Create text file: " -msgstr "" - -#: ../../include/get_file.php:40 -msgid "Security error. Please contact the administrator." -msgstr "" - -#: ../../include/get_file.php:46 -msgid "File is missing in disk storage. Please contact the administrator." -msgstr "" - -#: ../../include/functions_agents.php:68 -msgid "Agent keepalive monitor" -msgstr "" - -#: ../../include/functions_agents.php:574 +#: ../../godmode/agentes/configurar_agente.php:909 msgid "" -"There was an error copying the agent configuration, the copy has been " -"cancelled" +"There was a problem updating module. Another module already exists with the " +"same name." msgstr "" -#: ../../include/functions_visual_map.php:259 -msgid "Agent successfully added to layout" +#: ../../godmode/agentes/configurar_agente.php:912 +msgid "" +"There was a problem updating module. Some required fields are missed: (name)" msgstr "" -#: ../../include/functions_visual_map.php:312 -msgid "Modules successfully added to layout" +#: ../../godmode/agentes/configurar_agente.php:915 +msgid "There was a problem updating module. \"No change\"" msgstr "" -#: ../../include/functions_visual_map.php:1020 -#: ../../include/functions_visual_map.php:1159 -msgid "Static graph" +#: ../../godmode/agentes/configurar_agente.php:920 +msgid "There was a problem updating module. Processing error" msgstr "" -#: ../../include/functions_visual_map.php:1023 -#: ../../include/functions_visual_map.php:1155 -msgid "Percentile bar" +#: ../../godmode/agentes/configurar_agente.php:939 +msgid "Module successfully updated" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1029 +msgid "" +"There was a problem adding module. Another module already exists with the " +"same name." +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1032 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1037 +msgid "There was a problem adding module. Processing error" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1201 +msgid "There was a problem deleting the module" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1205 +msgid "Module deleted succesfully" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1219 +#, php-format +msgid "copy of %s" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1228 +#, php-format +msgid "copy of %s (%d)" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1302 +msgid "Save by Pandora Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1317 +msgid "Update by Pandora Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1330 +msgid "Insert by Pandora Console" +msgstr "" + +#: ../../godmode/agentes/configurar_agente.php:1382 +#: ../../godmode/agentes/configurar_agente.php:1389 +msgid "Invalid tab specified" +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:51 +msgid "Field successfully created" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:68 +msgid "Field successfully updated" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:71 +msgid "There was a problem modifying field" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:80 +msgid "There was a problem deleting field" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "Field successfully deleted" +msgstr "" + +#: ../../godmode/agentes/fields_manager.php:126 +msgid "Create field" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:32 +#: ../../godmode/agentes/planned_downtime.list.php:32 +msgid "Planned Downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:157 +msgid "Not created. Error inserting data" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:194 +msgid "Each planned downtime must have a different name" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:199 +#: ../../godmode/agentes/planned_downtime.editor.php:232 +msgid "Planned downtime must have a name" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:314 +#: ../../godmode/agentes/planned_downtime.list.php:234 +msgid "Disabled Agents" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:315 +#: ../../godmode/agentes/planned_downtime.list.php:235 +msgid "Disabled only Alerts" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:318 +#: ../../godmode/agentes/planned_downtime.list.php:196 +msgid "Execution" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:319 +#: ../../godmode/agentes/planned_downtime.list.php:239 +msgid "once" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:320 +#: ../../godmode/agentes/planned_downtime.list.php:240 +msgid "Periodically" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:324 +msgid "Configure the time" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:347 +msgid "Type Periodicity:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:384 +msgid "From day:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:389 +msgid "To day:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:398 +msgid "From hour:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:404 +msgid "To hour:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:445 +msgid "Available agents" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:482 +msgid "Filter by group" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:488 +msgid "Available modules:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:489 +msgid "Only for type Quiet for downtimes." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:503 +msgid "Agents planned for this downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:514 +msgid "There are no scheduled downtimes" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:545 +msgid "All alerts" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:548 +msgid "Entire agent" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:552 +#: ../../godmode/agentes/planned_downtime.editor.php:658 +msgid "All modules" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:555 +#: ../../godmode/agentes/planned_downtime.editor.php:650 +#: ../../godmode/agentes/planned_downtime.editor.php:654 +msgid "Some modules" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:622 +msgid "Add Module:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.editor.php:833 +msgid "Please select a module." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:65 +msgid "Succesful stopped the Downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:66 +msgid "Unsuccesful stopped the Downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:166 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:192 +msgid "Name #Ag." +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:201 +#: ../../godmode/agentes/planned_downtime.list.php:327 +msgid "Stop downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:220 +msgid "No planned downtime" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:253 +msgid "Weekly:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:287 +msgid "Monthly:" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:288 +msgid "From day" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:289 +msgid "To day" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:313 +msgid "Executed" +msgstr "" + +#: ../../godmode/agentes/planned_downtime.list.php:317 +msgid "Not executed" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_plugin.php:44 +msgid "Plugin server module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:83 +msgid "Prediction server module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:86 +msgid "Source module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:114 +#: ../../godmode/agentes/module_manager_editor_prediction.php:136 +msgid "Select Module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:70 +msgid "Create a new data server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:72 +msgid "Create a new network server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:74 +msgid "Create a new plugin server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:76 +msgid "Create a new WMI server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:78 +msgid "Create a new prediction server module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:119 +msgid "Get more modules in Pandora FMS Library" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:152 +msgid "Nice try buddy" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:261 +#, php-format +msgid "There was a problem deleting %s modules, none deleted." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:266 +msgid "All Modules deleted succesfully" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:270 +#, php-format +msgid "There was a problem only deleted %s modules of %s total." +msgstr "" + +#: ../../godmode/agentes/module_manager.php:586 +msgid "(Adopt) (Unlinked) " +msgstr "" + +#: ../../godmode/agentes/module_manager.php:637 +msgid "Enable module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:641 +msgid "Disable module" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:656 +msgid "Normalize" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:662 +msgid "Normalize (Disabled)" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:671 +msgid "Create network component" +msgstr "" + +#: ../../godmode/agentes/module_manager.php:676 +msgid "Create network component (Disabled)" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:25 +msgid "Use this OID" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:53 +msgid "Network server module" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:103 +msgid "SNMP walk" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_network.php:165 +#: ../../godmode/agentes/module_manager_editor_network.php:174 +#: ../../godmode/massive/massive_edit_modules.php:367 +#: ../../godmode/massive/massive_edit_modules.php:371 +msgid "The pass length must be eight character minimum." +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:154 +msgid "The agent's name must be the same as the one defined at the console" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:169 +msgid "You can remotely edit this agent configuration" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:175 +msgid "Delete agent" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:201 +#: ../../godmode/massive/massive_edit_agents.php:246 +msgid "Cascade protection" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:246 +#: ../../godmode/massive/massive_edit_agents.php:299 +msgid "Module definition" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:247 +#: ../../godmode/massive/massive_edit_agents.php:301 +msgid "Learning mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:248 +#: ../../godmode/massive/massive_edit_agents.php:302 +msgid "Normal mode" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:253 +#: ../../godmode/massive/massive_edit_agents.php:308 +msgid "Active" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:267 +#: ../../godmode/agentes/agent_manager.php:270 +#: ../../godmode/massive/massive_edit_agents.php:318 +msgid "Not available" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:278 +#: ../../godmode/massive/massive_edit_agents.php:344 +msgid "Agent icon" +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:278 +msgid "Agent icon for GIS Maps." +msgstr "" + +#: ../../godmode/agentes/agent_manager.php:320 +#: ../../godmode/massive/massive_edit_agents.php:360 +msgid "The agent still runs but the alerts and events will be stop" +msgstr "" + +#: ../../godmode/agentes/agent_incidents.php:58 +msgid "No incidents associated to this agent" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_data.php:17 +msgid "Data server module" +msgstr "" + +#: ../../godmode/admin_access_logs.php:33 +msgid "Pandora audit" +msgstr "" + +#: ../../godmode/admin_access_logs.php:33 +msgid "Review Logs" +msgstr "" + +#: ../../godmode/menu.php:28 +msgid "Manage monitoring" +msgstr "" + +#: ../../godmode/menu.php:34 +msgid "Manage agents" +msgstr "" + +#: ../../godmode/menu.php:43 +msgid "Scheduled downtime" +msgstr "" + +#: ../../godmode/menu.php:44 +msgid "Manage custom fields" +msgstr "" + +#: ../../godmode/menu.php:53 ../../godmode/massive/massive_operations.php:141 +msgid "Massive operations" +msgstr "" + +#: ../../godmode/menu.php:58 ../../godmode/massive/massive_operations.php:119 +msgid "Agents operations" +msgstr "" + +#: ../../godmode/menu.php:59 ../../godmode/massive/massive_operations.php:123 +msgid "Modules operations" +msgstr "" + +#: ../../godmode/menu.php:61 ../../godmode/massive/massive_operations.php:115 +msgid "Users operations" +msgstr "" + +#: ../../godmode/menu.php:63 ../../godmode/massive/massive_operations.php:111 +msgid "Alerts operations" +msgstr "" + +#: ../../godmode/menu.php:88 +msgid "Manage tags" +msgstr "" + +#: ../../godmode/menu.php:92 +msgid "Manage categories" +msgstr "" + +#: ../../godmode/menu.php:95 +msgid "Module types" +msgstr "" + +#: ../../godmode/menu.php:113 ../../godmode/alerts/alert_special_days.php:43 +msgid "Special days list" +msgstr "" + +#: ../../godmode/menu.php:130 +msgid "Manage profiles" +msgstr "" + +#: ../../godmode/menu.php:159 +msgid "Event filters" +msgstr "" + +#: ../../godmode/menu.php:162 +msgid "Custom events" +msgstr "" + +#: ../../godmode/menu.php:163 ../../godmode/events/events.php:44 +msgid "Event responses" +msgstr "" + +#: ../../godmode/menu.php:172 +msgid "Manage servers" +msgstr "" + +#: ../../godmode/menu.php:181 +msgid "Manage plugins" +msgstr "" + +#: ../../godmode/menu.php:183 +msgid "Manage recon script" +msgstr "" + +#: ../../godmode/menu.php:197 +msgid "System audit log" +msgstr "" + +#: ../../godmode/menu.php:213 +msgid "Site news" +msgstr "" + +#: ../../godmode/menu.php:218 +msgid "Diagnostic info" +msgstr "" + +#: ../../godmode/menu.php:233 +msgid "DB maintenance" +msgstr "" + +#: ../../godmode/menu.php:238 +msgid "DB information" +msgstr "" + +#: ../../godmode/menu.php:241 +msgid "Database audit" +msgstr "" + +#: ../../godmode/menu.php:242 +msgid "Database event" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:54 +msgid "Module groups defined in Pandora" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:74 +#: ../../godmode/groups/group_list.php:157 +msgid "Group successfully created" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:77 +#: ../../godmode/groups/group_list.php:160 +msgid "There was a problem creating group" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:81 +#: ../../godmode/groups/modu_group_list.php:112 +msgid "Each module group must have a different name" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:85 +#: ../../godmode/groups/modu_group_list.php:116 +msgid "Module group must have a name" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:105 +#: ../../godmode/groups/group_list.php:212 +msgid "Group successfully updated" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:108 +#: ../../godmode/groups/group_list.php:215 +msgid "There was a problem modifying group" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:135 +#: ../../godmode/groups/group_list.php:244 +msgid "There was a problem deleting group" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:137 +#: ../../godmode/groups/group_list.php:241 +msgid "Group successfully deleted" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:201 +msgid "There are no defined module groups" +msgstr "" + +#: ../../godmode/groups/modu_group_list.php:206 +msgid "Create module group" +msgstr "" + +#: ../../godmode/groups/configure_modu_group.php:29 +msgid "Module group management" +msgstr "" + +#: ../../godmode/groups/group_list.php:116 +msgid "Groups defined in Pandora" +msgstr "" + +#: ../../godmode/groups/group_list.php:164 +msgid "Each group must have a different name" +msgstr "" + +#: ../../godmode/groups/group_list.php:169 +msgid "Group must have a name" +msgstr "" + +#: ../../godmode/groups/group_list.php:237 +#, php-format +msgid "The group is not empty. It is use in %s." +msgstr "" + +#: ../../godmode/groups/group_list.php:340 +msgid "Show branch children" +msgstr "" + +#: ../../godmode/groups/group_list.php:369 +msgid "There are no defined groups" +msgstr "" + +#: ../../godmode/groups/group_list.php:374 +#: ../../godmode/groups/configure_group.php:90 +msgid "Create group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:88 +msgid "Update group" +msgstr "" + +#: ../../godmode/groups/configure_group.php:133 +msgid "Propagate ACL" +msgstr "" + +#: ../../godmode/groups/configure_group.php:133 +msgid "Propagate the same ACL security into the child subgroups." +msgstr "" + +#: ../../godmode/groups/configure_group.php:142 +msgid "Contact" +msgstr "" + +#: ../../godmode/groups/configure_group.php:142 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "" + +#: ../../godmode/groups/configure_group.php:145 +msgid "Information accessible through the _group_other_ macro" +msgstr "" + +#: ../../godmode/category/edit_category.php:40 +#: ../../godmode/category/category.php:41 +msgid "List categories" +msgstr "" + +#: ../../godmode/category/edit_category.php:46 +#: ../../godmode/category/edit_category.php:49 +#: ../../godmode/category/category.php:47 +#: ../../godmode/category/category.php:50 +msgid "Categories configuration" +msgstr "" + +#: ../../godmode/category/edit_category.php:65 +msgid "Error updating category" +msgstr "" + +#: ../../godmode/category/edit_category.php:69 +msgid "Successfully updated category" +msgstr "" + +#: ../../godmode/category/edit_category.php:88 +msgid "Error creating category" +msgstr "" + +#: ../../godmode/category/edit_category.php:94 +msgid "Successfully created category" +msgstr "" + +#: ../../godmode/category/category.php:60 +msgid "Error deleting category" +msgstr "" + +#: ../../godmode/category/category.php:64 +msgid "Successfully deleted category" +msgstr "" + +#: ../../godmode/category/category.php:85 +msgid "Create category" +msgstr "" + +#: ../../godmode/category/category.php:107 +msgid "Category name" +msgstr "" + +#: ../../godmode/category/category.php:130 +msgid "No categories found" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:34 +#: ../../godmode/snmpconsole/snmp_alert.php:38 +msgid "Update alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:108 +msgid "There was a problem creating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:141 +msgid "There was a problem updating the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:150 +msgid "Alert overview" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:229 +msgid "There was a problem deleting the alert" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:259 +#: ../../godmode/snmpconsole/snmp_alert.php:463 +#: ../../godmode/snmpconsole/snmp_alert.php:486 +msgid "Custom Value/OID" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:273 +msgid "Trap type" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:279 +msgid "Single value" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:284 +msgid "Custom OID/Data #1" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:292 +msgid "Custom OID/Data #2" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:300 +msgid "Custom OID/Data #3" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:308 +msgid "Custom OID/Data #4" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:316 +msgid "Custom OID/Data #5" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:324 +msgid "Custom OID/Data #6" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:383 +msgid "Other value" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:396 +#: ../../godmode/snmpconsole/snmp_alert.php:454 +msgid "Alert action" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_alert.php:442 +msgid "There are no SNMP alerts" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 +msgid "SNMP Trap generator" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:49 +msgid "Successfully generated" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:50 +msgid "Could not be generated" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:58 +#: ../../extensions/ssh_gateway.php:57 +msgid "Host address" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:70 +msgid "SNMP Type" +msgstr "" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 +msgid "Generate trap" +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:116 +msgid "There are no SNMP filters" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:35 +msgid "Massive alerts addition" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:36 +msgid "Massive alerts deletion" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:37 +msgid "Massive alert actions addition" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:38 +msgid "Massive alert actions deletion" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:39 +msgid "Massive alert enable/disable" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:40 +msgid "Massive alert setting standby" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:42 +msgid "Massive agents edition" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:43 +msgid "Massive agents deletion" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:47 +msgid "Massive profiles addition" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:48 +msgid "Massive profiles deletion" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:55 +msgid "Massive modules deletion" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:56 +msgid "Massive modules edition" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:57 +msgid "Massive modules copy" +msgstr "" + +#: ../../godmode/massive/massive_operations.php:146 +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:162 +msgid "Please wait..." +msgstr "" + +#: ../../godmode/massive/massive_operations.php:210 +msgid "The blank fields will not be updated" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:85 +msgid "No alerts selected" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:105 +msgid "No action selected" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:137 +#: ../../godmode/massive/massive_delete_action_alerts.php:138 +msgid "Agents with templates" +msgstr "" + +#: ../../godmode/massive/massive_add_action_alerts.php:143 +#: ../../godmode/massive/massive_delete_action_alerts.php:150 +#: ../../godmode/alerts/alert_templates.php:130 +#: ../../godmode/alerts/alert_templates.php:170 +#: ../../godmode/alerts/alert_templates.php:187 +#: ../../godmode/alerts/alert_templates.php:203 +#: ../../extensions/agents_alerts.php:168 +msgid "Alert templates" +msgstr "" + +#: ../../godmode/massive/massive_add_alerts.php:54 +#: ../../godmode/massive/massive_delete_alerts.php:64 +msgid "No alert selected" +msgstr "" + +#: ../../godmode/massive/massive_add_alerts.php:136 +#: ../../godmode/massive/massive_delete_alerts.php:189 +#: ../../godmode/massive/massive_delete_modules.php:298 +#: ../../godmode/massive/massive_edit_modules.php:267 +msgid "When select agents" +msgstr "" + +#: ../../godmode/massive/massive_add_alerts.php:138 +#: ../../godmode/massive/massive_delete_alerts.php:191 +#: ../../godmode/massive/massive_delete_modules.php:300 +#: ../../godmode/massive/massive_edit_modules.php:270 +msgid "Show common modules" +msgstr "" + +#: ../../godmode/massive/massive_add_alerts.php:138 +#: ../../godmode/massive/massive_delete_alerts.php:191 +#: ../../godmode/massive/massive_delete_modules.php:300 +#: ../../godmode/massive/massive_edit_modules.php:271 +msgid "Show all modules" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:57 +msgid "" +"There was an error deleting the agent, the operation has been cancelled" +msgstr "" + +#: ../../godmode/massive/massive_delete_agents.php:57 +msgid "Could not delete agent" +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_copy_modules.php:113 +msgid "Copy alerts" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:122 +msgid "No modules for this agent" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:141 +msgid "No alerts for this agent" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:174 +msgid "To agent(s)" +msgstr "" + +#: ../../godmode/massive/massive_copy_modules.php:358 +msgid "No operation selected" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:149 +msgid "Not standby alerts" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:160 +#: ../../godmode/massive/massive_standby_alerts.php:164 +msgid "Set standby selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_standby_alerts.php:166 +msgid "Standby alerts" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:53 +msgid "No module selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:93 +msgid "" +"There was an error deleting the modules, the operation has been cancelled" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:237 +#: ../../godmode/massive/massive_edit_modules.php:204 +msgid "Selection mode" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:238 +#: ../../godmode/massive/massive_edit_modules.php:205 +msgid "Select modules first" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:240 +#: ../../godmode/massive/massive_edit_modules.php:207 +msgid "Select agents first" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:252 +#: ../../godmode/massive/massive_edit_modules.php:219 +msgid "Select all modules of this type" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:269 +#: ../../godmode/massive/massive_edit_modules.php:236 +msgid "Agent group" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:276 +#: ../../godmode/massive/massive_edit_modules.php:243 +msgid "Select all modules of this group" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:284 +#: ../../godmode/massive/massive_edit_modules.php:251 +msgid "When select modules" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:286 +#: ../../godmode/massive/massive_edit_modules.php:254 +msgid "Show common agents" +msgstr "" + +#: ../../godmode/massive/massive_delete_modules.php:286 +#: ../../godmode/massive/massive_edit_modules.php:255 +msgid "Show all agents" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +msgid "Enabled alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:159 +msgid "Disable selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:163 +msgid "Enable selected alerts" +msgstr "" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:165 +msgid "Disabled alerts" +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/massive/massive_edit_agents.php:95 +msgid "No values changed" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:122 +msgid "Configuration files deleted successfully" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:123 +msgid "Configuration files cannot be deleted" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:175 +msgid "Agents updated successfully" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:176 +msgid "Agents cannot be updated" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:249 +#: ../../godmode/massive/massive_edit_agents.php:253 +#: ../../godmode/massive/massive_edit_agents.php:257 +#: ../../godmode/massive/massive_edit_agents.php:268 +#: ../../godmode/massive/massive_edit_agents.php:300 +#: ../../godmode/massive/massive_edit_agents.php:306 +#: ../../godmode/massive/massive_edit_agents.php:345 +#: ../../godmode/massive/massive_edit_agents.php:354 +#: ../../godmode/massive/massive_edit_agents.php:361 +#: ../../godmode/massive/massive_edit_modules.php:353 +#: ../../godmode/massive/massive_edit_modules.php:355 +#: ../../godmode/massive/massive_edit_modules.php:364 +#: ../../godmode/massive/massive_edit_modules.php:370 +#: ../../godmode/massive/massive_edit_modules.php:374 +#: ../../godmode/massive/massive_edit_modules.php:377 +#: ../../godmode/massive/massive_edit_modules.php:390 +#: ../../godmode/massive/massive_edit_modules.php:403 +#: ../../godmode/massive/massive_edit_modules.php:412 +#: ../../godmode/massive/massive_edit_modules.php:434 +msgid "No change" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:314 +msgid "Delete available remote configurations" +msgstr "" + +#: ../../godmode/massive/massive_edit_agents.php:346 +msgid "Without status" +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:72 +msgid "Could not be deleted. No alerts selected" +msgstr "" + +#: ../../godmode/massive/massive_delete_action_alerts.php:111 +msgid "Could not be deleted. No action selected" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:359 +msgid "SMNP community" +msgstr "" + +#: ../../godmode/massive/massive_edit_modules.php:433 +msgid "The module still store data but the alerts and events will be stop" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:72 +msgid "Location" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:72 +msgid "For Command type Modal Window mode is enforced" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:73 +msgid "Modal window" +msgstr "" + +#: ../../godmode/events/event_responses.editor.php:73 +msgid "New window" +msgstr "" + +#: ../../godmode/events/event_responses.list.php:30 +msgid "Create response" +msgstr "" + +#: ../../godmode/events/event_responses.list.php:44 +msgid "No responses found" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:166 +msgid "" +"This group will be use to restrict the visibility of this filter with ACLs" +msgstr "" + +#: ../../godmode/events/event_edit_filter.php:221 +msgid "Choose between the users who have validated an event. " +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/events/custom_events.php:128 +msgid "Show event fields" +msgstr "" + +#: ../../godmode/events/custom_events.php:130 +msgid "Load default event fields" +msgstr "" + +#: ../../godmode/events/custom_events.php:130 +msgid "Default event fields will be loaded. Do you want to continue?" +msgstr "" + +#: ../../godmode/events/custom_events.php:176 +msgid "Fields available" +msgstr "" + +#: ../../godmode/events/custom_events.php:178 +msgid "Add fields to select" +msgstr "" + +#: ../../godmode/events/custom_events.php:179 +msgid "Delete fields to select" +msgstr "" + +#: ../../godmode/events/custom_events.php:182 +msgid "Fields selected" +msgstr "" + +#: ../../godmode/tag/tag.php:48 +msgid "Number of modules" +msgstr "" + +#: ../../godmode/tag/tag.php:51 +msgid "Number of policy modules" +msgstr "" + +#: ../../godmode/tag/tag.php:68 ../../godmode/tag/edit_tag.php:49 +msgid "List tags" +msgstr "" + +#: ../../godmode/tag/tag.php:81 ../../godmode/tag/edit_tag.php:60 +msgid "Tags configuration" +msgstr "" + +#: ../../godmode/tag/tag.php:93 +msgid "Error deleting tag" +msgstr "" + +#: ../../godmode/tag/tag.php:97 +msgid "Successfully deleted tag" +msgstr "" + +#: ../../godmode/tag/tag.php:134 +msgid "Create tag" +msgstr "" + +#: ../../godmode/tag/tag.php:161 +msgid "Detail information" +msgstr "" + +#: ../../godmode/tag/tag.php:162 +msgid "Number of modules affected" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:83 +msgid "Error updating tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:87 +msgid "Successfully updated tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:112 +msgid "Error creating tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:118 +msgid "Successfully created tag" +msgstr "" + +#: ../../godmode/tag/edit_tag.php:165 +msgid "Hyperlink to help information that has to exist previously." +msgstr "" + +#: ../../godmode/tag/edit_tag.php:174 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "" + +#: ../../godmode/alerts/alert_templates.php:321 +msgid "No alert templates defined" +msgstr "" + +#: ../../godmode/alerts/configure_alert_special_days.php:52 +msgid "Configure special day" +msgstr "" + +#: ../../godmode/alerts/configure_alert_special_days.php:73 +#: ../../godmode/alerts/alert_special_days.php:152 +msgid "Same day of the week" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:110 +msgid "Field content" +msgstr "" + +#: ../../godmode/alerts/alert_list.list.php:649 +msgid "No alerts defined" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:61 +msgid "Configure alert command" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:86 +#, php-format +msgid "Field %s description" +msgstr "" + +#: ../../godmode/alerts/configure_alert_command.php:101 +#, php-format +msgid "Field %s values" +msgstr "" + +#: ../../godmode/alerts/alert_special_days.php:220 +msgid "No special days configured" +msgstr "" + +#: ../../godmode/alerts/alert_list.builder.php:74 +msgid "Latest value" +msgstr "" + +#: ../../godmode/alerts/alert_list.builder.php:97 +msgid "Create Template" +msgstr "" + +#: ../../godmode/alerts/alert_list.builder.php:144 +msgid "Add alert" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:193 +#: ../../godmode/alerts/configure_alert_template.php:198 +msgid "Recovery" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:504 +msgid "Use special days list" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:527 +msgid "Advanced fields management" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:540 +#: ../../godmode/alerts/configure_alert_template.php:580 +#: ../../godmode/alerts/alert_commands.php:68 +#: ../../godmode/alerts/alert_commands.php:73 +#, php-format +msgid "Field %s" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:544 +msgid "Default action" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:557 +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\"." +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:573 +msgid "Alert recovery" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:647 +msgid "Condition type" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:652 +msgid "Trigger when matches the value" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:663 +msgid "The regular expression is valid" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:667 +msgid "The regular expression is not valid" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:716 +msgid "" +"The alert would fire when the value doesn\\'t match " +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:721 +msgid "The alert would fire when the value is below " +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:722 +msgid "The alert would fire when the value is above " +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:725 +msgid "The alert would fire when the module value changes" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:726 +msgid "The alert would fire when the module value does not change" +msgstr "" + +#: ../../godmode/alerts/configure_alert_template.php:727 +msgid "The alert would fire when the module is in unknown status" +msgstr "" + +#: ../../godmode/alerts/configure_alert_action.php:57 +#: ../../godmode/alerts/configure_alert_action.php:73 +#: ../../godmode/alerts/configure_alert_action.php:88 +msgid "Configure alert action" +msgstr "" + +#: ../../godmode/alerts/configure_alert_action.php:136 +msgid "Create Command" +msgstr "" + +#: ../../godmode/alerts/alert_commands.php:127 +msgid "Alert commands" +msgstr "" + +#: ../../godmode/alerts/alert_commands.php:296 +msgid "No alert commands configured" +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:64 +#: ../../godmode/alerts/alert_actions.php:89 +#: ../../godmode/alerts/alert_actions.php:107 +#: ../../godmode/alerts/alert_actions.php:124 +#: ../../godmode/alerts/alert_actions.php:202 +#: ../../godmode/alerts/alert_actions.php:213 +#: ../../godmode/alerts/alert_actions.php:280 +#: ../../godmode/alerts/alert_actions.php:299 +#: ../../godmode/alerts/alert_actions.php:312 +msgid "Alert actions" +msgstr "" + +#: ../../godmode/alerts/alert_actions.php:383 +msgid "No alert actions configured" +msgstr "" + +#: ../../godmode/alerts/alert_list.php:77 +msgid "Already added" +msgstr "" + +#: ../../godmode/alerts/alert_list.php:278 +msgid "List alerts" +msgstr "" + +#: ../../godmode/alerts/alert_list.php:282 +msgid "Builder alert" +msgstr "" + +#: ../../extensions/pandora_logs.php:21 ../../extensions/system_info.php:151 +msgid "Cannot find file" +msgstr "" + +#: ../../extensions/pandora_logs.php:28 +msgid "File is too large (> 500KB)" +msgstr "" + +#: ../../extensions/pandora_logs.php:56 +msgid "System logfile viewer" +msgstr "" + +#: ../../extensions/pandora_logs.php:58 ../../extensions/system_info.php:262 +msgid "" +"This tool is used just to view your Pandora FMS system logfiles directly " +"from console" +msgstr "" + +#: ../../extensions/pandora_logs.php:65 +msgid "System logfiles" +msgstr "" + +#: ../../extensions/users_connected.php:38 +#: ../../extensions/users_connected.php:122 +#: ../../extensions/users_connected.php:126 +msgid "Users connected" +msgstr "" + +#: ../../extensions/users_connected.php:66 +msgid "No other users connected" +msgstr "" + +#: ../../extensions/system_info.php:156 +msgid "Cannot read file" +msgstr "" + +#: ../../extensions/system_info.php:256 ../../extensions/system_info.php:619 +msgid "System Info" +msgstr "" + +#: ../../extensions/system_info.php:259 +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" +msgstr "" + +#: ../../extensions/system_info.php:271 ../../extensions/system_info.php:274 +#: ../../extensions/system_info.php:303 +msgid "Pandora Diagnostic info" +msgstr "" + +#: ../../extensions/system_info.php:278 ../../extensions/system_info.php:281 +#: ../../extensions/system_info.php:309 +msgid "System info" +msgstr "" + +#: ../../extensions/system_info.php:285 ../../extensions/system_info.php:288 +#: ../../extensions/system_info.php:313 +msgid "Log Info" +msgstr "" + +#: ../../extensions/system_info.php:291 ../../extensions/system_info.php:292 +msgid "Number lines of log" +msgstr "" + +#: ../../extensions/system_info.php:295 +msgid "Generate file" +msgstr "" + +#: ../../extensions/system_info.php:328 +msgid "download here" +msgstr "" + +#: ../../extensions/system_info.php:331 +msgid "File:" +msgstr "" + +#: ../../extensions/system_info.php:332 +msgid "Location:" +msgstr "" + +#: ../../extensions/dbmanager.php:103 +msgid "Database interface" +msgstr "" + +#: ../../extensions/dbmanager.php:117 +msgid "Execute SQL" +msgstr "" + +#: ../../extensions/dbmanager.php:161 +msgid "DB interface" +msgstr "" + +#: ../../extensions/resource_exportation.php:61 +#: ../../extensions/resource_exportation.php:343 +msgid "Resource exportation" +msgstr "" + +#: ../../extensions/resource_exportation.php:346 +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 "" + +#: ../../extensions/ssh_gateway.php:52 +msgid "You need to specify a user and a host address" +msgstr "" + +#: ../../extensions/ssh_gateway.php:61 +msgid "Port (use 0 for default)" +msgstr "" + +#: ../../extensions/ssh_gateway.php:63 +msgid "Connect mode" +msgstr "" + +#: ../../extensions/ssh_gateway.php:74 +msgid "Connect" +msgstr "" + +#: ../../extensions/net_tools.php:63 +msgid "Traceroute" +msgstr "" + +#: ../../extensions/net_tools.php:64 +msgid "Ping host & Latency" +msgstr "" + +#: ../../extensions/net_tools.php:65 +msgid "SNMP Interface status" +msgstr "" + +#: ../../extensions/net_tools.php:66 +msgid "Basic TCP Port Scan" +msgstr "" + +#: ../../extensions/net_tools.php:67 +msgid "DiG/Whois Lookup" +msgstr "" + +#: ../../extensions/net_tools.php:86 +msgid "Traceroute executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:89 +msgid "Traceroute to " +msgstr "" + +#: ../../extensions/net_tools.php:98 +msgid "Ping executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:101 +msgid "Ping to " +msgstr "" + +#: ../../extensions/net_tools.php:110 +msgid "Nmap executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:113 +msgid "Basic TCP Scan on " +msgstr "" + +#: ../../extensions/net_tools.php:120 +msgid "Domain and IP information for " +msgstr "" + +#: ../../extensions/net_tools.php:124 +msgid "Dig executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:134 +msgid "Whois executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:143 +msgid "SNMP information for " +msgstr "" + +#: ../../extensions/net_tools.php:147 +msgid "SNMPget executable does not exist." +msgstr "" + +#: ../../extensions/net_tools.php:150 +msgid "Uptime" +msgstr "" + +#: ../../extensions/net_tools.php:154 +msgid "Device info" +msgstr "" + +#: ../../extensions/net_tools.php:162 +msgid "Interface" +msgstr "" + +#: ../../extensions/snmp_explorer.php:142 +msgid "No agent selected or the agent does not exist" +msgstr "" + +#: ../../extensions/snmp_explorer.php:225 +msgid "Successfully modules created" +msgstr "" + +#: ../../extensions/snmp_explorer.php:238 +msgid "Some required fields are missed" +msgstr "" + +#: ../../extensions/snmp_explorer.php:238 +msgid "name" +msgstr "" + +#: ../../extensions/snmp_explorer.php:243 +msgid "Processing error" +msgstr "" + +#: ../../extensions/snmp_explorer.php:316 +msgid "privacy pass" +msgstr "" + +#: ../../extensions/snmp_explorer.php:336 +msgid "SNMP Walk" +msgstr "" + +#: ../../extensions/snmp_explorer.php:340 +msgid "Unable to do SNMP walk" +msgstr "" + +#: ../../extensions/snmp_explorer.php:373 +msgid "Interfaces" +msgstr "" + +#: ../../extensions/snmp_explorer.php:385 +msgid "Create modules" +msgstr "" + +#: ../../extensions/snmp_explorer.php:483 +msgid "SNMP Explorer" +msgstr "" + +#: ../../extensions/module_groups.php:39 +msgid "Number fired of alerts" +msgstr "" + +#: ../../extensions/module_groups.php:167 +msgid "Combined table of agent group and module group" +msgstr "" + +#: ../../extensions/module_groups.php:169 +msgid "" +"This table shows in columns the modules group and in rows agents group. The " +"cell shows all modules" +msgstr "" + +#: ../../extensions/module_groups.php:291 +msgid "" +"Orange cell when the module group and agent have at least one alarm fired." +msgstr "" + +#: ../../extensions/module_groups.php:295 +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:299 +msgid "" +"Yellow cell when the module group and agent have at least one in warning " +"status and the others in grey or green status" +msgstr "" + +#: ../../extensions/module_groups.php:303 +msgid "" +"Green cell when the module group and agent have all modules in OK status" +msgstr "" + +#: ../../extensions/module_groups.php:307 +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:311 +msgid "" +"Blue cell when the module group and agent have all modules in not init " +"status." +msgstr "" + +#: ../../extensions/module_groups.php:317 +msgid "There are no defined groups or module groups" +msgstr "" + +#: ../../extensions/module_groups.php:335 +msgid "Modules groups" +msgstr "" + +#: ../../extensions/agents_alerts.php:108 +msgid "Agents/Alerts" +msgstr "" + +#: ../../extensions/agents_alerts.php:147 +msgid "There are no agents with alerts" +msgstr "" + +#: ../../extensions/agents_alerts.php:172 +msgid "Previous templates" +msgstr "" + +#: ../../extensions/agents_alerts.php:203 +msgid "More templates" +msgstr "" + +#: ../../extensions/agents_alerts.php:322 +msgid "Agents/Alerts view" +msgstr "" + +#: ../../extensions/vnc_view.php:31 +msgid "VNC view" +msgstr "" + +#: ../../extensions/plugin_registration.php:26 +msgid "Plugin registration" +msgstr "" + +#: ../../extensions/plugin_registration.php:29 +#, php-format +msgid "" +"This extension makes registration of server plugins more easy. Here you can " +"upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please " +"refer to documentation on how to obtain and use Pandora FMS Server " +"Plugins.

You can get more plugins in our Public Resource " +"Library" +msgstr "" + +#: ../../extensions/plugin_registration.php:71 +msgid "Cannot load INI file" +msgstr "" + +#: ../../extensions/plugin_registration.php:100 +msgid "Plugin exec not found. Aborting!" +msgstr "" + +#: ../../extensions/plugin_registration.php:111 +msgid "Plugin already registered. Aborting!" +msgstr "" + +#: ../../extensions/plugin_registration.php:186 +msgid "Module plugin registered" +msgstr "" + +#: ../../extensions/plugin_registration.php:189 +msgid "Registered successfully" +msgstr "" + +#: ../../extensions/plugin_registration.php:246 +msgid "Register plugin" +msgstr "" + +#: ../../extensions/agents_modules.php:177 +msgid "Previous modules" +msgstr "" + +#: ../../extensions/agents_modules.php:192 +msgid "More modules" +msgstr "" + +#: ../../extensions/agents_modules.php:312 +msgid "Agents/Modules view" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:67 +msgid "First execution of Update Pandora" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:84 +msgid "Your Pandora FMS open source package installed is" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:90 +msgid "Your Pandora FMS does not have any update installed yet" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:98 +msgid "" +"This is a automatilly update Pandora Console only. Be careful if you have " +"changed any php file of console, please make a backup this modified files " +"php. Because the update action ovewrite all php files in Pandora console." +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:101 +msgid "" +"Update Manager sends anonymous information about Pandora FMS usage (number " +"of agents and modules running). To disable it, just delete extension or " +"remove remote server address from Update Manager plugin setup." +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:105 +#: ../../extensions/update_manager/main.php:126 +msgid "Online" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:111 +msgid "Get list online Package" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:119 +msgid "Processing package" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:123 +msgid "Downloading package in progress" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:126 +msgid "Downloaded package" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:127 +msgid "Installing package in progress" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:130 +msgid "Installed package in progress" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:131 +msgid "Fail download package" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:156 +msgid "Downloaded Packages" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:173 +msgid "Install" +msgstr "" + +#: ../../extensions/update_manager/update_pandora.php:179 +msgid "Reinstall" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:92 +msgid "Error download packages." +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:293 +msgid "In progress..." +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:300 +msgid "bytes" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:301 +msgid "Speed" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:301 +msgid "bytes/second" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:337 +msgid "Starting: connect to server" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:525 +msgid "Your system is up-to-date" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:530 +msgid "Server authorization rejected" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:542 +msgid "Server unknow error" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:547 +msgid "Id" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.ajax.php:553 +msgid "There's a new update for Pandora FMS" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:77 +msgid "Unsuccesful store conf data in DB." +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:88 +msgid "Unsuccesful create a dir to save package in Pandora Console" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:119 +#, php-format +msgid "Error reading the dir of packages in \"%s\"." +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:153 +#: ../../extensions/update_manager/lib/functions.php:158 +msgid "There are not downloaded packages in your Pandora Console." +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:436 +msgid "There is a new version:" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:484 +msgid "Incorrect file extension" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:495 +msgid "Update cannot be opened" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:501 +msgid "Error, the file package is empty or corrupted." +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:508 +msgid "Your system version is higher or equal than the loaded package" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:562 +msgid "Successfully upgraded" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:568 +msgid "Cannot be upgraded" +msgstr "" + +#: ../../extensions/update_manager/lib/functions.php:575 +msgid "File cannot be uploaded" +msgstr "" + +#: ../../extensions/update_manager/lib/libupdate_manager.php:59 +msgid "Error reading settings" +msgstr "" + +#: ../../extensions/update_manager/lib/libupdate_manager.php:77 +msgid "Error updating settings" +msgstr "" + +#: ../../extensions/update_manager/lib/libupdate_manager.php:95 +msgid "Error creating settings" +msgstr "" + +#: ../../extensions/update_manager/lib/libupdate_manager.php:811 +msgid "Development" +msgstr "" + +#: ../../extensions/update_manager/lib/libupdate_manager.php:812 +msgid "Testing" +msgstr "" + +#: ../../extensions/update_manager/lib/libupdate_manager.php:823 +msgid "Code / binary directory" +msgstr "" + +#: ../../extensions/update_manager/settings.php:37 +#: ../../extensions/update_manager/settings.php:39 +#: ../../extensions/update_manager/main.php:43 +#: ../../extensions/update_manager/main.php:45 +#: ../../extensions/update_manager.php:234 +msgid "Update manager" +msgstr "" + +#: ../../extensions/update_manager/settings.php:39 +msgid "Settings" +msgstr "" + +#: ../../extensions/update_manager/settings.php:58 +msgid "Update manager settings updated" +msgstr "" + +#: ../../extensions/update_manager/settings.php:69 +msgid "Customer key" +msgstr "" + +#: ../../extensions/update_manager/settings.php:75 +msgid "Update server host" +msgstr "" + +#: ../../extensions/update_manager/settings.php:78 +msgid "Update server path" +msgstr "" + +#: ../../extensions/update_manager/settings.php:81 +msgid "Update server port" +msgstr "" + +#: ../../extensions/update_manager/settings.php:84 +msgid "Proxy server" +msgstr "" + +#: ../../extensions/update_manager/settings.php:87 +msgid "Proxy port" +msgstr "" + +#: ../../extensions/update_manager/settings.php:90 +msgid "Proxy user" +msgstr "" + +#: ../../extensions/update_manager/settings.php:93 +msgid "Proxy password" +msgstr "" + +#: ../../extensions/update_manager/settings.php:102 +msgid "WGET, no interactive, external command, fast" +msgstr "" + +#: ../../extensions/update_manager/settings.php:103 +msgid "CURL, interactive, internal command, slow" +msgstr "" + +#: ../../extensions/update_manager/settings.php:105 +msgid "Download Method" +msgstr "" + +#: ../../extensions/update_manager/main.php:79 +msgid "Success update to the last package." +msgstr "" + +#: ../../extensions/update_manager/main.php:80 +msgid "Error update to the last package." +msgstr "" + +#: ../../extensions/update_manager/main.php:93 +#, php-format +msgid "This is an Enterprise feature. Visit %s for more information." +msgstr "" + +#: ../../extensions/update_manager/main.php:104 +msgid "You do not have installed any updates of Pandora FMS Enterprise" +msgstr "" + +#: ../../extensions/update_manager/main.php:106 +msgid "Your Pandora FMS Enterprise version number is" +msgstr "" + +#: ../../extensions/update_manager/main.php:116 +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 "" + +#: ../../extensions/update_manager/main.php:119 +msgid "" +"Update Manager is one of the most advanced features of Pandora FMS " +"Enterprise version, for more information visit http://pandorafms.com." +msgstr "" + +#: ../../extensions/update_manager/main.php:122 +msgid "" +"Update Manager sends anonymous information about Pandora FMS usage (number " +"of agents and modules running). To disable it, remove remote server address " +"from Update Manager plugin setup." +msgstr "" + +#: ../../extensions/update_manager/main.php:137 +msgid "Checking for an update" +msgstr "" + +#: ../../extensions/update_manager/main.php:154 +msgid "Details packge" +msgstr "" + +#: ../../extensions/update_manager/main.php:173 +msgid "Offline" +msgstr "" + +#: ../../extensions/update_manager/main.php:177 +msgid "Offline packages loader" +msgstr "" + +#: ../../extensions/update_manager/main.php:177 +msgid "Apply, in order, the packets corresponding to your current version" +msgstr "" + +#: ../../extensions/extension_uploader.php:28 +msgid "Uploader extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:64 +msgid "Success to upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:65 +msgid "Fail to upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:72 +msgid "Upload extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:74 +msgid "Upload the extension as a zip file." +msgstr "" + +#: ../../extensions/extension_uploader.php:76 +msgid "Upload enterprise extension" +msgstr "" + +#: ../../extensions/extension_uploader.php:89 +msgid "Extension uploader" +msgstr "" + +#: ../../extensions/insert_data.php:54 +msgid "Insert data" +msgstr "" + +#: ../../extensions/insert_data.php:83 +msgid "You haven't privileges for insert data in the agent." +msgstr "" + +#: ../../extensions/insert_data.php:124 +#, 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:140 +msgid "" +"Please check that the directory \"/var/spool/pandora/data_in\" 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:243 +msgid "Insert Data" +msgstr "" + +#: ../../extensions/resource_registration.php:40 +#, php-format +msgid "Success add '%s' item in report '%s'." +msgstr "" + +#: ../../extensions/resource_registration.php:41 +#, php-format +msgid "Error create '%s' item in report '%s'." +msgstr "" + +#: ../../extensions/resource_registration.php:68 +#, php-format +msgid "Error create '%s' report, the name exist and there aren't free name." +msgstr "" + +#: ../../extensions/resource_registration.php:75 +#, php-format +msgid "" +"Warning create '%s' report, the name exist, the report have a name %s." +msgstr "" + +#: ../../extensions/resource_registration.php:82 +msgid "Error the report haven't name." +msgstr "" + +#: ../../extensions/resource_registration.php:88 +msgid "Error the report haven't group." +msgstr "" + +#: ../../extensions/resource_registration.php:98 +#, php-format +msgid "Success create '%s' report." +msgstr "" + +#: ../../extensions/resource_registration.php:99 +#, php-format +msgid "Error create '%s' report." +msgstr "" + +#: ../../extensions/resource_registration.php:327 +#: ../../extensions/resource_registration.php:348 +#: ../../extensions/resource_registration.php:358 +#, php-format +msgid "Success add '%s' content." +msgstr "" + +#: ../../extensions/resource_registration.php:335 +#, php-format +msgid "Success add '%s' SLA." +msgstr "" + +#: ../../extensions/resource_registration.php:336 +#, php-format +msgid "Error add '%s' SLA." +msgstr "" + +#: ../../extensions/resource_registration.php:377 +#, php-format +msgid "Error create '%s' visual map, lost tag name." +msgstr "" + +#: ../../extensions/resource_registration.php:413 +#, php-format +msgid "" +"Error create '%s' visual map, the name exist and there aren't free name." +msgstr "" + +#: ../../extensions/resource_registration.php:420 +#, php-format +msgid "" +"Warning create '%s' visual map, the name exist, the report have a name %s." +msgstr "" + +#: ../../extensions/resource_registration.php:428 +#, php-format +msgid "Success create '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:429 +#, php-format +msgid "Error create '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:537 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:538 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:556 +#: ../../extensions/resource_registration.php:571 +#, php-format +msgid "Success create item for agent '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:557 +#: ../../extensions/resource_registration.php:572 +#, php-format +msgid "Error create item for agent '%s' visual map." +msgstr "" + +#: ../../extensions/resource_registration.php:778 +#, php-format +msgid "Success create '%s' component." +msgstr "" + +#: ../../extensions/resource_registration.php:779 +#, php-format +msgid "Error create '%s' component." +msgstr "" + +#: ../../extensions/resource_registration.php:835 +#: ../../extensions/resource_registration.php:877 +msgid "Resource registration" +msgstr "" + +#: ../../extensions/resource_registration.php:838 +msgid "Error, please install the PHP libXML in the system." +msgstr "" + +#: ../../extensions/resource_registration.php:844 +#, 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 "" + +#: ../../extensions/resource_registration.php:860 +msgid "Group filter: " +msgstr "" + +#: ../../extensions/update_manager.php:62 +msgid "Unlimited" +msgstr "" + +#: ../../extensions/update_manager.php:67 +msgid "Open Source Version" +msgstr "" + +#: ../../extensions/update_manager.php:235 +msgid "Update manager settings" msgstr "" #: ../../extras/pandora_diag.php:90 @@ -16236,7 +23938,3 @@ msgstr "" #: ../../extras/pandora_diag.php:94 msgid "Data value" msgstr "" - -#: ../../index.php:267 -msgid "Sorry! I can't find the page!" -msgstr "" diff --git a/pandora_console/include/languages/it.mo b/pandora_console/include/languages/it.mo index e6b7ea6dc2..316520cc0f 100644 Binary files a/pandora_console/include/languages/it.mo and b/pandora_console/include/languages/it.mo differ diff --git a/pandora_console/include/languages/it.po b/pandora_console/include/languages/it.po index 1b57219beb..d3b9ad15f9 100644 --- a/pandora_console/include/languages/it.po +++ b/pandora_console/include/languages/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "X-Poedit-Country: ITALY\n" "Language: \n" "X-Poedit-Language: Italian\n" diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index d1a0401397..5db3513f44 100644 Binary files a/pandora_console/include/languages/ja.mo and b/pandora_console/include/languages/ja.mo differ diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index 8b26c37b77..55d7472611 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: pandora-ja\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-22 18:49+0200\n" -"PO-Revision-Date: 2013-05-11 05:00+0000\n" +"PO-Revision-Date: 2013-05-31 07:14+0000\n" "Last-Translator: Junichi Satoh \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" #: ../../operation/search_main.php:33 #: ../../operation/agentes/networkmap.php:318 @@ -5310,7 +5310,7 @@ msgstr "リセット" #: ../../operation/agentes/estado_monitores.php:636 msgid "Form filter" -msgstr "" +msgstr "フォームフィルタ" #: ../../operation/agentes/exportdata.php:36 ../../operation/menu.php:168 msgid "Export data" @@ -6609,35 +6609,35 @@ msgstr "トラップタイプで検索" #: ../../operation/snmpconsole/snmp_view.php:550 #: ../../godmode/snmpconsole/snmp_alert.php:274 msgid "Cold start (0)" -msgstr "" +msgstr "Cold start (0)" #: ../../operation/snmpconsole/snmp_view.php:354 #: ../../operation/snmpconsole/snmp_view.php:543 #: ../../operation/snmpconsole/snmp_view.php:553 #: ../../godmode/snmpconsole/snmp_alert.php:274 msgid "Warm start (1)" -msgstr "" +msgstr "Warm start (1)" #: ../../operation/snmpconsole/snmp_view.php:354 #: ../../operation/snmpconsole/snmp_view.php:543 #: ../../operation/snmpconsole/snmp_view.php:556 #: ../../godmode/snmpconsole/snmp_alert.php:274 msgid "Link down (2)" -msgstr "" +msgstr "Link down (2)" #: ../../operation/snmpconsole/snmp_view.php:354 #: ../../operation/snmpconsole/snmp_view.php:543 #: ../../operation/snmpconsole/snmp_view.php:559 #: ../../godmode/snmpconsole/snmp_alert.php:274 msgid "Link up (3)" -msgstr "" +msgstr "Link up (3)" #: ../../operation/snmpconsole/snmp_view.php:354 #: ../../operation/snmpconsole/snmp_view.php:543 #: ../../operation/snmpconsole/snmp_view.php:562 #: ../../godmode/snmpconsole/snmp_alert.php:274 msgid "Authentication failure (4)" -msgstr "" +msgstr "Authentication failure (4)" #: ../../operation/snmpconsole/snmp_view.php:392 #: ../../godmode/snmpconsole/snmp_alert.php:268 @@ -7460,7 +7460,7 @@ msgstr "選択" #: ../../general/header.php:132 msgid "Disabled autorefresh" -msgstr "" +msgstr "自動更新無効" #: ../../general/header.php:153 msgid "System alerts detected - Please fix as soon as possible" @@ -7473,7 +7473,7 @@ msgstr "警告が %d 件あります。" #: ../../general/header.php:162 msgid "There are not warnings" -msgstr "" +msgstr "警告はありません" #: ../../general/header.php:172 ../../mobile/include/functions_web.php:33 #: ../../mobile/include/ui.class.php:176 @@ -7482,7 +7482,7 @@ msgstr "ログアウト" #: ../../general/header.php:188 msgid "New chat message" -msgstr "" +msgstr "新しいチャットメッセージがあります" #: ../../general/header.php:198 msgid "Message overview" @@ -7544,12 +7544,12 @@ msgstr "障害イベント" #: ../../general/shortcut_bar.php:204 ../../general/shortcut_bar.php:224 msgid "Incidents opened" -msgstr "" +msgstr "アクティブなインシデント" #: ../../general/shortcut_bar.php:234 #: ../../godmode/users/configure_profile.php:168 msgid "View reports" -msgstr "" +msgstr "レポート表示" #: ../../general/shortcut_bar.php:240 msgid "Create new message" @@ -7565,7 +7565,7 @@ msgstr "Pandora FMS の Web コンソールへようこそ" #: ../../general/logon_ok.php:57 msgid "News board" -msgstr "" +msgstr "ニュース掲示板" #: ../../general/logon_ok.php:62 msgid "ago" @@ -7595,11 +7595,11 @@ msgstr "Pandora FMS 概要" #: ../../enterprise/operation/log/log_viewer.php:80 #: ../../enterprise/operation/menu.php:82 msgid "Log viewer" -msgstr "" +msgstr "ログビューワ" #: ../../enterprise/operation/log/log_viewer.php:131 msgid "Draw chart" -msgstr "" +msgstr "グラフ描画" #: ../../enterprise/operation/log/log_viewer.php:134 #: ../../enterprise/include/functions_reporting_pdf.php:3457 @@ -7991,7 +7991,7 @@ msgstr "アクション" #: ../../enterprise/operation/services/services.list.php:173 #: ../../enterprise/godmode/services/services.service.php:54 msgid "Create Service" -msgstr "" +msgstr "サービス作成" #: ../../enterprise/operation/services/services.service_map.php:39 #: ../../enterprise/operation/services/services.service.php:37 @@ -8018,7 +8018,7 @@ msgstr "サービスマップ" #: ../../enterprise/operation/services/services.service.php:154 msgid "List of elements" -msgstr "" +msgstr "エレメント一覧" #: ../../enterprise/include/functions_inventory.php:48 #: ../../enterprise/include/functions_inventory.php:373 @@ -8081,12 +8081,12 @@ msgstr "テンプレートウィザード" #: ../../enterprise/include/functions_reporting.php:1189 #, php-format msgid "Graph agents(%s) - %s" -msgstr "" +msgstr "エージェント(%s) グラフ - %s" #: ../../enterprise/include/functions_reporting.php:1300 #, php-format msgid "%s - agents (%s) - %s" -msgstr "" +msgstr "%s - エージェント (%s) - %s" #: ../../enterprise/include/functions_reporting.php:1560 #, php-format @@ -8096,7 +8096,7 @@ msgstr "%s - %s" #: ../../enterprise/include/functions_reporting.php:2773 #: ../../enterprise/include/functions_reporting.php:2823 msgid "Template editor" -msgstr "" +msgstr "テンプレートエディタ" #: ../../enterprise/include/functions_reporting.php:2837 msgid "Get PDF file" @@ -8494,40 +8494,40 @@ msgstr "サービスがありません。" #: ../../enterprise/include/functions_services.php:30 msgid "Module store the service does not exist." -msgstr "" +msgstr "モジュールストアにサービスがありません。" #: ../../enterprise/include/functions_services.php:35 msgid "Module store SLA service does not exist." -msgstr "" +msgstr "モジュールストアに SLA サービスがありません。" #: ../../enterprise/include/functions_services.php:41 msgid "Agent store the service does not exist." -msgstr "" +msgstr "エージェントストアにサービスがありません。" #: ../../enterprise/include/functions_services.php:47 msgid "Agent store SLA service does not exist." -msgstr "" +msgstr "エージェントストアに SLA サービスがありません。" #: ../../enterprise/include/functions_services.php:57 msgid "Alert critical SLA service does not exist." -msgstr "" +msgstr "障害状態の SLA サービスがありません。" #: ../../enterprise/include/functions_services.php:68 msgid "Alert warning service does not exist." -msgstr "" +msgstr "警告状態のサービスがありません。" #: ../../enterprise/include/functions_services.php:79 msgid "Alert critical service does not exist." -msgstr "" +msgstr "障害状態のサービスがありません。" #: ../../enterprise/include/functions_services.php:90 msgid "Alert unknown service does not exist." -msgstr "" +msgstr "不明状態のサービスがありません。" #: ../../enterprise/include/functions_services.php:240 #, php-format msgid "Module automatic create for the service %s" -msgstr "" +msgstr "サービス %s のモジュール自動作成" #: ../../enterprise/include/functions_services.php:701 msgid "Critical (Alert)" @@ -8547,7 +8547,7 @@ msgstr "警告ウエイト" #: ../../enterprise/include/functions_services.php:823 msgid "Weight Unknown" -msgstr "" +msgstr "不明ウエイト" #: ../../enterprise/include/functions_services.php:824 msgid "Weight Ok" @@ -8971,7 +8971,7 @@ msgstr "エージェント設定" #: ../../include/functions_reporting.php:5811 #: ../../include/functions_reporting.php:5952 msgid "SO" -msgstr "" +msgstr "OS" #: ../../enterprise/include/functions_reporting_pdf.php:3614 #: ../../enterprise/include/functions_reporting_pdf.php:3749 @@ -9052,7 +9052,7 @@ msgstr "変更" #: ../../enterprise/include/functions_login.php:104 msgid "User has been blocked. Try again in " -msgstr "" +msgstr "ユーザをブロックしました。次の時間を置いて再度試してください: " #: ../../enterprise/include/functions_login.php:104 msgid " minutes" @@ -9064,7 +9064,7 @@ msgstr "パスワードは次のものと異なる必要があります: " #: ../../enterprise/include/functions_login.php:220 msgid " previous changes." -msgstr "" +msgstr " 回前の変更" #: ../../enterprise/include/functions_login.php:234 msgid "Password must be different" @@ -9431,11 +9431,11 @@ msgstr "名前がありません" #: ../../enterprise/include/functions_local_components.php:68 msgid "Empty configuration" -msgstr "" +msgstr "設定がされていません" #: ../../enterprise/include/functions_local_components.php:72 msgid "Empty OS" -msgstr "" +msgstr "OS が設定されていません" #: ../../enterprise/include/functions_local_components.php:202 #: ../../include/functions_alerts.php:904 @@ -9474,7 +9474,7 @@ msgstr "パスワード" #: ../../enterprise/include/functions_setup.php:37 #: ../../enterprise/include/functions_setup.php:67 msgid "Log collector" -msgstr "" +msgstr "ログコレクター" #: ../../enterprise/include/ajax/metaconsole.ajax.php:42 msgid "Error accesing to API" @@ -9508,7 +9508,7 @@ msgstr "\"Translate string\" 拡張がサーバにありませ msgid "" "Server name doesnt match. Check the node server name and configure the same " "one on metasetup" -msgstr "" +msgstr "サーバ名が一致しません。ノードサーバ名を確認し、メタセットアップで同じものを設定してください。" #: ../../enterprise/include/ajax/metaconsole.ajax.php:88 msgid "Last event replication" @@ -9539,7 +9539,7 @@ msgstr "メタコンソール" #: ../../enterprise/include/functions_log.php:277 #: ../../enterprise/include/functions_log.php:290 msgid "Lines" -msgstr "" +msgstr "行" #: ../../enterprise/meta/general/login_page.php:115 msgid "" @@ -9574,7 +9574,7 @@ msgstr "ビジュアルコンソール" #: ../../enterprise/meta/general/main_header.php:121 msgid "Without permissions" -msgstr "" +msgstr "パーミッション無し" #: ../../enterprise/meta/general/main_header.php:121 msgid "disabled" @@ -9630,7 +9630,7 @@ msgstr "同期中" #: ../../enterprise/meta/general/main_header.php:151 #: ../../enterprise/meta/advanced/propagation.php:33 msgid "Propagation" -msgstr "" +msgstr "伝播" #: ../../enterprise/meta/general/main_header.php:153 #: ../../enterprise/meta/general/main_header.php:164 @@ -9675,7 +9675,7 @@ msgstr "カテゴリー管理" #: ../../enterprise/meta/general/main_header.php:160 msgid "Metasetup" -msgstr "" +msgstr "メタセットアップ" #: ../../enterprise/meta/general/logon_ok.php:36 msgid "Network traffic" @@ -9787,7 +9787,7 @@ msgstr "モジュール編集" #: ../../include/functions_graph.php:714 #: ../../include/functions_graph.php:2855 msgid "Previous" -msgstr "" +msgstr "前へ" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:188 msgid "Please, set a name" @@ -9815,7 +9815,7 @@ msgstr "モニタ項目" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:134 msgid "Web check" -msgstr "" +msgstr "Webチェック" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:140 msgid "Select template group" @@ -9831,7 +9831,7 @@ msgstr "モジュールの説明" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:221 msgid "Step by step wizard" -msgstr "" +msgstr "段階的ウィザード" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:227 msgid "Click Create to continue" @@ -9848,7 +9848,7 @@ msgstr "Pandora FMS ウィザードへようこそ。" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:154 #: ../../enterprise/meta/screens/screens.main.php:74 msgid "To start select an option from the left side." -msgstr "" +msgstr "オプション選択は左側から始めてください。" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:173 #: ../../godmode/menu.php:76 @@ -9862,11 +9862,11 @@ msgstr "モジュール管理" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:479 msgid "Back" -msgstr "" +msgstr "戻る" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:219 msgid "Select the agent where the module will be created" -msgstr "" +msgstr "モジュールを作成するエージェントを選択" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:231 msgid "Create Module" @@ -9920,7 +9920,7 @@ msgstr "イベント情報" #: ../../enterprise/meta/monitoring/tactical.php:338 msgid "More events" -msgstr "" +msgstr "次のイベント" #: ../../enterprise/meta/agentsearch.php:75 msgid "Search results for" @@ -10103,7 +10103,7 @@ msgstr "パスワードの最小長さ" #: ../../enterprise/meta/advanced/metasetup.password.php:77 #: ../../enterprise/godmode/setup/setup.php:191 msgid " Caracters" -msgstr "" +msgstr " 文字" #: ../../enterprise/meta/advanced/metasetup.password.php:81 #: ../../enterprise/meta/include/functions_meta.php:153 @@ -10239,7 +10239,7 @@ msgstr "タグ同期" #: ../../enterprise/meta/advanced/policymanager.php:35 msgid "Policy Manager" -msgstr "" +msgstr "ポリシーマネージャ" #: ../../enterprise/meta/advanced/policymanager.php:64 msgid "Apply policies" @@ -10258,37 +10258,37 @@ msgstr "ポリシーの摘要" #: ../../enterprise/meta/advanced/propagation.component.php:255 #, php-format msgid "Error creating %s components groups " -msgstr "" +msgstr "コンポーネントグループ %s の作成エラー " #: ../../enterprise/meta/advanced/synchronizing.component.php:258 #: ../../enterprise/meta/advanced/propagation.component.php:258 #, php-format msgid "Created %s component groups" -msgstr "" +msgstr "コンポーネントグループ %s を作成しました" #: ../../enterprise/meta/advanced/synchronizing.component.php:263 #: ../../enterprise/meta/advanced/propagation.component.php:263 #, php-format msgid "Error creating/updating %s/%s local components " -msgstr "" +msgstr "ローカルコンポーネント %s/%s の作成/更新エラー " #: ../../enterprise/meta/advanced/synchronizing.component.php:266 #: ../../enterprise/meta/advanced/propagation.component.php:266 #, php-format msgid "Created/Updated %s/%s local components" -msgstr "" +msgstr "ローカルコンポーネント %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/synchronizing.component.php:271 #: ../../enterprise/meta/advanced/propagation.component.php:271 #, php-format msgid "Error creating/updating %s/%s network components " -msgstr "" +msgstr "ネットワークコンポーネント %s/%s の作成/更新エラー " #: ../../enterprise/meta/advanced/synchronizing.component.php:274 #: ../../enterprise/meta/advanced/propagation.component.php:274 #, php-format msgid "Created/Updated %s/%s network components" -msgstr "" +msgstr "ネットワークコンポーネント %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/synchronizing.component.php:280 #: ../../enterprise/meta/advanced/propagation.component.php:280 @@ -10505,7 +10505,7 @@ msgstr "キューが空" #: ../../enterprise/meta/advanced/propagation.php:58 #: ../../enterprise/meta/advanced/propagation.php:68 msgid "Components propagation" -msgstr "" +msgstr "コンポーネント伝播" #: ../../enterprise/meta/advanced/propagation.php:62 #: ../../enterprise/meta/advanced/propagation.php:71 @@ -10590,32 +10590,32 @@ msgstr "移動" #: ../../enterprise/meta/advanced/synchronizing.alert.php:286 #, php-format msgid "Error creating/updating %s/%s comamnds" -msgstr "" +msgstr "コマンド %s/%s の作成/更新エラー" #: ../../enterprise/meta/advanced/synchronizing.alert.php:289 #, php-format msgid "Created/Updated %s/%s commands" -msgstr "" +msgstr "コマンド %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/synchronizing.alert.php:294 #, php-format msgid "Error creating/updating %s/%s actions" -msgstr "" +msgstr "アクション %s/%s の作成/更新エラー" #: ../../enterprise/meta/advanced/synchronizing.alert.php:297 #, php-format msgid "Created/Updated %s/%s actions" -msgstr "" +msgstr "アクション %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/synchronizing.alert.php:302 #, php-format msgid "Error creating/updating %s/%s templates" -msgstr "" +msgstr "テンプレート %s/%s の作成/更新エラー" #: ../../enterprise/meta/advanced/synchronizing.alert.php:305 #, php-format msgid "Created/Updated %s/%s templates" -msgstr "" +msgstr "テンプレート %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/metasetup.performance.php:70 #: ../../enterprise/meta/include/functions_meta.php:353 @@ -10627,7 +10627,7 @@ msgstr "イベントデータ保持日数" #: ../../enterprise/meta/advanced/metasetup.performance.php:74 #: ../../enterprise/meta/include/functions_meta.php:363 msgid "Active events history" -msgstr "" +msgstr "アクティブなイベント履歴" #: ../../enterprise/meta/advanced/metasetup.performance.php:79 #: ../../enterprise/meta/include/functions_meta.php:373 @@ -10882,72 +10882,72 @@ msgstr "コンソール設定" #: ../../enterprise/meta/advanced/synchronizing.tag.php:122 #, php-format msgid "Error creating/updating %s/%s tags" -msgstr "" +msgstr "タグ %s/%s の作成/更新エラー" #: ../../enterprise/meta/advanced/synchronizing.tag.php:125 #, php-format msgid "Created/Updated %s/%s tags" -msgstr "" +msgstr "タグ %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/policymanager.sync.php:253 #, php-format msgid "Error creating %s policies" -msgstr "" +msgstr "ポリシー %s の作成エラー" #: ../../enterprise/meta/advanced/policymanager.sync.php:256 #, php-format msgid "Created %s policies" -msgstr "" +msgstr "ポリシー %s を作成しました" #: ../../enterprise/meta/advanced/policymanager.sync.php:261 #, php-format msgid "Error creating/updating %s/%s policy modules" -msgstr "" +msgstr "ポリシーモジュール %s/%s の作成/更新エラー" #: ../../enterprise/meta/advanced/policymanager.sync.php:264 #, php-format msgid "Created/Updated %s/%s policy modules" -msgstr "" +msgstr "ポリシーモジュール %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/policymanager.sync.php:269 #, php-format msgid "Error deleting %s policy modules" -msgstr "" +msgstr "ポリシーモジュール %s の削除エラー" #: ../../enterprise/meta/advanced/policymanager.sync.php:272 #, php-format msgid "Deleted %s policy modules" -msgstr "" +msgstr "ポリシーモジュール %s を削除しました" #: ../../enterprise/meta/advanced/policymanager.sync.php:277 #, php-format msgid "Error creating %s policy alerts" -msgstr "" +msgstr "ポリシーアラート %s の作成エラー" #: ../../enterprise/meta/advanced/policymanager.sync.php:280 #, php-format msgid "Created %s policy alerts" -msgstr "" +msgstr "ポリシーアラート %s を作成しました" #: ../../enterprise/meta/advanced/policymanager.sync.php:285 #, php-format msgid "Error deleting %s policy alerts" -msgstr "" +msgstr "ポリシーアラート %s の削除エラー" #: ../../enterprise/meta/advanced/policymanager.sync.php:288 #, php-format msgid "Deleted %s policy alerts" -msgstr "" +msgstr "ポリシーアラート %s を削除しました" #: ../../enterprise/meta/advanced/synchronizing.group.php:137 #, php-format msgid "Error creating/updating %s/%s groups" -msgstr "" +msgstr "グループ %s/%s の作成/更新エラー" #: ../../enterprise/meta/advanced/synchronizing.group.php:140 #, php-format msgid "Created/Updated %s/%s groups" -msgstr "" +msgstr "グループ %s/%s を作成/更新しました" #: ../../enterprise/meta/advanced/metasetup.setup.php:68 #: ../../enterprise/meta/include/functions_meta.php:33 @@ -11256,7 +11256,7 @@ msgstr "ネットワークマップの更新に失敗しました。" #: ../../enterprise/meta/include/functions_networkmap_meta.php:277 msgid "Unnamed " -msgstr "" +msgstr "名前なし " #: ../../enterprise/meta/include/functions_networkmap_meta.php:324 msgid "Show detailed agent" @@ -11272,7 +11272,7 @@ msgstr "ネットワークモジュールのみ" #: ../../enterprise/meta/include/functions_networkmap_meta.php:373 msgid "Show children Metaconsole" -msgstr "" +msgstr "子メタコンソール表示" #: ../../enterprise/meta/include/functions_networkmap_meta.php:404 msgid "Show modulegroup" @@ -11313,19 +11313,19 @@ msgstr "グループが選択されていません。" #: ../../enterprise/meta/include/functions_networkmap_meta.php:638 #, php-format msgid "Cannot connect to %s Pandora to generate networkmap." -msgstr "" +msgstr "ネットワークマップ生成で、Pandora サーバ %s に接続できません。" #: ../../enterprise/meta/include/functions_wizard_meta.php:229 msgid "Latency" -msgstr "" +msgstr "遅延" #: ../../enterprise/meta/include/functions_wizard_meta.php:230 msgid "Response" -msgstr "" +msgstr "応答" #: ../../enterprise/meta/include/functions_wizard_meta.php:232 msgid "Check type" -msgstr "" +msgstr "チェックのタイプ" #: ../../enterprise/meta/include/functions_wizard_meta.php:249 #: ../../enterprise/meta/include/functions_wizard_meta.php:299 @@ -11335,15 +11335,15 @@ msgstr "ウェブチェック" #: ../../enterprise/meta/include/functions_wizard_meta.php:280 msgid "String to check" -msgstr "" +msgstr "チェック文字列" #: ../../enterprise/meta/include/functions_wizard_meta.php:285 msgid "Add check" -msgstr "" +msgstr "チェックを追加" #: ../../enterprise/meta/include/functions_wizard_meta.php:293 msgid "Delete check" -msgstr "" +msgstr "チェックを削除" #: ../../enterprise/meta/include/functions_wizard_meta.php:398 #: ../../enterprise/meta/include/functions_wizard_meta.php:487 @@ -11360,7 +11360,7 @@ msgstr "SNMP コミュニティ" #: ../../enterprise/meta/include/functions_wizard_meta.php:413 #: ../../enterprise/meta/include/functions_wizard_meta.php:495 msgid "Credentials" -msgstr "" +msgstr "認証" #: ../../enterprise/meta/include/functions_wizard_meta.php:435 #: ../../enterprise/meta/include/functions_wizard_meta.php:517 @@ -11376,11 +11376,11 @@ msgstr "プロキシURL" #: ../../enterprise/meta/include/functions_wizard_meta.php:528 msgid "Web configuration" -msgstr "" +msgstr "Web 設定" #: ../../enterprise/meta/include/functions_wizard_meta.php:744 msgid "Alerts in module" -msgstr "" +msgstr "モジュールのアラート" #: ../../enterprise/meta/include/functions_wizard_meta.php:752 #: ../../include/functions_reporting.php:1646 @@ -11389,7 +11389,7 @@ msgstr "アラートの説明" #: ../../enterprise/meta/include/functions_wizard_meta.php:970 msgid "Checks" -msgstr "" +msgstr "チェック" #: ../../enterprise/meta/include/functions_wizard_meta.php:1238 #: ../../enterprise/meta/include/functions_wizard_meta.php:1342 @@ -11406,7 +11406,7 @@ msgstr "同じ名前のモジュールが既に存在します" #: ../../enterprise/meta/include/functions_wizard_meta.php:1493 #, php-format msgid "Error adding module %s" -msgstr "" +msgstr "モジュール %s の追加エラー" #: ../../enterprise/meta/include/functions_wizard_meta.php:1260 #: ../../enterprise/meta/include/functions_wizard_meta.php:1362 @@ -11444,11 +11444,11 @@ msgstr "モジュールを更新しました。" #: ../../enterprise/meta/include/functions_meta.php:25 msgid "No admin user" -msgstr "" +msgstr "管理者ユーザではありません" #: ../../enterprise/meta/include/functions_meta.php:123 msgid "Netflow disable custom live view filters" -msgstr "" +msgstr "Netflow のカスタムライブビューフィルターを無効化しました。" #: ../../enterprise/meta/include/functions_users_meta.php:172 #: ../../enterprise/meta/include/functions_users_meta.php:196 @@ -11650,7 +11650,7 @@ msgstr "テンプレート名" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 msgid "Stand By" -msgstr "" +msgstr "スタンバイ" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1574 msgid "Go to Alert detail" @@ -11699,7 +11699,7 @@ msgstr "ビジュアルマップ" #: ../../enterprise/meta/screens/screens.main.php:73 msgid "Welcome to the Pandora FMS screens." -msgstr "" +msgstr "Pandora FMS スクリーンへようこそ" #: ../../enterprise/meta/index.php:305 ../../enterprise/meta/index.php:315 #: ../../index.php:462 @@ -11725,15 +11725,15 @@ msgstr "コピーしました。" #: ../../enterprise/dashboard/dashboard_replicate.php:108 msgid "Source user's group" -msgstr "" +msgstr "コピー元ユーザグループ" #: ../../enterprise/dashboard/dashboard_replicate.php:132 msgid "Destination user's group" -msgstr "" +msgstr "コピー先ユーザグループ" #: ../../enterprise/dashboard/dashboard_replicate.php:146 msgid "Group Dashboards" -msgstr "" +msgstr "グループダッシュボード" #: ../../enterprise/dashboard/dashboard_replicate.php:165 msgid "Replicate Dashboard" @@ -12541,7 +12541,7 @@ msgstr "選択したモジュールをブラックリストから削除します #: ../../enterprise/godmode/setup/setup.php:133 #: ../../include/functions_config.php:214 msgid "Activate Log Collector" -msgstr "" +msgstr "ログ収集の有効化" #: ../../enterprise/godmode/setup/setup.php:158 msgid "Enterprise options" @@ -12686,7 +12686,7 @@ msgstr "文字列" #: ../../godmode/massive/massive_edit_modules.php:307 #: ../../godmode/massive/massive_edit_modules.php:344 msgid "Inverse interval" -msgstr "" +msgstr "条件の反転" #: ../../enterprise/godmode/modules/configure_local_component.php:182 #: ../../include/functions_alerts.php:555 @@ -12724,42 +12724,42 @@ msgstr "データ保存倍率" #: ../../godmode/agentes/module_manager_editor_common.php:410 #: ../../godmode/massive/massive_edit_modules.php:420 msgid "Critical instructions" -msgstr "" +msgstr "障害時手順" #: ../../enterprise/godmode/modules/configure_local_component.php:218 #: ../../godmode/modules/manage_network_components_form_common.php:146 #: ../../godmode/agentes/module_manager_editor_common.php:410 #: ../../godmode/massive/massive_edit_modules.php:420 msgid "Instructions when the status is critical" -msgstr "" +msgstr "障害状態になった場合の手順" #: ../../enterprise/godmode/modules/configure_local_component.php:221 #: ../../godmode/modules/manage_network_components_form_common.php:150 #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Warning instructions" -msgstr "" +msgstr "警告時手順" #: ../../enterprise/godmode/modules/configure_local_component.php:221 #: ../../godmode/modules/manage_network_components_form_common.php:150 #: ../../godmode/agentes/module_manager_editor_common.php:414 #: ../../godmode/massive/massive_edit_modules.php:424 msgid "Instructions when the status is warning" -msgstr "" +msgstr "警告状態になった場合の手順" #: ../../enterprise/godmode/modules/configure_local_component.php:224 #: ../../godmode/modules/manage_network_components_form_common.php:154 #: ../../godmode/agentes/module_manager_editor_common.php:418 #: ../../godmode/massive/massive_edit_modules.php:428 msgid "Unknown instructions" -msgstr "" +msgstr "不明時手順" #: ../../enterprise/godmode/modules/configure_local_component.php:224 #: ../../godmode/modules/manage_network_components_form_common.php:154 #: ../../godmode/agentes/module_manager_editor_common.php:418 #: ../../godmode/massive/massive_edit_modules.php:428 msgid "Instructions when the status is unknown" -msgstr "" +msgstr "不明状態になった場合の手順" #: ../../enterprise/godmode/modules/configure_local_component.php:231 #: ../../godmode/modules/manage_network_components_form_common.php:161 @@ -13079,7 +13079,7 @@ msgstr "エージェントのフィルタ" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:245 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:170 msgid "Agents available" -msgstr "" +msgstr "存在するエージェント" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:245 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:251 @@ -13101,7 +13101,7 @@ msgstr "テンプレートにエージェントを追加" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:205 msgid "Undo agents to template" -msgstr "" +msgstr "エージェントのテンプレートへの適用の取り消し" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:331 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:225 @@ -13511,19 +13511,19 @@ msgstr "横向きで表示" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1401 msgid "Modules to match" -msgstr "" +msgstr "マッチするモジュール" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1403 msgid "Select the modules to match when create a report for agents" -msgstr "" +msgstr "エージェントのレポート作成時にマッチするモジュールを選択" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1479 msgid "Modules to match (Free text)" -msgstr "" +msgstr "マッチするモジュール (任意の文字列)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1481 msgid "Free text to filter the modules of agents when apply this template." -msgstr "" +msgstr "このテンプレートを適用するときに、エージェントのモジュールをフィルタするための文字列。" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1494 msgid "Create a graph for each agent" @@ -13534,6 +13534,8 @@ 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:1520 #: ../../godmode/netflow/nf_item_list.php:258 @@ -14173,7 +14175,7 @@ msgstr "ウェブサーバモジュールの新規作成" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:40 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:41 msgid "The changes on this field are linked with the configuration data." -msgstr "" +msgstr "このフィールドの変更は、設定データにリンクしています。" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:46 msgid "Using local component" @@ -14232,17 +14234,17 @@ msgstr "最後の行は \"module_end\" でなければいけません" msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to " "data configuration" -msgstr "" +msgstr "名前がありません。設定に \"module_name モジュール名\" の行を追加してください。" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:158 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to " "data configuration" -msgstr "" +msgstr "タイプがありません。設定に \"module_type モジュールタイプ\" の行を追加してください。" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:159 msgid "Type is wrong. Please set a correct type" -msgstr "" +msgstr "タイプが不正です。正しいタイプを設定してください。" #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:161 msgid "Data configuration are built correctly" @@ -14336,7 +14338,7 @@ msgstr "イベントアラート" #: ../../enterprise/godmode/menu.php:90 msgid "Log Collector" -msgstr "" +msgstr "ログ収集" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 #: ../../enterprise/godmode/policies/policy_modules.php:251 @@ -14933,7 +14935,7 @@ msgstr "プラグインポリシー" #: ../../enterprise/godmode/services/services.service.php:126 msgid "" "This values are by default because the service is auto calculate mode." -msgstr "" +msgstr "サービスが自動計算モードのため、この値はデフォルト値です。" #: ../../enterprise/godmode/services/services.elements.php:76 #: ../../enterprise/godmode/services/services.service.php:148 @@ -15007,7 +15009,7 @@ msgstr "警告ウエイト" #: ../../enterprise/godmode/services/services.elements.php:288 msgid "Unknown weight" -msgstr "" +msgstr "不明なウエイト" #: ../../enterprise/godmode/services/services.elements.php:293 msgid "Ok weight" @@ -15031,7 +15033,7 @@ msgstr "サービスの更新に失敗しました。" #: ../../enterprise/godmode/services/services.service.php:100 msgid "New Service" -msgstr "" +msgstr "新規サービス" #: ../../enterprise/godmode/services/services.service.php:193 msgid "Auto calculate" @@ -15043,15 +15045,15 @@ msgstr "" #: ../../enterprise/godmode/services/services.service.php:228 msgid "S.L.A. interval" -msgstr "" +msgstr "S.L.A. 間隔" #: ../../enterprise/godmode/services/services.service.php:233 msgid "S.L.A. limit" -msgstr "" +msgstr "S.L.A. 制限" #: ../../enterprise/godmode/services/services.service.php:235 msgid "Please set limit between 0 to 100." -msgstr "" +msgstr "制限は 0 と 100 の間で設定してください。" #: ../../enterprise/godmode/services/services.service.php:246 msgid "Warning Service alert" @@ -15840,11 +15842,11 @@ msgstr "2文字以上入力するとマッチするエージェント名が検 #: ../../include/functions_ui.php:3068 msgid "Does not exist agent with this name." -msgstr "" +msgstr "この名前のエージェントがありません。" #: ../../include/functions_ui.php:3214 msgid "Problem with Pandora FMS database" -msgstr "" +msgstr "Pandora FMS データベースで問題が発生しました" #: ../../include/functions_ui.php:3215 msgid "" @@ -15854,6 +15856,10 @@ msgid "" "incorrect or \n" "\t\t\tthe database server is not running." msgstr "" +"データベースに接続できません。include/config.php " +"ファイル内のデータベース設定を確認してください。

\n" +"\t\t\tデータベース名、ホスト名、ユーザ名、パスワードが間違っているかまたは、\n" +"\t\t\tデータベースサーバが動作していません。" #: ../../include/functions_ui.php:3219 msgid "DB ERROR" @@ -15884,6 +15890,12 @@ msgid "" "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " "to fix this problem.
" msgstr "" +"データベースから設定情報をロードできません。include/config.phpファイル内の\n" +"データベース設定を確認してください。\n" +"データベーススキーマは設定されていますが、データが無い可能性があります。データベースへのアクセス権限の問題か、スキーマが古い可能性があります。\n" +"\t\t\t

または、Pandora FMS コンソールが include/config.php " +"を見つけられないか、このファイルのパーミッションが不正で\n" +"\t\t\tHTTP サーバが参照できません。問題の修正のためには、ドキュメントを確認してください。
" #: ../../include/functions_ui.php:3237 msgid "No configuration file found" @@ -15896,6 +15908,8 @@ msgid "" "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " "to fix this problem." msgstr "" +"Pandora FMS コンソールが、include/config.phpを見つけられないか、このファイルのパーミッション\n" +"\t\t\tが不正のため HTTP サーバプロセスからアクセスできません。問題解決にはドキュメントを確認してください。" #: ../../include/functions_ui.php:3249 #, php-format @@ -15904,7 +15918,7 @@ msgstr "" #: ../../include/functions_ui.php:3252 msgid "Installer active" -msgstr "" +msgstr "インストーラが有効です" #: ../../include/functions_ui.php:3253 msgid "" @@ -15913,10 +15927,12 @@ msgid "" "\t\t\tPlease delete the ./install.php file before running Pandora FMS " "Console." msgstr "" +"セキュリティのため、インストーラファイルを削除しないと通常の動作をしません。\n" +"\t\t\tPandora FMS コンソールを実行する前に、./install.phpファイルを削除してください。" #: ../../include/functions_ui.php:3257 msgid "Bad permission for include/config.php" -msgstr "" +msgstr "include/config.php のパーミッションが不正です" #: ../../include/functions_ui.php:3258 msgid "" @@ -15929,6 +15945,10 @@ msgid "" "\t\t\tpermissions for include/config.php file. Please do it, it is " "for your security." msgstr "" +"セキュリティのため、config.phpのパーミッションは制限する必要があります。\"other\" ユーザは、\n" +"\t\t\t読み書きできないようにし、owner (通常は www-data や http デーモンのユーザ)のみが\n" +"\t\t\t書けるようにする必要があります。include/config.phpのパーミッションを修正しないと\n" +"\t\t\t通常の動作をしません。セキュリティのために調整をしてください。" #: ../../include/functions_events.php:784 msgid "Latest events" @@ -16047,7 +16067,7 @@ msgstr "イベント ID" #: ../../include/functions_events.php:1554 msgid "Change owner" -msgstr "" +msgstr "所有者変更" #: ../../include/functions_events.php:1584 ../../include/functions_xml.php:125 msgid "New" @@ -16084,20 +16104,20 @@ msgstr "アラート詳細" #: ../../include/functions_events.php:2073 msgid "First event" -msgstr "" +msgstr "最初のイベント" #: ../../include/functions_events.php:2073 msgid "Last event" -msgstr "" +msgstr "最新のイベント" #: ../../include/functions_events.php:2149 #: ../../mobile/operation/events.php:440 msgid "Acknowledged by" -msgstr "" +msgstr "承諾者" #: ../../include/functions_events.php:2235 msgid "There are no comments" -msgstr "" +msgstr "コメントがありません" #: ../../include/functions_events.php:2320 #: ../../include/functions_reporting.php:2625 @@ -16113,7 +16133,7 @@ msgstr "Pandora System" #: ../../include/functions_reporting.php:957 #: ../../include/functions_reporting.php:969 msgid "Ratio" -msgstr "" +msgstr "比率" #: ../../include/functions_reporting.php:882 #: ../../include/functions_reporting.php:898 @@ -16124,7 +16144,7 @@ msgstr "" #: ../../include/functions_reporting.php:957 #: ../../include/functions_reporting.php:969 msgid "Modules by second" -msgstr "" +msgstr "秒間モジュール" #: ../../include/functions_reporting.php:917 msgid "Network modules" @@ -16172,7 +16192,7 @@ msgstr "定義済・発報アラート" #: ../../include/functions_reporting.php:1166 msgid "Defined users" -msgstr "" +msgstr "定義済ユーザ" #: ../../include/functions_reporting.php:1221 msgid "Total agents and monitors" @@ -16241,7 +16261,7 @@ msgstr "最新の障害" #: ../../include/functions_reporting.php:2359 msgid "N/A(*)" -msgstr "" +msgstr "N/A(*)" #: ../../include/functions_reporting.php:2391 #: ../../include/functions_reporting.php:4351 @@ -16309,12 +16329,12 @@ msgstr "不十分なデータ" #: ../../include/functions_reporting.php:5187 msgid "Modules under or equal to" -msgstr "" +msgstr "次の値より小さいか同じモジュール" #: ../../include/functions_reporting.php:5193 #: ../../include/functions_reporting.php:5394 msgid "Modules over" -msgstr "" +msgstr "次の値を超えるモジュール" #: ../../include/functions_reporting.php:5196 #: ../../include/functions_alerts.php:552 @@ -16328,23 +16348,23 @@ msgstr "異なる値" #: ../../include/functions_reporting.php:5388 msgid "Modules less or equal to" -msgstr "" +msgstr "次の値より小さいか同じモジュール" #: ../../include/functions_reporting.php:5391 msgid "Modules less" -msgstr "" +msgstr "次の値より小さいモジュール" #: ../../include/functions_reporting.php:5397 msgid "Modules equal to" -msgstr "" +msgstr "次の値と同じモジュール" #: ../../include/functions_reporting.php:5400 msgid "Modules not equal to" -msgstr "" +msgstr "次の値と異なるモジュール" #: ../../include/functions_reporting.php:5403 msgid "Modules normal status" -msgstr "" +msgstr "正常状態のモジュール" #: ../../include/functions_reporting.php:5592 #: ../../extensions/agents_modules.php:167 @@ -16353,12 +16373,12 @@ msgstr "モジュールが定義されたエージェントがありません。 #: ../../include/functions_reporting.php:5800 msgid "Agent configuration: " -msgstr "" +msgstr "エージェント設定: " #: ../../include/functions_reporting.php:5849 #: ../../include/functions_reporting.php:5995 msgid " MODULES" -msgstr "" +msgstr " モジュール" #: ../../include/functions_reporting.php:5929 msgid "Group configuration: " @@ -16518,17 +16538,17 @@ msgstr "N" #: ../../include/functions.php:956 ../../include/functions_graph.php:2173 #: ../../include/functions_graph.php:2174 msgid "Minor" -msgstr "" +msgstr "マイナー" #: ../../include/functions.php:727 ../../include/functions.php:914 #: ../../include/functions.php:959 ../../include/functions_graph.php:2181 #: ../../include/functions_graph.php:2182 msgid "Major" -msgstr "" +msgstr "メジャー" #: ../../include/functions.php:876 msgid "Monitor Unknown" -msgstr "" +msgstr "不明状態" #: ../../include/functions.php:885 msgid "Configuration change " @@ -16626,39 +16646,39 @@ msgstr "エンタープライズSNMPサーバ" #: ../../include/functions_netflow.php:356 msgid "Total flows" -msgstr "" +msgstr "合計フロー数" #: ../../include/functions_netflow.php:358 msgid "Total bytes" -msgstr "" +msgstr "合計バイト数" #: ../../include/functions_netflow.php:360 msgid "Total packets" -msgstr "" +msgstr "合計パケット数" #: ../../include/functions_netflow.php:362 msgid "Average bits per second" -msgstr "" +msgstr "平均ビット/秒" #: ../../include/functions_netflow.php:364 msgid "Average packets per second" -msgstr "" +msgstr "平均パケット/秒" #: ../../include/functions_netflow.php:366 msgid "Average bytes per packet" -msgstr "" +msgstr "平均バイト/秒" #: ../../include/functions_netflow.php:828 msgid "Area graph" -msgstr "" +msgstr "塗り潰しグラフ" #: ../../include/functions_netflow.php:829 msgid "Pie graph and Summary table" -msgstr "" +msgstr "円グラフと一覧表" #: ../../include/functions_netflow.php:830 msgid "Statistics table" -msgstr "" +msgstr "状態表" #: ../../include/functions_netflow.php:844 #: ../../include/functions_netflow.php:877 @@ -16686,7 +16706,7 @@ msgstr "3ヵ月" #: ../../include/functions_netflow.php:860 msgid "Last year" -msgstr "" +msgstr "1年" #: ../../include/functions_netflow.php:861 ../../include/ajax/module.php:88 msgid "2 years" @@ -16711,11 +16731,11 @@ msgstr "5 分" #: ../../include/functions_netflow.php:1041 #: ../../include/functions_netflow.php:1074 msgid "Aggregate" -msgstr "" +msgstr "集約" #: ../../include/functions_netflow.php:1113 msgid "Error generating report" -msgstr "" +msgstr "レポート生成エラー" #: ../../include/functions_netflow.php:1310 msgid "MB" @@ -17115,7 +17135,7 @@ msgstr "SQL 横棒グラフ" #: ../../include/functions_reports.php:513 msgid "Automatic combined Graph" -msgstr "" +msgstr "自動重ね合わせグラフ" #: ../../include/functions_reports.php:518 #: ../../include/functions_reports.php:520 @@ -17162,23 +17182,23 @@ msgstr "イベントレポートグループ" #: ../../include/functions_reports.php:613 msgid "Netflow area chart" -msgstr "" +msgstr "Netflow 塗り潰しグラフ" #: ../../include/functions_reports.php:615 msgid "Netflow pie chart" -msgstr "" +msgstr "Netflow 円グラフ" #: ../../include/functions_reports.php:617 msgid "Netflow data table" -msgstr "" +msgstr "Netflow データ表" #: ../../include/functions_reports.php:619 msgid "Netflow statistics table" -msgstr "" +msgstr "Netflow 状態表" #: ../../include/functions_reports.php:621 msgid "Netflow summary table" -msgstr "" +msgstr "Netflow サマリ" #: ../../include/functions_graph.php:639 msgid "Units. Value" @@ -17284,7 +17304,7 @@ msgstr "エージェントの設定コピーに失敗しました。コピーを #: ../../include/functions_treeview.php:140 msgid "There was a problem loading alerts" -msgstr "" +msgstr "アラートのロードで問題が発生しました" #: ../../include/functions_treeview.php:178 msgid "Go to alerts detail" @@ -17320,7 +17340,7 @@ msgstr "状態を表すアイコン" #: ../../include/graphs/functions_flot.php:231 msgid "Cancel zoom" -msgstr "" +msgstr "ズームを取り消し" #: ../../include/graphs/functions_flot.php:233 msgid "Warning and Critical thresholds" @@ -17328,7 +17348,7 @@ msgstr "警告と障害の閾値" #: ../../include/graphs/functions_flot.php:235 msgid "Overview graph" -msgstr "" +msgstr "概要グラフ" #: ../../include/functions_html.php:609 msgid "weeks" @@ -17336,11 +17356,11 @@ msgstr "週" #: ../../include/functions_html.php:716 msgid "Month day" -msgstr "" +msgstr "日" #: ../../include/functions_html.php:718 msgid "Week day" -msgstr "" +msgstr "曜日" #: ../../include/functions_html.php:1910 msgid "Type at least two characters to search the module." @@ -17356,11 +17376,11 @@ msgstr "グループマップの新規作成" #: ../../include/functions_config.php:85 msgid "Failed updated: User did not login." -msgstr "" +msgstr "更新失敗しました: ユーザがログインしていません。" #: ../../include/functions_config.php:93 msgid "Failed updated: User is not admin." -msgstr "" +msgstr "更新に失敗: ユーザが管理者ではありません" #: ../../include/functions_config.php:122 #: ../../godmode/setup/setup_general.php:53 @@ -17406,7 +17426,7 @@ msgstr "Integria URL" #: ../../include/functions_config.php:149 #: ../../godmode/setup/setup_general.php:98 msgid "Enable Netflow" -msgstr "" +msgstr "Netflow を利用する" #: ../../include/functions_config.php:156 #: ../../godmode/setup/setup_general.php:193 @@ -17431,7 +17451,7 @@ msgstr "リファラーセキュリティ" #: ../../include/functions_config.php:179 #: ../../godmode/setup/setup_general.php:228 msgid "Event storm protection" -msgstr "" +msgstr "イベントストーム保護" #: ../../include/functions_config.php:181 #: ../../godmode/setup/setup_general.php:237 @@ -17440,7 +17460,7 @@ msgstr "コマンドスナップショット" #: ../../include/functions_config.php:211 msgid "Show events list in local console (read only)" -msgstr "" +msgstr "ローカルコンソールでのイベント一覧表示 (参照のみ)" #: ../../include/functions_config.php:252 #: ../../godmode/setup/setup_auth.php:37 @@ -17602,52 +17622,52 @@ msgstr "GIS でのデフォルトアイコン" #: ../../include/functions_config.php:444 #: ../../godmode/setup/setup_visuals.php:106 msgid "Delete interval" -msgstr "" +msgstr "間隔値の削除" #: ../../include/functions_config.php:449 #: ../../godmode/setup/setup_netflow.php:43 msgid "Data storage path" -msgstr "" +msgstr "データ保存パス" #: ../../include/functions_config.php:451 #: ../../godmode/setup/setup_netflow.php:46 msgid "Daemon interval" -msgstr "" +msgstr "デーモンの間隔" #: ../../include/functions_config.php:453 #: ../../godmode/setup/setup_netflow.php:48 msgid "Daemon binary path" -msgstr "" +msgstr "デーモンバイナリパス" #: ../../include/functions_config.php:455 #: ../../godmode/setup/setup_netflow.php:50 msgid "Nfdump binary path" -msgstr "" +msgstr "nfdump バイナリパス" #: ../../include/functions_config.php:457 #: ../../godmode/setup/setup_netflow.php:52 msgid "Nfexpire binary path" -msgstr "" +msgstr "nfexpire バイナリパス" #: ../../include/functions_config.php:459 #: ../../godmode/setup/setup_netflow.php:54 msgid "Maximum chart resolution" -msgstr "" +msgstr "最大グラフ解像度" #: ../../include/functions_config.php:463 #: ../../include/functions_config.php:467 #: ../../godmode/setup/setup_netflow.php:60 msgid "Netflow max lifetime" -msgstr "" +msgstr "Netflow 最大保存期間" #: ../../include/functions_config.php:469 msgid "Log max lifetime" -msgstr "" +msgstr "ログ最大保存期間" #: ../../include/functions_config.php:501 #, php-format msgid "Failed updated: the next values cannot update: %s" -msgstr "" +msgstr "更新失敗: 次の値が更新できません: %s" #: ../../include/functions_config.php:1096 msgid "Default password for \"Admin\" user has not been changed." @@ -17886,48 +17906,48 @@ msgstr "3 年" #: ../../include/ajax/module.php:91 msgid "Select period:" -msgstr "" +msgstr "期間の選択:" #: ../../include/ajax/events.php:145 #, php-format msgid "Executing command: %s" -msgstr "" +msgstr "コマンド実行中: %s" #: ../../include/ajax/events.php:152 msgid "Execute again" -msgstr "" +msgstr "再実行" #: ../../include/ajax/events.php:285 msgid "Agent fields" -msgstr "" +msgstr "エージェントフィールド" #: ../../include/ajax/events.php:289 ../../godmode/events/events.php:61 msgid "Responses" -msgstr "" +msgstr "レスポンス" #: ../../include/ajax/events.php:349 msgid "Error adding comment" -msgstr "" +msgstr "コメント追加エラー" #: ../../include/ajax/events.php:350 msgid "Comment added successfully" -msgstr "" +msgstr "コメントを追加しました" #: ../../include/ajax/events.php:351 msgid "Error changing event status" -msgstr "" +msgstr "イベントの状態変更エラー" #: ../../include/ajax/events.php:352 msgid "Event status changed successfully" -msgstr "" +msgstr "イベントの状態を変更しました" #: ../../include/ajax/events.php:353 msgid "Error changing event owner" -msgstr "" +msgstr "イベントの所有者変更エラー" #: ../../include/ajax/events.php:354 msgid "Event owner changed successfully" -msgstr "" +msgstr "イベントの所有者を変更しました" #: ../../include/ajax/events.php:449 msgid "Auto" @@ -17935,23 +17955,23 @@ msgstr "自動" #: ../../include/functions_snmp_browser.php:145 msgid "Target IP cannot be blank." -msgstr "" +msgstr "対象 IP は空にできません" #: ../../include/functions_snmp_browser.php:307 msgid "Numeric OID" -msgstr "" +msgstr "数値 OID" #: ../../include/functions_snmp_browser.php:323 msgid "Syntax" -msgstr "" +msgstr "書式" #: ../../include/functions_snmp_browser.php:328 msgid "Display hint" -msgstr "" +msgstr "ヒント表示" #: ../../include/functions_snmp_browser.php:333 msgid "Max access" -msgstr "" +msgstr "最大アクセス" #: ../../include/functions_snmp_browser.php:380 #: ../../godmode/agentes/module_manager_editor_wmi.php:42 @@ -17967,15 +17987,15 @@ msgstr "コミュニティ" #: ../../include/functions_snmp_browser.php:384 msgid "Expand the tree" -msgstr "" +msgstr "ツリーを展開" #: ../../include/functions_snmp_browser.php:384 msgid "can be slow" -msgstr "" +msgstr "遅い" #: ../../include/functions_snmp_browser.php:385 msgid "Collapse the tree" -msgstr "" +msgstr "ツリーを閉じる" #: ../../include/functions_snmp_browser.php:386 msgid "Starting OID" @@ -17987,28 +18007,28 @@ msgstr "検索文字列" #: ../../include/functions_snmp_browser.php:391 msgid "First match" -msgstr "" +msgstr "最初の一致" #: ../../include/functions_snmp_browser.php:392 msgid "Previous match" -msgstr "" +msgstr "前の一致" #: ../../include/functions_snmp_browser.php:393 msgid "Next match" -msgstr "" +msgstr "次の一致" #: ../../include/functions_snmp_browser.php:394 msgid "Last match" -msgstr "" +msgstr "最後の一致" #: ../../include/functions_snmp_browser.php:403 msgid "Browse" -msgstr "" +msgstr "ブラウズ" #: ../../include/functions_snmp_browser.php:413 #: ../../godmode/agentes/module_manager_editor_network.php:22 msgid "Search matches" -msgstr "" +msgstr "検索一致" #: ../../include/functions_api.php:73 msgid "No set or get or help operation." @@ -18741,7 +18761,7 @@ msgstr "モジュールを無効にしました" #: ../../include/functions_api.php:5426 msgid "Error disabling module" -msgstr "" +msgstr "モジュールの無効化エラー" #: ../../include/functions_api.php:5447 msgid "Correct module enable" @@ -18749,7 +18769,7 @@ msgstr "モジュールを有効にしました" #: ../../include/functions_api.php:5450 msgid "Error enabling module" -msgstr "" +msgstr "モジュールの有効化エラー" #: ../../include/functions_groups.php:59 msgid "Alert Actions" @@ -18840,7 +18860,7 @@ msgstr "(デフォルト)" #, php-format msgid "" "(Status: %s - Group: %s - Module group: %s - Tag: %s - Free Search: %s)" -msgstr "" +msgstr "(状態: %s - グループ: %s - モジュールグループ: %s - タグ: %s - 検索: %s)" #: ../../mobile/operation/groups.php:66 msgid "PandoraFMS: Groups" @@ -18849,7 +18869,7 @@ msgstr "PandoraFMS: グループ" #: ../../mobile/operation/events.php:335 ../../mobile/operation/events.php:336 #: ../../mobile/operation/events.php:513 ../../mobile/operation/events.php:514 msgid "Preset Filters" -msgstr "" +msgstr "事前設定フィルター" #: ../../mobile/operation/events.php:401 msgid "Event detail" @@ -18883,7 +18903,7 @@ msgstr "%s によるイベントのフィルタ" #: ../../mobile/operation/events.php:1003 #, php-format msgid "Filter: %s" -msgstr "" +msgstr "フィルター: %s" #: ../../mobile/operation/events.php:1018 #, php-format @@ -19553,7 +19573,7 @@ msgstr "エージェントのリモート設定保存ディレクトリ" #: ../../godmode/setup/setup_general.php:87 msgid "Please be careful if you put a password put https access." -msgstr "" +msgstr "パスワードの設定には注意してください。httpsアクセスを使ってください。" #: ../../godmode/setup/setup_general.php:141 msgid "URL and/or Integria password are incorrect" @@ -19563,7 +19583,7 @@ msgstr "URL もしくは Integria のパスワードが不正です" msgid "" "Must have the same time zone as the system or database to avoid mismatches " "of time." -msgstr "" +msgstr "時間の不整合を避けるために、システムまたはデータベースのタイムゾーンと同じにする必要があります。" #: ../../godmode/setup/setup_general.php:195 #: ../../godmode/setup/setup_general.php:200 @@ -19581,7 +19601,7 @@ msgstr "\"はい\" に設定すると、いくつかの重要なセクション msgid "" "If set to yes no events or alerts will be generated, but agents will " "continue receiving data." -msgstr "" +msgstr "「はい」に設定するとイベントやアラートは生成されません。ただし、エージェントはデータ受信を続けます。" #: ../../godmode/setup/setup_general.php:238 msgid "The string modules with several lines show as command output" @@ -19645,29 +19665,30 @@ msgstr "画面設定" #: ../../godmode/setup/setup.php:136 msgid "Correct update the setup options" -msgstr "" +msgstr "設定オプションを修正してください" #: ../../godmode/setup/setup_netflow.php:44 msgid "Directory where netflow data will be stored." -msgstr "" +msgstr "netflow データが保存されるディレクトリ" #: ../../godmode/setup/setup_netflow.php:54 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 "" +"Netflow 塗り潰しグラフを表示する最大ポイント数。高い精度にするとパフォーマンスが落ちます。50 と 100の間の値をお勧めします。" #: ../../godmode/setup/setup_netflow.php:60 msgid "Sets the maximum lifetime for netflow data in days." -msgstr "" +msgstr "netflow データの最大保持日数を指定します。" #: ../../godmode/setup/setup_visuals.php:90 msgid "Interval values" -msgstr "" +msgstr "間隔値" #: ../../godmode/setup/setup_visuals.php:100 msgid "Add new custom value to intervals" -msgstr "" +msgstr "間隔に新たなカスタム値を追加" #: ../../godmode/setup/setup_visuals.php:133 msgid "Colors" @@ -20120,11 +20141,11 @@ msgstr "WMIコンポーネントを新規作成する。" #: ../../godmode/modules/manage_network_components_form_common.php:139 msgid "Any value below this number is discarted" -msgstr "" +msgstr "この数値より小さい値は破棄されます" #: ../../godmode/modules/manage_network_components_form_common.php:141 msgid "Any value over this number is discarted" -msgstr "" +msgstr "この数値より大きい値は破棄されます" #: ../../godmode/modules/manage_network_components_form_wmi.php:32 #: ../../godmode/modules/manage_network_components_form_wmi.php:150 @@ -20162,7 +20183,7 @@ msgstr "最大タイムアウト" #: ../../godmode/modules/manage_network_components_form_wmi.php:144 #: ../../godmode/servers/plugin.php:121 msgid "Max. retries" -msgstr "" +msgstr "最大リトライ" #: ../../godmode/modules/manage_network_components_form_wmi.php:194 msgid "Minimum Data" @@ -20207,7 +20228,7 @@ msgstr "レポートアイテム" #: ../../godmode/netflow/nf_item_list.php:49 msgid "Edit report" -msgstr "" +msgstr "レポート編集" #: ../../godmode/netflow/nf_item_list.php:58 msgid "Netflow reports" @@ -20215,15 +20236,15 @@ msgstr "Netflow レポート" #: ../../godmode/netflow/nf_item_list.php:59 msgid "Item list" -msgstr "" +msgstr "アイテム一覧" #: ../../godmode/netflow/nf_item_list.php:149 msgid "Chart type" -msgstr "" +msgstr "グラフタイプ" #: ../../godmode/netflow/nf_item_list.php:253 msgid "There are no defined items" -msgstr "" +msgstr "定義済のアイテムがありません" #: ../../godmode/netflow/nf_edit.php:37 msgid "Manage Netflow Filter" @@ -20249,7 +20270,7 @@ msgstr "フィルタの作成" #: ../../godmode/netflow/nf_edit_form.php:52 msgid "Filter list" -msgstr "" +msgstr "フィルター一覧" #: ../../godmode/netflow/nf_edit_form.php:56 #: ../../godmode/netflow/nf_edit_form.php:64 @@ -20371,7 +20392,7 @@ msgstr "スクリプトフィールド #1" msgid "" "several networks separated by comma. For example: " "192.168.100.0/24,192.168.50.0/24" -msgstr "" +msgstr "カンマ区切りの複数ネットワーク。例: 192.168.100.0/24,192.168.50.0/24" #: ../../godmode/servers/manage_recontask_form.php:231 msgid "Script field #2" @@ -20381,7 +20402,7 @@ msgstr "スクリプトフィールド #2" msgid "" "several communities separated by comma. For example: " "snmp_community,public,private " -msgstr "" +msgstr "カンマ区切りの複数コミュニティ。例: snmp_community,public,private " #: ../../godmode/servers/manage_recontask_form.php:235 msgid "Script field #3" @@ -20455,12 +20476,12 @@ msgstr "Nagios" msgid "" "This value only will be applied if is minor than the server general " "configuration plugin timeout" -msgstr "" +msgstr "この値は、サーバ全体のプラグインタイムアウトよりも小さい場合に適用されます。" #: ../../godmode/servers/plugin.php:119 msgid "" "If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "" +msgstr "タイムアウトを 0 に設定すると、サーバプラグインのタイムアウトが利用されます。" #: ../../godmode/servers/plugin.php:162 msgid "Plugin command" @@ -20468,7 +20489,7 @@ msgstr "プラグインコマンド" #: ../../godmode/servers/plugin.php:170 msgid "Plug-in parameters" -msgstr "" +msgstr "プラグインパラメータ" #: ../../godmode/servers/plugin.php:178 #: ../../godmode/alerts/configure_alert_action.php:143 @@ -20487,7 +20508,7 @@ msgstr "コマンド" #: ../../godmode/servers/plugin.php:271 msgid "Parameters macros" -msgstr "" +msgstr "パラメータマクロ" #: ../../godmode/servers/plugin.php:294 msgid "Plugins registered in Pandora FMS" @@ -20519,7 +20540,7 @@ msgstr "プラグインを削除しました。" #: ../../godmode/servers/plugin.php:463 msgid "All the modules that are using this plugin will be deleted" -msgstr "" +msgstr "このプラグインを利用している全モジュールを削除します。" #: ../../godmode/servers/plugin.php:469 msgid "There are no plugins in the system" @@ -20529,7 +20550,7 @@ msgstr "プラグインがありません。" msgid "" "The plugin command cannot be updated because some modules or components are " "using the plugin." -msgstr "" +msgstr "このプラグインを利用しているモジュールまたはコンポーネントがあるため、プラグインコマンドを更新できません。" #: ../../godmode/servers/manage_recontask.php:43 msgid "Successfully deleted recon task" @@ -20621,11 +20642,11 @@ msgstr "プロファイルの削除に失敗しました。" #: ../../godmode/users/user_list.php:170 msgid "There was a problem disabling user" -msgstr "" +msgstr "ユーザの無効化で問題が発生しました。" #: ../../godmode/users/user_list.php:175 msgid "There was a problem enabling user" -msgstr "" +msgstr "ユーザの有効化で問題が発生しました。" #: ../../godmode/users/user_list.php:266 msgid "First name" @@ -20693,7 +20714,7 @@ msgstr "エージェント編集" #: ../../godmode/users/configure_profile.php:158 msgid "Disable agents" -msgstr "" +msgstr "エージェント無効化" #: ../../godmode/users/configure_profile.php:160 msgid "Edit alerts" @@ -20709,7 +20730,7 @@ msgstr "データベース管理" #: ../../godmode/users/configure_profile.php:170 msgid "Edit reports" -msgstr "" +msgstr "レポート編集" #: ../../godmode/users/configure_profile.php:172 msgid "Manage reports" @@ -20717,7 +20738,7 @@ msgstr "レポート管理" #: ../../godmode/users/configure_profile.php:176 msgid "Edit events" -msgstr "" +msgstr "イベント編集" #: ../../godmode/users/configure_profile.php:180 msgid "Pandora management" @@ -20778,35 +20799,35 @@ msgstr "グローバル設定を利用します。" #: ../../godmode/users/configure_user.php:473 msgid "Metaconsole access" -msgstr "" +msgstr "メタコンソールアクセス" #: ../../godmode/users/configure_user.php:481 msgid "Not Login" -msgstr "" +msgstr "ログイン不可" #: ../../godmode/users/configure_user.php:482 msgid "The user with not login set only can access to API." -msgstr "" +msgstr "ログイン不可を設定した場合、APIアクセスのみが可能です。" #: ../../godmode/users/configure_user.php:488 msgid "Enable agents managment" -msgstr "" +msgstr "エージェント管理の有効化" #: ../../godmode/users/configure_user.php:495 msgid "Assigned node" -msgstr "" +msgstr "割り当てノード" #: ../../godmode/users/configure_user.php:495 msgid "Server where the agents managed of this user will be placed" -msgstr "" +msgstr "このユーザで管理するエージェントがあるサーバです" #: ../../godmode/users/configure_user.php:507 msgid "Enable node access" -msgstr "" +msgstr "ノードアクセスを利用する" #: ../../godmode/users/configure_user.php:507 msgid "With this option enabled, the user will can access to nodes console" -msgstr "" +msgstr "このオプションを有効化すると、ユーザはノードコンソールにアクセスできます。" #: ../../godmode/users/profile_list.php:150 msgid "There was a problem updating this profile" @@ -20839,7 +20860,7 @@ msgstr "エージェントからの情報取得" #: ../../godmode/users/profile_list.php:207 msgid "Agents disable" -msgstr "" +msgstr "エージェント無効化" #: ../../godmode/users/profile_list.php:208 msgid "Alerts editing" @@ -20859,11 +20880,11 @@ msgstr "アラート管理" #: ../../godmode/users/profile_list.php:212 msgid "Reports reading" -msgstr "" +msgstr "レポート参照" #: ../../godmode/users/profile_list.php:213 msgid "Reports writing" -msgstr "" +msgstr "レポート編集" #: ../../godmode/users/profile_list.php:214 msgid "Reports management" @@ -20871,11 +20892,11 @@ msgstr "レポート管理" #: ../../godmode/users/profile_list.php:215 msgid "Events reading" -msgstr "" +msgstr "イベント参照" #: ../../godmode/users/profile_list.php:216 msgid "Events writing" -msgstr "" +msgstr "イベント編集" #: ../../godmode/users/profile_list.php:217 msgid "Events management" @@ -21162,19 +21183,19 @@ msgstr "この後ろに移動:" #: ../../godmode/reporting/reporting_builder.list_items.php:444 msgid "Delete items" -msgstr "" +msgstr "アイテム削除" #: ../../godmode/reporting/reporting_builder.list_items.php:445 msgid "Delete selected items from position: " -msgstr "" +msgstr "次の位置から選択したアイテムを削除: " #: ../../godmode/reporting/reporting_builder.list_items.php:447 msgid "Delete above to" -msgstr "" +msgstr "この上を削除" #: ../../godmode/reporting/reporting_builder.list_items.php:447 msgid "Delete below to" -msgstr "" +msgstr "この下を削除" #: ../../godmode/reporting/reporting_builder.list_items.php:475 msgid "" @@ -21188,11 +21209,11 @@ msgstr "並び替えるアイテムを選択してください" #: ../../godmode/reporting/reporting_builder.list_items.php:521 msgid "Are you sure to delete the items into the report?\\n" -msgstr "" +msgstr "レポートのアイテムを削除しても良いですか?\\n" #: ../../godmode/reporting/reporting_builder.list_items.php:543 msgid "Please select any item to delete" -msgstr "" +msgstr "削除するアイテムを選択してください" #: ../../godmode/reporting/visual_console_builder.wizard.php:94 msgid "Range between elements (px)" @@ -21217,7 +21238,7 @@ msgstr "エージェント - モジュール" #: ../../godmode/reporting/visual_console_builder.wizard.php:182 msgid "Enable link agent" -msgstr "" +msgstr "エージェントリンクの有効化" #: ../../godmode/reporting/visual_console_builder.wizard.php:191 #: ../../godmode/reporting/visual_console_builder.wizard.php:196 @@ -21236,7 +21257,7 @@ msgstr "グラフ数" #: ../../godmode/reporting/graphs.php:193 msgid "There are no defined graphs" -msgstr "" +msgstr "定義済のグラフがありません" #: ../../godmode/reporting/graphs.php:199 msgid "Create graph" @@ -21287,25 +21308,25 @@ msgstr "最初の文字には [ または ( を使ってください。例えば #: ../../godmode/reporting/reporting_builder.main.php:65 msgid "Only the group can view the report" -msgstr "" +msgstr "レポートを参照できるグループ" #: ../../godmode/reporting/reporting_builder.main.php:66 msgid "The next group can edit the report" -msgstr "" +msgstr "次のグループがレポートを編集可能" #: ../../godmode/reporting/reporting_builder.main.php:67 msgid "Only the user and admin user can edit the report" -msgstr "" +msgstr "ユーザと管理者のみがレポートを編集可能" #: ../../godmode/reporting/reporting_builder.main.php:69 msgid "Write Access" -msgstr "" +msgstr "書き込みアクセス" #: ../../godmode/reporting/reporting_builder.main.php:70 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 "" +msgstr "例えば、\"全て\"グループのユーザが参照はできるが、自分または自分のグループのみが編集可能。" #: ../../godmode/reporting/visual_console_builder.php:89 msgid "Successfully update." @@ -21345,7 +21366,7 @@ msgstr "値 (平均値)" #: ../../godmode/reporting/reporting_builder.item_editor.php:470 msgid "Not valid" -msgstr "" +msgstr "不正です" #: ../../godmode/reporting/reporting_builder.item_editor.php:868 msgid "Target server" @@ -21353,27 +21374,27 @@ msgstr "対象サーバ" #: ../../godmode/reporting/reporting_builder.item_editor.php:978 msgid "Greater or equal (>=)" -msgstr "" +msgstr "以上 (>=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:979 msgid "Less or equal (<=)" -msgstr "" +msgstr "以下 (<=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:980 msgid "Less (<)" -msgstr "" +msgstr "未満 (<)" #: ../../godmode/reporting/reporting_builder.item_editor.php:981 msgid "Greater (>)" -msgstr "" +msgstr "超えて (>)" #: ../../godmode/reporting/reporting_builder.item_editor.php:982 msgid "Equal (=)" -msgstr "" +msgstr "同じ (=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:983 msgid "Not equal (!=)" -msgstr "" +msgstr "異なる (!=)" #: ../../godmode/reporting/reporting_builder.item_editor.php:1106 msgid "Please save the SLA for start to add items in this list." @@ -21411,16 +21432,16 @@ msgstr "リモートエージェント設定" #: ../../godmode/agentes/modificar_agente.php:525 msgid "Enable agent" -msgstr "" +msgstr "エージェントの有効化" #: ../../godmode/agentes/modificar_agente.php:530 msgid "Disable agent" -msgstr "" +msgstr "エージェントの無効化" #: ../../godmode/agentes/module_manager_editor.php:390 #, php-format msgid "DEBUG: Invalid module type specified in %s:%s" -msgstr "" +msgstr "DEBUG: %s:%s にて不正なモジュールタイプが指定されました" #: ../../godmode/agentes/module_manager_editor.php:392 msgid "" @@ -21431,6 +21452,11 @@ msgid "" "#2124706 for the solution)
\n" "\t\t\t\t3) found a new bug - please report a way to duplicate this error" msgstr "" +"Pandora の初期バージョンからアップグレードをした可能性があります。また、次の可能性があります。
\n" +"\t\t\t\t1) データベースコンバーターの利用を忘れている
\n" +"\t\t\t\t2) 正しくないバージョンのデータベースコンバーターを利用した (解決方法はバグレポート #2124706 を参照してください)
\n" +"\t\t\t\t3) 新しいバグに遭遇した - このエラーを再現する方法をお知らせください" #: ../../godmode/agentes/module_manager_editor.php:460 msgid "No module to predict" @@ -21504,11 +21530,11 @@ msgstr "" #: ../../godmode/agentes/module_manager_editor_common.php:314 msgid "Any value below this number is discarted." -msgstr "" +msgstr "この数値よりも小さい値は破棄されます。" #: ../../godmode/agentes/module_manager_editor_common.php:316 msgid "Any value over this number is discarted." -msgstr "" +msgstr "この数値よりも大きい値は破棄されます。" #: ../../godmode/agentes/module_manager_editor_common.php:318 #: ../../godmode/massive/massive_edit_modules.php:398 @@ -21523,7 +21549,7 @@ msgstr "エクスポートサーバを利用している場合は、このモジ #: ../../godmode/agentes/module_manager_editor_common.php:405 msgid "The module still stores data but the alerts and events will be stop" -msgstr "" +msgstr "モジュールはデータ保存を行いますが、アラートとイベントは停止します。" #: ../../godmode/agentes/module_manager_editor_common.php:422 msgid "Cron" @@ -21533,7 +21559,7 @@ msgstr "Cron" msgid "" "If cron is set the module interval is ignored and the module runs on the " "specified date and time" -msgstr "" +msgstr "cron が設定されている場合、module interval は無視されます。また、モジュールは特定の日時に実行されます。" #: ../../godmode/agentes/module_manager_editor_common.php:426 msgid "Timeout" @@ -21541,15 +21567,15 @@ msgstr "タイムアウト" #: ../../godmode/agentes/module_manager_editor_common.php:427 msgid "Seconds that agent will wait for the execution of the module." -msgstr "" +msgstr "エージェントがモジュールの実行を待つ秒数です。" #: ../../godmode/agentes/module_manager_editor_common.php:429 msgid "Retries" -msgstr "" +msgstr "再実行" #: ../../godmode/agentes/module_manager_editor_common.php:430 msgid "Number of retries that the module will attempt to run." -msgstr "" +msgstr "モジュールの再実行回数。" #: ../../godmode/agentes/agent_conf_gis.php:46 msgid "" @@ -21635,20 +21661,20 @@ msgstr "エージェントのロードに失敗しました。" msgid "" "There was a problem updating module. Another module already exists with the " "same name." -msgstr "" +msgstr "モジュールの更新で問題が発生しました。同じ名前で他のモジュールがすでにあります。" #: ../../godmode/agentes/configurar_agente.php:912 msgid "" "There was a problem updating module. Some required fields are missed: (name)" -msgstr "" +msgstr "モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)" #: ../../godmode/agentes/configurar_agente.php:915 msgid "There was a problem updating module. \"No change\"" -msgstr "" +msgstr "モジュールの更新で問題が発生しました。変更されていません。" #: ../../godmode/agentes/configurar_agente.php:920 msgid "There was a problem updating module. Processing error" -msgstr "" +msgstr "モジュールの更新で問題が発生しました。処理エラー。" #: ../../godmode/agentes/configurar_agente.php:939 msgid "Module successfully updated" @@ -21658,16 +21684,16 @@ msgstr "モジュールの更新が完了しました。" msgid "" "There was a problem adding module. Another module already exists with the " "same name." -msgstr "" +msgstr "モジュールの追加で問題が発生しました。同じ名前で他のモジュールがすでにあります。" #: ../../godmode/agentes/configurar_agente.php:1032 msgid "" "There was a problem adding module. Some required fields are missed : (name)" -msgstr "" +msgstr "モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)" #: ../../godmode/agentes/configurar_agente.php:1037 msgid "There was a problem adding module. Processing error" -msgstr "" +msgstr "モジュールの追加で問題が発生しました。処理エラー" #: ../../godmode/agentes/configurar_agente.php:1201 msgid "There was a problem deleting the module" @@ -21689,20 +21715,20 @@ msgstr "%s (%d) のコピー" #: ../../godmode/agentes/configurar_agente.php:1302 msgid "Save by Pandora Console" -msgstr "" +msgstr "Pandoraコンソールによる保存" #: ../../godmode/agentes/configurar_agente.php:1317 msgid "Update by Pandora Console" -msgstr "" +msgstr "Pandoraコンソールによる更新" #: ../../godmode/agentes/configurar_agente.php:1330 msgid "Insert by Pandora Console" -msgstr "" +msgstr "Pandoraコンソールによる挿入" #: ../../godmode/agentes/configurar_agente.php:1382 #: ../../godmode/agentes/configurar_agente.php:1389 msgid "Invalid tab specified" -msgstr "" +msgstr "不正なタブが指定されました" #: ../../godmode/agentes/fields_manager.php:31 msgid "Agents custom fields manager" @@ -21761,35 +21787,35 @@ msgstr "計画停止には名前が必要です" #: ../../godmode/agentes/planned_downtime.editor.php:314 #: ../../godmode/agentes/planned_downtime.list.php:234 msgid "Disabled Agents" -msgstr "" +msgstr "エージェント無効化" #: ../../godmode/agentes/planned_downtime.editor.php:315 #: ../../godmode/agentes/planned_downtime.list.php:235 msgid "Disabled only Alerts" -msgstr "" +msgstr "アラートのみ無効化" #: ../../godmode/agentes/planned_downtime.editor.php:318 #: ../../godmode/agentes/planned_downtime.list.php:196 msgid "Execution" -msgstr "" +msgstr "実行" #: ../../godmode/agentes/planned_downtime.editor.php:319 #: ../../godmode/agentes/planned_downtime.list.php:239 msgid "once" -msgstr "" +msgstr "一回" #: ../../godmode/agentes/planned_downtime.editor.php:320 #: ../../godmode/agentes/planned_downtime.list.php:240 msgid "Periodically" -msgstr "" +msgstr "定期的" #: ../../godmode/agentes/planned_downtime.editor.php:324 msgid "Configure the time" -msgstr "" +msgstr "時間設定" #: ../../godmode/agentes/planned_downtime.editor.php:347 msgid "Type Periodicity:" -msgstr "" +msgstr "定期実行タイプ:" #: ../../godmode/agentes/planned_downtime.editor.php:384 msgid "From day:" @@ -21817,11 +21843,11 @@ msgstr "グループでフィルタする" #: ../../godmode/agentes/planned_downtime.editor.php:488 msgid "Available modules:" -msgstr "" +msgstr "存在するモジュール:" #: ../../godmode/agentes/planned_downtime.editor.php:489 msgid "Only for type Quiet for downtimes." -msgstr "" +msgstr "静観タイプの計画停止のみ" #: ../../godmode/agentes/planned_downtime.editor.php:503 msgid "Agents planned for this downtime" @@ -21837,7 +21863,7 @@ msgstr "全アラート" #: ../../godmode/agentes/planned_downtime.editor.php:548 msgid "Entire agent" -msgstr "" +msgstr "エージェント全体" #: ../../godmode/agentes/planned_downtime.editor.php:552 #: ../../godmode/agentes/planned_downtime.editor.php:658 @@ -21848,11 +21874,11 @@ msgstr "全モジュール" #: ../../godmode/agentes/planned_downtime.editor.php:650 #: ../../godmode/agentes/planned_downtime.editor.php:654 msgid "Some modules" -msgstr "" +msgstr "いくつかのモジュール" #: ../../godmode/agentes/planned_downtime.editor.php:622 msgid "Add Module:" -msgstr "" +msgstr "モジュール追加:" #: ../../godmode/agentes/planned_downtime.editor.php:833 msgid "Please select a module." @@ -21860,16 +21886,16 @@ msgstr "モジュールを選択してください。" #: ../../godmode/agentes/planned_downtime.list.php:65 msgid "Succesful stopped the Downtime" -msgstr "" +msgstr "計画停止を中止しました" #: ../../godmode/agentes/planned_downtime.list.php:66 msgid "Unsuccesful stopped the Downtime" -msgstr "" +msgstr "計画停止の中止ができませんでした" #: ../../godmode/agentes/planned_downtime.list.php:166 #, php-format msgid "Enabled %s elements from the downtime" -msgstr "" +msgstr "計画停止から、%s 要素を有効にしました" #: ../../godmode/agentes/planned_downtime.list.php:192 msgid "Name #Ag." @@ -21989,11 +22015,11 @@ msgstr "" #: ../../godmode/agentes/module_manager.php:671 msgid "Create network component" -msgstr "" +msgstr "ネットワークコンポーネント作成" #: ../../godmode/agentes/module_manager.php:676 msgid "Create network component (Disabled)" -msgstr "" +msgstr "ネットワークコンポーネント(無効化)作成" #: ../../godmode/agentes/module_manager_editor_network.php:25 msgid "Use this OID" @@ -22069,11 +22095,11 @@ msgstr "GISマップのエージェントアイコン" #: ../../godmode/agentes/agent_manager.php:320 #: ../../godmode/massive/massive_edit_agents.php:360 msgid "The agent still runs but the alerts and events will be stop" -msgstr "" +msgstr "エージェントは動作継続しますが、アラートとイベントは停止します。" #: ../../godmode/agentes/agent_incidents.php:58 msgid "No incidents associated to this agent" -msgstr "" +msgstr "このエージェントに関連付けられたインシデントはありません" #: ../../godmode/agentes/module_manager_editor_data.php:17 msgid "Data server module" @@ -22129,7 +22155,7 @@ msgstr "タグ管理" #: ../../godmode/menu.php:92 msgid "Manage categories" -msgstr "" +msgstr "カテゴリ管理" #: ../../godmode/menu.php:95 msgid "Module types" @@ -22153,7 +22179,7 @@ msgstr "カスタムイベント" #: ../../godmode/menu.php:163 ../../godmode/events/events.php:44 msgid "Event responses" -msgstr "" +msgstr "イベントレスポンス" #: ../../godmode/menu.php:172 msgid "Manage servers" @@ -22295,27 +22321,27 @@ msgstr "子のサブグループへ同じ ACL を適用します。" #: ../../godmode/groups/configure_group.php:142 msgid "Contact" -msgstr "" +msgstr "連絡先" #: ../../godmode/groups/configure_group.php:142 msgid "Contact information accessible through the _groupcontact_ macro" -msgstr "" +msgstr "_groupcontact_ マクロで参照できる連絡先情報" #: ../../godmode/groups/configure_group.php:145 msgid "Information accessible through the _group_other_ macro" -msgstr "" +msgstr "_group_other_ マクロで参照できる情報" #: ../../godmode/category/edit_category.php:40 #: ../../godmode/category/category.php:41 msgid "List categories" -msgstr "" +msgstr "カテゴリ一覧" #: ../../godmode/category/edit_category.php:46 #: ../../godmode/category/edit_category.php:49 #: ../../godmode/category/category.php:47 #: ../../godmode/category/category.php:50 msgid "Categories configuration" -msgstr "" +msgstr "カテゴリ設定" #: ../../godmode/category/edit_category.php:65 msgid "Error updating category" @@ -22386,31 +22412,31 @@ msgstr "トラップタイプ" #: ../../godmode/snmpconsole/snmp_alert.php:279 msgid "Single value" -msgstr "" +msgstr "単一値" #: ../../godmode/snmpconsole/snmp_alert.php:284 msgid "Custom OID/Data #1" -msgstr "" +msgstr "カスタム OID/データ #1" #: ../../godmode/snmpconsole/snmp_alert.php:292 msgid "Custom OID/Data #2" -msgstr "" +msgstr "カスタム OID/データ #2" #: ../../godmode/snmpconsole/snmp_alert.php:300 msgid "Custom OID/Data #3" -msgstr "" +msgstr "カスタム OID/データ #3" #: ../../godmode/snmpconsole/snmp_alert.php:308 msgid "Custom OID/Data #4" -msgstr "" +msgstr "カスタム OID/データ #4" #: ../../godmode/snmpconsole/snmp_alert.php:316 msgid "Custom OID/Data #5" -msgstr "" +msgstr "カスタム OID/データ #5" #: ../../godmode/snmpconsole/snmp_alert.php:324 msgid "Custom OID/Data #6" -msgstr "" +msgstr "カスタム OID/データ #6" #: ../../godmode/snmpconsole/snmp_alert.php:383 msgid "Other value" @@ -22795,27 +22821,27 @@ msgstr "モジュールはデータ保存を行いますが、アラートとイ #: ../../godmode/events/event_responses.editor.php:72 msgid "Location" -msgstr "" +msgstr "場所" #: ../../godmode/events/event_responses.editor.php:72 msgid "For Command type Modal Window mode is enforced" -msgstr "" +msgstr "コマンド入力に既存ウィンドウモードが利用されます" #: ../../godmode/events/event_responses.editor.php:73 msgid "Modal window" -msgstr "" +msgstr "既存ウィンドウ" #: ../../godmode/events/event_responses.editor.php:73 msgid "New window" -msgstr "" +msgstr "新規ウィンドウ" #: ../../godmode/events/event_responses.list.php:30 msgid "Create response" -msgstr "" +msgstr "レスポンスの作成" #: ../../godmode/events/event_responses.list.php:44 msgid "No responses found" -msgstr "" +msgstr "レスポンスがありません" #: ../../godmode/events/event_edit_filter.php:166 msgid "" @@ -22824,43 +22850,43 @@ msgstr "" #: ../../godmode/events/event_edit_filter.php:221 msgid "Choose between the users who have validated an event. " -msgstr "" +msgstr "イベントを承諾したユーザの中から選択してください。 " #: ../../godmode/events/event_responses.php:52 msgid "Response added succesfully" -msgstr "" +msgstr "レスポンスを追加しました" #: ../../godmode/events/event_responses.php:55 msgid "Response cannot be added" -msgstr "" +msgstr "レスポンスを追加できません" #: ../../godmode/events/event_responses.php:81 msgid "Response updated succesfully" -msgstr "" +msgstr "レスポンスを更新しました" #: ../../godmode/events/event_responses.php:84 msgid "Response cannot be updated" -msgstr "" +msgstr "レスポンスを更新できません" #: ../../godmode/events/event_responses.php:93 msgid "Response deleted succesfully" -msgstr "" +msgstr "レスポンスを削除しました" #: ../../godmode/events/event_responses.php:96 msgid "Response cannot be deleted" -msgstr "" +msgstr "レスポンスを削除できません" #: ../../godmode/events/custom_events.php:128 msgid "Show event fields" -msgstr "" +msgstr "イベントフィールド表示" #: ../../godmode/events/custom_events.php:130 msgid "Load default event fields" -msgstr "" +msgstr "デフォルトのイベントフィールド読み込み" #: ../../godmode/events/custom_events.php:130 msgid "Default event fields will be loaded. Do you want to continue?" -msgstr "" +msgstr "デフォルトのイベントフィールドを読み込みます。続けますか?" #: ../../godmode/events/custom_events.php:176 msgid "Fields available" @@ -23000,7 +23026,7 @@ msgstr "特別日一覧を利用する" #: ../../godmode/alerts/configure_alert_template.php:527 msgid "Advanced fields management" -msgstr "" +msgstr "拡張フィールド管理" #: ../../godmode/alerts/configure_alert_template.php:540 #: ../../godmode/alerts/configure_alert_template.php:580 @@ -23008,7 +23034,7 @@ msgstr "" #: ../../godmode/alerts/alert_commands.php:73 #, php-format msgid "Field %s" -msgstr "" +msgstr "フィールド %s" #: ../../godmode/alerts/configure_alert_template.php:544 msgid "Default action" @@ -23420,7 +23446,7 @@ msgstr "エージェント/アラート" #: ../../extensions/agents_alerts.php:147 msgid "There are no agents with alerts" -msgstr "" +msgstr "アラートがついたエージェントがありません。" #: ../../extensions/agents_alerts.php:172 msgid "Previous templates" diff --git a/pandora_console/include/languages/ko.mo b/pandora_console/include/languages/ko.mo index 2210bf5e25..f4e2ac5e58 100644 Binary files a/pandora_console/include/languages/ko.mo and b/pandora_console/include/languages/ko.mo differ diff --git a/pandora_console/include/languages/ko.po b/pandora_console/include/languages/ko.po index 788b89a906..533261a6ff 100644 --- a/pandora_console/include/languages/ko.po +++ b/pandora_console/include/languages/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: ko\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/mr.mo b/pandora_console/include/languages/mr.mo index 7161150f0b..db6eb6ee50 100644 Binary files a/pandora_console/include/languages/mr.mo and b/pandora_console/include/languages/mr.mo differ diff --git a/pandora_console/include/languages/mr.po b/pandora_console/include/languages/mr.po index 8a49e01b78..c273ca7f1f 100644 --- a/pandora_console/include/languages/mr.po +++ b/pandora_console/include/languages/mr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: mr\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/nb.mo b/pandora_console/include/languages/nb.mo index f9d27e773f..837c21444a 100644 Binary files a/pandora_console/include/languages/nb.mo and b/pandora_console/include/languages/nb.mo differ diff --git a/pandora_console/include/languages/nb.po b/pandora_console/include/languages/nb.po index 8b10963615..d7154f66d5 100644 --- a/pandora_console/include/languages/nb.po +++ b/pandora_console/include/languages/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: nb\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/nl.mo b/pandora_console/include/languages/nl.mo index edf2d1c3cc..c6f7a5ea34 100644 Binary files a/pandora_console/include/languages/nl.mo and b/pandora_console/include/languages/nl.mo differ diff --git a/pandora_console/include/languages/nl.po b/pandora_console/include/languages/nl.po index e3de0a1bf4..8f23edefdd 100644 --- a/pandora_console/include/languages/nl.po +++ b/pandora_console/include/languages/nl.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: nl\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/pl.mo b/pandora_console/include/languages/pl.mo index 6c3b2751a2..4e388975bf 100644 Binary files a/pandora_console/include/languages/pl.mo and b/pandora_console/include/languages/pl.mo differ diff --git a/pandora_console/include/languages/pl.po b/pandora_console/include/languages/pl.po index fce92d1d78..1edd1fa967 100644 --- a/pandora_console/include/languages/pl.po +++ b/pandora_console/include/languages/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: pl\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/pt.mo b/pandora_console/include/languages/pt.mo index 67c87bb52d..ec37cdccf8 100644 Binary files a/pandora_console/include/languages/pt.mo and b/pandora_console/include/languages/pt.mo differ diff --git a/pandora_console/include/languages/pt.po b/pandora_console/include/languages/pt.po index 492660a693..3873d2692f 100644 --- a/pandora_console/include/languages/pt.po +++ b/pandora_console/include/languages/pt.po @@ -10,14 +10,14 @@ msgstr "" "Project-Id-Version: pandora-pt\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-04-22 18:49+0200\n" -"PO-Revision-Date: 2013-04-27 07:24+0000\n" +"PO-Revision-Date: 2013-05-16 03:00+0000\n" "Last-Translator: Maria Loureiro \n" "Language-Team: Portugues \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:12+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 @@ -500,7 +500,7 @@ msgstr "Resolução" #: ../../operation/netflow/nf_live_view.php:186 msgid "The interval will be divided in chunks the length of the resolution." -msgstr "" +msgstr "O intervalo vai ser dividido em blocos do tamanho da resolução" #: ../../operation/netflow/nf_live_view.php:192 #: ../../operation/agentes/ver_agente.php:551 @@ -6272,7 +6272,7 @@ msgstr "Navegador de SNMP" #: ../../operation/menu.php:344 #: ../../operation/snmpconsole/snmp_mib_uploader.php:30 msgid "MIB uploader" -msgstr "" +msgstr "MIB uploader" #: ../../operation/menu.php:345 ../../include/functions_menu.php:424 msgid "SNMP alerts" @@ -7802,19 +7802,19 @@ msgstr "x" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:188 msgid "Method generation networkmap" -msgstr "" +msgstr "Mapa de rede da criação do método" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:191 msgid "Refresh networkmap state" -msgstr "" +msgstr "Actualizar o estado do mapa de rede" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:193 msgid "Resize the networkmap" -msgstr "" +msgstr "Redimensionar o mapa de rede" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:194 msgid "This operation can't be undone, because it is on DB." -msgstr "" +msgstr "Esta operação não pode ser revertida porque está na BD" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:196 #: ../../include/functions_visual_map_editor.php:154 @@ -7832,11 +7832,11 @@ msgstr "atualizar o mapa de rede" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:249 msgid "Networkmap resized." -msgstr "" +msgstr "O mapa de rede foi redimensionado" #: ../../enterprise/operation/agentes/networkmap_enterprise.editor.php:256 msgid "Error process map" -msgstr "" +msgstr "Mapa de processamento de erros" #: ../../enterprise/operation/agentes/policy_view.php:37 msgid "This agent has no policy assigned" @@ -7864,7 +7864,7 @@ msgstr "Política antiga" #: ../../enterprise/operation/agentes/policy_view.php:130 #: ../../enterprise/operation/agentes/policy_view.php:137 msgid "Toggle the collection table" -msgstr "" +msgstr "Alternar a tabela de catálogo" #: ../../enterprise/operation/agentes/policy_view.php:132 #: ../../enterprise/operation/agentes/collection_view.php:60 @@ -7899,7 +7899,7 @@ msgstr "Desactualizado" #: ../../enterprise/operation/agentes/policy_view.php:192 #: ../../enterprise/operation/agentes/policy_view.php:201 msgid "Toggle the alert table" -msgstr "" +msgstr "Alternar a tabela de alertas" #: ../../enterprise/operation/agentes/policy_view.php:202 msgid "Show Alert" @@ -7918,7 +7918,7 @@ msgstr "vezes" #: ../../enterprise/operation/agentes/policy_view.php:303 #: ../../enterprise/operation/agentes/policy_view.php:312 msgid "Toggle the module table" -msgstr "" +msgstr "Alternar a tabela de modulos" #: ../../enterprise/operation/agentes/policy_view.php:304 msgid "Relationship" @@ -8096,7 +8096,7 @@ msgstr "Eliminado" #: ../../enterprise/include/functions_reporting.php:30 msgid "Wizard SLA" -msgstr "" +msgstr "SLA do Wizard" #: ../../enterprise/include/functions_reporting.php:33 msgid "Global" @@ -8109,11 +8109,11 @@ msgstr "Opções avançadas" #: ../../enterprise/include/functions_reporting.php:54 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:101 msgid "List templates" -msgstr "" +msgstr "Listar os modelos" #: ../../enterprise/include/functions_reporting.php:60 msgid "Templates wizard" -msgstr "" +msgstr "Wizard dos modelos" #: ../../enterprise/include/functions_reporting.php:76 #: ../../enterprise/include/functions_reporting.php:2741 @@ -8129,12 +8129,12 @@ msgstr "Modelos" #: ../../enterprise/include/functions_reporting.php:80 msgid "Templates Wizard" -msgstr "" +msgstr "Wizard dos modelos" #: ../../enterprise/include/functions_reporting.php:1189 #, php-format msgid "Graph agents(%s) - %s" -msgstr "" +msgstr "Agentes de gráfico(%s) - %s" #: ../../enterprise/include/functions_reporting.php:1300 #, php-format @@ -8149,16 +8149,16 @@ msgstr "%s - %s" #: ../../enterprise/include/functions_reporting.php:2773 #: ../../enterprise/include/functions_reporting.php:2823 msgid "Template editor" -msgstr "" +msgstr "Editor de modelos" #: ../../enterprise/include/functions_reporting.php:2837 msgid "Get PDF file" -msgstr "" +msgstr "Obter o ficheiro PDF" #: ../../enterprise/include/functions_license.php:109 #: ../../enterprise/include/functions_license.php:117 msgid "Invalid license, please check it." -msgstr "" +msgstr "A licensa não é válida, por favor verifique-a" #: ../../enterprise/include/functions_license.php:129 #: ../../extensions/update_manager.php:59 @@ -8168,36 +8168,36 @@ msgstr "Expira Em" #: ../../enterprise/include/functions_license.php:131 #: ../../extensions/update_manager.php:61 msgid "Platform Limit" -msgstr "" +msgstr "Limite da plataforma" #: ../../enterprise/include/functions_license.php:133 #: ../../extensions/update_manager.php:63 msgid "Current Platform Count" -msgstr "" +msgstr "Contagem da plataforma actual" #: ../../enterprise/include/functions_license.php:136 #: ../../extensions/update_manager.php:66 msgid "License Mode" -msgstr "" +msgstr "Modo de licensa" #: ../../enterprise/include/functions_reporting_csv.php:156 msgid "Generated" -msgstr "" +msgstr "Gerado" #: ../../enterprise/include/functions_reporting_csv.php:171 msgid "Simple Graph" -msgstr "" +msgstr "Gráfico simples" #: ../../enterprise/include/functions_reporting_csv.php:203 msgid "Projection Graph" -msgstr "" +msgstr "Gráfico de projecções" #: ../../enterprise/include/functions_reporting_csv.php:235 #: ../../enterprise/include/functions_reporting_pdf.php:431 #: ../../include/functions_reporting.php:3066 #: ../../include/functions_reports.php:535 msgid "Prediction date" -msgstr "" +msgstr "Data de previsão" #: ../../enterprise/include/functions_reporting_csv.php:323 #: ../../enterprise/include/functions_reporting_csv.php:413 @@ -8265,7 +8265,7 @@ msgstr "Período" #: ../../godmode/reporting/reporting_builder.item_editor.php:557 #: ../../godmode/reporting/reporting_builder.item_editor.php:960 msgid "Max" -msgstr "" +msgstr "Máx" #: ../../enterprise/include/functions_reporting_csv.php:324 #: ../../enterprise/include/functions_reporting_pdf.php:1488 @@ -8298,11 +8298,11 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:559 #: ../../godmode/reporting/reporting_builder.item_editor.php:962 msgid "Min" -msgstr "" +msgstr "Mín" #: ../../enterprise/include/functions_reporting_csv.php:324 msgid "% Limit" -msgstr "" +msgstr "% Limite" #: ../../enterprise/include/functions_reporting_csv.php:371 #: ../../enterprise/include/functions_services.php:962 @@ -8338,31 +8338,31 @@ msgstr "Falhou" #: ../../enterprise/include/functions_reporting_csv.php:724 #: ../../enterprise/include/functions_reporting_csv.php:755 msgid "Report type" -msgstr "" +msgstr "Tipo de relatório" #: ../../enterprise/include/functions_reporting_csv.php:413 msgid "% OK" -msgstr "" +msgstr "% OK" #: ../../enterprise/include/functions_reporting_csv.php:413 msgid "% Wrong" -msgstr "" +msgstr "% Errado" #: ../../enterprise/include/functions_reporting_csv.php:414 msgid "Monitor Report" -msgstr "" +msgstr "Relatório do monitor" #: ../../enterprise/include/functions_reporting_csv.php:445 msgid "AVG. Value" -msgstr "" +msgstr "Valor AVG" #: ../../enterprise/include/functions_reporting_csv.php:476 msgid "MAX Value" -msgstr "" +msgstr "Valor MAX" #: ../../enterprise/include/functions_reporting_csv.php:507 msgid "MIN Value" -msgstr "" +msgstr "Valor MIN" #: ../../enterprise/include/functions_reporting_csv.php:538 #: ../../include/functions_reporting.php:3631 @@ -8370,12 +8370,12 @@ msgstr "" #: ../../include/functions_reporting.php:4560 #: ../../include/functions_reports.php:552 msgid "Summatory" -msgstr "" +msgstr "Somatório" #: ../../enterprise/include/functions_reporting_csv.php:613 #: ../../include/functions_reporting.php:3841 msgid "Illegal query" -msgstr "" +msgstr "Pesquisa não autorizada" #: ../../enterprise/include/functions_reporting_csv.php:724 #: ../../enterprise/dashboard/widgets/tactical.php:154 @@ -8385,54 +8385,54 @@ msgstr "Total de agentes" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Uknown agents" -msgstr "" +msgstr "Agentes desconhecidos" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Total modules" -msgstr "" +msgstr "Modulos totais" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Normal modules" -msgstr "" +msgstr "Modulos normais" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Critical modules" -msgstr "" +msgstr "Modulos críticos" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Warning modules" -msgstr "" +msgstr "Modulos de aviso" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Unknown modules" -msgstr "" +msgstr "Modulos desconhecidos" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Not init modules" -msgstr "" +msgstr "Modulos not init" #: ../../enterprise/include/functions_reporting_csv.php:724 #: ../../include/functions_reporting.php:1131 #: ../../include/functions_graph.php:1355 msgid "Defined alerts" -msgstr "" +msgstr "Definir alertas" #: ../../enterprise/include/functions_reporting_csv.php:724 #: ../../include/functions_reporting.php:1135 #: ../../include/functions_graph.php:1355 msgid "Fired alerts" -msgstr "" +msgstr "Alertas disparados" #: ../../enterprise/include/functions_reporting_csv.php:724 msgid "Last 8 hours events" -msgstr "" +msgstr "Eventos das últimas 8 horas" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/functions_reporting_pdf.php:785 #: ../../include/functions_reporting.php:4305 #: ../../include/functions_reports.php:559 msgid "Group report" -msgstr "" +msgstr "RElatório de groupo" #: ../../enterprise/include/functions_reporting_csv.php:774 #: ../../enterprise/include/functions_reporting_pdf.php:855 @@ -8445,7 +8445,7 @@ msgstr "" #: ../../godmode/setup/setup.php:73 ../../godmode/setup/setup.php:107 #: ../../godmode/servers/plugin.php:133 msgid "General" -msgstr "" +msgstr "Geral" #: ../../enterprise/include/functions_reporting_csv.php:804 #: ../../enterprise/include/functions_reporting_csv.php:925 @@ -8455,7 +8455,7 @@ msgstr "" #: ../../include/functions_reporting.php:4942 #: ../../include/functions_reporting.php:5227 msgid "There are no Agent/Modules defined" -msgstr "" +msgstr "Não existem Agentes/Modulos definidos" #: ../../enterprise/include/functions_reporting_csv.php:888 #: ../../enterprise/include/functions_reporting_pdf.php:1497 @@ -8470,7 +8470,7 @@ msgstr "Topo" #: ../../include/functions_reporting.php:5178 #: ../../include/functions_reports.php:561 msgid "Exception" -msgstr "" +msgstr "Excepção" #: ../../enterprise/include/functions_reporting_csv.php:1017 #: ../../enterprise/include/functions_reporting_pdf.php:1199 @@ -8479,7 +8479,7 @@ msgstr "" #: ../../include/functions_reporting.php:5181 #: ../../godmode/reporting/reporting_builder.item_editor.php:977 msgid "Everything" -msgstr "" +msgstr "Tudo" #: ../../enterprise/include/functions_reporting_csv.php:1020 #: ../../enterprise/include/functions_reporting_pdf.php:1202 @@ -8487,21 +8487,21 @@ msgstr "" #: ../../include/functions_reporting.php:5184 #: ../../include/functions_reporting.php:5385 msgid "Modules over or equal to" -msgstr "" +msgstr "Modulos maiores ou iguais a" #: ../../enterprise/include/functions_reporting_csv.php:1023 #: ../../enterprise/include/functions_reporting_pdf.php:1205 #: ../../enterprise/include/functions_reporting_pdf.php:1366 #: ../../include/functions_reporting.php:5190 msgid "Modules under" -msgstr "" +msgstr "Modulos mais pequenos" #: ../../enterprise/include/functions_reporting_csv.php:1026 #: ../../enterprise/include/functions_reporting_pdf.php:1208 #: ../../enterprise/include/functions_reporting_pdf.php:1370 #: ../../include/functions_reporting.php:5202 msgid "Modules at normal status" -msgstr "" +msgstr "Modulos num estado normal" #: ../../enterprise/include/functions_reporting_csv.php:1029 #: ../../enterprise/include/functions_reporting_pdf.php:1211 diff --git a/pandora_console/include/languages/pt_BR.mo b/pandora_console/include/languages/pt_BR.mo index 36012bcd51..3bf330f1f8 100644 Binary files a/pandora_console/include/languages/pt_BR.mo and b/pandora_console/include/languages/pt_BR.mo differ diff --git a/pandora_console/include/languages/pt_BR.po b/pandora_console/include/languages/pt_BR.po index 3d1f6f99c9..d2351f2857 100644 --- a/pandora_console/include/languages/pt_BR.po +++ b/pandora_console/include/languages/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../godmode/users/profile_list.php:202 diff --git a/pandora_console/include/languages/ro.mo b/pandora_console/include/languages/ro.mo index 3a97850ecc..a706c54111 100644 Binary files a/pandora_console/include/languages/ro.mo and b/pandora_console/include/languages/ro.mo differ diff --git a/pandora_console/include/languages/ro.po b/pandora_console/include/languages/ro.po index 0243abfb02..56503e9aff 100644 --- a/pandora_console/include/languages/ro.po +++ b/pandora_console/include/languages/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: ro\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/ru.mo b/pandora_console/include/languages/ru.mo index 826ac91877..857db5a450 100644 Binary files a/pandora_console/include/languages/ru.mo and b/pandora_console/include/languages/ru.mo differ diff --git a/pandora_console/include/languages/ru.po b/pandora_console/include/languages/ru.po index 56195a62f7..6759bc0eef 100644 --- a/pandora_console/include/languages/ru.po +++ b/pandora_console/include/languages/ru.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: ru\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/sk.mo b/pandora_console/include/languages/sk.mo index 9fb15ef365..e5524a4a9e 100644 Binary files a/pandora_console/include/languages/sk.mo and b/pandora_console/include/languages/sk.mo differ diff --git a/pandora_console/include/languages/sk.po b/pandora_console/include/languages/sk.po index 3bd58b903a..62f69441ae 100644 --- a/pandora_console/include/languages/sk.po +++ b/pandora_console/include/languages/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: sk\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/sl.mo b/pandora_console/include/languages/sl.mo index cb427ceb74..9b41624b38 100644 Binary files a/pandora_console/include/languages/sl.mo and b/pandora_console/include/languages/sl.mo differ diff --git a/pandora_console/include/languages/sl.po b/pandora_console/include/languages/sl.po index 4712bc66af..09f50e28bf 100644 --- a/pandora_console/include/languages/sl.po +++ b/pandora_console/include/languages/sl.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: sl\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/sv.mo b/pandora_console/include/languages/sv.mo index 7240a56bd9..884a44b72a 100644 Binary files a/pandora_console/include/languages/sv.mo and b/pandora_console/include/languages/sv.mo differ diff --git a/pandora_console/include/languages/sv.po b/pandora_console/include/languages/sv.po index e94c959535..7648953672 100644 --- a/pandora_console/include/languages/sv.po +++ b/pandora_console/include/languages/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: sv\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/te.mo b/pandora_console/include/languages/te.mo index 41878765ee..ad6b5c9aef 100644 Binary files a/pandora_console/include/languages/te.mo and b/pandora_console/include/languages/te.mo differ diff --git a/pandora_console/include/languages/te.po b/pandora_console/include/languages/te.po index 82e5110c30..8231605293 100644 --- a/pandora_console/include/languages/te.po +++ b/pandora_console/include/languages/te.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:58+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: te\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/tr.mo b/pandora_console/include/languages/tr.mo index 1da31a66aa..0581f143fa 100644 Binary files a/pandora_console/include/languages/tr.mo and b/pandora_console/include/languages/tr.mo differ diff --git a/pandora_console/include/languages/tr.po b/pandora_console/include/languages/tr.po index ef18c3ac4d..b6ab1d8fb0 100644 --- a/pandora_console/include/languages/tr.po +++ b/pandora_console/include/languages/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:14+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: tr\n" #: ../../operation/gis_maps/ajax.php:185 diff --git a/pandora_console/include/languages/uk.mo b/pandora_console/include/languages/uk.mo index 2c19827d70..4ab5e9021e 100644 Binary files a/pandora_console/include/languages/uk.mo and b/pandora_console/include/languages/uk.mo differ diff --git a/pandora_console/include/languages/uk.po b/pandora_console/include/languages/uk.po index 2b76dc66c0..97491b0736 100644 --- a/pandora_console/include/languages/uk.po +++ b/pandora_console/include/languages/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: uk\n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/zh_CN.mo b/pandora_console/include/languages/zh_CN.mo index 8e7a505fce..d5c2a15587 100644 Binary files a/pandora_console/include/languages/zh_CN.mo and b/pandora_console/include/languages/zh_CN.mo differ diff --git a/pandora_console/include/languages/zh_CN.po b/pandora_console/include/languages/zh_CN.po index 306e9f2e7f..f53f5a4e3e 100644 --- a/pandora_console/include/languages/zh_CN.po +++ b/pandora_console/include/languages/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/include/languages/zh_TW.mo b/pandora_console/include/languages/zh_TW.mo index a654bd9ec7..d2e07271b0 100644 Binary files a/pandora_console/include/languages/zh_TW.mo and b/pandora_console/include/languages/zh_TW.mo differ diff --git a/pandora_console/include/languages/zh_TW.po b/pandora_console/include/languages/zh_TW.po index 48080f2686..824cc8fd8f 100644 --- a/pandora_console/include/languages/zh_TW.po +++ b/pandora_console/include/languages/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-14 08:57+0000\n" -"X-Generator: Launchpad (build 16617)\n" +"X-Launchpad-Export-Date: 2013-07-11 07:13+0000\n" +"X-Generator: Launchpad (build 16696)\n" "Language: \n" #: ../../operation/search_main.php:33 diff --git a/pandora_console/pandoradb.data.oracle.sql b/pandora_console/pandoradb.data.oracle.sql index 3debb73eac..0174d9e4cf 100644 --- a/pandora_console/pandoradb.data.oracle.sql +++ b/pandora_console/pandoradb.data.oracle.sql @@ -1214,7 +1214,7 @@ INSERT INTO trecon_script VALUES (1,'SNMP Recon Script','This scr INSERT INTO trecon_script VALUES (2,'IMPI Recon', 'Specific Pandora FMS Intel DCM Discovery (c) Artica ST 2011 Usage: ./ipmi-recon.pl * custom_field1 = network. i.e.: 192.168.100.0/24 * custom_field2 = username * custom_fiedl3 = password ', '/usr/share/pandora_server/util/recon_scripts/ipmi-recon.pl'); -INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (1,'IPMI Plugin','Plugin to get IPMI monitors from a IPMI Device.',0,'/usr/share/pandora_server/util/plugin/ipmi-plugin.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":""}}','-h _field1_-u _field2_-p _field3_'),(2,'DNS Plugin','This plugin is used to check if a specific domain return a specific IP address, and to check how time (milisecs) takes the DNS to answer. Use IP address parameter to specify the IP of your domain. Use these custom parameters for the other parameters: -d domain to check (for example pandorafms.com) -s DNS Server to check (for example 8.8.8.8) Optional parameters: -t Do a DNS time response check instead DNS resolve test ',15,'/usr/share/pandora_server/util/plugin/dns_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Domain to check","help":"For example pandorafms.com","value":""},"3":{"macro":"_field3_","desc":"DNS Server to check","help":"For example 8.8.8.8","value":""},"4":{"macro":"_field4_","desc":"Optional parameters","help":"","value":""}}','-i _field1_ -d _field2_ -s _field3_ _field4_'),(3,'UDP port check','Check a remote UDP port (by using NMAP). Use IP address and Port options.',5,'/usr/share/pandora_server/util/plugin/udp_nmap_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""}}','-t _field1_-p _field2_'),(4,'SMTP Check','This plugin is used to send a mail to a SMTP server and check if works. Parameters in the plugin: IP Address - SMTP Server IP address User - AUTH login Pass - AUTH password Port - SMTP port (optional) Optional parameters: -d Destination email -f Email of the sender -a Authentication system. Could be LOGIN, PLAIN, CRAM-MD5 or DIGEST-MD',10,'/usr/share/pandora_server/util/plugin/SMTP_check.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""},"3":{"macro":"_field3_","desc":"Username","help":"","value":""},"4":{"macro":"_field4_","desc":"Password","help":"","value":""},"5":{"macro":"_field5_","desc":"Optional parameters","help":"","value":""}}','-h _field1_ -o _field2_ -u _field3_ -p _field4_ _field5_'); +INSERT INTO tplugin (id, name, description, max_timeout, execute, plugin_type, macros, parameters) VALUES (1,'IPMI Plugin','Plugin to get IPMI monitors from a IPMI Device.',0,'/usr/share/pandora_server/util/plugin/ipmi-plugin.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":""}}','-h _field1_-u _field2_-p _field3_'),(2,'DNS Plugin','This plugin is used to check if a specific domain return a specific IP address, and to check how time (milisecs) takes the DNS to answer. Use IP address parameter to specify the IP of your domain. Use these custom parameters for the other parameters: -d domain to check (for example pandorafms.com) -s DNS Server to check (for example 8.8.8.8) Optional parameters: -t Do a DNS time response check instead DNS resolve test ',15,'/usr/share/pandora_server/util/plugin/dns_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Domain to check","help":"For example pandorafms.com","value":""},"3":{"macro":"_field3_","desc":"DNS Server to check","help":"For example 8.8.8.8","value":""},"4":{"macro":"_field4_","desc":"Optional parameters","help":"","value":""}}','-i _field1_ -d _field2_ -s _field3_ _field4_'),(3,'UDP port check','Check a remote UDP port (by using NMAP). Use IP address and Port options.',5,'/usr/share/pandora_server/util/plugin/udp_nmap_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""}}','-t _field1_-p _field2_'),(4,'SMTP Check','This plugin is used to send a mail to a SMTP server and check if works. Parameters in the plugin: IP Address - SMTP Server IP address User - AUTH login Pass - AUTH password Port - SMTP port (optional) Optional parameters: -d Destination email -f Email of the sender -a Authentication system. Could be LOGIN, PLAIN, CRAM-MD5 or DIGEST-MD',10,'/usr/share/pandora_server/util/plugin/SMTP_check.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""},"3":{"macro":"_field3_","desc":"Username","help":"","value":""},"4":{"macro":"_field4_","desc":"Password","help":"","value":""},"5":{"macro":"_field5_","desc":"Optional parameters","help":"","value":""}}','-h _field1_ -o _field2_ -u _field3_ -p _field4_ _field5_'), (6,'MySQL Plugin','Samples: ./mysql_plugin.sh -u root -p none -s localhost -q Com_select ./mysql_plugin.sh -u root -p none -s localhost -q Com_update ./mysql_plugin.sh -u root -p none -s localhost -q Connections ./mysql_plugin.sh -u root -p anypass -s 192.168.50.24 -q Innodb_rows_read ',15,'/usr/share/pandora_server/util/plugin/mysql_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"IP address","help":"IP address","value":""},"2":{"macro":"_field2_","desc":"Username","help":"Username to access to database","value":""},"3":{"macro":"_field3_","desc":"Password","help":"Password to access to database","value":""},"4":{"macro":"_field4_","desc":"Query string","help":"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'","value":""}}', '-s _field1_ -u _field2_ -p _field3_ -q _field4_'), (8,'SNMP remote','Plugin that gets remotely, using SNMP, values such as the percentage of disk or memory used, the status of a process or the CPU load',0,'perl /usr/share/pandora_server/util/plugin/snmp_remote.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":"_address_"},"2":{"macro":"_field2_","desc":"Community","help":"","value":"public"},"3":{"macro":"_field3_","desc":"Plug-in Parameters","help":"Memory use (%) -m memuse Disk use (%) -m diskuse -d [disk name] Status of a process (0/1) -m process -p [process_name] Average of CPUs Load (%) -m cpuload","value":""}}', '-H _field1_ -c _field2_ _field3_'); INSERT INTO tagent_custom_fields VALUES (1,'Serial Number',0),(2,'Department',0),(3,'Additional ID',0); diff --git a/pandora_console/pandoradb.data.postgreSQL.sql b/pandora_console/pandoradb.data.postgreSQL.sql index 16c6b1d4bc..0ef11f8f6f 100644 --- a/pandora_console/pandoradb.data.postgreSQL.sql +++ b/pandora_console/pandoradb.data.postgreSQL.sql @@ -1057,7 +1057,7 @@ INSERT INTO "trecon_script" ("id_recon_script", "name", "description", "script") INSERT INTO "trecon_script" ("id_recon_script", "name", "description", "script") VALUES (2,'IMPI Recon', 'Specific Pandora FMS Intel DCM Discovery (c) Artica ST 2011 Usage: ./ipmi-recon.pl * custom_field1 = network. i.e.: 192.168.100.0/24 * custom_field2 = username * custom_fiedl3 = password ', '/usr/share/pandora_server/util/recon_scripts/ipmi-recon.pl'); -INSERT INTO "tplugin" ("id", "name", "description", "max_timeout", "execute", "plugin_type", "macros", "parameters") VALUES (1,'IPMI Plugin','Plugin to get IPMI monitors from a IPMI Device.',0,'/usr/share/pandora_server/util/plugin/ipmi-plugin.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":""}}','-h _field1_-u _field2_-p _field3_'),(2,'DNS Plugin','This plugin is used to check if a specific domain return a specific IP address, and to check how time (milisecs) takes the DNS to answer. Use IP address parameter to specify the IP of your domain. Use these custom parameters for the other parameters: -d domain to check (for example pandorafms.com) -s DNS Server to check (for example 8.8.8.8) Optional parameters: -t Do a DNS time response check instead DNS resolve test ',15,'/usr/share/pandora_server/util/plugin/dns_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Domain to check","help":"For example pandorafms.com","value":""},"3":{"macro":"_field3_","desc":"DNS Server to check","help":"For example 8.8.8.8","value":""},"4":{"macro":"_field4_","desc":"Optional parameters","help":"","value":""}}','-i _field1_ -d _field2_ -s _field3_ _field4_'),(3,'UDP port check','Check a remote UDP port (by using NMAP). Use IP address and Port options.',5,'/usr/share/pandora_server/util/plugin/udp_nmap_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""}}','-t _field1_-p _field2_'),(4,'SMTP Check','This plugin is used to send a mail to a SMTP server and check if works. Parameters in the plugin: IP Address - SMTP Server IP address User - AUTH login Pass - AUTH password Port - SMTP port (optional) Optional parameters: -d Destination email -f Email of the sender -a Authentication system. Could be LOGIN, PLAIN, CRAM-MD5 or DIGEST-MD',10,'/usr/share/pandora_server/util/plugin/SMTP_check.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""},"3":{"macro":"_field3_","desc":"Username","help":"","value":""},"4":{"macro":"_field4_","desc":"Password","help":"","value":""},"5":{"macro":"_field5_","desc":"Optional parameters","help":"","value":""}}','-h _field1_ -o _field2_ -u _field3_ -p _field4_ _field5_'); +INSERT INTO "tplugin" ("id", "name", "description", "max_timeout", "execute", "plugin_type", "macros", "parameters") VALUES (1,'IPMI Plugin','Plugin to get IPMI monitors from a IPMI Device.',0,'/usr/share/pandora_server/util/plugin/ipmi-plugin.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Username","help":"","value":""},"3":{"macro":"_field3_","desc":"Password","help":"","value":""}}','-h _field1_-u _field2_-p _field3_'),(2,'DNS Plugin','This plugin is used to check if a specific domain return a specific IP address, and to check how time (milisecs) takes the DNS to answer. Use IP address parameter to specify the IP of your domain. Use these custom parameters for the other parameters: -d domain to check (for example pandorafms.com) -s DNS Server to check (for example 8.8.8.8) Optional parameters: -t Do a DNS time response check instead DNS resolve test ',15,'/usr/share/pandora_server/util/plugin/dns_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Domain to check","help":"For example pandorafms.com","value":""},"3":{"macro":"_field3_","desc":"DNS Server to check","help":"For example 8.8.8.8","value":""},"4":{"macro":"_field4_","desc":"Optional parameters","help":"","value":""}}','-i _field1_ -d _field2_ -s _field3_ _field4_'),(3,'UDP port check','Check a remote UDP port (by using NMAP). Use IP address and Port options.',5,'/usr/share/pandora_server/util/plugin/udp_nmap_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""}}','-t _field1_-p _field2_'),(4,'SMTP Check','This plugin is used to send a mail to a SMTP server and check if works. Parameters in the plugin: IP Address - SMTP Server IP address User - AUTH login Pass - AUTH password Port - SMTP port (optional) Optional parameters: -d Destination email -f Email of the sender -a Authentication system. Could be LOGIN, PLAIN, CRAM-MD5 or DIGEST-MD',10,'/usr/share/pandora_server/util/plugin/SMTP_check.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":""},"2":{"macro":"_field2_","desc":"Port","help":"","value":""},"3":{"macro":"_field3_","desc":"Username","help":"","value":""},"4":{"macro":"_field4_","desc":"Password","help":"","value":""},"5":{"macro":"_field5_","desc":"Optional parameters","help":"","value":""}}','-h _field1_ -o _field2_ -u _field3_ -p _field4_ _field5_'), (6,'MySQL Plugin','Samples: ./mysql_plugin.sh -u root -p none -s localhost -q Com_select ./mysql_plugin.sh -u root -p none -s localhost -q Com_update ./mysql_plugin.sh -u root -p none -s localhost -q Connections ./mysql_plugin.sh -u root -p anypass -s 192.168.50.24 -q Innodb_rows_read ',15,'/usr/share/pandora_server/util/plugin/mysql_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"IP address","help":"IP address","value":""},"2":{"macro":"_field2_","desc":"Username","help":"Username to access to database","value":""},"3":{"macro":"_field3_","desc":"Password","help":"Password to access to database","value":""},"4":{"macro":"_field4_","desc":"Query string","help":"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'","value":""}}', '-s _field1_ -u _field2_ -p _field3_ -q _field4_'), (8,'SNMP remote','Plugin that gets remotely, using SNMP, values such as the percentage of disk or memory used, the status of a process or the CPU load',0,'perl /usr/share/pandora_server/util/plugin/snmp_remote.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":"_address_"},"2":{"macro":"_field2_","desc":"Community","help":"","value":"public"},"3":{"macro":"_field3_","desc":"Plug-in Parameters","help":"Memory use (%) -m memuse Disk use (%) -m diskuse -d [disk name] Status of a process (0/1) -m process -p [process_name] Average of CPUs Load (%) -m cpuload","value":""}}', '-H _field1_ -c _field2_ _field3_'); INSERT INTO "tagent_custom_fields" VALUES (1,'Serial Number',0),(2,'Department',0),(3,'Additional ID',0); diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index 9cc4d6e84f..a1118b2012 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -1012,6 +1012,8 @@ INSERT INTO `tplugin` (`id`, `name`, `description`, `max_timeout`, `execute`, `p INSERT INTO `tplugin` (`id`, `name`, `description`, `max_timeout`, `execute`, `plugin_type`, `macros`, `parameters`) VALUES (6,'MySQL Plugin','Samples: ./mysql_plugin.sh -u root -p none -s localhost -q Com_select ./mysql_plugin.sh -u root -p none -s localhost -q Com_update ./mysql_plugin.sh -u root -p none -s localhost -q Connections ./mysql_plugin.sh -u root -p anypass -s 192.168.50.24 -q Innodb_rows_read ',15,'/usr/share/pandora_server/util/plugin/mysql_plugin.sh',0,'{"1":{"macro":"_field1_","desc":"IP address","help":"IP address","value":""},"2":{"macro":"_field2_","desc":"Username","help":"Username to access to database","value":""},"3":{"macro":"_field3_","desc":"Password","help":"Password to access to database","value":""},"4":{"macro":"_field4_","desc":"Query string","help":"Query string of global status. For example 'Aborted_connects' or 'Innodb_rows_read'","value":""}}', '-s _field1_ -u _field2_ -p _field3_ -q _field4_'); +INSERT INTO `tplugin` (`id`, `name`, `description`, `max_timeout`, `execute`, `plugin_type`, `macros`, `parameters`) VALUES (8,'SNMP remote','Plugin that gets remotely, using SNMP, values such as the percentage of disk or memory used, the status of a process or the CPU load',0,'perl /usr/share/pandora_server/util/plugin/snmp_remote.pl',0,'{"1":{"macro":"_field1_","desc":"Target IP","help":"","value":"_address_"},"2":{"macro":"_field2_","desc":"Community","help":"","value":"public"},"3":{"macro":"_field3_","desc":"Plug-in Parameters","help":"Memory use (%) -m memuse Disk use (%) -m diskuse -d [disk name] Status of a process (0/1) -m process -p [process_name] Average of CPUs Load (%) -m cpuload","value":""}}', '-H _field1_ -c _field2_ _field3_'); + INSERT INTO `tagent_custom_fields` VALUES (1,'Serial Number',0),(2,'Department',0),(3,'Additional ID',0); INSERT INTO `ttag` VALUES (1,'network','Network equipment','http://artica.es',''),(2,'critical','Critical modules','',''),(3,'dmz','DMZ Network Zone','',''),(4,'performance','Performance anda capacity modules','',''),(5,'configuration','','','');