';
-$output .= __($str);
+$output .= __('This extension makes registering server plugins an easier task. Here you can upload a server plugin in .pspz zipped format. Please refer to the official documentation on how to obtain and use Server Plugins.');
$output .= ' ".__('Visual console in legacy mode will no longer be supported as of LTS 772').' '.__('Default event filter').' Select fields to show Seleccione campos a mostrar Select fields to show Seleccione campos a mostrar Select fields to show Sélectionner les champs à afficher Select fields to show Sélectionner les champs à afficher Select fields to show Select fields to show
';
$output .= __('You can get more plugins in our');
$output .= '';
diff --git a/pandora_console/godmode/servers/servers.build_table.php b/pandora_console/godmode/servers/servers.build_table.php
index fe74c172c8..8d2418cc5e 100644
--- a/pandora_console/godmode/servers/servers.build_table.php
+++ b/pandora_console/godmode/servers/servers.build_table.php
@@ -167,19 +167,22 @@ foreach ($servers as $server) {
break;
}
- $data[6] = $server['threads'].' : '.$server['queued_modules'];
+ $data[6] = '';
if ($server['queued_modules'] > 500) {
- $data[6] .= ' ';
}
+ $data[6] .= $server['threads'].' : '.$server['queued_modules'];
+
$data[7] = ui_print_timestamp($server['keepalive'], true);
@@ -256,7 +259,7 @@ foreach ($servers as $server) {
'images/agents@svg.svg',
true,
[
- 'title' => __('Manage satellite hosts'),
+ 'title' => __('Manage server conf'),
'class' => 'main_menu_icon invert_filter',
]
);
diff --git a/pandora_console/godmode/setup/os.list.php b/pandora_console/godmode/setup/os.list.php
index 0322fe79f1..5dbd74ec86 100644
--- a/pandora_console/godmode/setup/os.list.php
+++ b/pandora_console/godmode/setup/os.list.php
@@ -66,7 +66,7 @@ $table->head[1] = __('Icon');
$table->head[2] = __('Name');
$table->head[3] = __('Description');
if ($is_management_allowed === true) {
- $table->head[4] = '';
+ $table->head[4] = __('Actions');
}
if ($is_management_allowed === true) {
@@ -132,8 +132,7 @@ foreach ($osList as $os) {
$data[] = html_print_anchor(
[
'href' => $hrefDelete,
- 'class' => 'invert_filter main_menu_icon',
- 'content' => html_print_image('images/delete.svg', true),
+ 'content' => html_print_image('images/delete.svg', true, ['class' => 'main_menu_icon invert_filter']),
],
true
);
diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php
index c0548b32e8..3822a01b2e 100644
--- a/pandora_console/godmode/setup/setup_auth.php
+++ b/pandora_console/godmode/setup/setup_auth.php
@@ -24,7 +24,7 @@ global $config;
check_login();
-if ((bool) check_acl($config['id_user'], 0, 'PM') === true && is_user_admin($config['id_user']) === false) {
+if ((bool) check_acl($config['id_user'], 0, 'PM') === false && is_user_admin($config['id_user']) === false) {
db_pandora_audit(
AUDIT_LOG_ACL_VIOLATION,
'Trying to access Setup Management'
diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php
index dc7d91872d..caee126804 100755
--- a/pandora_console/godmode/setup/setup_visuals.php
+++ b/pandora_console/godmode/setup/setup_visuals.php
@@ -70,6 +70,10 @@ html_print_input_hidden('update_config', 1);
$performance_variables_control = (array) json_decode(io_safe_output($config['performance_variables_control']));
+echo "';
$data .= ' ';
- $data .= __('Threshold');
+ $data .= __('Threshold').ui_print_help_tip(__('If a value of 0 is assigned, the Threshold of the action will be used.'), true);
$data .= ' ';
$data .= '';
$data .= html_print_extended_select_for_time(
diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php
index 529ba7c848..b20bad2a18 100755
--- a/pandora_console/include/ajax/module.php
+++ b/pandora_console/include/ajax/module.php
@@ -38,6 +38,7 @@ if (check_login()) {
enterprise_include_once('include/functions_metaconsole.php');
$get_plugin_macros = get_parameter('get_plugin_macros');
+ $get_module_macros = get_parameter('get_module_macros');
$search_modules = get_parameter('search_modules');
$get_module_detail = get_parameter('get_module_detail', 0);
$get_module_autocomplete_input = (bool) get_parameter(
@@ -118,6 +119,28 @@ if (check_login()) {
return;
}
+ if ($get_module_macros && $get_module_macros > 0) {
+ if (https_is_running()) {
+ header('Content-type: application/json');
+ }
+
+ $module_id = $get_module_macros;
+
+ $module_macros = db_get_value(
+ 'macros',
+ 'tagente_modulo',
+ 'id_agente_modulo',
+ $module_id
+ );
+
+ $macros = [];
+ $macros['base64'] = base64_encode($module_macros);
+ $macros['array'] = json_decode($module_macros, true);
+
+ echo json_encode($macros);
+ return;
+ }
+
if ($search_modules) {
if (https_is_running()) {
header('Content-type: application/json');
@@ -1058,8 +1081,8 @@ if (check_login()) {
$policyInfo = policies_info_module_policy($module['id_policy_module']);
$adopt = policies_is_module_adopt($module['id_agente_modulo']);
- if ($linked === true) {
- if ($adopt === true) {
+ if ((bool) $linked === true) {
+ if ((bool) $adopt === true) {
$img = 'images/policies_brick.png';
$title = '('.__('Adopted').') '.$name_policy;
} else {
@@ -1067,7 +1090,7 @@ if (check_login()) {
$title = $name_policy;
}
} else {
- if ($adopt === true) {
+ if ((bool) $adopt === true) {
$img = 'images/policies_not_brick.png';
$title = '('.__('Unlinked').') ('.__('Adopted').') '.$name_policy;
} else {
@@ -1159,7 +1182,6 @@ if (check_login()) {
$last_status_change_text = __('Time elapsed since last status change: ');
$last_status_change_text .= (empty($module['last_status_change']) === false) ? human_time_comparation($module['last_status_change']) : __('N/A');
- $data[4] .= ui_print_status_image($status, htmlspecialchars($title), true, false, false, true, $last_status_change_text);
if ($show_context_help_first_time === false) {
$show_context_help_first_time = true;
@@ -1168,6 +1190,8 @@ if (check_login()) {
}
}
+ $data[4] .= ui_print_status_image($status, htmlspecialchars($title), true, false, false, true, $last_status_change_text);
+
// Module thresholds.
$data[5] = '';
if ((int) $module['id_tipo_modulo'] !== 25) {
diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php
index 5736815d6c..d4f8259ac8 100755
--- a/pandora_console/include/ajax/visual_console_builder.ajax.php
+++ b/pandora_console/include/ajax/visual_console_builder.ajax.php
@@ -34,7 +34,7 @@ if ($get_image_path_status) {
$id_visual_console = get_parameter('id_visual_console', null);
// WARNING: CHECK THE ENTIRE FUNCTIONALITY
-// Visual console id required
+// Visual console id required.
if (empty($id_visual_console)) {
db_pandora_audit(
AUDIT_LOG_ACL_VIOLATION,
@@ -1774,7 +1774,7 @@ switch ($action) {
break;
}
-// visual map element status check
+// Visual map element status check.
if ($get_element_status) {
$layoutData = db_get_row_filter(
'tlayout_data',
diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php
index 8c1e27f0f9..9d26ba22eb 100644
--- a/pandora_console/include/auth/mysql.php
+++ b/pandora_console/include/auth/mysql.php
@@ -801,6 +801,34 @@ function update_user(string $id_user, array $values)
return false;
}
+ if (isset($values['section']) === true) {
+ $homeScreenValues = [
+ HOME_SCREEN_DEFAULT => __('Default'),
+ HOME_SCREEN_VISUAL_CONSOLE => __('Visual console'),
+ HOME_SCREEN_EVENT_LIST => __('Event list'),
+ HOME_SCREEN_GROUP_VIEW => __('Group view'),
+ HOME_SCREEN_TACTICAL_VIEW => __('Tactical view'),
+ HOME_SCREEN_ALERT_DETAIL => __('Alert detail'),
+ HOME_SCREEN_EXTERNAL_LINK => __('External link'),
+ HOME_SCREEN_OTHER => __('Other'),
+ HOME_SCREEN_DASHBOARD => __('Dashboard'),
+ ];
+
+ if (array_key_exists($values['section'], $homeScreenValues) === true) {
+ $values['section'] = $homeScreenValues[$values['section']];
+ }
+
+ if (is_metaconsole() === true) {
+ $values['metaconsole_section'] = $values['section'];
+ $values['metaconsole_data_section'] = $values['data_section'];
+ $values['metaconsole_default_event_filter'] = $values['default_event_filter'];
+ unset($values['id_skin']);
+ unset($values['section']);
+ unset($values['data_section']);
+ unset($values['default_event_filter']);
+ }
+ }
+
$output = db_process_sql_update('tusuario', $values, ['id_user' => $id_user]);
if (isset($values['is_admin']) === true && (bool) $values['is_admin'] === true) {
@@ -1596,7 +1624,7 @@ function local_ldap_search(
}
$dn = ' -b '.escapeshellarg($dn);
- $ldapsearch_command = 'ldapsearch -LLL -o ldif-wrap=no -o nettimeout='.$ldap_search_time.' -x'.$ldap_host.$ldap_version.' -E pr=10000/noprompt '.$ldap_admin_user.$ldap_admin_pass.$dn.$filter.$tls.' | grep -v "^#\|^$" | sed "s/:\+ /=>/g"';
+ $ldapsearch_command = 'timeout '.$ldap_search_time.' ldapsearch -LLL -o ldif-wrap=no -o nettimeout='.$ldap_search_time.' -x'.$ldap_host.$ldap_version.' -E pr=10000/noprompt '.$ldap_admin_user.$ldap_admin_pass.$dn.$filter.$tls.' | grep -v "^#\|^$" | sed "s/:\+ /=>/g"';
$shell_ldap_search = explode("\n", shell_exec($ldapsearch_command));
foreach ($shell_ldap_search as $line) {
$values = explode('=>', $line);
diff --git a/pandora_console/include/chart_generator.php b/pandora_console/include/chart_generator.php
index 62701365e5..2695b89c22 100644
--- a/pandora_console/include/chart_generator.php
+++ b/pandora_console/include/chart_generator.php
@@ -46,6 +46,8 @@ if (json_last_error() === JSON_ERROR_NONE) {
$session_id = $data_decoded['session_id'];
$type_graph_pdf = $data_decoded['type_graph_pdf'];
$id_user = $data_decoded['id_user'];
+ $slicebar = $data_decoded['slicebar'];
+ $slicebar_value = $data_decoded['slicebar_value'];
$data_combined = [];
if (isset($data_decoded['data_combined']) === true) {
@@ -64,6 +66,9 @@ global $config;
// Care whit this!!! check_login not working if you remove this.
$config['id_user'] = $id_user;
$_SESSION['id_usuario'] = $id_user;
+if (!isset($config[$slicebar])) {
+ $config[$slicebar] = $slicebar_value;
+}
// Try to initialize session using existing php session id.
$user = new PandoraFMS\User(['phpsessionid' => $session_id]);
diff --git a/pandora_console/include/class/AgentDeployWizard.class.php b/pandora_console/include/class/AgentDeployWizard.class.php
index 6a2374584d..7cd19859a0 100644
--- a/pandora_console/include/class/AgentDeployWizard.class.php
+++ b/pandora_console/include/class/AgentDeployWizard.class.php
@@ -526,12 +526,14 @@ class AgentDeployWizard
true
);
+ $mac_installer_link = 'http://firefly.pandorafms.com/pandorafms/latest/macOS/Pandora_FMS_MacOS_agent-7.0NG.dmg';
+ $mac_content_link = ''.__('Click to Download the agent').'';
html_print_div(
[
'id' => 'mac_installer',
'class' => 'white_table_flex agent_details_col',
'style' => 'margin-bottom: 20px',
- 'content' => $content.$mac_warn_box,
+ 'content' => $content.$mac_warn_box.$mac_content_link,
]
);
@@ -660,7 +662,7 @@ class AgentDeployWizard
var group_val = $('[name="group"] option:selected').text();
var win_installer_command = `Invoke-WebRequest -Uri https://firefly.pandorafms.com/pandorafms/latest/Windows/Pandora%20FMS%20Windows%20Agent%20v7.0NG.x86_64.exe -OutFile \$\{env:tmp\}\\\pandora-agent-windows.exe; & \$\{env:tmp\}\\\pandora-agent-windows.exe /S --ip ${server_addr_val} --group \"${group_val}\" --remote_config 1`;
- var linux_installer_command = `export PANDORA_SERVER_IP='${server_addr_val}' && \\ \nexport PANDORA_REMOTE_CONFIG=1 && \\ \nexport PANDORA_GROUP='${group_val}' && \\ \ncurl -Ls https://pfms.me/agent-deploy | bash`;
+ var linux_installer_command = `export PANDORA_SERVER_IP='${server_addr_val}' && \\\nexport PANDORA_REMOTE_CONFIG=1 && \\\nexport PANDORA_GROUP='${group_val}' && \\\ncurl -Ls https://pfms.me/agent-deploy | bash`;
var mac_installer_text = `To complete the installation process, please perform a manual installation and configure the server IP to ${server_addr_val} and specify the group as ${group_val}. Thank you for your cooperation`;
var linux_service_start = "/etc/init.d/pandora_agent_daemon start";
var win_service_start = "NET START PandoraFMSAgent";
diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php
index 6ae1fb0009..2278cae9d4 100644
--- a/pandora_console/include/class/AgentWizard.class.php
+++ b/pandora_console/include/class/AgentWizard.class.php
@@ -325,7 +325,7 @@ class AgentWizard extends HTML
$this->wizardSection = get_parameter('wizard_section', 'snmp_explorer');
$this->idAgent = get_parameter('id_agente', '');
$this->idPolicy = get_parameter('id', '');
- $this->targetIp = get_parameter('targetIp', '');
+ $this->targetIp = io_safe_input(trim(io_safe_output(get_parameter('targetIp', ''))));
$this->wmiBinary = $config['wmiBinary'];
$this->defaultSNMPValues = (array) json_decode(io_safe_output($config['agent_wizard_defaults']));
@@ -2333,7 +2333,7 @@ class AgentWizard extends HTML
}
$tmp->id_plugin($infoMacros['server_plugin']);
- $tmp->macros(json_encode($fieldsPlugin));
+ $tmp->macros(io_json_mb_encode($fieldsPlugin));
}
}
}
@@ -2507,7 +2507,7 @@ class AgentWizard extends HTML
}
$tmp->id_plugin($infoMacros['server_plugin']);
- $tmp->macros(json_encode($fieldsPlugin));
+ $tmp->macros(io_json_mb_encode($fieldsPlugin));
}
$tmp->ip_target(io_safe_input($this->targetIp));
diff --git a/pandora_console/include/class/CredentialStore.class.php b/pandora_console/include/class/CredentialStore.class.php
index 904ddbc6e4..36f66c6b40 100644
--- a/pandora_console/include/class/CredentialStore.class.php
+++ b/pandora_console/include/class/CredentialStore.class.php
@@ -1366,7 +1366,7 @@ class CredentialStore extends Wizard
$('#li_snmp_2').show();
if ($('#li_snmp_1').length > 0) {
- $('#version').val('1');
+ //$('#version').val('1');
$('#version').trigger('change');
} else {
const ul = $('#modal_form').children('ul')[0];
diff --git a/pandora_console/include/class/EventSound.class.php b/pandora_console/include/class/EventSound.class.php
index 41e54cc4ff..7d9bfbca6e 100644
--- a/pandora_console/include/class/EventSound.class.php
+++ b/pandora_console/include/class/EventSound.class.php
@@ -209,7 +209,7 @@ class EventSound extends HTML
$titleHeader = __('Add new sound');
} else {
$helpHeader = 'servers_ha_clusters_tab';
- $titleHeader = __('Accoustic console sound list');
+ $titleHeader = __('Acoustic console sound list');
}
// Header.
@@ -227,7 +227,7 @@ class EventSound extends HTML
],
[
'link' => '',
- 'label' => __('Accoustic console setup'),
+ 'label' => __('Acoustic console setup'),
],
]
);
diff --git a/pandora_console/include/class/ModuleTemplates.class.php b/pandora_console/include/class/ModuleTemplates.class.php
index bfb02c7ae8..dab74a8846 100644
--- a/pandora_console/include/class/ModuleTemplates.class.php
+++ b/pandora_console/include/class/ModuleTemplates.class.php
@@ -1339,7 +1339,11 @@ class ModuleTemplates extends HTML
function filterGroupComponents(e){
var selectedGroup = e.target.value;
var entireList = JSON.parse($('#hidden-group-components').val());
- var componentsToShow = entireList[selectedGroup];
+ if(typeof entireList[selectedGroup] !== 'undefined'){
+ var componentsToShow = entireList[selectedGroup].split(",");
+ } else {
+ var componentsToShow = [];
+ }
$('#add-modules-components').children().each(function(){
var id = $(this).val();
if (typeof componentsToShow === 'undefined' && selectedGroup != '0') {
@@ -1348,7 +1352,7 @@ class ModuleTemplates extends HTML
$(this).css('display','block');
} else {
$(this).css('display','none');
- }
+ }
});
}
diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php
index f16641bce6..94a6f6a4ba 100644
--- a/pandora_console/include/class/TipsWindow.class.php
+++ b/pandora_console/include/class/TipsWindow.class.php
@@ -270,14 +270,28 @@ class TipsWindow
}
$sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter);
+ $sql .= sprintf(' AND id_lang = "%s"', $language);
$sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()';
$tip = db_get_row_sql($sql);
-
+ $check_tips = db_get_row_sql('SELECT count(*) AS tips FROM twelcome_tip WHERE id_lang = "'.$language.'"')['tips'];
if (empty($tip) === false) {
$tip['files'] = $this->getFilesFromTip($tip['id']);
+ $tip['title'] = io_safe_output($tip['title']);
+ $tip['text'] = io_safe_output($tip['text']);
+ $tip['url'] = io_safe_output($tip['url']);
+ } else if ($check_tips === '0') {
+ $language = 'en_GB';
+ $sql = 'SELECT id, title, text, url
+ FROM twelcome_tip
+ WHERE enable = "1" AND id_lang = "'.$language.'"';
+ $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()';
+ $tip = db_get_row_sql($sql);
+
+ $tip['files'] = $this->getFilesFromTip($tip['id']);
+
$tip['title'] = io_safe_output($tip['title']);
$tip['text'] = io_safe_output($tip['text']);
$tip['url'] = io_safe_output($tip['url']);
@@ -311,6 +325,15 @@ class TipsWindow
global $config;
$profilesUser = users_get_user_profile($config['id_user']);
$idProfilesFilter = '0';
+ $userInfo = users_get_user_by_id($config['id_user']);
+ $language = ($userInfo['language'] !== 'default') ? $userInfo['language'] : $config['language'];
+
+ $check_tips = db_get_row_sql('SELECT count(*) AS tips FROM twelcome_tip WHERE id_lang = "'.$language.'"')['tips'];
+
+ if ($check_tips === '0') {
+ $language = 'en_GB';
+ }
+
foreach ($profilesUser as $key => $profile) {
$idProfilesFilter .= ','.$profile['id_perfil'];
}
@@ -320,9 +343,9 @@ class TipsWindow
WHERE enable = "1" ';
$sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter);
+ $sql .= sprintf(' AND id_lang = "%s"', $language);
- $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()';
-
+ $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()';
return db_get_sql($sql);
}
diff --git a/pandora_console/include/class/WebServerModuleDebug.class.php b/pandora_console/include/class/WebServerModuleDebug.class.php
index 26bbb8b2f1..6d4b691522 100644
--- a/pandora_console/include/class/WebServerModuleDebug.class.php
+++ b/pandora_console/include/class/WebServerModuleDebug.class.php
@@ -162,7 +162,7 @@ class WebServerModuleDebug extends Wizard
results.setReadOnly(true);
results.setShowPrintMargin(false);
- $("#submit-execute_query").click(function() {
+ $("#button-execute_query").click(function() {
// Show the spinner.
showSpinner(true);
// Empty the results container.
diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php
index 3a14a7d59c..bbf689839f 100644
--- a/pandora_console/include/config_process.php
+++ b/pandora_console/include/config_process.php
@@ -20,7 +20,7 @@
/**
* Pandora build version and version
*/
-$build_version = 'PC230517';
+$build_version = 'PC230608';
$pandora_version = 'v7.0NG.771';
// Do not overwrite default timezone set if defined.
diff --git a/pandora_console/include/db/mysql.php b/pandora_console/include/db/mysql.php
index 564e566247..97880fdcbf 100644
--- a/pandora_console/include/db/mysql.php
+++ b/pandora_console/include/db/mysql.php
@@ -1190,30 +1190,32 @@ function mysql_db_format_array_to_update_sql($values)
$fields = [];
foreach ($values as $field => $value) {
- if (is_numeric($field)) {
- array_push($fields, $value);
- continue;
- } else if ($field[0] == '`') {
- $field = str_replace('`', '', $field);
- }
-
- if ($value === null) {
- $sql = sprintf('`%s` = NULL', $field);
- } else if (is_int($value) || is_bool($value)) {
- $sql = sprintf('`%s` = %d', $field, $value);
- } else if (is_float($value) || is_double($value)) {
- $sql = sprintf('`%s` = %f', $field, $value);
- } else {
- // String
- if (isset($value[0]) && $value[0] == '`') {
- // Don't round with quotes if it references a field
- $sql = sprintf('`%s` = %s', $field, $value);
- } else {
- $sql = sprintf("`%s` = '%s'", $field, $value);
+ if (is_object($value) === false) {
+ if (is_numeric($field)) {
+ array_push($fields, $value);
+ continue;
+ } else if ($field[0] == '`') {
+ $field = str_replace('`', '', $field);
}
- }
- array_push($fields, $sql);
+ if ($value === null) {
+ $sql = sprintf('`%s` = NULL', $field);
+ } else if (is_int($value) || is_bool($value)) {
+ $sql = sprintf('`%s` = %d', $field, $value);
+ } else if (is_float($value) || is_double($value)) {
+ $sql = sprintf('`%s` = %f', $field, $value);
+ } else {
+ // String
+ if (isset($value[0]) && $value[0] == '`') {
+ // Don't round with quotes if it references a field
+ $sql = sprintf('`%s` = %s', $field, $value);
+ } else {
+ $sql = sprintf("`%s` = '%s'", $field, $value);
+ }
+ }
+
+ array_push($fields, $sql);
+ }
}
return implode(', ', $fields);
diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php
index 81799a549d..7f59f6e598 100644
--- a/pandora_console/include/functions.php
+++ b/pandora_console/include/functions.php
@@ -3548,6 +3548,25 @@ function update_config_token($cfgtoken, $cfgvalue)
}
+function update_check_config_token($cfgtoken, $cfgvalue)
+{
+ global $config;
+ db_process_sql('START TRANSACTION');
+ if (isset($config[$cfgtoken])) {
+ delete_config_token($cfgtoken);
+ }
+
+ $insert = db_process_sql(sprintf("INSERT INTO tconfig (token, value) VALUES ('%s', '%s')", $cfgtoken, $cfgvalue));
+ db_process_sql('COMMIT');
+ if ($insert) {
+ $config[$cfgtoken] = $cfgvalue;
+ return true;
+ } else {
+ return false;
+ }
+}
+
+
function delete_config_token($cfgtoken)
{
$delete = db_process_sql(sprintf('DELETE FROM tconfig WHERE token = "%s"', $cfgtoken));
@@ -4284,6 +4303,8 @@ function generator_chart_to_pdf(
'data_module_list' => $module_list,
'data_combined' => $params_combined,
'id_user' => $config['id_user'],
+ 'slicebar' => $_SESSION['slicebar'],
+ 'slicebar_value' => $config[$_SESSION['slicebar']],
];
} else {
$data = [
@@ -4291,6 +4312,8 @@ function generator_chart_to_pdf(
'session_id' => $session_id,
'type_graph_pdf' => $type_graph_pdf,
'id_user' => $config['id_user'],
+ 'slicebar' => $_SESSION['slicebar'],
+ 'slicebar_value' => $config[$_SESSION['slicebar']],
];
}
diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index 9707a53769..a8e83789aa 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -9612,6 +9612,7 @@ function api_set_new_user($id, $thrash2, $other, $thrash3)
$values['section'] = $other['data'][11];
$values['session_time'] = $other['data'][12];
$values['metaconsole_access_node'] = $other['data'][13];
+ $values['api_token'] = api_token_generate();
if (empty($password) === true) {
returnError('Password cannot be empty.');
@@ -9708,6 +9709,8 @@ function api_set_update_user($id, $thrash2, $other, $thrash3)
if (!update_user_password($id, $other['data'][4])) {
returnError('The user could not be updated. Password info incorrect.');
return;
+ } else {
+ $values['api_token'] = api_token_generate();
}
}
diff --git a/pandora_console/include/functions_clippy.php b/pandora_console/include/functions_clippy.php
index 94d3c2da85..db6d0f7704 100644
--- a/pandora_console/include/functions_clippy.php
+++ b/pandora_console/include/functions_clippy.php
@@ -296,22 +296,34 @@ function clippy_context_help($help=null)
$code = str_replace('{clippy}', '#'.$id, $code);
$code = str_replace('{clippy_obj}', 'intro_'.$id, $code);
- $return = $code.'
+ if ($help === 'module_unknow') {
+ $img = html_print_image(
+ 'images/info-warning.svg',
+ true,
+ [
+ 'class' => 'main_menu_icon invert_filter',
+ 'style' => 'margin-left: -25px;',
+ ]
+ );
+ } else {
+ $img = html_print_image(
+ 'images/info-warning.svg',
+ true,
+ ['class' => 'main_menu_icon invert_filter']
+ );
+ }
+
+ $return = $code.'
';
@@ -7241,10 +7242,8 @@ function ui_query_result_editor($name='default')
]
);
- $buttons = html_print_submit_button(__('Execute query'), 'execute_query', false, ['icon' => 'update'], true);
- html_print_action_buttons(
- $buttons
- );
+ html_print_submit_button(__('Execute query'), 'execute_query', false, ['icon' => 'update']);
+
}
@@ -7970,4 +7969,4 @@ function ui_update_name_fav_element($id_element, $section, $label)
'id_element' => $id_element,
]
);
-}
\ No newline at end of file
+}
diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php
index 80267a18e9..7f60dd24dd 100755
--- a/pandora_console/include/functions_visual_map.php
+++ b/pandora_console/include/functions_visual_map.php
@@ -2846,8 +2846,11 @@ function get_donut_module_data($id_module)
$values_to_return = [];
foreach ($values as $val) {
- $data = explode(',', $val);
+ if (empty($val) === true) {
+ continue;
+ }
+ $data = explode(',', $val);
if ($data[0] === $val) {
continue;
}
@@ -3173,7 +3176,12 @@ function visual_map_get_image_status_element($layoutData, $status=false)
if ($layoutData['type'] == 5) {
// ICON ELEMENT.
- $img .= '.png';
+ $url = parse_url($layoutData['image']);
+ if (isset($url['scheme']) === false) {
+ $img .= '.png';
+ } else {
+ $img = $layoutData['image'];
+ }
} else {
if ($status === false) {
$status = visual_map_get_status_element($layoutData);
@@ -3564,12 +3572,13 @@ function visual_map_print_visual_map(
}
echo ' ';
$form_items['border_width_row'] = [];
$form_items['border_width_row']['items'] = [
@@ -157,18 +155,16 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'box_item',
'clock',
];
- $form_items['fill_color_row']['html'] = '";
diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php
index 6c1820a87c..c40d2e0740 100755
--- a/pandora_console/include/functions_visual_map_editor.php
+++ b/pandora_console/include/functions_visual_map_editor.php
@@ -130,18 +130,16 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'datos',
'box_item',
];
- $form_items['border_color_row']['html'] = '
'.__('Border color').' '.''.html_print_input_text_extended(
+ $form_items['border_color_row']['html'] = ' '.__('Border color').' ';
+ $form_items['border_color_row']['html'] .= '';
+ $form_items['border_color_row']['html'] .= html_print_input_color(
'border_color',
'#000000',
'text-border_color',
'',
- 7,
- 7,
- false,
- '',
- 'class="border_color"',
true
- ).' ';
+ );
+ $form_items['border_color_row']['html'] .= ''.__('Fill color').' '.''.html_print_input_text_extended(
+ $form_items['fill_color_row']['html'] = ' '.__('Fill color').' ';
+ $form_items['fill_color_row']['html'] .= '';
+ $form_items['fill_color_row']['html'] .= html_print_input_color(
'fill_color',
'#000000',
'text-fill_color',
'',
- 7,
- 7,
- false,
- '',
- 'class="fill_color"',
true
- ).' ';
+ );
+ $form_items['fill_color_row']['html'] .= '';
$form_items['module_graph_size_row'] = [];
$form_items['module_graph_size_row']['items'] = [
@@ -375,18 +371,16 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
$form_items['grid_color_row'] = [];
$form_items['grid_color_row']['items'] = ['bars_graph'];
- $form_items['grid_color_row']['html'] = ''.__('Grid color').' '.''.html_print_input_text_extended(
+ $form_items['grid_color_row']['html'] = ' '.__('Grid color').' ';
+ $form_items['grid_color_row']['html'] .= '';
+ $form_items['grid_color_row']['html'] .= html_print_input_color(
'grid_color',
'#000000',
'text-grid_color',
'',
- 7,
- 7,
- false,
- '',
- 'class="grid_color"',
true
- ).' ';
+ );
+ $form_items['grid_color_row']['html'] .= '';
$form_items['radio_choice_graph'] = [];
$form_items['radio_choice_graph']['items'] = [
@@ -500,18 +494,18 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
$form_items['resume_color_row'] = [];
$form_items['resume_color_row']['items'] = ['donut_graph'];
- $form_items['resume_color_row']['html'] = ''.__('Resume data color').' '.''.html_print_input_text_extended(
+ $form_items['resume_color_row']['html'] = ' ';
+ $form_items['resume_color_row']['html'] .= __('Resume data color');
+ $form_items['resume_color_row']['html'] .= ' ';
+ $form_items['resume_color_row']['html'] .= '';
+ $form_items['resume_color_row']['html'] .= html_print_input_color(
'resume_color',
'#000000',
'text-resume_color',
'',
- 7,
- 7,
- false,
- '',
- 'class="resume_color"',
true
- ).' ';
+ );
+ $form_items['resume_color_row']['html'] .= '';
$event_times = [
86400 => __('24h'),
@@ -637,24 +631,60 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'background',
'datos',
];
- $form_items['background_row_2']['html'] = ''.__('Original Size').'
- '.html_print_button(__('Apply'), 'original_false', false, "setAspectRatioBackground('original')", 'class="sub vs_button_ghost"', true).' ';
+ $form_items['background_row_2']['html'] = ''.__('Original Size').' ';
+ $form_items['background_row_2']['html'] .= '';
+ $form_items['background_row_2']['html'] .= html_print_button(
+ __('Apply'),
+ 'original_false',
+ false,
+ 'setAspectRatioBackground("original", '.$visualConsole_id.')',
+ [
+ 'icon' => 'cog',
+ 'mode' => 'mini secondary',
+ ],
+ true
+ );
+ $form_items['background_row_2']['html'] .= ' ';
$form_items['background_row_3'] = [];
$form_items['background_row_3']['items'] = [
'background',
'datos',
];
- $form_items['background_row_3']['html'] = ''.__('Aspect ratio').'
- '.html_print_button(__('Proportional Width'), 'original_false', false, "setAspectRatioBackground('width')", 'class="sub vs_button_ghost"', true).' ';
+ $form_items['background_row_3']['html'] = ''.__('Aspect ratio').' ';
+ $form_items['background_row_3']['html'] .= '';
+ $form_items['background_row_3']['html'] .= html_print_button(
+ __('Proportional Width'),
+ 'original_false',
+ false,
+ 'setAspectRatioBackground("width", '.$visualConsole_id.')',
+ [
+ 'icon' => 'cog',
+ 'mode' => 'mini secondary',
+ ],
+ true
+ );
+ $form_items['background_row_3']['html'] .= ' ';
$form_items['background_row_4'] = [];
$form_items['background_row_4']['items'] = [
'background',
'datos',
];
- $form_items['background_row_4']['html'] = '
- '.html_print_button(__('Height proportional'), 'original_false', false, "setAspectRatioBackground('height')", 'class="sub vs_button_ghost"', true).' ';
+ $form_items['background_row_4']['html'] = '';
+ $form_items['background_row_4']['html'] .= ' ';
+ $form_items['background_row_4']['html'] .= html_print_button(
+ __('Height proportional'),
+ 'original_false',
+ false,
+ 'setAspectRatioBackground("height", '.$visualConsole_id.')',
+ [
+ 'icon' => 'cog',
+ 'mode' => 'mini secondary',
+ ],
+ true
+ );
+ $form_items['background_row_4']['html'] .= ' ';
$form_items['percentile_bar_row_1'] = [];
$form_items['percentile_bar_row_1']['items'] = [
@@ -665,11 +695,31 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'bars_graph',
'clock',
];
- $form_items['percentile_bar_row_1']['html'] = ''.__('Widtzzzzh').html_print_input_text('width_percentile', 0, '', 3, 5, true).' ';
+ $form_items['percentile_bar_row_1']['html'] = ''.__('Width').' ';
+ $form_items['percentile_bar_row_1']['html'] .= '';
+ $form_items['percentile_bar_row_1']['html'] .= html_print_input_text(
+ 'width_percentile',
+ 0,
+ '',
+ 3,
+ 5,
+ true
+ );
+ $form_items['percentile_bar_row_1']['html'] .= ' ';
$form_items['height_bars_graph_row'] = [];
$form_items['height_bars_graph_row']['items'] = ['bars_graph'];
- $form_items['height_bars_graph_row']['html'] = ''.__('Height').html_print_input_text('bars_graph_height', 0, '', 3, 5, true).' ';
+ $form_items['height_bars_graph_row']['html'] = ''.__('Height').' ';
+ $form_items['height_bars_graph_row']['html'] .= '';
+ $form_items['height_bars_graph_row']['html'] .= html_print_input_text(
+ 'bars_graph_height',
+ 0,
+ '',
+ 3,
+ 5,
+ true
+ );
+ $form_items['height_bars_graph_row']['html'] .= ' ';
$form_items['percentile_bar_row_2'] = [];
$form_items['percentile_bar_row_2']['items'] = [
@@ -735,16 +785,11 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'datos',
];
$form_items['percentile_item_row_5']['html'] = ''.__('Element color').'
- '.html_print_input_text_extended(
+ '.html_print_input_color(
'percentile_color',
'#ffffff',
'text-percentile_color',
'',
- 7,
- 7,
- false,
- '',
- 'class="percentile_color"',
true
).' ';
@@ -755,16 +800,11 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'datos',
];
$form_items['percentile_item_row_6']['html'] = ''.__('Value color').'
- '.html_print_input_text_extended(
+ '.html_print_input_color(
'percentile_label_color',
'#ffffff',
'text-percentile_label_color',
'',
- 7,
- 7,
- false,
- '',
- 'class="percentile_label_color"',
true
).' ';
@@ -815,8 +855,16 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
// End of Color Cloud rows
$form_items['show_on_top_row'] = [];
$form_items['show_on_top_row']['items'] = ['group_item'];
- $form_items['show_on_top_row']['html'] = ''.__('Always show on top').'
- '.html_print_checkbox('show_on_top', 1, '', true).ui_print_help_tip(__('It allows the element to be superimposed to the rest of items of the visual console'), true).' ';
+ $form_items['show_on_top_row']['html'] = '';
+ $form_items['show_on_top_row']['html'] .= __('Always show on top');
+ $form_items['show_on_top_row']['html'] .= ui_print_help_tip(
+ __('It allows the element to be superimposed to the rest of items of the visual console'),
+ true
+ );
+ $form_items['show_on_top_row']['html'] .= ' ';
+ $form_items['show_on_top_row']['html'] .= '';
+ $form_items['show_on_top_row']['html'] .= html_print_checkbox('show_on_top', 1, '', true);
+ $form_items['show_on_top_row']['html'] .= ' ';
$show_last_value = [
'0' => __('Hide last value on boolean modules'),
@@ -875,11 +923,11 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
$form_items['button_update_row'] = [];
$form_items['button_update_row']['items'] = ['datos'];
- $form_items['button_update_row']['html'] = ''.html_print_button(__('Cancel'), 'cancel_button', false, 'cancel_button_palette_callback();', 'class="sub cancel"', true).' '.html_print_button(__('Update'), 'update_button', false, 'update_button_palette_callback();', 'class="sub upd"', true).' ';
+ $form_items['button_update_row']['html'] = ' ';
$form_items['button_create_row'] = [];
$form_items['button_create_row']['items'] = ['datos'];
- $form_items['button_create_row']['html'] = ''.html_print_button(__('Cancel'), 'cancel_button', false, 'cancel_button_palette_callback();', 'class="sub cancel"', true).' '.html_print_button(__('Create'), 'create_button', false, 'create_button_palette_callback();', 'class="sub wand"', true).' ';
+ $form_items['button_create_row']['html'] = ' ';
foreach ($form_items as $item => $item_options) {
echo '';
@@ -1054,14 +1102,18 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'.__('Restrict access to group').''.' '.html_print_select_groups(
+ $form_items_advance['element_group_row']['html'] = ' ';
+ $form_items_advance['element_group_row']['html'] .= __('Restrict access to group');
+ $form_items_advance['element_group_row']['html'] .= ui_print_help_tip(
+ __('If selected, restrict visualization of this item in the visual console to users who have access to selected group. This is also used on calculating child visual consoles.'),
+ true
+ );
+ $form_items_advance['element_group_row']['html'] .= ' ';
+ $form_items_advance['element_group_row']['html'] .= '';
+ $form_items_advance['element_group_row']['html'] .= html_print_select_groups(
$config['id_user'],
'VR',
true,
@@ -1211,10 +1271,8 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background)
'',
'',
true
- ).ui_print_help_tip(
- __('If selected, restrict visualization of this item in the visual console to users who have access to selected group. This is also used on calculating child visual consoles.'),
- true
- ).' ';
+ );
+ $form_items_advance['element_group_row']['html'] .= '';
if (!$config['legacy_vc']) {
$intervals = [
@@ -1393,8 +1451,8 @@ function visual_map_editor_print_toolbox()
visual_map_print_button_editor('icon', __('Icon'), 'left', false, 'icon_min', true);
visual_map_print_button_editor('clock', __('Clock'), 'left', false, 'clock_min', true);
visual_map_print_button_editor('group_item', __('Group'), 'left', false, 'group_item_min', true);
- visual_map_print_button_editor('box_item', __('Box'), 'left', false, 'box_item_min', true);
- visual_map_print_button_editor('line_item', __('Line'), 'left', false, 'line_item_min', true);
+ visual_map_print_button_editor('box_item', __('Box'), 'left', false, 'box_item', true);
+ visual_map_print_button_editor('line_item', __('Line'), 'left', false, 'line_item', true);
visual_map_print_button_editor('color_cloud', __('Color cloud'), 'left', false, 'color_cloud_min', true);
if (isset($config['legacy_vc']) === false
|| (bool) $config['legacy_vc'] === false
@@ -1415,9 +1473,9 @@ function visual_map_editor_print_toolbox()
$text_autosave = html_print_input_hidden('auto_save', true, true);
visual_map_print_item_toolbox('auto_save', $text_autosave, 'right');
- visual_map_print_button_editor('show_grid', __('Show grid'), 'right', true, 'grid_min', true);
- visual_map_print_button_editor('edit_item', __('Update item'), 'right', true, 'config_min', true);
- visual_map_print_button_editor('delete_item', __('Delete item'), 'right', true, 'delete_min', true);
+ visual_map_print_button_editor('show_grid', __('Show grid'), 'right', true, 'show_grid', true);
+ visual_map_print_button_editor('edit_item', __('Update item'), 'right', true, 'edit_item', true);
+ visual_map_print_button_editor('delete_item', __('Delete item'), 'right', true, 'delete_item', true);
visual_map_print_button_editor('copy_item', __('Copy item'), 'right', true, 'copy_item', true);
echo '';
echo '';
@@ -1435,12 +1493,12 @@ function visual_map_print_button_editor(
) {
html_print_button(
$label,
- 'button_toolbox2',
+ $idDiv,
$disabled,
- "click_button_toolbox('".$idDiv."');",
+ 'click_button_toolbox("'.$idDiv.'");',
[
- 'icon' => $class,
- 'mode' => 'onlyIcon',
+ 'class' => $class.' float-'.$float,
+ 'mode' => 'onlyIcon',
],
false,
$imageButton
diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js
index ee99a0ad4f..4be0fd1f79 100644
--- a/pandora_console/include/graphs/flot/pandora.flot.js
+++ b/pandora_console/include/graphs/flot/pandora.flot.js
@@ -1975,25 +1975,27 @@ function pandoraFlotArea(
!(type == 1 && /percentil/.test(index) == true) &&
!(type == 3 && /percentil/.test(index) == true)
) {
- data_base.push({
- id: "serie_" + i,
- data: value.data,
- label: index,
- color: color[index]["color"],
- lines: {
- show: line_show,
- fill: filled,
- lineWidth: lineWidth,
- steps: steps_chart
- },
- points: {
- show: points_show,
- radius: radius,
- fillColor: fill_points,
- fill: filled
- },
- legend: legend.index
- });
+ if (color[index] !== null) {
+ data_base.push({
+ id: "serie_" + i,
+ data: value.data,
+ label: index,
+ color: color[index]["color"],
+ lines: {
+ show: line_show,
+ fill: filled,
+ lineWidth: lineWidth,
+ steps: steps_chart
+ },
+ points: {
+ show: points_show,
+ radius: radius,
+ fillColor: fill_points,
+ fill: filled
+ },
+ legend: legend.index
+ });
+ }
}
}
i++;
diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php
index 1ee377f290..d1856b7b4c 100644
--- a/pandora_console/include/graphs/functions_flot.php
+++ b/pandora_console/include/graphs/functions_flot.php
@@ -756,8 +756,9 @@ function flot_slicesbar_graph(
'server_id' => $server_id,
];
// TO-DO Cambiar esto para que se pase por POST, NO SE PUEDE PASAR POR GET.
- update_config_token($tokem_config, json_encode($graph_data));
-
+ update_check_config_token($tokem_config, json_encode($graph_data));
+ $_SESSION['slicebar'] = $tokem_config;
+ $_SESSION['slicebar_value'] = json_encode($graph_data);
$graph = '';
diff --git a/pandora_console/include/javascript/d3.3.5.14.js b/pandora_console/include/javascript/d3.3.5.14.js
index 092de8d4c1..eb34e540d8 100644
--- a/pandora_console/include/javascript/d3.3.5.14.js
+++ b/pandora_console/include/javascript/d3.3.5.14.js
@@ -1395,6 +1395,76 @@
duration = +_;
return zoom;
};
+ zoom.setTranslate = function(v) {
+ translate = v;
+ };
+ zoom.convertLevelsToScale = function(i) {
+ min = Math.pow(2, (-360 * i) * .002) * 1;
+ max = Math.pow(2, (360 * i) * .002) * 1;
+
+ return [min, max];
+ };
+ zoom.getZoomLevel = function(x, y) {
+ if (typeof(x) == 'undefined') {
+ x = 0;
+ //Get center
+ }
+ if (typeof(y) == 'undefined') {
+ y = 0;
+ //Get center
+ }
+
+ var zoom_levels = [];
+
+ if (!translate0)
+ translate0 = location([x, y]);
+
+ var old_scale = scale;
+ var old_translate = [translate[0], translate[1]];
+
+ var count = 0;
+
+
+ scale = 1;
+ high_levels = [];
+ high_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]});
+ do {
+ scaleTo(Math.pow(2, 360 * .002) * scale);
+ translateTo([x, y], translate0);
+
+ high_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]});
+
+ if (count > 30) {
+ break;
+ }
+ count++;
+ }
+ while (scale < scaleExtent[1]);
+ scale = 1;
+ count = 0;
+ do {
+ scaleTo(Math.pow(2, -360 * .002) * scale);
+ translateTo([x, y], translate0);
+
+ zoom_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]});
+
+ if (count > 30) {
+ break;
+ }
+ count++;
+ }
+ while (scale > scaleExtent[0]);
+
+ zoom_levels.reverse();
+ high_levels.forEach(function(v, i) {
+ zoom_levels.push(v);
+ });
+
+ scale = old_scale;
+ translate = old_translate;
+
+ return zoom_levels;
+ };
zoom.x = function(z) {
if (!arguments.length) return x1;
x1 = z;
@@ -9550,4 +9620,4 @@
return request.responseXML;
});
if (typeof define === "function" && define.amd) this.d3 = d3, define(d3); else if (typeof module === "object" && module.exports) module.exports = d3; else this.d3 = d3;
-}();
\ No newline at end of file
+}();
diff --git a/pandora_console/include/javascript/multiselect_filtered.js b/pandora_console/include/javascript/multiselect_filtered.js
index dcaee528b0..7bdeba4baf 100644
--- a/pandora_console/include/javascript/multiselect_filtered.js
+++ b/pandora_console/include/javascript/multiselect_filtered.js
@@ -249,7 +249,7 @@ function fmModuleChange(uniqId, isMeta) {
)
.html(value["nombre"]);
} else {
- option.attr("value", value).html(value);
+ option.attr("value", id).html(value);
}
$("#filtered-module-modules-" + uniqId).append(option);
diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js
index f5d444ae36..22815792e0 100644
--- a/pandora_console/include/javascript/pandora.js
+++ b/pandora_console/include/javascript/pandora.js
@@ -2298,6 +2298,8 @@ var formatterDataVerticalBar = function(value, ctx) {
$(document).ready(function() {
$("#icon_about").click(function() {
$("#icon_about").addClass("selected");
+ // Hidden tips modal.
+ $(".window").css("display", "none");
jQuery.post(
"ajax.php",
diff --git a/pandora_console/include/javascript/pandora_alerts.js b/pandora_console/include/javascript/pandora_alerts.js
index b527067290..7af8b5b1ec 100644
--- a/pandora_console/include/javascript/pandora_alerts.js
+++ b/pandora_console/include/javascript/pandora_alerts.js
@@ -21,7 +21,10 @@ function parse_alert_command(command, classs) {
"[RECOVER]" + $($(".fields")[nfield - 1]).val()
);
}
- } else if ($(this).css("-webkit-text-security") == "disc") {
+ } else if (
+ $(this).css("-webkit-text-security") == "disc" ||
+ $(this).css("font-family") == "text-security-disc"
+ ) {
var hidden_character = "*";
var hidden_string = hidden_character.repeat($(this).val().length);
diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js
index 27e4bc5fef..4a64a9f2e6 100644
--- a/pandora_console/include/javascript/pandora_modules.js
+++ b/pandora_console/include/javascript/pandora_modules.js
@@ -377,6 +377,10 @@ function configure_modules_form() {
);
$("#textarea_tcp_send").html(js_html_entity_decode(data["tcp_send"]));
$("#textarea_tcp_rcv").html(js_html_entity_decode(data["tcp_rcv"]));
+ $("#text-ip_target").attr(
+ "value",
+ js_html_entity_decode(data["target_ip"])
+ );
$("#text-snmp_community").attr(
"value",
js_html_entity_decode(data["snmp_community"])
@@ -997,13 +1001,18 @@ function add_macro_field(macro, row_model_id, type_copy, k) {
$("#" + row_id).show();
}
-function load_plugin_macros_fields(row_model_id) {
+function load_plugin_macros_fields(row_model_id, moduleId = 0) {
// Get plugin macros when selected and load macros fields
var id_plugin = $("#id_plugin").val();
var params = [];
params.push("page=include/ajax/module");
- params.push("get_plugin_macros=1");
+
+ if (moduleId > 0) {
+ params.push("get_module_macros=" + moduleId);
+ } else {
+ params.push("get_plugin_macros=1");
+ }
params.push("id_plugin=" + id_plugin);
jQuery.ajax({
@@ -1539,10 +1548,7 @@ function changePlugin() {
var pluginDescription = pluginAllData.description;
var pluginMacros = pluginAllData.macros;
- console.log(pluginAllData.macrosElement);
var pluginMacrosElement = JSON.parse(atob(pluginAllData.macrosElement));
- console.log(pluginMacrosElement);
-
var displayShow = "none";
if (executionType == EXECUTION_TYPE_NETWORK) {
displayShow = "none";
diff --git a/pandora_console/include/javascript/pandora_snmp_browser.js b/pandora_console/include/javascript/pandora_snmp_browser.js
index 5f478e2947..58a1972c40 100644
--- a/pandora_console/include/javascript/pandora_snmp_browser.js
+++ b/pandora_console/include/javascript/pandora_snmp_browser.js
@@ -258,7 +258,7 @@ function snmpGet(oid) {
var ajax_url = $("#hidden-ajax_url").val();
var server_to_exec = $("#server_to_exec").val();
var target_port = $("#target_port").val();
- var print_create_agent_module = $("#print_create_agent_module").val();
+ var print_create_agent_module = true;
// Check for a custom action
var custom_action = $("#hidden-custom_action").val();
@@ -533,7 +533,7 @@ function checkSNMPVersion() {
}
// Show the SNMP browser window
-function snmpBrowserWindow() {
+function snmpBrowserWindow(id_agente = 0) {
// Keep elements in the form and the SNMP browser synced
$("#text-target_ip").val($("#text-ip_target").val());
$("#target_port").val($("#text-tcp_port").val());
@@ -549,6 +549,8 @@ function snmpBrowserWindow() {
$("#password-snmp3_browser_privacy_pass").val(
$("#password-snmp3_privacy_pass").val()
);
+ // Realation agente module.
+ $("#id_agent_module").val(id_agente);
checkSNMPVersion();
diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo
index c224f28c31..d620479ee3 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 7e6b0bb062..0630536209 100644
--- a/pandora_console/include/languages/es.po
+++ b/pandora_console/include/languages/es.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-09 10:50+0200\n"
-"PO-Revision-Date: 2023-05-09 12:15+0200\n"
+"POT-Creation-Date: 2023-06-06 09:26+0200\n"
+"PO-Revision-Date: 2023-06-06 10:19+0200\n"
"Last-Translator: Laura Cano
WARNING: you also need to delete config."
"php options in your console or delete the whole console."
@@ -549,7 +571,7 @@ msgstr ""
"¿Está seguro?
ADVERTENCIA: También debe eliminar las "
"opciones de config.php en su consola o eliminar la consola completa."
-#: ../../views/consoles/list.php:127
+#: ../../views/consoles/list.php:128
#: ../../views/calendar/special_days_edit.php:209
#: ../../views/calendar/special_days.php:430
#: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70
@@ -576,23 +598,23 @@ msgstr ""
#: ../../enterprise/include/class/DeploymentCenter.class.php:1824
#: ../../enterprise/include/class/AgentRepository.class.php:903
#: ../../enterprise/include/class/AgentRepository.class.php:1001
-#: ../../enterprise/include/class/LogSource.class.php:824
-#: ../../enterprise/include/class/LogSource.class.php:877
+#: ../../enterprise/include/class/LogSource.class.php:821
+#: ../../enterprise/include/class/LogSource.class.php:874
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114
#: ../../enterprise/include/class/ManageBackups.class.php:455
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:926
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:949
-#: ../../update_manager_client/views/register.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:254
+#: ../../update_manager_client/views/register.php:86
+#: ../../godmode/agentes/status_monitor_custom_fields.php:274
#: ../../godmode/snmpconsole/snmp_alert.php:2226
#: ../../godmode/snmpconsole/snmp_alert.php:2241
#: ../../godmode/massive/massive_operations.php:416
#: ../../godmode/setup/snmp_wizard.php:100
#: ../../godmode/events/custom_events.php:234
-#: ../../include/functions_visual_map_editor.php:878
-#: ../../include/functions_visual_map_editor.php:882
+#: ../../include/functions_visual_map_editor.php:926
+#: ../../include/functions_visual_map_editor.php:930
#: ../../include/functions_register.php:179
#: ../../include/class/ConfigPEN.class.php:675
#: ../../include/class/ConfigPEN.class.php:699
@@ -601,23 +623,24 @@ msgstr ""
#: ../../include/class/SatelliteAgent.class.php:1199
#: ../../include/class/SatelliteAgent.class.php:1261
#: ../../include/class/TreeGroupEdition.class.php:165
-#: ../../include/class/NetworkMap.class.php:2951
-#: ../../include/class/CredentialStore.class.php:1647
-#: ../../include/class/CredentialStore.class.php:1699
-#: ../../include/class/ModuleTemplates.class.php:1360
+#: ../../include/class/NetworkMap.class.php:2957
+#: ../../include/class/CredentialStore.class.php:1656
+#: ../../include/class/CredentialStore.class.php:1708
+#: ../../include/class/ModuleTemplates.class.php:1364
#: ../../include/class/WelcomeWindow.class.php:174
#: ../../include/class/SatelliteCollection.class.php:536
#: ../../include/class/SatelliteCollection.class.php:579
-#: ../../include/class/AgentWizard.class.php:6234
+#: ../../include/class/AgentWizard.class.php:6230
#: ../../operation/agentes/pandora_networkmap.editor.php:746
-#: ../../operation/snmpconsole/snmp_browser.php:174
-#: ../../operation/snmpconsole/snmp_browser.php:545
-#: ../../operation/snmpconsole/snmp_browser.php:625
-#: ../../operation/snmpconsole/snmp_browser.php:640 ../../general/header.php:834
+#: ../../operation/snmpconsole/snmp_browser.php:179
+#: ../../operation/snmpconsole/snmp_browser.php:550
+#: ../../operation/snmpconsole/snmp_browser.php:623
+#: ../../operation/snmpconsole/snmp_browser.php:684
+#: ../../operation/snmpconsole/snmp_browser.php:699 ../../general/header.php:834
msgid "Cancel"
msgstr "Cancelar"
-#: ../../views/consoles/list.php:164
+#: ../../views/consoles/list.php:165
#: ../../enterprise/godmode/services/services.elements.php:956
#: ../../enterprise/godmode/services/services.elements.php:967
#: ../../enterprise/godmode/setup/setup.php:595
@@ -627,24 +650,25 @@ msgstr "Cancelar"
#: ../../enterprise/include/class/DeploymentCenter.class.php:1647
#: ../../enterprise/include/class/AgentRepository.class.php:944
#: ../../enterprise/include/class/Omnishell.class.php:1306
-#: ../../enterprise/include/class/LogSource.class.php:767
+#: ../../enterprise/include/class/LogSource.class.php:764
#: ../../enterprise/include/class/ManageBackups.class.php:482
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1079
#: ../../include/ajax/snmp_browser.ajax.php:260
#: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743
#: ../../include/class/SatelliteAgent.class.php:1046
#: ../../include/class/HelpFeedBack.class.php:360
-#: ../../include/class/Diagnostics.class.php:2115
-#: ../../include/class/CredentialStore.class.php:1590
-#: ../../include/class/ModuleTemplates.class.php:1395
+#: ../../include/class/Diagnostics.class.php:2119
+#: ../../include/class/CredentialStore.class.php:1599
+#: ../../include/class/ModuleTemplates.class.php:1399
+#: ../../include/class/AgentDeployWizard.class.php:604
#: ../../include/class/SatelliteCollection.class.php:616
#: ../../include/class/WebServerModuleDebug.class.php:359
-#: ../../include/class/AgentWizard.class.php:6027
-#: ../../operation/visual_console/view.php:937
+#: ../../include/class/AgentWizard.class.php:6023
+#: ../../operation/visual_console/view.php:939
msgid "Success"
msgstr "Finalizado correctamente"
-#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179
+#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657
#: ../../enterprise/include/functions_HA_cluster.php:542
#: ../../enterprise/include/functions_HA_cluster.php:547
@@ -654,8 +678,8 @@ msgstr "Finalizado correctamente"
#: ../../enterprise/include/class/AgentRepository.class.php:951
#: ../../enterprise/include/class/AgentRepository.class.php:956
#: ../../enterprise/include/class/Omnishell.class.php:1302
-#: ../../enterprise/include/class/LogSource.class.php:774
-#: ../../enterprise/include/class/LogSource.class.php:779
+#: ../../enterprise/include/class/LogSource.class.php:771
+#: ../../enterprise/include/class/LogSource.class.php:776
#: ../../enterprise/include/class/ManageBackups.class.php:493
#: ../../enterprise/include/class/ManageBackups.class.php:498
#: ../../enterprise/include/functions_ux_console.php:483
@@ -669,19 +693,21 @@ msgstr "Finalizado correctamente"
#: ../../include/class/SatelliteAgent.class.php:1055
#: ../../include/class/SatelliteAgent.class.php:1060
#: ../../include/class/HelpFeedBack.class.php:355
-#: ../../include/class/Diagnostics.class.php:2114
-#: ../../include/class/CredentialStore.class.php:1597
-#: ../../include/class/CredentialStore.class.php:1602
-#: ../../include/class/ModuleTemplates.class.php:1402
-#: ../../include/class/ModuleTemplates.class.php:1407
+#: ../../include/class/Diagnostics.class.php:2118
+#: ../../include/class/CredentialStore.class.php:1606
+#: ../../include/class/CredentialStore.class.php:1611
+#: ../../include/class/ModuleTemplates.class.php:1406
+#: ../../include/class/ModuleTemplates.class.php:1411
+#: ../../include/class/AgentDeployWizard.class.php:611
+#: ../../include/class/AgentDeployWizard.class.php:616
#: ../../include/class/SatelliteCollection.class.php:626
#: ../../include/class/SatelliteCollection.class.php:631
#: ../../include/class/WebServerModuleDebug.class.php:366
#: ../../include/class/WebServerModuleDebug.class.php:371
-#: ../../include/class/AgentWizard.class.php:6034
-#: ../../include/class/AgentWizard.class.php:6039
-#: ../../operation/visual_console/view.php:944
-#: ../../operation/visual_console/view.php:949
+#: ../../include/class/AgentWizard.class.php:6030
+#: ../../include/class/AgentWizard.class.php:6035
+#: ../../operation/visual_console/view.php:946
+#: ../../operation/visual_console/view.php:951
msgid "Failed"
msgstr "Fallo"
@@ -707,21 +733,21 @@ msgstr "Fallo"
#: ../../enterprise/include/functions_policies.php:3734
#: ../../enterprise/operation/agentes/tag_view.php:702
#: ../../enterprise/operation/services/massive/services.create.php:897
-#: ../../godmode/groups/configure_group.php:224
-#: ../../godmode/groups/group_list.php:880 ../../godmode/groups/tactical.php:181
+#: ../../godmode/groups/configure_group.php:243
+#: ../../godmode/groups/group_list.php:881 ../../godmode/groups/tactical.php:181
#: ../../godmode/agentes/configurar_agente.php:441
#: ../../godmode/agentes/configurar_agente.php:745
-#: ../../godmode/agentes/modificar_agente.php:829
-#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265
+#: ../../godmode/agentes/modificar_agente.php:841
+#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263
#: ../../godmode/massive/massive_copy_modules.php:216
#: ../../godmode/alerts/configure_alert_command.php:58
#: ../../godmode/alerts/alert_actions.php:70
#: ../../godmode/alerts/alert_commands.php:581
-#: ../../godmode/alerts/alert_templates.php:126
-#: ../../godmode/alerts/alert_templates.php:135
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
+#: ../../godmode/alerts/alert_templates.php:129
+#: ../../godmode/alerts/alert_templates.php:138
+#: ../../godmode/alerts/alert_templates.php:192
+#: ../../godmode/alerts/alert_templates.php:215
+#: ../../godmode/alerts/alert_templates.php:236
#: ../../godmode/alerts/configure_alert_action.php:72
#: ../../godmode/alerts/configure_alert_action.php:92
#: ../../godmode/alerts/configure_alert_template.php:95
@@ -730,20 +756,20 @@ msgstr "Fallo"
#: ../../godmode/alerts/alert_view.php:74 ../../godmode/alerts/alert_list.php:504
#: ../../godmode/alerts/alert_list.php:523
#: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98
-#: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74
-#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194
-#: ../../include/functions_reporting_html.php:2594
-#: ../../include/functions_reporting_html.php:5671
-#: ../../include/functions_treeview.php:392
+#: ../../mobile/operation/agents.php:408 ../../mobile/operation/home.php:74
+#: ../../mobile/operation/agent.php:358 ../../mobile/operation/alerts.php:194
+#: ../../include/functions_reporting_html.php:2615
+#: ../../include/functions_reporting_html.php:5699
+#: ../../include/functions_treeview.php:396
#: ../../include/functions_reports.php:855
#: ../../include/functions_reports.php:859
#: ../../include/functions_reports.php:865
#: ../../include/functions_reports.php:871
#: ../../include/class/AgentsAlerts.class.php:567
#: ../../operation/search_agents.php:57 ../../operation/search_results.php:107
-#: ../../operation/agentes/estado_agente.php:1052
+#: ../../operation/agentes/estado_agente.php:1060
#: ../../operation/agentes/ver_agente.php:1436
-#: ../../operation/agentes/ver_agente.php:1848
+#: ../../operation/agentes/ver_agente.php:1844
msgid "Alerts"
msgstr "Alertas"
@@ -766,7 +792,7 @@ msgstr "Días especiales"
#: ../../enterprise/godmode/policies/policy_alerts.php:68
#: ../../enterprise/godmode/policies/configure_policy.php:85
#: ../../enterprise/godmode/policies/policy_modules.php:481
-#: ../../enterprise/godmode/policies/policy_queue.php:211
+#: ../../enterprise/godmode/policies/policy_queue.php:213
#: ../../enterprise/godmode/policies/policies.php:268
#: ../../enterprise/godmode/policies/policy_linking.php:120
#: ../../enterprise/godmode/policies/policy_external_alerts.php:322
@@ -786,10 +812,10 @@ msgstr "Días especiales"
#: ../../extensions/resource_registration.php:1105
#: ../../godmode/modules/manage_nc_groups.php:315
#: ../../godmode/modules/manage_inventory_modules.php:67
-#: ../../godmode/modules/manage_network_components.php:314
+#: ../../godmode/modules/manage_network_components.php:315
#: ../../godmode/groups/group_list.php:393
#: ../../godmode/groups/modu_group_list.php:95
-#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:537
+#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:538
#: ../../godmode/agentes/modificar_agente.php:118
#: ../../godmode/massive/massive_operations.php:433
#: ../../godmode/massive/massive_edit_users.php:47
@@ -798,7 +824,7 @@ msgstr "Días especiales"
#: ../../godmode/alerts/configure_alert_command.php:194
#: ../../godmode/alerts/alert_actions.php:218
#: ../../godmode/alerts/alert_commands.php:730
-#: ../../godmode/alerts/alert_templates.php:266
+#: ../../godmode/alerts/alert_templates.php:270
#: ../../godmode/alerts/configure_alert_action.php:125
#: ../../godmode/alerts/configure_alert_template.php:429
#: ../../godmode/setup/os.list.php:49
@@ -817,7 +843,7 @@ msgstr "metaconsola"
#: ../../enterprise/godmode/policies/policy_alerts.php:70
#: ../../enterprise/godmode/policies/configure_policy.php:87
#: ../../enterprise/godmode/policies/policy_modules.php:483
-#: ../../enterprise/godmode/policies/policy_queue.php:213
+#: ../../enterprise/godmode/policies/policy_queue.php:215
#: ../../enterprise/godmode/policies/policies.php:270
#: ../../enterprise/godmode/policies/policy_linking.php:122
#: ../../enterprise/godmode/policies/policy_external_alerts.php:324
@@ -835,10 +861,10 @@ msgstr "metaconsola"
#: ../../extensions/resource_registration.php:1107
#: ../../godmode/modules/manage_nc_groups.php:317
#: ../../godmode/modules/manage_inventory_modules.php:69
-#: ../../godmode/modules/manage_network_components.php:316
+#: ../../godmode/modules/manage_network_components.php:317
#: ../../godmode/groups/group_list.php:395
#: ../../godmode/groups/modu_group_list.php:97
-#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:539
+#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:540
#: ../../godmode/agentes/modificar_agente.php:120
#: ../../godmode/massive/massive_operations.php:435
#: ../../godmode/massive/massive_edit_users.php:49
@@ -847,7 +873,7 @@ msgstr "metaconsola"
#: ../../godmode/alerts/configure_alert_command.php:196
#: ../../godmode/alerts/alert_actions.php:220
#: ../../godmode/alerts/alert_commands.php:732
-#: ../../godmode/alerts/alert_templates.php:268
+#: ../../godmode/alerts/alert_templates.php:272
#: ../../godmode/alerts/configure_alert_action.php:127
#: ../../godmode/alerts/configure_alert_template.php:431
#: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188
@@ -872,7 +898,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_excel.php:207
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:778
#: ../../extensions/api_checker.php:286 ../../godmode/modules/module_list.php:97
-#: ../../godmode/groups/group_list.php:874
+#: ../../godmode/groups/group_list.php:875
#: ../../godmode/groups/modu_group_list.php:260
#: ../../godmode/agentes/fields_manager.php:152
#: ../../godmode/agentes/agent_manager.php:364
@@ -899,7 +925,7 @@ msgstr "ID"
#: ../../enterprise/views/ncm/vendors/edit.php:67
#: ../../enterprise/views/ipam/sites/list.php:46
#: ../../enterprise/views/ipam/sites/edit.php:40
-#: ../../enterprise/meta/advanced/servers.build_table.php:61
+#: ../../enterprise/meta/advanced/servers.build_table.php:77
#: ../../enterprise/meta/advanced/collections.data.php:350
#: ../../enterprise/meta/include/functions_autoprovision.php:495
#: ../../enterprise/meta/include/functions_autoprovision.php:603
@@ -922,7 +948,7 @@ msgstr "ID"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130
#: ../../enterprise/godmode/policies/configure_policy.php:112
-#: ../../enterprise/godmode/policies/policy_modules.php:1544
+#: ../../enterprise/godmode/policies/policy_modules.php:1589
#: ../../enterprise/godmode/policies/policies.php:437
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270
#: ../../enterprise/godmode/policies/policy_collections.php:240
@@ -985,25 +1011,25 @@ msgstr "ID"
#: ../../godmode/modules/manage_inventory_modules_form.php:115
#: ../../godmode/modules/module_list.php:99
#: ../../godmode/modules/manage_network_templates.php:248
-#: ../../godmode/groups/configure_group.php:132
-#: ../../godmode/groups/group_list.php:876
+#: ../../godmode/groups/configure_group.php:142
+#: ../../godmode/groups/group_list.php:877
#: ../../godmode/groups/configure_modu_group.php:82
#: ../../godmode/groups/modu_group_list.php:261
-#: ../../godmode/users/user_list.php:574
+#: ../../godmode/users/user_list.php:575
#: ../../godmode/agentes/inventory_manager.php:233
#: ../../godmode/agentes/planned_downtime.editor.php:882
#: ../../godmode/agentes/planned_downtime.editor.php:1356
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128
#: ../../godmode/agentes/configure_field.php:115
#: ../../godmode/agentes/module_manager_editor_common.php:252
-#: ../../godmode/agentes/module_manager_editor_common.php:1430
+#: ../../godmode/agentes/module_manager_editor_common.php:1440
#: ../../godmode/agentes/module_manager.php:605
#: ../../godmode/netflow/nf_edit.php:166
-#: ../../godmode/netflow/nf_edit_form.php:199
+#: ../../godmode/netflow/nf_edit_form.php:242
#: ../../godmode/alerts/configure_alert_command.php:220
#: ../../godmode/alerts/alert_actions.php:351
#: ../../godmode/alerts/alert_commands.php:749
-#: ../../godmode/alerts/alert_templates.php:409
+#: ../../godmode/alerts/alert_templates.php:413
#: ../../godmode/alerts/configure_alert_action.php:183
#: ../../godmode/alerts/configure_alert_template.php:1080
#: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73
@@ -1012,44 +1038,49 @@ msgstr "ID"
#: ../../godmode/reporting/visual_console_builder.data.php:151
#: ../../godmode/reporting/create_container.php:247
#: ../../godmode/reporting/reporting_builder.item_editor.php:83
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1085
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1087
#: ../../godmode/reporting/reporting_builder.main.php:91
#: ../../godmode/reporting/reporting_builder.main.php:95
#: ../../godmode/reporting/graph_builder.main.php:128
#: ../../godmode/events/event_filter.php:144
#: ../../godmode/events/event_responses.editor.php:97
#: ../../godmode/events/event_responses.list.php:66
-#: ../../godmode/servers/servers.build_table.php:77
+#: ../../godmode/servers/servers.build_table.php:79
#: ../../godmode/servers/modificar_server.php:91
-#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992
-#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190
+#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984
+#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194
#: ../../godmode/category/edit_category.php:189
+#: ../../mobile/operation/module_data.php:264
+#: ../../mobile/operation/server_status.php:283
+#: ../../mobile/operation/server_status.php:321
+#: ../../mobile/operation/server_status.php:351
+#: ../../mobile/operation/server_status.php:447
#: ../../include/functions_reporting_html.php:1058
#: ../../include/functions_reporting_html.php:1066
-#: ../../include/functions_reporting_html.php:1760
-#: ../../include/functions_reporting_html.php:2643
-#: ../../include/functions_reporting_html.php:2993
-#: ../../include/functions_reporting_html.php:3709
-#: ../../include/functions_reporting_html.php:6370
+#: ../../include/functions_reporting_html.php:1769
+#: ../../include/functions_reporting_html.php:2662
+#: ../../include/functions_reporting_html.php:3021
+#: ../../include/functions_reporting_html.php:3737
+#: ../../include/functions_reporting_html.php:6404
#: ../../include/functions_treeview.php:69
#: ../../include/class/EventSound.class.php:306
-#: ../../include/class/NetworkMap.class.php:3063
-#: ../../include/class/NetworkMap.class.php:3109
-#: ../../include/class/NetworkMap.class.php:3121
-#: ../../include/class/NetworkMap.class.php:3491
+#: ../../include/class/NetworkMap.class.php:3069
+#: ../../include/class/NetworkMap.class.php:3115
+#: ../../include/class/NetworkMap.class.php:3127
+#: ../../include/class/NetworkMap.class.php:3497
#: ../../include/class/ManageNetScanScripts.class.php:403
-#: ../../include/class/ManageNetScanScripts.class.php:553
+#: ../../include/class/ManageNetScanScripts.class.php:549
#: ../../include/class/ModuleTemplates.class.php:848
#: ../../include/class/ModuleTemplates.class.php:1030
#: ../../include/class/CalendarManager.class.php:1026
#: ../../include/class/SatelliteCollection.class.php:132
-#: ../../include/functions_filemanager.php:644
-#: ../../include/functions_snmp_browser.php:1851
-#: ../../include/functions_events.php:4339
-#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44
+#: ../../include/functions_filemanager.php:659
+#: ../../include/functions_snmp_browser.php:1860
+#: ../../include/functions_events.php:4344
+#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44
#: ../../operation/search_helps.php:31
#: ../../operation/agentes/pandora_networkmap.editor.php:332
-#: ../../operation/agentes/pandora_networkmap.php:716
+#: ../../operation/agentes/pandora_networkmap.php:717
#: ../../operation/agentes/pandora_networkmap.view.php:137
#: ../../operation/gis_maps/gis_map.php:115
#: ../../operation/incidents/configure_integriaims_incident.php:232
@@ -1117,7 +1148,7 @@ msgstr "Nombre"
#: ../../enterprise/include/class/Omnishell.class.php:861
#: ../../enterprise/include/class/DB2.app.php:477
#: ../../enterprise/include/class/Aws.S3.php:441
-#: ../../enterprise/include/class/SAP.app.php:635
+#: ../../enterprise/include/class/SAP.app.php:636
#: ../../enterprise/include/class/Aws.cloud.php:566
#: ../../enterprise/include/class/Aws.cloud.php:1252
#: ../../enterprise/include/class/MySQL.app.php:482
@@ -1133,31 +1164,31 @@ msgstr "Nombre"
#: ../../enterprise/operation/agentes/tag_view.php:698
#: ../../enterprise/operation/agentes/ver_agente.php:70
#: ../../enterprise/operation/agentes/ver_agente.php:91
-#: ../../enterprise/operation/log/log_viewer.php:616
+#: ../../enterprise/operation/log/log_viewer.php:614
#: ../../enterprise/operation/services/services.service.php:112
#: ../../enterprise/operation/services/massive/services.create.php:678
#: ../../enterprise/operation/services/services.list.php:268
#: ../../enterprise/operation/services/services.list.php:540
#: ../../enterprise/operation/services/services.table_services.php:218
#: ../../enterprise/tools/ipam/ipam_editor.php:335
-#: ../../extensions/agents_modules.php:419
+#: ../../extensions/agents_modules.php:427
#: ../../godmode/modules/manage_network_templates_form.php:235
#: ../../godmode/modules/manage_network_templates_form.php:303
#: ../../godmode/modules/manage_network_templates_form.php:339
#: ../../godmode/modules/manage_network_components_form_common.php:131
-#: ../../godmode/modules/manage_network_components.php:659
-#: ../../godmode/modules/manage_network_components.php:778
-#: ../../godmode/users/user_list.php:469
+#: ../../godmode/modules/manage_network_components.php:662
+#: ../../godmode/modules/manage_network_components.php:781
+#: ../../godmode/users/user_list.php:470
#: ../../godmode/agentes/configurar_agente.php:518
#: ../../godmode/agentes/modificar_agente.php:314
-#: ../../godmode/agentes/modificar_agente.php:697
+#: ../../godmode/agentes/modificar_agente.php:707
#: ../../godmode/agentes/planned_downtime.list.php:735
#: ../../godmode/agentes/planned_downtime.editor.php:895
#: ../../godmode/agentes/planned_downtime.editor.php:1357
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
#: ../../godmode/agentes/agent_incidents.php:91
#: ../../godmode/netflow/nf_edit.php:167
-#: ../../godmode/netflow/nf_edit_form.php:211
+#: ../../godmode/netflow/nf_edit_form.php:256
#: ../../godmode/snmpconsole/snmp_alert.php:837
#: ../../godmode/gis_maps/configure_gis_map.php:509
#: ../../godmode/gis_maps/configure_gis_map.php:646
@@ -1167,7 +1198,7 @@ msgstr "Nombre"
#: ../../godmode/massive/massive_delete_action_alerts.php:210
#: ../../godmode/massive/massive_add_alerts.php:211
#: ../../godmode/massive/massive_enable_disable_alerts.php:170
-#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:711
#: ../../godmode/massive/massive_delete_profiles.php:153
#: ../../godmode/massive/massive_delete_alerts.php:290
#: ../../godmode/massive/massive_add_action_alerts.php:198
@@ -1177,10 +1208,10 @@ msgstr "Nombre"
#: ../../godmode/alerts/alert_actions.php:353
#: ../../godmode/alerts/alert_list.list.php:220
#: ../../godmode/alerts/alert_commands.php:751
-#: ../../godmode/alerts/alert_templates.php:410
+#: ../../godmode/alerts/alert_templates.php:414
#: ../../godmode/alerts/configure_alert_action.php:220
#: ../../godmode/alerts/configure_alert_template.php:1116
-#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70
+#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70
#: ../../godmode/setup/gis_step_2.php:237
#: ../../godmode/setup/setup_integria.php:426
#: ../../godmode/setup/setup_integria.php:560
@@ -1195,10 +1226,10 @@ msgstr "Nombre"
#: ../../godmode/reporting/visual_console_favorite.php:182
#: ../../godmode/reporting/reporting_builder.item_editor.php:72
#: ../../godmode/reporting/reporting_builder.item_editor.php:87
-#: ../../godmode/reporting/reporting_builder.item_editor.php:213
-#: ../../godmode/reporting/reporting_builder.item_editor.php:892
+#: ../../godmode/reporting/reporting_builder.item_editor.php:214
+#: ../../godmode/reporting/reporting_builder.item_editor.php:893
#: ../../godmode/reporting/reporting_builder.item_editor.php:1641
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3494
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3503
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.elements.php:343
#: ../../godmode/reporting/reporting_builder.main.php:119
@@ -1208,43 +1239,45 @@ msgstr "Nombre"
#: ../../godmode/reporting/graph_builder.main.php:176
#: ../../godmode/events/event_filter.php:145
#: ../../godmode/events/event_responses.editor.php:120
-#: ../../godmode/events/event_edit_filter.php:334
+#: ../../godmode/events/event_edit_filter.php:336
#: ../../godmode/events/event_responses.list.php:68
#: ../../godmode/events/custom_events.php:98
-#: ../../godmode/wizards/HostDevices.class.php:933
-#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157
-#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235
-#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171
+#: ../../godmode/wizards/HostDevices.class.php:935
+#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158
+#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236
+#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171
#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266
#: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113
#: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231
#: ../../mobile/operation/alerts.php:232
#: ../../mobile/operation/visualmaps.php:113
#: ../../mobile/operation/visualmaps.php:118
-#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671
-#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954
-#: ../../mobile/operation/events.php:955
+#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700
+#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998
+#: ../../mobile/operation/events.php:999
+#: ../../mobile/operation/server_status.php:162
+#: ../../mobile/operation/server_status.php:167
#: ../../include/functions_visual_map_editor.php:70
-#: ../../include/functions_visual_map_editor.php:594
-#: ../../include/functions_visual_map_editor.php:1395
-#: ../../include/functions_reporting_html.php:1604
-#: ../../include/functions_reporting_html.php:2355
-#: ../../include/functions_reporting_html.php:3660
-#: ../../include/functions_reporting_html.php:6458
-#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113
-#: ../../include/ajax/heatmap.ajax.php:358
+#: ../../include/functions_visual_map_editor.php:588
+#: ../../include/functions_visual_map_editor.php:1453
+#: ../../include/functions_reporting_html.php:1613
+#: ../../include/functions_reporting_html.php:2376
+#: ../../include/functions_reporting_html.php:3688
+#: ../../include/functions_reporting_html.php:6492
+#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142
+#: ../../include/ajax/heatmap.ajax.php:523
#: ../../include/ajax/custom_fields.php:630
#: ../../include/ajax/custom_fields.php:679
-#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228
+#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228
#: ../../include/functions_profile.php:204
-#: ../../include/functions_visual_map.php:4215
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551
-#: ../../include/rest-api/models/VisualConsole/Item.php:2140
-#: ../../include/functions_html.php:1561
+#: ../../include/functions_visual_map.php:4224
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697
+#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../include/functions_html.php:1566
#: ../../include/functions_massive_operations.php:124
-#: ../../include/class/NetworkMap.class.php:2985
-#: ../../include/class/NetworkMap.class.php:3046
-#: ../../include/class/NetworkMap.class.php:3412
+#: ../../include/class/NetworkMap.class.php:2991
+#: ../../include/class/NetworkMap.class.php:3052
+#: ../../include/class/NetworkMap.class.php:3418
#: ../../include/class/AgentsAlerts.class.php:774
#: ../../include/class/CredentialStore.class.php:814
#: ../../include/class/CredentialStore.class.php:846
@@ -1252,37 +1285,37 @@ msgstr "Nombre"
#: ../../include/class/CustomNetScan.class.php:506
#: ../../include/class/ModuleTemplates.class.php:728
#: ../../include/class/CalendarManager.class.php:1027
+#: ../../include/class/AgentDeployWizard.class.php:342
#: ../../include/functions_container.php:149
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:826
-#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1863
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:827
+#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1872
#: ../../include/functions_events.php:203 ../../include/functions_events.php:256
-#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122
+#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122
#: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46
-#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999
-#: ../../operation/visual_console/view.php:371
+#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996
+#: ../../operation/visual_console/view.php:373
#: ../../operation/agentes/estado_agente.php:291
-#: ../../operation/agentes/estado_agente.php:1039
+#: ../../operation/agentes/estado_agente.php:1047
#: ../../operation/agentes/pandora_networkmap.editor.php:344
#: ../../operation/agentes/pandora_networkmap.editor.php:428
#: ../../operation/agentes/interface_view.functions.php:37
#: ../../operation/agentes/exportdata.php:328
-#: ../../operation/agentes/status_monitor.php:816
-#: ../../operation/agentes/group_view.php:240
+#: ../../operation/agentes/status_monitor.php:815
+#: ../../operation/agentes/group_view.php:243
#: ../../operation/agentes/pandora_networkmap.view.php:140
#: ../../operation/agentes/pandora_networkmap.view.php:176
#: ../../operation/agentes/ver_agente.php:1036
-#: ../../operation/agentes/estado_generalagente.php:492
+#: ../../operation/agentes/estado_generalagente.php:463
#: ../../operation/agentes/alerts_status.functions.php:73
#: ../../operation/gis_maps/gis_map.php:116 ../../operation/gis_maps/ajax.php:332
#: ../../operation/gis_maps/ajax.php:438
#: ../../operation/incidents/configure_integriaims_incident.php:269
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340
#: ../../operation/incidents/list_integriaims_incidents.php:347
-#: ../../operation/inventory/inventory.php:510
-#: ../../operation/inventory/inventory.php:1002
-#: ../../operation/inventory/inventory.php:1296
-#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29
+#: ../../operation/inventory/inventory.php:512
+#: ../../operation/inventory/inventory.php:1248
+#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29
#: ../../general/ui/agents_list.php:76
msgid "Group"
msgstr "Grupo"
@@ -1297,7 +1330,7 @@ msgstr "Grupo"
#: ../../enterprise/views/ipam/sites/list.php:73
#: ../../enterprise/meta/advanced/metasetup.consoles.php:965
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295
#: ../../enterprise/include/class/LogSource.class.php:634
@@ -1308,16 +1341,16 @@ msgstr "Grupo"
#: ../../godmode/update_manager/update_manager.history.php:67
#: ../../godmode/agentes/modificar_agente.php:381
#: ../../godmode/snmpconsole/snmp_alert.php:1742
-#: ../../godmode/events/event_edit_filter.php:409
-#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318
-#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992
-#: ../../include/ajax/module.php:312 ../../include/class/ConfigPEN.class.php:630
+#: ../../godmode/events/event_edit_filter.php:411
+#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318
+#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036
+#: ../../include/ajax/module.php:335 ../../include/class/ConfigPEN.class.php:630
#: ../../include/class/EventSound.class.php:337
#: ../../include/class/CredentialStore.class.php:858
#: ../../include/class/SnmpConsole.class.php:374
#: ../../include/class/AuditLog.class.php:197
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241
-#: ../../operation/events/events.php:1820
+#: ../../operation/events/events.php:1874
msgid "Free search"
msgstr "Búsqueda libre"
@@ -1369,8 +1402,8 @@ msgstr "Búsqueda libre"
#: ../../enterprise/godmode/agentes/collections.php:593
#: ../../enterprise/godmode/policies/configure_policy.php:169
#: ../../enterprise/godmode/policies/policy_modules.php:433
-#: ../../enterprise/godmode/policies/policy_modules.php:1746
-#: ../../enterprise/godmode/policies/policy_modules.php:1871
+#: ../../enterprise/godmode/policies/policy_modules.php:1791
+#: ../../enterprise/godmode/policies/policy_modules.php:1916
#: ../../enterprise/godmode/policies/policies.php:728
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165
@@ -1395,50 +1428,50 @@ msgstr "Búsqueda libre"
#: ../../godmode/modules/manage_network_templates_form.php:180
#: ../../godmode/modules/manage_nc_groups.php:344
#: ../../godmode/modules/manage_inventory_modules.php:374
-#: ../../godmode/modules/manage_network_components_form.php:379
-#: ../../godmode/modules/manage_network_components.php:896
+#: ../../godmode/modules/manage_network_components_form.php:382
+#: ../../godmode/modules/manage_network_components.php:899
#: ../../godmode/modules/manage_inventory_modules_form.php:249
#: ../../godmode/modules/manage_network_templates.php:311
-#: ../../godmode/groups/configure_group.php:277
+#: ../../godmode/groups/configure_group.php:296
#: ../../godmode/groups/configure_modu_group.php:102
-#: ../../godmode/users/configure_user.php:1665
+#: ../../godmode/users/configure_user.php:1717
#: ../../godmode/agentes/module_manager_editor.php:817
#: ../../godmode/agentes/planned_downtime.list.php:680
#: ../../godmode/agentes/planned_downtime.list.php:989
-#: ../../godmode/agentes/agent_manager.php:1081
+#: ../../godmode/agentes/agent_manager.php:1087
#: ../../godmode/agentes/configure_field.php:203
-#: ../../godmode/agentes/module_manager.php:1119
-#: ../../godmode/netflow/nf_edit_form.php:338
+#: ../../godmode/agentes/module_manager.php:1134
+#: ../../godmode/netflow/nf_edit_form.php:454
#: ../../godmode/snmpconsole/snmp_alert.php:1711
#: ../../godmode/snmpconsole/snmp_alert.php:2177
#: ../../godmode/snmpconsole/snmp_filters.php:275
#: ../../godmode/snmpconsole/snmp_filters.php:366
#: ../../godmode/alerts/configure_alert_command.php:395
#: ../../godmode/alerts/alert_actions.php:502
-#: ../../godmode/alerts/alert_list.list.php:1096
+#: ../../godmode/alerts/alert_list.list.php:1095
#: ../../godmode/alerts/alert_commands.php:839
-#: ../../godmode/alerts/alert_templates.php:514
+#: ../../godmode/alerts/alert_templates.php:518
#: ../../godmode/alerts/configure_alert_action.php:446
-#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321
+#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325
#: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95
#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165
#: ../../godmode/reporting/create_container.php:383
#: ../../godmode/reporting/map_builder.php:586
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2330
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2339
#: ../../godmode/reporting/reporting_builder.main.php:45
#: ../../godmode/reporting/graph_builder.main.php:298
#: ../../godmode/events/event_responses.editor.php:328
-#: ../../godmode/events/event_edit_filter.php:957
-#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258
+#: ../../godmode/events/event_edit_filter.php:959
+#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262
#: ../../godmode/category/edit_category.php:201
-#: ../../include/functions_visual_map_editor.php:882
+#: ../../include/functions_visual_map_editor.php:930
#: ../../include/class/EventSound.class.php:199
#: ../../include/class/EventSound.class.php:282
-#: ../../include/class/ManageNetScanScripts.class.php:769
+#: ../../include/class/ManageNetScanScripts.class.php:765
#: ../../include/class/ModuleTemplates.class.php:933
#: ../../include/class/ModuleTemplates.class.php:987
-#: ../../include/functions_filemanager.php:859
-#: ../../include/functions_filemanager.php:920
+#: ../../include/functions_filemanager.php:878
+#: ../../include/functions_filemanager.php:940
#: ../../operation/gis_maps/gis_map.php:220
#: ../../operation/incidents/configure_integriaims_incident.php:406
#: ../../operation/incidents/list_integriaims_incidents.php:654
@@ -1464,27 +1497,27 @@ msgstr "Configurar día especial"
#: ../../enterprise/include/functions_reporting.php:2234
#: ../../enterprise/include/functions_reporting.php:2252
#: ../../extensions/insert_data.php:196
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2200
-#: ../../mobile/operation/tactical.php:350
-#: ../../include/functions_reporting_html.php:2018
-#: ../../include/functions_reporting_html.php:2835
-#: ../../include/functions_reporting_html.php:2844
-#: ../../include/functions_reporting_html.php:2849
-#: ../../include/functions_reporting_html.php:2858
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2209
+#: ../../mobile/operation/tactical.php:351
+#: ../../include/functions_reporting_html.php:2034
#: ../../include/functions_reporting_html.php:2863
-#: ../../include/functions_reporting_html.php:2870
-#: ../../include/functions_reporting_html.php:2920
-#: ../../include/functions_reporting_html.php:2994
-#: ../../include/functions_reporting_html.php:6014
-#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065
+#: ../../include/functions_reporting_html.php:2872
+#: ../../include/functions_reporting_html.php:2877
+#: ../../include/functions_reporting_html.php:2886
+#: ../../include/functions_reporting_html.php:2891
+#: ../../include/functions_reporting_html.php:2898
+#: ../../include/functions_reporting_html.php:2948
+#: ../../include/functions_reporting_html.php:3022
+#: ../../include/functions_reporting_html.php:6048
+#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175
#: ../../include/class/AuditLog.class.php:112
-#: ../../include/functions_reporting.php:4728
-#: ../../include/functions_reporting.php:4769
+#: ../../include/functions_reporting.php:4737
+#: ../../include/functions_reporting.php:4778
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624
-#: ../../operation/agentes/agent_inventory.php:127
+#: ../../operation/agentes/agent_inventory.php:135
#: ../../operation/incidents/list_integriaims_incidents.php:441
-#: ../../operation/inventory/inventory.php:681
-#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:257
+#: ../../operation/inventory/inventory.php:682
+#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:302
msgid "Date"
msgstr "Fecha"
@@ -1500,7 +1533,7 @@ msgstr "Fecha"
#: ../../enterprise/include/functions_reporting.php:4403
#: ../../godmode/alerts/alert_templates.php:62
#: ../../godmode/reporting/reporting_builder.item_editor.php:1530
-#: ../../include/functions_html.php:2300
+#: ../../include/functions_html.php:2315
msgid "Monday"
msgstr "Lunes"
@@ -1516,7 +1549,7 @@ msgstr "Lunes"
#: ../../enterprise/include/functions_reporting.php:4404
#: ../../godmode/alerts/alert_templates.php:63
#: ../../godmode/reporting/reporting_builder.item_editor.php:1538
-#: ../../include/functions_html.php:2301
+#: ../../include/functions_html.php:2316
msgid "Tuesday"
msgstr "Martes"
@@ -1532,7 +1565,7 @@ msgstr "Martes"
#: ../../enterprise/include/functions_reporting.php:4405
#: ../../godmode/alerts/alert_templates.php:64
#: ../../godmode/reporting/reporting_builder.item_editor.php:1546
-#: ../../include/functions_html.php:2302
+#: ../../include/functions_html.php:2317
msgid "Wednesday"
msgstr "Miércoles"
@@ -1548,7 +1581,7 @@ msgstr "Miércoles"
#: ../../enterprise/include/functions_reporting.php:4406
#: ../../godmode/alerts/alert_templates.php:65
#: ../../godmode/reporting/reporting_builder.item_editor.php:1554
-#: ../../include/functions_html.php:2303
+#: ../../include/functions_html.php:2318
msgid "Thursday"
msgstr "Jueves"
@@ -1564,7 +1597,7 @@ msgstr "Jueves"
#: ../../enterprise/include/functions_reporting.php:4407
#: ../../godmode/alerts/alert_templates.php:66
#: ../../godmode/reporting/reporting_builder.item_editor.php:1562
-#: ../../include/functions_html.php:2304
+#: ../../include/functions_html.php:2319
msgid "Friday"
msgstr "Viernes"
@@ -1580,7 +1613,7 @@ msgstr "Viernes"
#: ../../enterprise/include/functions_reporting.php:4408
#: ../../godmode/alerts/alert_templates.php:67
#: ../../godmode/reporting/reporting_builder.item_editor.php:1570
-#: ../../include/functions_html.php:2305
+#: ../../include/functions_html.php:2320
msgid "Saturday"
msgstr "Sábado"
@@ -1596,7 +1629,7 @@ msgstr "Sábado"
#: ../../enterprise/include/functions_reporting.php:4409
#: ../../godmode/alerts/alert_templates.php:68
#: ../../godmode/reporting/reporting_builder.item_editor.php:1578
-#: ../../include/functions_html.php:2299
+#: ../../include/functions_html.php:2314
msgid "Sunday"
msgstr "Domingo"
@@ -1668,7 +1701,7 @@ msgstr "Mismo día de la semana"
#: ../../enterprise/godmode/policies/policy_collections.php:352
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:355
@@ -1703,7 +1736,7 @@ msgstr "Mismo día de la semana"
#: ../../enterprise/include/class/DatabaseHA.class.php:892
#: ../../enterprise/include/class/AgentRepository.class.php:1004
#: ../../enterprise/include/class/Omnishell.class.php:829
-#: ../../enterprise/include/class/LogSource.class.php:828
+#: ../../enterprise/include/class/LogSource.class.php:825
#: ../../enterprise/include/class/SAPView.class.php:325
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314
#: ../../enterprise/operation/agentes/policy_view.php:209
@@ -1718,24 +1751,24 @@ msgstr "Mismo día de la semana"
#: ../../godmode/modules/manage_nc_groups_form.php:95
#: ../../godmode/modules/manage_network_templates_form.php:178
#: ../../godmode/modules/manage_inventory_modules.php:338
-#: ../../godmode/modules/manage_network_components_form.php:373
+#: ../../godmode/modules/manage_network_components_form.php:376
#: ../../godmode/modules/manage_inventory_modules_form.php:245
-#: ../../godmode/groups/configure_group.php:268
+#: ../../godmode/groups/configure_group.php:287
#: ../../godmode/groups/configure_modu_group.php:99
#: ../../godmode/update_manager/update_manager.setup.php:406
#: ../../godmode/users/configure_profile.php:418
-#: ../../godmode/users/configure_user.php:1669
-#: ../../godmode/agentes/status_monitor_custom_fields.php:211
+#: ../../godmode/users/configure_user.php:1721
+#: ../../godmode/agentes/status_monitor_custom_fields.php:231
#: ../../godmode/agentes/module_manager_editor.php:795
#: ../../godmode/agentes/inventory_manager.php:184
-#: ../../godmode/agentes/inventory_manager.php:266
+#: ../../godmode/agentes/inventory_manager.php:267
#: ../../godmode/agentes/agent_conf_gis.php:161
#: ../../godmode/agentes/planned_downtime.list.php:891
#: ../../godmode/agentes/planned_downtime.list.php:936
#: ../../godmode/agentes/planned_downtime.editor.php:1305
-#: ../../godmode/agentes/agent_manager.php:1056
+#: ../../godmode/agentes/agent_manager.php:1062
#: ../../godmode/agentes/configure_field.php:199
-#: ../../godmode/netflow/nf_edit_form.php:334
+#: ../../godmode/netflow/nf_edit_form.php:450
#: ../../godmode/snmpconsole/snmp_alert.php:1700
#: ../../godmode/snmpconsole/snmp_alert.php:2002
#: ../../godmode/snmpconsole/snmp_filters.php:264
@@ -1743,18 +1776,18 @@ msgstr "Mismo día de la semana"
#: ../../godmode/snmpconsole/snmp_filters.php:337
#: ../../godmode/alerts/configure_alert_command.php:386
#: ../../godmode/alerts/alert_list.list.php:227
-#: ../../godmode/alerts/alert_list.list.php:1041
+#: ../../godmode/alerts/alert_list.list.php:1040
#: ../../godmode/alerts/configure_alert_action.php:424
-#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216
+#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216
#: ../../godmode/setup/setup_sflow.php:95
-#: ../../godmode/setup/setup_websocket_engine.php:93
+#: ../../godmode/setup/setup_websocket_engine.php:117
#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142
#: ../../godmode/setup/setup_auth.php:515
#: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168
#: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/setup/setup_netflow.php:95
-#: ../../godmode/setup/setup_visuals.php:2130
-#: ../../godmode/setup/setup_general.php:841
+#: ../../godmode/setup/setup_netflow.php:91
+#: ../../godmode/setup/setup_visuals.php:2145
+#: ../../godmode/setup/setup_general.php:867
#: ../../godmode/setup/performance.php:880
#: ../../godmode/reporting/visual_console_builder.data.php:313
#: ../../godmode/reporting/create_container.php:365
@@ -1762,24 +1795,24 @@ msgstr "Mismo día de la semana"
#: ../../godmode/reporting/reporting_builder.main.php:56
#: ../../godmode/reporting/graph_builder.main.php:298
#: ../../godmode/events/event_responses.editor.php:332
-#: ../../godmode/events/event_edit_filter.php:954
+#: ../../godmode/events/event_edit_filter.php:956
#: ../../godmode/events/custom_events.php:192
#: ../../godmode/servers/modificar_server.php:134
-#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721
-#: ../../godmode/tag/edit_tag.php:247
+#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713
+#: ../../godmode/tag/edit_tag.php:251
#: ../../godmode/category/edit_category.php:196
-#: ../../include/functions_visual_map_editor.php:878
+#: ../../include/functions_visual_map_editor.php:926
#: ../../include/ajax/alert_list.ajax.php:564
#: ../../include/class/ConfigPEN.class.php:703
#: ../../include/class/ConfigPEN.class.php:704
-#: ../../include/class/ManageNetScanScripts.class.php:773
-#: ../../include/class/CredentialStore.class.php:1651
+#: ../../include/class/ManageNetScanScripts.class.php:769
+#: ../../include/class/CredentialStore.class.php:1660
#: ../../include/class/ModuleTemplates.class.php:992
#: ../../include/class/ExternalTools.class.php:420
-#: ../../include/functions_events.php:3512
-#: ../../include/functions_events.php:3594
-#: ../../operation/users/user_edit.php:951
-#: ../../operation/agentes/datos_agente.php:218
+#: ../../include/functions_events.php:3517
+#: ../../include/functions_events.php:3599
+#: ../../operation/users/user_edit.php:948
+#: ../../operation/agentes/datos_agente.php:220
#: ../../operation/incidents/configure_integriaims_incident.php:415
#: ../../operation/reporting/reporting_viewer.php:284
msgid "Update"
@@ -1791,7 +1824,7 @@ msgstr "Actualizar"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420
#: ../../godmode/agentes/planned_downtime.list.php:819
#: ../../godmode/alerts/configure_alert_template.php:1600
-#: ../../include/class/AgentWizard.class.php:6186
+#: ../../include/class/AgentWizard.class.php:6182
msgid "Loading, this operation might take several minutes..."
msgstr "Cargando, esta operación podría llevar varios minutos..."
@@ -1817,7 +1850,7 @@ msgstr "Marca esta casilla si quieres sobrescribir los días existentes."
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:535
#: ../../extensions/extension_uploader.php:134
#: ../../extensions/resource_registration.php:1145
-#: ../../godmode/servers/plugin_registration.php:123
+#: ../../godmode/servers/plugin_registration.php:119
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234
msgid "Upload"
msgstr "Subir"
@@ -1841,25 +1874,26 @@ msgstr "Mostrar rango "
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129
#: ../../enterprise/operation/agentes/policy_view.php:333
-#: ../../godmode/users/configure_user.php:1102
+#: ../../godmode/users/configure_user.php:58
+#: ../../godmode/users/configure_user.php:1166
#: ../../godmode/users/user_management.php:37
-#: ../../godmode/users/user_management.php:564
-#: ../../godmode/agentes/module_manager_editor_common.php:681
+#: ../../godmode/users/user_management.php:570
+#: ../../godmode/agentes/module_manager_editor_common.php:686
#: ../../godmode/massive/massive_edit_users.php:242
#: ../../godmode/massive/massive_edit_users.php:273
-#: ../../godmode/massive/massive_edit_agents.php:1034
+#: ../../godmode/massive/massive_edit_agents.php:1051
#: ../../godmode/alerts/alert_list.list.php:702
#: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599
#: ../../godmode/setup/gis_step_2.php:685
-#: ../../godmode/setup/setup_visuals.php:402
-#: ../../godmode/setup/setup_visuals.php:433
-#: ../../godmode/setup/setup_visuals.php:573
-#: ../../godmode/setup/setup_visuals.php:689
-#: ../../godmode/setup/setup_visuals.php:729
-#: ../../godmode/setup/setup_visuals.php:1543
-#: ../../godmode/events/event_edit_filter.php:463
-#: ../../include/functions_ui.php:1404
-#: ../../include/class/AgentsAlerts.class.php:947
+#: ../../godmode/setup/setup_visuals.php:406
+#: ../../godmode/setup/setup_visuals.php:437
+#: ../../godmode/setup/setup_visuals.php:577
+#: ../../godmode/setup/setup_visuals.php:693
+#: ../../godmode/setup/setup_visuals.php:733
+#: ../../godmode/setup/setup_visuals.php:1558
+#: ../../godmode/events/event_edit_filter.php:465
+#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447
+#: ../../include/class/AgentsAlerts.class.php:948
#: ../../include/class/SnmpConsole.class.php:299
#: ../../operation/users/user_edit.php:429
#: ../../operation/users/user_edit.php:432
@@ -1874,7 +1908,7 @@ msgstr "Por defecto"
#: ../../godmode/agentes/planned_downtime.editor.php:1059
#: ../../include/functions.php:1157
#: ../../include/class/CalendarManager.class.php:1035
-#: ../../include/functions_reporting.php:14913
+#: ../../include/functions_reporting.php:14986
msgid "Sun"
msgstr "Dom"
@@ -1883,7 +1917,7 @@ msgstr "Dom"
#: ../../godmode/agentes/planned_downtime.editor.php:1053
#: ../../include/functions.php:1133
#: ../../include/class/CalendarManager.class.php:1029
-#: ../../include/functions_reporting.php:14883
+#: ../../include/functions_reporting.php:14956
msgid "Mon"
msgstr "Lun"
@@ -1892,7 +1926,7 @@ msgstr "Lun"
#: ../../godmode/agentes/planned_downtime.editor.php:1054
#: ../../include/functions.php:1137
#: ../../include/class/CalendarManager.class.php:1030
-#: ../../include/functions_reporting.php:14888
+#: ../../include/functions_reporting.php:14961
msgid "Tue"
msgstr "Mar"
@@ -1901,7 +1935,7 @@ msgstr "Mar"
#: ../../godmode/agentes/planned_downtime.editor.php:1055
#: ../../include/functions.php:1141
#: ../../include/class/CalendarManager.class.php:1031
-#: ../../include/functions_reporting.php:14893
+#: ../../include/functions_reporting.php:14966
msgid "Wed"
msgstr "Mié"
@@ -1910,7 +1944,7 @@ msgstr "Mié"
#: ../../godmode/agentes/planned_downtime.editor.php:1056
#: ../../include/functions.php:1145
#: ../../include/class/CalendarManager.class.php:1032
-#: ../../include/functions_reporting.php:14898
+#: ../../include/functions_reporting.php:14971
msgid "Thu"
msgstr "Jue"
@@ -1919,7 +1953,7 @@ msgstr "Jue"
#: ../../godmode/agentes/planned_downtime.editor.php:1057
#: ../../include/functions.php:1149
#: ../../include/class/CalendarManager.class.php:1033
-#: ../../include/functions_reporting.php:14903
+#: ../../include/functions_reporting.php:14976
msgid "Fri"
msgstr "Vie"
@@ -1928,7 +1962,7 @@ msgstr "Vie"
#: ../../godmode/agentes/planned_downtime.editor.php:1058
#: ../../include/functions.php:1153
#: ../../include/class/CalendarManager.class.php:1034
-#: ../../include/functions_reporting.php:14908
+#: ../../include/functions_reporting.php:14981
msgid "Sat"
msgstr "Sáb"
@@ -2045,7 +2079,7 @@ msgstr "Mostrar plantillas"
#: ../../enterprise/godmode/agentes/collections.data.php:300
#: ../../enterprise/godmode/agentes/collections.data.php:429
#: ../../enterprise/godmode/agentes/collections.editor.php:255
-#: ../../enterprise/godmode/policies/policy_modules.php:1944
+#: ../../enterprise/godmode/policies/policy_modules.php:1989
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:580
#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383
@@ -2066,34 +2100,34 @@ msgstr "Mostrar plantillas"
#: ../../enterprise/tools/ipam/ipam_ajax.php:122
#: ../../enterprise/tools/ipam/ipam_ajax.php:530
#: ../../extensions/files_repo/files_repo_list.php:139
-#: ../../godmode/groups/group_list.php:951
-#: ../../godmode/groups/group_list.php:952
+#: ../../godmode/groups/group_list.php:963
+#: ../../godmode/groups/group_list.php:964
#: ../../godmode/users/profile_list.php:444
#: ../../godmode/agentes/agent_template.php:306
-#: ../../godmode/agentes/modificar_agente.php:810
+#: ../../godmode/agentes/modificar_agente.php:822
#: ../../godmode/agentes/planned_downtime.list.php:747
#: ../../godmode/agentes/planned_downtime.editor.php:1416
#: ../../godmode/agentes/fields_manager.php:191
#: ../../godmode/agentes/configure_field.php:83
#: ../../godmode/setup/snmp_wizard.php:110
-#: ../../godmode/reporting/reporting_builder.list_items.php:626
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2338
+#: ../../godmode/reporting/reporting_builder.list_items.php:627
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2347
#: ../../godmode/reporting/reporting_builder.php:1164
#: ../../godmode/events/event_responses.list.php:105
-#: ../../godmode/servers/servers.build_table.php:237
-#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050
+#: ../../godmode/servers/servers.build_table.php:250
+#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042
#: ../../godmode/category/category.php:182
#: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918
#: ../../include/functions_cron.php:944
-#: ../../include/class/NetworkMap.class.php:3192
+#: ../../include/class/NetworkMap.class.php:3198
#: ../../include/class/CredentialStore.class.php:1263
-#: ../../include/class/TipsWindow.class.php:457
+#: ../../include/class/TipsWindow.class.php:469
#: ../../include/class/CalendarManager.class.php:703
#: ../../include/lib/ClusterViewer/ClusterManager.php:618
-#: ../../operation/visual_console/view.php:465
-#: ../../operation/agentes/estado_agente.php:1262
-#: ../../operation/agentes/pandora_networkmap.php:815
-#: ../../operation/agentes/status_monitor.php:2248
+#: ../../operation/visual_console/view.php:467
+#: ../../operation/agentes/estado_agente.php:1271
+#: ../../operation/agentes/pandora_networkmap.php:816
+#: ../../operation/agentes/status_monitor.php:2250
#: ../../operation/gis_maps/gis_map.php:203
#: ../../operation/incidents/list_integriaims_incidents.php:621
#: ../../operation/search_reports.php:68
@@ -2110,12 +2144,12 @@ msgstr "Editar"
#: ../../enterprise/godmode/modules/local_components.php:743
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78
#: ../../enterprise/godmode/policies/policy_alerts.php:565
-#: ../../enterprise/godmode/policies/policy_modules.php:1626
-#: ../../enterprise/godmode/policies/policy_modules.php:1642
-#: ../../enterprise/godmode/policies/policy_modules.php:1703
-#: ../../enterprise/godmode/policies/policy_queue.php:810
-#: ../../enterprise/godmode/policies/policy_queue.php:852
-#: ../../enterprise/godmode/policies/policy_queue.php:875
+#: ../../enterprise/godmode/policies/policy_modules.php:1671
+#: ../../enterprise/godmode/policies/policy_modules.php:1687
+#: ../../enterprise/godmode/policies/policy_modules.php:1748
+#: ../../enterprise/godmode/policies/policy_queue.php:814
+#: ../../enterprise/godmode/policies/policy_queue.php:856
+#: ../../enterprise/godmode/policies/policy_queue.php:879
#: ../../enterprise/godmode/policies/policies.php:633
#: ../../enterprise/godmode/policies/policies.php:652
#: ../../enterprise/godmode/policies/policies.php:687
@@ -2152,7 +2186,7 @@ msgstr "Editar"
#: ../../enterprise/include/class/Omnishell.class.php:702
#: ../../enterprise/include/class/Omnishell.class.php:1390
#: ../../enterprise/include/class/Omnishell.class.php:1525
-#: ../../enterprise/include/class/LogSource.class.php:871
+#: ../../enterprise/include/class/LogSource.class.php:868
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471
#: ../../enterprise/include/class/ManageBackups.class.php:452
@@ -2166,27 +2200,29 @@ msgstr "Editar"
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:844
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:975
#: ../../update_manager_client/views/offline.php:72
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/online.php:125
+#: ../../update_manager_client/views/online.php:166
#: ../../extensions/files_repo/files_repo_list.php:149
#: ../../godmode/modules/manage_nc_groups.php:300
#: ../../godmode/modules/manage_inventory_modules.php:341
-#: ../../godmode/modules/manage_network_components.php:852
+#: ../../godmode/modules/manage_network_components.php:855
#: ../../godmode/modules/manage_network_templates.php:274
#: ../../godmode/modules/manage_network_templates.php:289
-#: ../../godmode/groups/group_list.php:960
+#: ../../godmode/groups/group_list.php:972
#: ../../godmode/groups/modu_group_list.php:284
#: ../../godmode/groups/modu_group_list.php:287 ../../godmode/extensions.php:283
#: ../../godmode/extensions.php:301 ../../godmode/users/profile_list.php:452
-#: ../../godmode/users/configure_user.php:1935
-#: ../../godmode/users/configure_user.php:2171
+#: ../../godmode/users/user_list.php:984
+#: ../../godmode/users/configure_user.php:1987
+#: ../../godmode/users/configure_user.php:2223
#: ../../godmode/agentes/agent_template.php:298
-#: ../../godmode/agentes/inventory_manager.php:261
-#: ../../godmode/agentes/modificar_agente.php:941
+#: ../../godmode/agentes/inventory_manager.php:262
+#: ../../godmode/agentes/modificar_agente.php:953
#: ../../godmode/agentes/planned_downtime.editor.php:1453
#: ../../godmode/agentes/fields_manager.php:210
-#: ../../godmode/agentes/module_manager.php:1014
-#: ../../godmode/agentes/module_manager.php:1235
+#: ../../godmode/agentes/module_manager.php:1012
+#: ../../godmode/agentes/module_manager.php:1028
+#: ../../godmode/agentes/module_manager.php:1256
#: ../../godmode/netflow/nf_item_list.php:262
#: ../../godmode/netflow/nf_edit.php:202
#: ../../godmode/snmpconsole/snmp_alert.php:1945
@@ -2198,10 +2234,10 @@ msgstr "Editar"
#: ../../godmode/massive/massive_edit_plugins.php:576
#: ../../godmode/massive/massive_enable_disable_alerts.php:227
#: ../../godmode/alerts/alert_actions.php:449
-#: ../../godmode/alerts/alert_list.list.php:1256
+#: ../../godmode/alerts/alert_list.list.php:1255
#: ../../godmode/alerts/alert_commands.php:812
#: ../../godmode/alerts/alert_commands.php:815
-#: ../../godmode/alerts/alert_templates.php:465 ../../godmode/setup/news.php:393
+#: ../../godmode/alerts/alert_templates.php:469 ../../godmode/setup/news.php:392
#: ../../godmode/setup/links.php:210
#: ../../godmode/reporting/create_container.php:801
#: ../../godmode/reporting/map_builder.php:544
@@ -2217,7 +2253,7 @@ msgstr "Editar"
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1019
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1032
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
-#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420
+#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421
#: ../../godmode/category/category.php:186
#: ../../godmode/category/category.php:222
#: ../../include/functions_profile.php:319
@@ -2226,25 +2262,26 @@ msgstr "Editar"
#: ../../include/class/SatelliteAgent.class.php:1193
#: ../../include/class/SatelliteAgent.class.php:1255
#: ../../include/class/TreeGroupEdition.class.php:166
-#: ../../include/class/CredentialStore.class.php:1693
+#: ../../include/class/CredentialStore.class.php:1702
#: ../../include/class/SnmpConsole.class.php:472
-#: ../../include/class/SnmpConsole.class.php:1266
-#: ../../include/class/SnmpConsole.class.php:1293
-#: ../../include/class/TipsWindow.class.php:618
+#: ../../include/class/SnmpConsole.class.php:1268
+#: ../../include/class/SnmpConsole.class.php:1295
+#: ../../include/class/TipsWindow.class.php:640
#: ../../include/class/ModuleTemplates.class.php:874
#: ../../include/class/ModuleTemplates.class.php:889
#: ../../include/class/WelcomeWindow.class.php:171
#: ../../include/class/SatelliteCollection.class.php:531
#: ../../include/class/SatelliteCollection.class.php:574
-#: ../../include/functions_filemanager.php:754
+#: ../../include/functions_filemanager.php:769
#: ../../include/functions_container.php:190
#: ../../include/functions_container.php:324
#: ../../include/lib/Dashboard/Widgets/events_list.php:655
-#: ../../include/functions_events.php:3655
-#: ../../operation/users/user_edit.php:1345
+#: ../../include/functions_events.php:3660
+#: ../../operation/users/user_edit.php:1342
#: ../../operation/agentes/pandora_networkmap.editor.php:743
#: ../../operation/messages/message_list.php:300
-#: ../../operation/snmpconsole/snmp_browser.php:637
+#: ../../operation/snmpconsole/snmp_browser.php:620
+#: ../../operation/snmpconsole/snmp_browser.php:696
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213
#: ../../operation/incidents/list_integriaims_incidents.php:625
msgid "Are you sure?"
@@ -2257,12 +2294,12 @@ msgstr "¿Estás seguro?"
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418
#: ../../godmode/alerts/configure_alert_template.php:1598
-#: ../../godmode/events/event_edit_filter.php:681
-#: ../../godmode/events/event_edit_filter.php:746
-#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569
+#: ../../godmode/events/event_edit_filter.php:683
+#: ../../godmode/events/event_edit_filter.php:748
+#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661
#: ../../include/rest-api/index.php:363
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546
-#: ../../operation/events/events.php:1284 ../../operation/events/events.php:1356
+#: ../../operation/events/events.php:1311 ../../operation/events/events.php:1401
msgid "Remove"
msgstr "Eliminar"
@@ -2272,7 +2309,7 @@ msgstr "Cargar calendario"
#: ../../views/cluster/list.php:31
msgid "Cluster view"
-msgstr "Visor de clústers"
+msgstr "Vista de clústers"
#: ../../views/cluster/list.php:40
#: ../../enterprise/meta/general/main_header.php:91
@@ -2291,11 +2328,12 @@ msgstr "Visor de clústers"
#: ../../enterprise/include/class/SAPView.class.php:155
#: ../../enterprise/include/class/SAPView.class.php:199
#: ../../enterprise/operation/agentes/tag_view.php:50
-#: ../../enterprise/operation/log/log_viewer.php:494
+#: ../../enterprise/operation/log/log_viewer.php:492
#: ../../enterprise/tools/ipam/ipam_editor.php:303
-#: ../../extensions/agents_modules.php:552 ../../extensions/module_groups.php:260
+#: ../../extensions/agents_modules.php:560 ../../extensions/module_groups.php:260
#: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71
-#: ../../godmode/groups/tactical.php:126
+#: ../../godmode/groups/tactical.php:125
+#: ../../godmode/agentes/status_monitor_custom_fields.php:44
#: ../../godmode/snmpconsole/snmp_trap_generator.php:47
#: ../../godmode/snmpconsole/snmp_filters.php:55
#: ../../include/class/AgentsAlerts.class.php:751
@@ -2303,17 +2341,17 @@ msgstr "Visor de clústers"
#: ../../operation/tree.php:185 ../../operation/agentes/alerts_status.php:198
#: ../../operation/agentes/estado_agente.php:246
#: ../../operation/agentes/interface_view.php:72
-#: ../../operation/agentes/status_monitor.php:336
+#: ../../operation/agentes/status_monitor.php:335
#: ../../operation/agentes/group_view.php:98
#: ../../operation/agentes/tactical.php:81
#: ../../operation/network/network_usage_map.php:48
-#: ../../operation/netflow/nf_live_view.php:139
+#: ../../operation/netflow/nf_live_view.php:144
#: ../../operation/netflow/netflow_explorer.php:55
#: ../../operation/snmpconsole/snmp_statistics.php:100
-#: ../../operation/snmpconsole/snmp_browser.php:86
+#: ../../operation/snmpconsole/snmp_browser.php:88
#: ../../operation/snmpconsole/snmp_mib_uploader.php:56
#: ../../operation/menu.php:159 ../../operation/menu.php:276
-#: ../../operation/inventory/inventory.php:310
+#: ../../operation/inventory/inventory.php:312
#: ../../general/first_task/cluster_builder.php:38
msgid "Monitoring"
msgstr "Monitorización"
@@ -2326,13 +2364,13 @@ msgid "Clusters"
msgstr "Clústers"
#: ../../views/cluster/list.php:72
-#: ../../enterprise/meta/advanced/servers.build_table.php:63
+#: ../../enterprise/meta/advanced/servers.build_table.php:79
#: ../../enterprise/meta/advanced/metasetup.relations.php:335
#: ../../enterprise/meta/advanced/metasetup.relations.php:413
#: ../../enterprise/meta/advanced/metasetup.relations.php:548
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68
#: ../../enterprise/godmode/modules/configure_local_component.php:214
-#: ../../enterprise/godmode/policies/policy_modules.php:1545
+#: ../../enterprise/godmode/policies/policy_modules.php:1590
#: ../../enterprise/godmode/services/services.elements.php:113
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:72
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93
@@ -2349,46 +2387,46 @@ msgstr "Clústers"
#: ../../enterprise/operation/agentes/ver_agente.php:50
#: ../../godmode/modules/manage_network_templates_form.php:232
#: ../../godmode/modules/manage_network_components_form_common.php:64
-#: ../../godmode/modules/manage_network_components.php:776
+#: ../../godmode/modules/manage_network_components.php:779
#: ../../godmode/update_manager/update_manager.history.php:41
#: ../../godmode/agentes/agent_template.php:275
-#: ../../godmode/agentes/modificar_agente.php:696
+#: ../../godmode/agentes/modificar_agente.php:706
#: ../../godmode/agentes/planned_downtime.list.php:736
#: ../../godmode/agentes/planned_downtime.editor.php:926
#: ../../godmode/agentes/module_manager_editor_common.php:293
-#: ../../godmode/agentes/module_manager_editor_common.php:1536
+#: ../../godmode/agentes/module_manager_editor_common.php:1546
#: ../../godmode/agentes/module_manager.php:630
#: ../../godmode/alerts/alert_templates.php:35
-#: ../../godmode/alerts/alert_templates.php:307
-#: ../../godmode/alerts/alert_templates.php:412 ../../godmode/setup/news.php:350
+#: ../../godmode/alerts/alert_templates.php:311
+#: ../../godmode/alerts/alert_templates.php:416 ../../godmode/setup/news.php:354
#: ../../godmode/setup/gis_step_2.php:256
#: ../../godmode/setup/setup_integria.php:479
#: ../../godmode/setup/setup_integria.php:613
#: ../../godmode/reporting/reporting_builder.list_items.php:245
#: ../../godmode/reporting/reporting_builder.list_items.php:374
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1055
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1057
#: ../../godmode/reporting/visual_console_builder.wizard.php:131
#: ../../godmode/reporting/visual_console_builder.wizard.php:315
#: ../../godmode/events/event_responses.editor.php:234
-#: ../../godmode/servers/servers.build_table.php:79
+#: ../../godmode/servers/servers.build_table.php:81
#: ../../godmode/servers/modificar_server.php:105
-#: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125
+#: ../../godmode/servers/plugin.php:985 ../../mobile/operation/visualmaps.php:125
#: ../../mobile/operation/visualmaps.php:126
-#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659
-#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972
-#: ../../mobile/operation/events.php:973
-#: ../../include/functions_visual_map_editor.php:700
-#: ../../include/functions_visual_map_editor.php:718
-#: ../../include/functions_visual_map_editor.php:846
+#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688
+#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016
+#: ../../mobile/operation/events.php:1017
+#: ../../include/functions_visual_map_editor.php:750
+#: ../../include/functions_visual_map_editor.php:768
+#: ../../include/functions_visual_map_editor.php:894
#: ../../include/functions_reporting_html.php:1056
#: ../../include/functions_reporting_html.php:1065
#: ../../include/functions_reporting_html.php:1306
#: ../../include/functions_reporting_html.php:1314
-#: ../../include/functions_reporting_html.php:2638
-#: ../../include/functions_reporting_html.php:5490
-#: ../../include/ajax/heatmap.ajax.php:77
+#: ../../include/functions_reporting_html.php:2657
+#: ../../include/functions_reporting_html.php:5518
+#: ../../include/ajax/heatmap.ajax.php:96
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467
-#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5952
+#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5976
#: ../../include/class/ModuleTemplates.class.php:1185
#: ../../include/class/CalendarManager.class.php:1028
#: ../../include/class/CalendarManager.class.php:1062
@@ -2401,27 +2439,27 @@ msgstr "Clústers"
#: ../../include/lib/Dashboard/Widgets/clock.php:221
#: ../../include/functions_snmp_browser.php:564
#: ../../include/functions_events.php:2525
-#: ../../include/functions_events.php:4958
-#: ../../operation/agentes/estado_agente.php:1043
+#: ../../include/functions_events.php:4963
+#: ../../operation/agentes/estado_agente.php:1051
#: ../../operation/agentes/ver_agente.php:1171
-#: ../../operation/netflow/nf_live_view.php:495
+#: ../../operation/netflow/nf_live_view.php:568
#: ../../operation/incidents/configure_integriaims_incident.php:251
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342
-#: ../../operation/search_modules.php:34
+#: ../../operation/search_modules.php:37
#: ../../operation/reporting/graph_viewer.php:363
msgid "Type"
msgstr "Tipo"
#: ../../views/cluster/list.php:73
-#: ../../include/functions_reporting_html.php:5925
+#: ../../include/functions_reporting_html.php:5953
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325
-#: ../../operation/agentes/pandora_networkmap.php:717
+#: ../../operation/agentes/pandora_networkmap.php:718
msgid "Nodes"
msgstr "Nodos"
#: ../../views/cluster/list.php:74
#: ../../enterprise/views/ncm/devices/list.php:120
-#: ../../enterprise/meta/advanced/servers.build_table.php:62
+#: ../../enterprise/meta/advanced/servers.build_table.php:78
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584
#: ../../enterprise/meta/advanced/policymanager.queue.php:225
#: ../../enterprise/meta/monitoring/custom_fields_view.php:719
@@ -2432,8 +2470,8 @@ msgstr "Nodos"
#: ../../enterprise/godmode/agentes/collection_manager.php:164
#: ../../enterprise/godmode/agentes/collection_manager.php:264
#: ../../enterprise/godmode/policies/policy_alerts.php:368
-#: ../../enterprise/godmode/policies/policy_modules.php:1546
-#: ../../enterprise/godmode/policies/policy_queue.php:335
+#: ../../enterprise/godmode/policies/policy_modules.php:1591
+#: ../../enterprise/godmode/policies/policy_queue.php:337
#: ../../enterprise/godmode/policies/policies.php:436
#: ../../enterprise/godmode/policies/policy_collections.php:243
#: ../../enterprise/godmode/policies/policy_collections.php:324
@@ -2469,15 +2507,15 @@ msgstr "Nodos"
#: ../../enterprise/operation/services/services.table_services.php:183
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490
#: ../../godmode/groups/tactical.php:180
-#: ../../godmode/agentes/status_monitor_custom_fields.php:97
-#: ../../godmode/agentes/status_monitor_custom_fields.php:146
+#: ../../godmode/agentes/status_monitor_custom_fields.php:117
+#: ../../godmode/agentes/status_monitor_custom_fields.php:166
#: ../../godmode/agentes/agent_incidents.php:88
#: ../../godmode/agentes/module_manager.php:645
#: ../../godmode/massive/massive_copy_modules.php:121
#: ../../godmode/massive/massive_copy_modules.php:281
#: ../../godmode/massive/massive_delete_modules.php:415
#: ../../godmode/massive/massive_edit_users.php:501
-#: ../../godmode/massive/massive_edit_agents.php:926
+#: ../../godmode/massive/massive_edit_agents.php:943
#: ../../godmode/alerts/alert_list.list.php:174
#: ../../godmode/alerts/alert_list.list.php:569
#: ../../godmode/alerts/alert_view.php:120
@@ -2486,63 +2524,72 @@ msgstr "Nodos"
#: ../../godmode/reporting/reporting_builder.item_editor.php:77
#: ../../godmode/events/custom_events.php:99
#: ../../godmode/wizards/DiscoveryTaskList.class.php:605
-#: ../../godmode/servers/servers.build_table.php:78
-#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144
-#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244
-#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163
+#: ../../godmode/servers/servers.build_table.php:80
+#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145
+#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245
+#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163
#: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275
-#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603
-#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615
-#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632
-#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648
-#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732
-#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105
+#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:614
+#: ../../mobile/operation/modules.php:620 ../../mobile/operation/modules.php:626
+#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:643
+#: ../../mobile/operation/modules.php:651 ../../mobile/operation/modules.php:659
+#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:742
+#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:763
+#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105
#: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247
-#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350
-#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650
-#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963
-#: ../../mobile/operation/events.php:964
+#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334
+#: ../../mobile/operation/module_data.php:262
+#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679
+#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007
+#: ../../mobile/operation/events.php:1008
+#: ../../mobile/operation/server_status.php:154
+#: ../../mobile/operation/server_status.php:155
+#: ../../mobile/operation/server_status.php:281
+#: ../../mobile/operation/server_status.php:319
+#: ../../mobile/operation/server_status.php:349
+#: ../../mobile/operation/server_status.php:445
#: ../../include/functions_reporting_html.php:553
#: ../../include/functions_reporting_html.php:1055
#: ../../include/functions_reporting_html.php:1064
#: ../../include/functions_reporting_html.php:1305
#: ../../include/functions_reporting_html.php:1313
-#: ../../include/functions_reporting_html.php:1624
-#: ../../include/functions_reporting_html.php:2356
-#: ../../include/functions_reporting_html.php:2637
-#: ../../include/functions_reporting_html.php:2996
-#: ../../include/functions_reporting_html.php:3664
-#: ../../include/functions_reporting_html.php:3714
-#: ../../include/functions_reporting_html.php:5303
+#: ../../include/functions_reporting_html.php:1633
+#: ../../include/functions_reporting_html.php:2377
+#: ../../include/functions_reporting_html.php:2656
+#: ../../include/functions_reporting_html.php:3024
+#: ../../include/functions_reporting_html.php:3692
+#: ../../include/functions_reporting_html.php:3742
+#: ../../include/functions_reporting_html.php:5331
+#: ../../include/ajax/heatmap.ajax.php:391
#: ../../include/ajax/alert_list.ajax.php:296
-#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1003
+#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1026
#: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369
#: ../../include/functions_massive_operations.php:152
-#: ../../include/class/NetworkMap.class.php:3064
-#: ../../include/class/AgentsAlerts.class.php:913
+#: ../../include/class/NetworkMap.class.php:3070
+#: ../../include/class/AgentsAlerts.class.php:914
#: ../../include/class/SnmpConsole.class.php:273
#: ../../include/class/SnmpConsole.class.php:382
#: ../../include/class/SnmpConsole.class.php:500
#: ../../include/class/ExternalTools.class.php:877
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:322
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562
#: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594
#: ../../include/functions_events.php:204 ../../include/functions_events.php:259
#: ../../include/functions_events.php:2543
-#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56
+#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56
#: ../../operation/agentes/estado_agente.php:324
-#: ../../operation/agentes/estado_agente.php:1049
+#: ../../operation/agentes/estado_agente.php:1057
#: ../../operation/agentes/interface_view.functions.php:516
-#: ../../operation/agentes/status_monitor.php:1566
+#: ../../operation/agentes/status_monitor.php:1568
#: ../../operation/agentes/alerts_status.functions.php:108
#: ../../operation/messages/message_list.php:188
#: ../../operation/incidents/integriaims_export_csv.php:83
#: ../../operation/incidents/configure_integriaims_incident.php:305
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338
#: ../../operation/incidents/list_integriaims_incidents.php:334
-#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38
+#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38
msgid "Status"
msgstr "Estado"
@@ -2566,10 +2613,10 @@ msgstr "Estado"
#: ../../enterprise/include/ajax/log_viewer.ajax.php:352
#: ../../enterprise/include/class/Omnishell.class.php:1016
#: ../../enterprise/include/class/Omnishell.class.php:1095
-#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598
-#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276
-#: ../../include/functions_html.php:1427
-#: ../../include/functions_snmp_browser.php:1617
+#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598
+#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281
+#: ../../include/functions_html.php:1432
+#: ../../include/functions_snmp_browser.php:1626
msgid "Filter group"
msgstr "Filtrar grupo"
@@ -2615,27 +2662,27 @@ msgstr "Editar el clúster"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323
#: ../../enterprise/include/lib/NetworkManager.php:190
-#: ../../godmode/groups/group_list.php:942
-#: ../../godmode/agentes/modificar_agente.php:779
+#: ../../godmode/groups/group_list.php:954
+#: ../../godmode/agentes/modificar_agente.php:791
#: ../../godmode/agentes/module_manager_editor_common.php:253
-#: ../../godmode/agentes/module_manager_editor_common.php:696
-#: ../../godmode/agentes/module_manager_editor_common.php:1311
-#: ../../godmode/agentes/module_manager.php:974
-#: ../../godmode/agentes/module_manager.php:987
-#: ../../godmode/massive/massive_edit_agents.php:938
-#: ../../godmode/massive/massive_edit_agents.php:1138
+#: ../../godmode/agentes/module_manager_editor_common.php:702
+#: ../../godmode/agentes/module_manager_editor_common.php:1321
+#: ../../godmode/agentes/module_manager.php:988
+#: ../../godmode/agentes/module_manager.php:1001
+#: ../../godmode/massive/massive_edit_agents.php:955
+#: ../../godmode/massive/massive_edit_agents.php:1154
#: ../../godmode/massive/massive_edit_modules.php:780
#: ../../godmode/alerts/alert_list.list.php:172
#: ../../godmode/alerts/configure_alert_template.php:918
-#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167
+#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173
#: ../../mobile/operation/alerts.php:68
-#: ../../include/functions_visual_map_editor.php:824
-#: ../../include/functions_reporting_html.php:3676
+#: ../../include/functions_visual_map_editor.php:872
+#: ../../include/functions_reporting_html.php:3704
#: ../../include/functions_agents.php:1472
#: ../../include/functions_treeview.php:66
-#: ../../include/functions_treeview.php:602
+#: ../../include/functions_treeview.php:606
#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405
-#: ../../include/functions_reporting.php:6992
+#: ../../include/functions_reporting.php:7001
#: ../../operation/search_agents.php:93
#: ../../operation/agentes/estado_generalagente.php:92
#: ../../operation/agentes/alerts_status.functions.php:101
@@ -2646,24 +2693,24 @@ msgstr "Deshabilitado"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028
#: ../../enterprise/godmode/services/services.service.php:773
#: ../../enterprise/operation/services/massive/services.create.php:839
-#: ../../godmode/agentes/modificar_agente.php:788
+#: ../../godmode/agentes/modificar_agente.php:800
#: ../../godmode/agentes/planned_downtime.list.php:778
#: ../../godmode/agentes/planned_downtime.editor.php:929
-#: ../../godmode/agentes/agent_manager.php:826
-#: ../../godmode/agentes/module_manager_editor_common.php:1394
+#: ../../godmode/agentes/agent_manager.php:834
+#: ../../godmode/agentes/module_manager_editor_common.php:1404
#: ../../godmode/agentes/module_manager.php:765
-#: ../../godmode/massive/massive_edit_agents.php:1108
+#: ../../godmode/massive/massive_edit_agents.php:1125
#: ../../godmode/massive/massive_edit_modules.php:1119
-#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114
-#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100
-#: ../../operation/agentes/estado_agente.php:1145
+#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137
+#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100
+#: ../../operation/agentes/estado_agente.php:1153
#: ../../operation/agentes/estado_generalagente.php:94
msgid "Quiet"
msgstr "Modo silencioso"
#: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185
#: ../../operation/search_agents.php:111
-#: ../../operation/agentes/estado_agente.php:1153
+#: ../../operation/agentes/estado_agente.php:1161
msgid "Agent in scheduled downtime"
msgstr "Agente en parada programada"
@@ -2688,25 +2735,24 @@ msgstr "Forzar cálculo del estado del clúster"
#: ../../enterprise/tools/ipam/ipam_network.php:426
#: ../../godmode/modules/manage_inventory_modules.php:291
#: ../../godmode/modules/manage_inventory_modules_form.php:140
-#: ../../godmode/agentes/modificar_agente.php:694
+#: ../../godmode/agentes/modificar_agente.php:704
#: ../../godmode/agentes/planned_downtime.editor.php:1358
#: ../../godmode/agentes/agent_manager.php:523
-#: ../../godmode/massive/massive_edit_agents.php:733
+#: ../../godmode/massive/massive_edit_agents.php:750
#: ../../godmode/reporting/reporting_builder.item_editor.php:71
-#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404
-#: ../../include/functions_reporting_html.php:1600
-#: ../../include/functions_reporting_html.php:3661
-#: ../../include/ajax/heatmap.ajax.php:339
+#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405
+#: ../../include/functions_reporting_html.php:1609
+#: ../../include/functions_reporting_html.php:3689
+#: ../../include/ajax/heatmap.ajax.php:467
#: ../../include/class/Diagnostics.class.php:769
#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:345
-#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:348
+#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44
#: ../../operation/search_agents.php:50 ../../operation/tree.php:79
-#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031
+#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038
#: ../../operation/agentes/estado_generalagente.php:216
#: ../../operation/gis_maps/ajax.php:297
-#: ../../operation/inventory/inventory.php:1005
-#: ../../operation/inventory/inventory.php:1299
+#: ../../operation/inventory/inventory.php:1251
msgid "OS"
msgstr "SO"
@@ -2716,12 +2762,12 @@ msgid "IP address"
msgstr "Dirección IP"
#: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292
-#: ../../enterprise/meta/advanced/servers.build_table.php:101
-#: ../../enterprise/meta/advanced/servers.build_table.php:102
-#: ../../enterprise/meta/advanced/servers.build_table.php:108
+#: ../../enterprise/meta/advanced/servers.build_table.php:125
+#: ../../enterprise/meta/advanced/servers.build_table.php:126
+#: ../../enterprise/meta/advanced/servers.build_table.php:132
#: ../../enterprise/meta/advanced/metasetup.visual.php:964
#: ../../enterprise/include/functions_visual_map.php:320
-#: ../../enterprise/include/functions_servicemap.php:471
+#: ../../enterprise/include/functions_servicemap.php:483
#: ../../enterprise/include/functions_aws.php:509
#: ../../enterprise/include/functions_aws.php:510
#: ../../enterprise/include/functions_reporting.php:6178
@@ -2734,92 +2780,92 @@ msgstr "Dirección IP"
#: ../../enterprise/tools/ipam/ipam_network.php:543
#: ../../enterprise/tools/ipam/ipam_ajax.php:369
#: ../../enterprise/tools/ipam/ipam_ajax.php:390
-#: ../../godmode/modules/manage_network_components.php:802
-#: ../../godmode/modules/manage_network_components.php:803
+#: ../../godmode/modules/manage_network_components.php:805
+#: ../../godmode/modules/manage_network_components.php:806
#: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222
#: ../../godmode/agentes/planned_downtime.list.php:942
#: ../../godmode/alerts/alert_view.php:141
-#: ../../godmode/servers/servers.build_table.php:151
-#: ../../godmode/servers/servers.build_table.php:152
-#: ../../godmode/servers/servers.build_table.php:158
-#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200
-#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319
-#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443
-#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509
-#: ../../include/functions_servers.php:1275
+#: ../../godmode/servers/servers.build_table.php:153
+#: ../../godmode/servers/servers.build_table.php:154
+#: ../../godmode/servers/servers.build_table.php:160
+#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203
+#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315
+#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435
+#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501
+#: ../../include/functions_servers.php:1298
#: ../../include/functions_reporting_html.php:659
#: ../../include/functions_reporting_html.php:662
-#: ../../include/functions_reporting_html.php:5564
-#: ../../include/functions_reporting_html.php:5617
+#: ../../include/functions_reporting_html.php:5592
+#: ../../include/functions_reporting_html.php:5645
#: ../../include/functions.php:1180 ../../include/functions.php:1186
-#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156
+#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183
#: ../../include/functions_treeview.php:153
#: ../../include/functions_treeview.php:311
-#: ../../include/functions_treeview.php:410
-#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874
-#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241
-#: ../../include/class/SnmpConsole.class.php:794
-#: ../../include/class/SnmpConsole.class.php:812
-#: ../../include/functions_events.php:3684
-#: ../../include/functions_events.php:3818
-#: ../../include/functions_events.php:3838
-#: ../../include/functions_events.php:3847
-#: ../../include/functions_events.php:3856
-#: ../../include/functions_events.php:3857
-#: ../../include/functions_events.php:3869
-#: ../../include/functions_events.php:3929
-#: ../../include/functions_events.php:3962
-#: ../../include/functions_events.php:4028
-#: ../../include/functions_events.php:4045
-#: ../../include/functions_events.php:4052
-#: ../../include/functions_events.php:4118
-#: ../../include/functions_events.php:4210
-#: ../../include/functions_events.php:4334
-#: ../../include/functions_events.php:4373
-#: ../../include/functions_events.php:4413
-#: ../../include/functions_events.php:4436
-#: ../../include/functions_events.php:4466
-#: ../../include/functions_events.php:4549
-#: ../../include/functions_events.php:4630
-#: ../../include/functions_events.php:4640
-#: ../../include/functions_events.php:4857
-#: ../../include/functions_events.php:4938
-#: ../../include/functions_events.php:5043
-#: ../../include/functions_events.php:5072
-#: ../../include/functions_events.php:5087
-#: ../../include/functions_events.php:5097
-#: ../../include/functions_events.php:5107
-#: ../../include/functions_events.php:5590
-#: ../../include/functions_events.php:5604
+#: ../../include/functions_treeview.php:414
+#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917
+#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241
+#: ../../include/class/SnmpConsole.class.php:796
+#: ../../include/class/SnmpConsole.class.php:814
+#: ../../include/functions_events.php:3689
+#: ../../include/functions_events.php:3823
+#: ../../include/functions_events.php:3843
+#: ../../include/functions_events.php:3852
+#: ../../include/functions_events.php:3861
+#: ../../include/functions_events.php:3862
+#: ../../include/functions_events.php:3874
+#: ../../include/functions_events.php:3934
+#: ../../include/functions_events.php:3967
+#: ../../include/functions_events.php:4033
+#: ../../include/functions_events.php:4050
+#: ../../include/functions_events.php:4057
+#: ../../include/functions_events.php:4123
+#: ../../include/functions_events.php:4215
+#: ../../include/functions_events.php:4339
+#: ../../include/functions_events.php:4378
+#: ../../include/functions_events.php:4418
+#: ../../include/functions_events.php:4441
+#: ../../include/functions_events.php:4471
+#: ../../include/functions_events.php:4554
+#: ../../include/functions_events.php:4635
+#: ../../include/functions_events.php:4645
+#: ../../include/functions_events.php:4862
+#: ../../include/functions_events.php:4943
+#: ../../include/functions_events.php:5048
+#: ../../include/functions_events.php:5077
+#: ../../include/functions_events.php:5092
+#: ../../include/functions_events.php:5102
+#: ../../include/functions_events.php:5112
+#: ../../include/functions_events.php:5595
#: ../../include/functions_events.php:5609
-#: ../../include/functions_events.php:5612
-#: ../../include/functions_events.php:5620
-#: ../../include/functions_events.php:5629
-#: ../../include/functions_events.php:5641
-#: ../../include/functions_events.php:5694
-#: ../../include/functions_events.php:5721
-#: ../../include/functions_events.php:5746
-#: ../../include/functions_events.php:5790
-#: ../../operation/agentes/estado_agente.php:1222
+#: ../../include/functions_events.php:5614
+#: ../../include/functions_events.php:5617
+#: ../../include/functions_events.php:5625
+#: ../../include/functions_events.php:5634
+#: ../../include/functions_events.php:5646
+#: ../../include/functions_events.php:5699
+#: ../../include/functions_events.php:5726
+#: ../../include/functions_events.php:5751
+#: ../../include/functions_events.php:5795
+#: ../../operation/agentes/estado_agente.php:1231
#: ../../operation/agentes/interface_view.functions.php:742
#: ../../operation/agentes/interface_view.functions.php:743
#: ../../operation/agentes/interface_view.functions.php:744
#: ../../operation/agentes/interface_view.functions.php:745
#: ../../operation/agentes/interface_view.functions.php:746
-#: ../../operation/agentes/status_monitor.php:1945
+#: ../../operation/agentes/status_monitor.php:1947
#: ../../operation/agentes/estado_generalagente.php:234
#: ../../operation/agentes/estado_generalagente.php:251
#: ../../operation/agentes/estado_generalagente.php:254
-#: ../../operation/agentes/estado_generalagente.php:440
-#: ../../operation/agentes/estado_generalagente.php:454
-#: ../../operation/agentes/estado_generalagente.php:513
-#: ../../operation/inventory/inventory.php:153
-#: ../../operation/inventory/inventory.php:173
-#: ../../operation/inventory/inventory.php:200
+#: ../../operation/agentes/estado_generalagente.php:411
+#: ../../operation/agentes/estado_generalagente.php:425
+#: ../../operation/agentes/estado_generalagente.php:484
+#: ../../operation/inventory/inventory.php:155
+#: ../../operation/inventory/inventory.php:175
+#: ../../operation/inventory/inventory.php:202
msgid "N/A"
msgstr "N/A"
-#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839
+#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843
#: ../../operation/agentes/estado_generalagente.php:250
#: ../../operation/gis_maps/ajax.php:341
msgid "Agent Version"
@@ -2830,12 +2876,12 @@ msgid "Cluster agent"
msgstr "Agente del clúster"
#: ../../views/cluster/view.php:364
-#: ../../operation/agentes/estado_generalagente.php:1012
+#: ../../operation/agentes/estado_generalagente.php:919
msgid "Events (Last 24h)"
msgstr "Eventos (últimas 24h)"
-#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453
-#: ../../operation/agentes/interface_traffic_graph_win.php:278
+#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469
+#: ../../operation/agentes/interface_traffic_graph_win.php:294
msgid "Reload"
msgstr "Actualizar"
@@ -2853,24 +2899,24 @@ msgstr "Nuevo widget"
#: ../../views/dashboard/header.php:43
#: ../../extensions/disabled/matrix_events.php:35
-#: ../../extensions/agents_modules.php:380
-#: ../../extensions/agents_modules.php:387
-#: ../../extensions/agents_modules.php:390
-#: ../../operation/visual_console/view.php:231
-#: ../../operation/visual_console/legacy_view.php:201
+#: ../../extensions/agents_modules.php:388
+#: ../../extensions/agents_modules.php:395
+#: ../../extensions/agents_modules.php:398
+#: ../../operation/visual_console/view.php:233
+#: ../../operation/visual_console/legacy_view.php:200
#: ../../operation/gis_maps/render_view.php:137
#: ../../operation/reporting/reporting_viewer.php:185
#: ../../operation/reporting/graph_viewer.php:234
msgid "Full screen mode"
msgstr "Modo pantalla completa"
-#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603
-#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500
-#: ../../operation/visual_console/legacy_view.php:249
+#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611
+#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502
+#: ../../operation/visual_console/legacy_view.php:260
#: ../../operation/gis_maps/render_view.php:139
#: ../../operation/reporting/reporting_viewer.php:194
#: ../../operation/reporting/graph_viewer.php:243
-#: ../../operation/events/events.php:1410
+#: ../../operation/events/events.php:1464
msgid "Back to normal mode"
msgstr "Volver a modo normal"
@@ -2898,11 +2944,11 @@ msgstr "Actualizar el panel de control"
#: ../../enterprise/operation/services/services.list.php:590
#: ../../godmode/snmpconsole/snmp_alert.php:2227
#: ../../godmode/snmpconsole/snmp_alert.php:2242
-#: ../../godmode/massive/massive_edit_agents.php:1043
-#: ../../godmode/reporting/graph_builder.graph_editor.php:241
-#: ../../godmode/reporting/graph_builder.graph_editor.php:262
-#: ../../include/functions_config.php:1333
-#: ../../include/functions_config.php:3537
+#: ../../godmode/massive/massive_edit_agents.php:1060
+#: ../../godmode/reporting/graph_builder.graph_editor.php:374
+#: ../../godmode/reporting/graph_builder.graph_editor.php:395
+#: ../../include/functions_config.php:1349
+#: ../../include/functions_config.php:3561
#: ../../include/class/SatelliteAgent.class.php:1269
#: ../../operation/gis_maps/render_view.php:167
msgid "Ok"
@@ -2927,23 +2973,23 @@ msgstr "Mostrar el enlace al dashboard público"
#: ../../views/dashboard/header.php:163
#: ../../enterprise/views/ncm/devices/list.php:172
#: ../../enterprise/meta/advanced/policymanager.queue.php:238
-#: ../../enterprise/godmode/policies/policy_queue.php:849
+#: ../../enterprise/godmode/policies/policy_queue.php:853
#: ../../enterprise/godmode/servers/HA_cluster.php:437
#: ../../enterprise/include/class/Omnishell.class.php:559
#: ../../enterprise/include/class/Omnishell.class.php:1712
#: ../../enterprise/include/functions_ipam.php:1400
-#: ../../extensions/agents_modules.php:615
+#: ../../extensions/agents_modules.php:623
#: ../../godmode/wizards/DiscoveryTaskList.class.php:196
-#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285
-#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720
-#: ../../include/class/NetworkMap.class.php:2946 ../../operation/heatmap.php:175
-#: ../../operation/visual_console/view.php:513
+#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313
+#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815
+#: ../../include/class/NetworkMap.class.php:2952 ../../operation/heatmap.php:175
+#: ../../operation/visual_console/view.php:515
#: ../../operation/visual_console/legacy_public_view.php:141
-#: ../../operation/visual_console/legacy_view.php:263
+#: ../../operation/visual_console/legacy_view.php:274
#: ../../operation/visual_console/public_view.php:129
#: ../../operation/agentes/pandora_networkmap.editor.php:553
#: ../../operation/gis_maps/render_view.php:161
-#: ../../operation/events/events.php:1422 ../../general/login_page.php:97
+#: ../../operation/events/events.php:1476 ../../general/login_page.php:97
#: ../../general/login_page.php:408
msgid "Refresh"
msgstr "Actualizar"
@@ -2955,9 +3001,10 @@ msgstr "Añadir celda"
#: ../../views/dashboard/header.php:298
#: ../../enterprise/extensions/vmware/vmware_view.php:1377
#: ../../enterprise/extensions/vmware/vmware_view.php:1414
+#: ../../godmode/users/configure_user.php:66
#: ../../godmode/users/user_management.php:45
#: ../../godmode/massive/massive_edit_users.php:280
-#: ../../mobile/include/functions_web.php:22
+#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814
#: ../../include/class/OrderInterpreter.class.php:219
#: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478
msgid "Dashboard"
@@ -2968,7 +3015,7 @@ msgid "Hello! These are the tips of the day."
msgstr "¡Hola! Estos son los tips del día."
#: ../../views/dashboard/tipsWindow.php:44
-#: ../../godmode/users/user_management.php:378
+#: ../../godmode/users/user_management.php:384
msgid "Show usage tips at startup"
msgstr "Mostrar tips de uso al inicio"
@@ -3008,11 +3055,11 @@ msgstr "Dashboards"
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132
#: ../../extensions/files_repo.php:206
#: ../../godmode/modules/manage_nc_groups.php:176
-#: ../../godmode/modules/manage_network_components.php:562
+#: ../../godmode/modules/manage_network_components.php:565
#: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357
#: ../../godmode/users/user_list.php:411
-#: ../../godmode/users/configure_user.php:101
-#: ../../godmode/users/configure_user.php:121
+#: ../../godmode/users/configure_user.php:871
+#: ../../godmode/users/configure_user.php:891
#: ../../godmode/agentes/planned_downtime.list.php:290
#: ../../godmode/netflow/nf_item_list.php:120
#: ../../godmode/netflow/nf_item_list.php:148
@@ -3024,7 +3071,7 @@ msgstr "Dashboards"
#: ../../godmode/massive/massive_delete_alerts.php:201
#: ../../godmode/alerts/alert_actions.php:208
#: ../../godmode/alerts/alert_commands.php:698
-#: ../../godmode/alerts/alert_templates.php:257
+#: ../../godmode/alerts/alert_templates.php:261
#: ../../godmode/alerts/alert_list.php:239
#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137
#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89
@@ -3048,7 +3095,7 @@ msgstr "Eliminado correctamente"
#: ../../enterprise/godmode/modules/local_components.php:432
#: ../../enterprise/godmode/policies/policy_alerts.php:267
#: ../../enterprise/godmode/policies/policy_alerts.php:315
-#: ../../enterprise/godmode/policies/policy_modules.php:1329
+#: ../../enterprise/godmode/policies/policy_modules.php:1374
#: ../../enterprise/godmode/policies/policy_external_alerts.php:159
#: ../../enterprise/godmode/policies/policy_external_alerts.php:186
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:174
@@ -3065,18 +3112,18 @@ msgstr "Eliminado correctamente"
#: ../../enterprise/tools/ipam/ipam_action.php:100
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130
#: ../../extensions/files_repo.php:206
-#: ../../godmode/modules/manage_network_components.php:563
-#: ../../godmode/users/configure_user.php:102
+#: ../../godmode/modules/manage_network_components.php:566
+#: ../../godmode/users/configure_user.php:872
#: ../../godmode/massive/massive_delete_action_alerts.php:171
#: ../../godmode/massive/massive_delete_alerts.php:202
#: ../../godmode/alerts/alert_actions.php:209
#: ../../godmode/alerts/alert_commands.php:699
-#: ../../godmode/alerts/alert_templates.php:258
+#: ../../godmode/alerts/alert_templates.php:262
#: ../../godmode/alerts/alert_list.php:240
#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138
#: ../../godmode/setup/gis.php:59
#: ../../godmode/reporting/reporting_builder.php:632
-#: ../../operation/agentes/pandora_networkmap.php:563
+#: ../../operation/agentes/pandora_networkmap.php:564
#: ../../operation/messages/message_list.php:110
#: ../../operation/gis_maps/gis_map.php:100
#: ../../operation/incidents/list_integriaims_incidents.php:306
@@ -3105,15 +3152,15 @@ msgstr "Favorito"
#: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90
#: ../../operation/agentes/networkmap.dinamic.php:115
-#: ../../operation/agentes/pandora_networkmap.view.php:2364
+#: ../../operation/agentes/pandora_networkmap.view.php:2365
#: ../../operation/snmpconsole/snmp_statistics.php:54
#: ../../operation/snmpconsole/snmp_browser.php:68
-#: ../../operation/events/events.php:1460
+#: ../../operation/events/events.php:1514
msgid "Full screen"
msgstr "Pantalla completa"
#: ../../views/dashboard/list.php:106
-#: ../../enterprise/godmode/policies/policy_modules.php:1796
+#: ../../enterprise/godmode/policies/policy_modules.php:1841
#: ../../enterprise/godmode/policies/policies.php:643
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229
#: ../../godmode/agentes/planned_downtime.list.php:746
@@ -3121,8 +3168,8 @@ msgstr "Pantalla completa"
#: ../../godmode/agentes/planned_downtime.list.php:925
#: ../../godmode/alerts/alert_actions.php:355
#: ../../godmode/reporting/map_builder.php:420
-#: ../../include/functions_filemanager.php:985
-#: ../../operation/agentes/pandora_networkmap.php:806
+#: ../../include/functions_filemanager.php:1007
+#: ../../operation/agentes/pandora_networkmap.php:807
msgid "Copy"
msgstr "Copiar"
@@ -3148,8 +3195,8 @@ msgid "Please select widget"
msgstr "Seleccione un widget"
#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76
-#: ../../include/class/SnmpConsole.class.php:1550
-#: ../../operation/events/events.php:3160
+#: ../../include/class/SnmpConsole.class.php:1552
+#: ../../operation/events/events.php:3219
msgid "Until next"
msgstr "Hasta el próximo"
@@ -3170,7 +3217,7 @@ msgstr "Favorito"
msgid "Configure widget"
msgstr "Configurar widget"
-#: ../../views/dashboard/cell.php:68
+#: ../../views/dashboard/cell.php:69
msgid "Delete widget"
msgstr "Eliminar widget"
@@ -3187,13 +3234,13 @@ msgstr "Cambiar cada"
#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211
#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252
#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212
-#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381
+#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424
msgid "Previous"
msgstr "Anterior"
#: ../../views/dashboard/slides.php:218
#: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572
-#: ../../operation/events/events.php:1518
+#: ../../operation/events/events.php:1572
msgid "Stop"
msgstr "Parar"
@@ -3221,9 +3268,9 @@ msgstr "Pausar"
#: ../../godmode/alerts/configure_alert_template.php:1227
#: ../../godmode/alerts/configure_alert_template.php:1239
#: ../../godmode/wizards/HostDevices.class.php:779
-#: ../../include/functions_ui.php:2462
-#: ../../include/class/CustomNetScan.class.php:556
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238
+#: ../../include/functions_ui.php:2505
+#: ../../include/class/CustomNetScan.class.php:555
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239
msgid "Next"
msgstr "Siguiente"
@@ -3263,7 +3310,7 @@ msgstr ""
#: ../../enterprise/views/ncm/models/edit.php:37
#: ../../enterprise/views/ncm/vendors/list.php:32
#: ../../enterprise/views/ncm/vendors/edit.php:35
-#: ../../include/functions.php:1294 ../../include/functions_events.php:3178
+#: ../../include/functions.php:1294 ../../include/functions_events.php:3183
msgid "Network configuration manager"
msgstr "Administrador de configuración de red"
@@ -3336,7 +3383,7 @@ msgid "Device model"
msgstr "Modelo del dispositivo"
#: ../../enterprise/views/ncm/agent/manage.php:102
-#: ../../godmode/agentes/module_manager_editor_network.php:502
+#: ../../godmode/agentes/module_manager_editor_network.php:507
msgid "Connection method"
msgstr "Modo de conexión"
@@ -3358,11 +3405,11 @@ msgstr "conectarse mediante telnet"
#: ../../enterprise/include/class/Aws.S3.php:580
#: ../../enterprise/include/class/Aws.cloud.php:544
#: ../../extensions/quick_shell.php:183
-#: ../../godmode/modules/manage_network_components_form_network.php:53
-#: ../../godmode/agentes/module_manager_editor_network.php:83
+#: ../../godmode/modules/manage_network_components_form_network.php:83
+#: ../../godmode/agentes/module_manager_editor_network.php:84
#: ../../godmode/massive/massive_edit_modules.php:1160
#: ../../godmode/servers/modificar_server.php:117
-#: ../../include/functions_config.php:1651
+#: ../../include/functions_config.php:1663
#: ../../include/class/AgentWizard.class.php:648
#: ../../include/functions_snmp_browser.php:724
msgid "Port"
@@ -3413,7 +3460,7 @@ msgstr "Estado de NCM"
#: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542
#: ../../godmode/setup/snmp_wizard.php:100
#: ../../godmode/reporting/visual_console_builder.data.php:310
-#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377
+#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377
msgid "Save"
msgstr "Guardar"
@@ -3440,10 +3487,10 @@ msgstr "Tipo de script"
#: ../../enterprise/views/ncm/agent/details.php:90
#: ../../enterprise/include/class/CommandCenter.class.php:470
#: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371
-#: ../../include/functions_reporting_html.php:4310
-#: ../../include/functions_reporting_html.php:4457
-#: ../../include/functions_reporting_html.php:4800
-#: ../../include/functions_reporting_html.php:4811
+#: ../../include/functions_reporting_html.php:4338
+#: ../../include/functions_reporting_html.php:4485
+#: ../../include/functions_reporting_html.php:4828
+#: ../../include/functions_reporting_html.php:4839
#: ../../include/functions_db.php:1959
msgid "Result"
msgstr "Resultado"
@@ -3508,9 +3555,9 @@ msgstr "Ejecutar snippet"
#: ../../enterprise/meta/include/functions_wizard_meta.php:1632
#: ../../enterprise/meta/include/functions_wizard_meta.php:1757
#: ../../enterprise/meta/include/functions_wizard_meta.php:1832
-#: ../../godmode/setup/setup_visuals.php:1549
-#: ../../include/class/TipsWindow.class.php:777
-#: ../../include/class/TipsWindow.class.php:944
+#: ../../godmode/setup/setup_visuals.php:1564
+#: ../../include/class/TipsWindow.class.php:797
+#: ../../include/class/TipsWindow.class.php:964
msgid "Preview"
msgstr "Vista previa"
@@ -3539,7 +3586,7 @@ msgstr "Vista previa"
#: ../../enterprise/operation/services/services.list.php:208
#: ../../enterprise/operation/services/services.list.php:609
#: ../../enterprise/operation/services/services.table_services.php:144
-#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1104
+#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1116
#: ../../godmode/massive/massive_copy_modules.php:118
#: ../../godmode/massive/massive_copy_modules.php:278
#: ../../godmode/massive/massive_delete_modules.php:421
@@ -3547,42 +3594,42 @@ msgstr "Vista previa"
#: ../../godmode/massive/massive_edit_modules.php:388
#: ../../godmode/massive/massive_edit_modules.php:474
#: ../../godmode/alerts/alert_list.builder.php:326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3833
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3842
#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72
-#: ../../include/graphs/functions_flot.php:310
-#: ../../include/functions_reporting_html.php:2563
-#: ../../include/functions_reporting_html.php:2576
-#: ../../include/functions_reporting_html.php:3563
-#: ../../include/functions_reporting_html.php:3966
-#: ../../include/functions.php:1281 ../../include/functions.php:4181
-#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946
+#: ../../include/graphs/functions_flot.php:311
+#: ../../include/functions_reporting_html.php:2584
+#: ../../include/functions_reporting_html.php:2597
+#: ../../include/functions_reporting_html.php:3591
+#: ../../include/functions_reporting_html.php:3994
+#: ../../include/functions.php:1281 ../../include/functions.php:4207
+#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974
#: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607
#: ../../include/functions_visual_map.php:2457
#: ../../include/functions_visual_map.php:2485
#: ../../include/functions_visual_map.php:2503
#: ../../include/functions_visual_map.php:2521
#: ../../include/functions_alerts.php:702
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585
#: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54
#: ../../include/functions_massive_operations.php:149
#: ../../include/functions_netflow.php:1884
-#: ../../include/functions_reporting.php:6772
-#: ../../include/functions_filemanager.php:708
+#: ../../include/functions_reporting.php:6781
+#: ../../include/functions_filemanager.php:723
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:401
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:435
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:719
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:404
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:439
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:712
#: ../../include/lib/ClusterViewer/ClusterManager.php:582
-#: ../../include/functions_events.php:3126 ../../operation/tree.php:211
-#: ../../operation/tree.php:301 ../../operation/tree.php:523
+#: ../../include/functions_events.php:3131 ../../operation/tree.php:211
+#: ../../operation/tree.php:302 ../../operation/tree.php:525
#: ../../operation/agentes/estado_agente.php:276
-#: ../../operation/agentes/status_monitor.php:567
-#: ../../operation/agentes/group_view.php:242
-#: ../../operation/agentes/group_view.php:247
-#: ../../operation/agentes/estado_monitores.php:521
-#: ../../operation/agentes/pandora_networkmap.view.php:1804
-#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:815
-#: ../../general/logon_ok.php:151
+#: ../../operation/agentes/status_monitor.php:566
+#: ../../operation/agentes/group_view.php:245
+#: ../../operation/agentes/group_view.php:250
+#: ../../operation/agentes/estado_monitores.php:518
+#: ../../operation/agentes/pandora_networkmap.view.php:1805
+#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:820
+#: ../../general/logon_ok.php:160
msgid "Unknown"
msgstr "Desconocido"
@@ -3666,31 +3713,32 @@ msgstr "Diferencia"
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208
#: ../../enterprise/tools/ipam/ipam_ajax.php:535
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807
-#: ../../godmode/groups/group_list.php:887 ../../godmode/users/user_list.php:583
+#: ../../godmode/groups/group_list.php:888 ../../godmode/users/user_list.php:584
#: ../../godmode/agentes/inventory_manager.php:237
-#: ../../godmode/agentes/modificar_agente.php:700
+#: ../../godmode/agentes/modificar_agente.php:710
#: ../../godmode/agentes/planned_downtime.editor.php:1369
-#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279
+#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277
#: ../../godmode/alerts/alert_list.list.php:136
#: ../../godmode/alerts/alert_list.list.php:571
#: ../../godmode/alerts/alert_commands.php:753
#: ../../godmode/alerts/alert_view.php:307
#: ../../godmode/alerts/alert_list.builder.php:112
+#: ../../godmode/setup/os.list.php:69
#: ../../godmode/reporting/reporting_builder.item_editor.php:2092
-#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:309
+#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:310
#: ../../godmode/category/category.php:161
-#: ../../include/functions_reporting_html.php:3450
-#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008
-#: ../../include/functions_treeview.php:400
+#: ../../include/functions_reporting_html.php:3478
+#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031
+#: ../../include/functions_treeview.php:404
#: ../../include/class/SatelliteAgent.class.php:148
#: ../../include/class/AgentsAlerts.class.php:254
#: ../../include/class/AgentsAlerts.class.php:332
#: ../../include/class/SnmpConsole.class.php:281
#: ../../include/class/SatelliteCollection.class.php:135
-#: ../../include/functions_reporting.php:3233
-#: ../../include/functions_filemanager.php:647
-#: ../../operation/agentes/pandora_networkmap.php:721
-#: ../../operation/agentes/status_monitor.php:1605
+#: ../../include/functions_reporting.php:3242
+#: ../../include/functions_filemanager.php:662
+#: ../../operation/agentes/pandora_networkmap.php:722
+#: ../../operation/agentes/status_monitor.php:1607
msgid "Actions"
msgstr "Acciones"
@@ -3744,9 +3792,9 @@ msgstr "Diferencia entre: copia de seguridad - seleccionada"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390
#: ../../enterprise/include/class/AgentRepository.class.php:692
#: ../../godmode/modules/manage_inventory_modules.php:54
-#: ../../godmode/modules/manage_network_components.php:298
+#: ../../godmode/modules/manage_network_components.php:299
#: ../../godmode/modules/manage_inventory_modules_form.php:45
-#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:255
+#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:254
#: ../../godmode/massive/massive_operations.php:332
#: ../../godmode/massive/massive_operations.php:354
#: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917
@@ -3754,6 +3802,7 @@ msgstr "Diferencia entre: copia de seguridad - seleccionada"
#: ../../include/class/ConfigPEN.class.php:329
#: ../../include/class/ModuleTemplates.class.php:195
#: ../../include/class/ModuleTemplates.class.php:213
+#: ../../include/class/AgentDeployWizard.class.php:727
msgid "Configuration"
msgstr "Configuración"
@@ -3822,11 +3871,11 @@ msgid "Customize script execution"
msgstr "Personalizar la ejecución del script"
#: ../../enterprise/views/ncm/agent/details.php:690
-#: ../../include/ajax/events.php:2199
+#: ../../include/ajax/events.php:2200
#: ../../include/class/ExternalTools.class.php:646
#: ../../include/functions_snmp_browser.php:974
-#: ../../include/functions_snmp_browser.php:1134
-#: ../../include/functions_events.php:3710
+#: ../../include/functions_snmp_browser.php:1142
+#: ../../include/functions_events.php:3715
msgid "Execute"
msgstr "Ejecutar"
@@ -3841,13 +3890,13 @@ msgstr "Ejecutar"
#: ../../enterprise/godmode/reporting/visual_console_template.php:123
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137
#: ../../enterprise/include/functions_reporting.php:146
-#: ../../enterprise/include/functions_reporting.php:8001
-#: ../../enterprise/include/functions_reporting.php:8029
-#: ../../enterprise/include/functions_reporting.php:8100
-#: ../../godmode/modules/manage_network_components.php:302
-#: ../../godmode/menu.php:172 ../../godmode/menu.php:275
+#: ../../enterprise/include/functions_reporting.php:8010
+#: ../../enterprise/include/functions_reporting.php:8038
+#: ../../enterprise/include/functions_reporting.php:8109
+#: ../../godmode/modules/manage_network_components.php:303
+#: ../../godmode/menu.php:172 ../../godmode/menu.php:273
#: ../../godmode/reporting/reporting_builder.item_editor.php:2027
-#: ../../include/functions_menu.php:585
+#: ../../include/functions_menu.php:587
#: ../../include/class/ConfigPEN.class.php:334
#: ../../include/class/ModuleTemplates.class.php:196
#: ../../include/class/ModuleTemplates.class.php:214
@@ -4009,7 +4058,7 @@ msgstr "Configurar agentes para usar plantillas NCM"
#: ../../enterprise/tools/ipam/ipam_excel.php:139
#: ../../enterprise/tools/ipam/ipam_ajax.php:362
#: ../../enterprise/tools/ipam/ipam_calculator.php:69
-#: ../../godmode/setup/setup_general.php:878
+#: ../../godmode/setup/setup_general.php:904
#: ../../operation/agentes/ver_agente.php:1199
msgid "Address"
msgstr "Dirección"
@@ -4033,14 +4082,14 @@ msgstr "Última tarea en cola"
#: ../../enterprise/operation/services/services.service.php:124
#: ../../enterprise/operation/services/services.list.php:548
#: ../../enterprise/tools/ipam/ipam_list.php:738
-#: ../../extensions/agents_modules.php:317
+#: ../../extensions/agents_modules.php:325
#: ../../operation/agentes/group_view.php:80
#: ../../operation/agentes/tactical.php:63
msgid "Last update"
msgstr "Última actualización"
#: ../../enterprise/views/ncm/devices/list.php:123
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154
#: ../../enterprise/godmode/policies/policy_alerts.php:368
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:243
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488
@@ -4048,7 +4097,7 @@ msgstr "Última actualización"
#: ../../godmode/massive/massive_copy_modules.php:185
#: ../../godmode/alerts/alert_list.list.php:572
#: ../../godmode/wizards/DiscoveryTaskList.class.php:617
-#: ../../godmode/servers/plugin.php:996
+#: ../../godmode/servers/plugin.php:988
#: ../../operation/agentes/alerts_status.php:234
#: ../../operation/agentes/alerts_status.php:235
msgid "Operations"
@@ -4100,7 +4149,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:1587
#: ../../enterprise/meta/include/functions_wizard_meta.php:1707
#: ../../enterprise/meta/include/functions_wizard_meta.php:1727
-#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016
+#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328
#: ../../enterprise/godmode/agentes/manage_config_remote.php:344
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120
@@ -4126,51 +4175,51 @@ msgstr ""
#: ../../update_manager_client/views/offline.php:80
#: ../../extensions/dbmanager.php:124
#: ../../godmode/modules/manage_network_components_form_wizard.php:384
-#: ../../godmode/groups/group_list.php:1099
-#: ../../godmode/users/configure_user.php:1013
-#: ../../godmode/users/configure_user.php:1974
+#: ../../godmode/groups/group_list.php:1111
+#: ../../godmode/users/configure_user.php:1061
+#: ../../godmode/users/configure_user.php:2026
#: ../../godmode/massive/massive_copy_modules.php:116
#: ../../godmode/massive/massive_copy_modules.php:276
#: ../../godmode/massive/massive_delete_modules.php:419
#: ../../godmode/massive/massive_delete_modules.php:440
-#: ../../godmode/massive/massive_edit_agents.php:1061
+#: ../../godmode/massive/massive_edit_agents.php:1078
#: ../../godmode/massive/massive_edit_modules.php:386
#: ../../godmode/massive/massive_edit_modules.php:472
#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3831
+#: ../../godmode/setup/setup_netflow.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3840
#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70
-#: ../../include/functions_reporting_html.php:2575
+#: ../../include/functions_reporting_html.php:2596
#: ../../include/functions.php:1091 ../../include/functions.php:1329
#: ../../include/functions.php:1332 ../../include/functions.php:1371
-#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341
-#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846
-#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425
+#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351
+#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:4856
+#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2912
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571
#: ../../include/functions_massive_operations.php:147
#: ../../include/class/SatelliteAgent.class.php:1337
#: ../../include/class/SatelliteAgent.class.php:1362
-#: ../../include/class/Diagnostics.class.php:1837
+#: ../../include/class/Diagnostics.class.php:1841
#: ../../include/class/AgentWizard.class.php:1401
#: ../../include/class/AgentWizard.class.php:4147
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:316
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:399
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:433
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:714
-#: ../../include/functions_events.php:3222 ../../index.php:1243
-#: ../../operation/tree.php:209 ../../operation/tree.php:299
-#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:402
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:437
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:707
+#: ../../include/functions_events.php:3227 ../../index.php:1244
+#: ../../operation/tree.php:209 ../../operation/tree.php:300
+#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305
#: ../../operation/agentes/estado_agente.php:274
-#: ../../operation/agentes/status_monitor.php:565
-#: ../../operation/agentes/group_view.php:245
-#: ../../operation/agentes/group_view.php:250
-#: ../../operation/agentes/estado_monitores.php:520
+#: ../../operation/agentes/status_monitor.php:564
+#: ../../operation/agentes/group_view.php:248
+#: ../../operation/agentes/group_view.php:253
+#: ../../operation/agentes/estado_monitores.php:517
#: ../../operation/agentes/tactical.php:198
-#: ../../operation/netflow/nf_live_view.php:339
-#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149
+#: ../../operation/netflow/nf_live_view.php:348
+#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158
msgid "Warning"
msgstr "Advertencia"
@@ -4189,15 +4238,15 @@ msgstr "icono"
#: ../../enterprise/views/ipam/sites/list.php:48
#: ../../enterprise/views/ipam/sites/edit.php:54
#: ../../godmode/modules/manage_nc_groups_form.php:73
-#: ../../godmode/groups/configure_group.php:206
-#: ../../godmode/groups/group_list.php:882
-#: ../../godmode/agentes/agent_manager.php:645
-#: ../../godmode/massive/massive_edit_agents.php:655
+#: ../../godmode/groups/configure_group.php:225
+#: ../../godmode/groups/group_list.php:883
+#: ../../godmode/agentes/agent_manager.php:649
+#: ../../godmode/massive/massive_edit_agents.php:672
#: ../../godmode/reporting/visual_console_builder.elements.php:124
-#: ../../include/functions_visual_map_editor.php:954
-#: ../../include/rest-api/models/VisualConsole/Item.php:2176
+#: ../../include/functions_visual_map_editor.php:1002
+#: ../../include/rest-api/models/VisualConsole/Item.php:2179
#: ../../operation/agentes/ver_agente.php:1236
-#: ../../operation/agentes/estado_generalagente.php:511
+#: ../../operation/agentes/estado_generalagente.php:482
msgid "Parent"
msgstr "Padre"
@@ -4223,9 +4272,9 @@ msgstr "Padre"
#: ../../enterprise/godmode/modules/configure_local_component.php:727
#: ../../enterprise/godmode/modules/configure_local_component.php:733
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152
#: ../../enterprise/godmode/policies/policy_external_alerts.php:637
#: ../../enterprise/godmode/policies/policy_agents.php:391
@@ -4246,12 +4295,12 @@ msgstr "Padre"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977
@@ -4344,8 +4393,8 @@ msgstr "Padre"
#: ../../enterprise/include/class/Omnishell.class.php:1062
#: ../../enterprise/include/class/Omnishell.class.php:1063
#: ../../enterprise/include/class/SAP.app.php:604
-#: ../../enterprise/include/class/SAP.app.php:818
#: ../../enterprise/include/class/SAP.app.php:819
+#: ../../enterprise/include/class/SAP.app.php:820
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:949
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059
@@ -4356,7 +4405,7 @@ msgstr "Padre"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594
#: ../../enterprise/operation/agentes/ver_agente.php:56
-#: ../../enterprise/operation/log/log_viewer.php:881
+#: ../../enterprise/operation/log/log_viewer.php:879
#: ../../enterprise/tools/ipam/ipam_network.php:622
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:565
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:748
@@ -4369,40 +4418,40 @@ msgstr "Padre"
#: ../../godmode/modules/manage_nc_groups_form.php:80
#: ../../godmode/modules/manage_network_components_form_plugin.php:41
#: ../../godmode/modules/manage_network_components_form_common.php:354
-#: ../../godmode/modules/manage_network_components_form_network.php:248
-#: ../../godmode/modules/manage_network_components_form.php:669
-#: ../../godmode/modules/manage_network_components_form.php:675
-#: ../../godmode/modules/manage_network_components_form.php:684
-#: ../../godmode/modules/manage_network_components_form.php:690
-#: ../../godmode/groups/configure_group.php:170
-#: ../../godmode/groups/configure_group.php:192
-#: ../../godmode/users/configure_user.php:1270
-#: ../../godmode/users/configure_user.php:1286
-#: ../../godmode/users/configure_user.php:1437
-#: ../../godmode/users/configure_user.php:1449
-#: ../../godmode/users/configure_user.php:1573
-#: ../../godmode/users/configure_user.php:1588
-#: ../../godmode/users/configure_user.php:1750
-#: ../../godmode/users/configure_user.php:1758
-#: ../../godmode/users/configure_user.php:1767
-#: ../../godmode/users/configure_user.php:1774
-#: ../../godmode/users/user_management.php:577
-#: ../../godmode/users/user_management.php:600
-#: ../../godmode/agentes/status_monitor_custom_fields.php:230
-#: ../../godmode/agentes/status_monitor_custom_fields.php:278
+#: ../../godmode/modules/manage_network_components_form_network.php:266
+#: ../../godmode/modules/manage_network_components_form.php:672
+#: ../../godmode/modules/manage_network_components_form.php:678
+#: ../../godmode/modules/manage_network_components_form.php:687
+#: ../../godmode/modules/manage_network_components_form.php:693
+#: ../../godmode/groups/configure_group.php:189
+#: ../../godmode/groups/configure_group.php:211
+#: ../../godmode/users/configure_user.php:1334
+#: ../../godmode/users/configure_user.php:1350
+#: ../../godmode/users/configure_user.php:1486
+#: ../../godmode/users/configure_user.php:1502
+#: ../../godmode/users/configure_user.php:1627
+#: ../../godmode/users/configure_user.php:1642
+#: ../../godmode/users/configure_user.php:1802
+#: ../../godmode/users/configure_user.php:1810
+#: ../../godmode/users/configure_user.php:1819
+#: ../../godmode/users/configure_user.php:1826
+#: ../../godmode/users/user_management.php:583
+#: ../../godmode/users/user_management.php:610
+#: ../../godmode/agentes/status_monitor_custom_fields.php:250
+#: ../../godmode/agentes/status_monitor_custom_fields.php:298
#: ../../godmode/agentes/module_manager_editor_plugin.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:181
-#: ../../godmode/agentes/module_manager_editor_network.php:514
+#: ../../godmode/agentes/module_manager_editor_network.php:182
+#: ../../godmode/agentes/module_manager_editor_network.php:519
#: ../../godmode/agentes/agent_manager.php:558
-#: ../../godmode/agentes/agent_manager.php:750
-#: ../../godmode/agentes/agent_manager.php:1008
-#: ../../godmode/agentes/module_manager_editor_common.php:766
-#: ../../godmode/agentes/module_manager_editor_common.php:1125
-#: ../../godmode/agentes/module_manager_editor_common.php:1360
-#: ../../godmode/agentes/module_manager_editor_common.php:1654
-#: ../../godmode/agentes/module_manager_editor_common.php:1661
-#: ../../godmode/agentes/module_manager_editor_common.php:1672
-#: ../../godmode/agentes/module_manager_editor_common.php:1680
+#: ../../godmode/agentes/agent_manager.php:754
+#: ../../godmode/agentes/agent_manager.php:1014
+#: ../../godmode/agentes/module_manager_editor_common.php:776
+#: ../../godmode/agentes/module_manager_editor_common.php:1135
+#: ../../godmode/agentes/module_manager_editor_common.php:1370
+#: ../../godmode/agentes/module_manager_editor_common.php:1664
+#: ../../godmode/agentes/module_manager_editor_common.php:1671
+#: ../../godmode/agentes/module_manager_editor_common.php:1682
+#: ../../godmode/agentes/module_manager_editor_common.php:1690
#: ../../godmode/snmpconsole/snmp_alert.php:40
#: ../../godmode/snmpconsole/snmp_alert.php:1781
#: ../../godmode/massive/massive_copy_modules.php:374
@@ -4419,13 +4468,13 @@ msgstr "Padre"
#: ../../godmode/massive/massive_delete_modules.php:835
#: ../../godmode/massive/massive_edit_users.php:338
#: ../../godmode/massive/massive_edit_users.php:399
-#: ../../godmode/massive/massive_edit_users.php:609
-#: ../../godmode/massive/massive_edit_users.php:617
-#: ../../godmode/massive/massive_edit_users.php:628
-#: ../../godmode/massive/massive_edit_users.php:636
+#: ../../godmode/massive/massive_edit_users.php:610
+#: ../../godmode/massive/massive_edit_users.php:618
+#: ../../godmode/massive/massive_edit_users.php:629
+#: ../../godmode/massive/massive_edit_users.php:637
#: ../../godmode/massive/massive_add_alerts.php:304
#: ../../godmode/massive/massive_edit_plugins.php:338
-#: ../../godmode/massive/massive_edit_agents.php:754
+#: ../../godmode/massive/massive_edit_agents.php:771
#: ../../godmode/massive/massive_delete_alerts.php:366
#: ../../godmode/massive/massive_add_action_alerts.php:342
#: ../../godmode/massive/massive_edit_modules.php:458
@@ -4452,23 +4501,23 @@ msgstr "Padre"
#: ../../godmode/alerts/configure_alert_template.php:730
#: ../../godmode/alerts/configure_alert_template.php:824
#: ../../godmode/setup/os.builder.php:51
-#: ../../godmode/setup/setup_visuals.php:611
-#: ../../godmode/setup/setup_visuals.php:651
-#: ../../godmode/setup/setup_visuals.php:1084
-#: ../../godmode/setup/setup_general.php:1051
-#: ../../godmode/setup/setup_general.php:1068
+#: ../../godmode/setup/setup_visuals.php:615
+#: ../../godmode/setup/setup_visuals.php:655
+#: ../../godmode/setup/setup_visuals.php:1088
#: ../../godmode/setup/setup_general.php:1077
#: ../../godmode/setup/setup_general.php:1094
+#: ../../godmode/setup/setup_general.php:1103
+#: ../../godmode/setup/setup_general.php:1120
#: ../../godmode/reporting/create_container.php:572
-#: ../../godmode/reporting/graph_builder.graph_editor.php:373
-#: ../../godmode/reporting/reporting_builder.item_editor.php:209
-#: ../../godmode/reporting/reporting_builder.item_editor.php:991
+#: ../../godmode/reporting/graph_builder.graph_editor.php:296
+#: ../../godmode/reporting/reporting_builder.item_editor.php:210
+#: ../../godmode/reporting/reporting_builder.item_editor.php:993
#: ../../godmode/reporting/reporting_builder.item_editor.php:2175
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2248
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2269
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2301
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3232
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3393
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2257
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2278
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2310
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3241
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3402
#: ../../godmode/reporting/visual_console_builder.elements.php:525
#: ../../godmode/reporting/visual_console_builder.elements.php:676
#: ../../godmode/reporting/visual_console_builder.elements.php:686
@@ -4482,25 +4531,25 @@ msgstr "Padre"
#: ../../godmode/reporting/visual_console_builder.wizard.php:783
#: ../../godmode/reporting/visual_console_builder.wizard.php:793
#: ../../godmode/reporting/visual_console_builder.wizard.php:825
-#: ../../godmode/events/event_edit_filter.php:977
+#: ../../godmode/events/event_edit_filter.php:979
#: ../../godmode/events/custom_events.php:210
#: ../../godmode/events/custom_events.php:258
-#: ../../godmode/wizards/HostDevices.class.php:1119
-#: ../../mobile/operation/events.php:930
-#: ../../include/functions_visual_map_editor.php:404
-#: ../../include/functions_visual_map_editor.php:406
-#: ../../include/functions_visual_map_editor.php:622
-#: ../../include/functions_visual_map_editor.php:955
-#: ../../include/functions_visual_map_editor.php:1008
-#: ../../include/functions_visual_map_editor.php:1070
+#: ../../godmode/wizards/HostDevices.class.php:1115
+#: ../../mobile/operation/events.php:974
+#: ../../include/functions_visual_map_editor.php:398
+#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_visual_map_editor.php:616
+#: ../../include/functions_visual_map_editor.php:1003
+#: ../../include/functions_visual_map_editor.php:1056
+#: ../../include/functions_visual_map_editor.php:1122
#: ../../include/functions.php:1129 ../../include/functions_cron.php:680
#: ../../include/functions_networkmap.php:1524
#: ../../include/ajax/audit_log.php:156
#: ../../include/ajax/planned_downtime.ajax.php:85
-#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614
+#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643
#: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838
#: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987
-#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589
+#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590
#: ../../include/functions_integriaims.php:135
#: ../../include/functions_profile.php:349
#: ../../include/functions_profile.php:367
@@ -4510,24 +4559,24 @@ msgstr "Padre"
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634
-#: ../../include/rest-api/models/VisualConsole/Item.php:2088
-#: ../../include/rest-api/models/VisualConsole/Item.php:2207
-#: ../../include/rest-api/models/VisualConsole/Item.php:2325
-#: ../../include/rest-api/models/VisualConsole/Item.php:2447
+#: ../../include/rest-api/models/VisualConsole/Item.php:2091
+#: ../../include/rest-api/models/VisualConsole/Item.php:2210
+#: ../../include/rest-api/models/VisualConsole/Item.php:2328
+#: ../../include/rest-api/models/VisualConsole/Item.php:2450
#: ../../include/functions_html.php:397 ../../include/functions_html.php:848
-#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323
-#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371
-#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472
-#: ../../include/functions_html.php:6508
-#: ../../include/class/NetworkMap.class.php:2934
-#: ../../include/class/NetworkMap.class.php:3203
-#: ../../include/class/NetworkMap.class.php:3226
-#: ../../include/class/NetworkMap.class.php:3299
-#: ../../include/class/NetworkMap.class.php:3309
-#: ../../include/class/NetworkMap.class.php:3420
-#: ../../include/class/NetworkMap.class.php:3441
+#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328
+#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376
+#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477
+#: ../../include/functions_html.php:6536
+#: ../../include/class/NetworkMap.class.php:2940
+#: ../../include/class/NetworkMap.class.php:3209
+#: ../../include/class/NetworkMap.class.php:3232
+#: ../../include/class/NetworkMap.class.php:3305
+#: ../../include/class/NetworkMap.class.php:3315
+#: ../../include/class/NetworkMap.class.php:3426
+#: ../../include/class/NetworkMap.class.php:3447
#: ../../include/class/SnmpConsole.class.php:314
-#: ../../include/class/SnmpConsole.class.php:1375
+#: ../../include/class/SnmpConsole.class.php:1377
#: ../../include/class/AgentWizard.class.php:729
#: ../../include/class/AgentWizard.class.php:785
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:369
@@ -4539,6 +4588,8 @@ msgstr "Padre"
#: ../../include/lib/Dashboard/Widgets/network_map.php:365
#: ../../include/lib/Dashboard/Widgets/events_list.php:312
#: ../../include/lib/Dashboard/Widgets/events_list.php:470
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413
#: ../../include/lib/Dashboard/Widgets/module_icon.php:388
#: ../../include/lib/Dashboard/Widgets/module_value.php:363
#: ../../include/lib/Dashboard/Widgets/module_table_value.php:336
@@ -4554,29 +4605,28 @@ msgstr "Padre"
#: ../../include/lib/Dashboard/Widgets/single_graph.php:352
#: ../../include/lib/Dashboard/Widgets/reports.php:552
#: ../../include/lib/Dashboard/Widgets/top_n.php:241
-#: ../../include/functions_events.php:3501
-#: ../../operation/users/user_edit.php:520
-#: ../../operation/users/user_edit.php:532
-#: ../../operation/users/user_edit.php:581
-#: ../../operation/users/user_edit.php:616
-#: ../../operation/users/user_edit.php:631
-#: ../../operation/users/user_edit.php:1081
-#: ../../operation/users/user_edit.php:1088
-#: ../../operation/users/user_edit.php:1097
-#: ../../operation/users/user_edit.php:1104
+#: ../../include/functions_events.php:3506
+#: ../../operation/users/user_edit.php:525
+#: ../../operation/users/user_edit.php:578
+#: ../../operation/users/user_edit.php:613
+#: ../../operation/users/user_edit.php:628
+#: ../../operation/users/user_edit.php:1078
+#: ../../operation/users/user_edit.php:1085
+#: ../../operation/users/user_edit.php:1094
+#: ../../operation/users/user_edit.php:1101
#: ../../operation/agentes/pandora_networkmap.editor.php:488
#: ../../operation/agentes/pandora_networkmap.view.php:227
#: ../../operation/agentes/ver_agente.php:1182
#: ../../operation/agentes/ver_agente.php:1238
#: ../../operation/agentes/ver_agente.php:1253
-#: ../../operation/snmpconsole/snmp_browser.php:383
-#: ../../operation/snmpconsole/snmp_browser.php:398
-#: ../../operation/snmpconsole/snmp_browser.php:408
-#: ../../operation/snmpconsole/snmp_browser.php:527
+#: ../../operation/snmpconsole/snmp_browser.php:388
+#: ../../operation/snmpconsole/snmp_browser.php:403
+#: ../../operation/snmpconsole/snmp_browser.php:413
+#: ../../operation/snmpconsole/snmp_browser.php:532
#: ../../operation/gis_maps/render_view.php:164
#: ../../operation/incidents/list_integriaims_incidents.php:601
#: ../../operation/incidents/list_integriaims_incidents.php:605
-#: ../../operation/events/events.php:2647
+#: ../../operation/events/events.php:2701
msgid "None"
msgstr "Ninguno"
@@ -4584,12 +4634,21 @@ msgstr "Ninguno"
msgid "Create visualmap"
msgstr "Crear mapa visual"
-#: ../../enterprise/meta/advanced/servers.build_table.php:34
+#: ../../enterprise/meta/advanced/servers.build_table.php:33
+#: ../../godmode/servers/modificar_server.php:63
+#: ../../godmode/servers/modificar_server.php:223
+#: ../../godmode/servers/modificar_server.php:242
+#: ../../godmode/servers/modificar_server.php:284
+#, php-format
+msgid "%s servers"
+msgstr "Servidores de %s"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:50
#: ../../godmode/servers/servers.build_table.php:52
msgid "There are no servers configured into the database"
msgstr "No hay ningún servidor configurado en la base de datos"
-#: ../../enterprise/meta/advanced/servers.build_table.php:65
+#: ../../enterprise/meta/advanced/servers.build_table.php:81
#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647
@@ -4600,7 +4659,7 @@ msgstr "No hay ningún servidor configurado en la base de datos"
#: ../../enterprise/meta/include/functions_wizard_meta.php:406
#: ../../enterprise/meta/include/functions_wizard_meta.php:1821
#: ../../enterprise/meta/agentsearch.php:138
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135
#: ../../enterprise/godmode/policies/policy_modules.php:459
#: ../../enterprise/godmode/policies/policy_modules.php:472
#: ../../enterprise/godmode/policies/policies.php:581
@@ -4616,10 +4675,10 @@ msgstr "No hay ningún servidor configurado en la base de datos"
#: ../../enterprise/operation/services/massive/services.create.php:986
#: ../../enterprise/operation/services/massive/service.create.elements.php:380
#: ../../enterprise/operation/services/services.service_map.php:153
-#: ../../extensions/agents_modules.php:841
+#: ../../extensions/agents_modules.php:865
#: ../../godmode/agentes/configurar_agente.php:423
#: ../../godmode/agentes/configurar_agente.php:735
-#: ../../godmode/agentes/modificar_agente.php:820
+#: ../../godmode/agentes/modificar_agente.php:832
#: ../../godmode/agentes/planned_downtime.list.php:85
#: ../../godmode/agentes/planned_downtime.list.php:116
#: ../../godmode/agentes/planned_downtime.editor.php:1360
@@ -4632,12 +4691,12 @@ msgstr "No hay ningún servidor configurado en la base de datos"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1946
#: ../../godmode/reporting/reporting_builder.item_editor.php:2167
#: ../../godmode/reporting/visual_console_builder.wizard.php:447
-#: ../../godmode/servers/servers.build_table.php:81
-#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409
+#: ../../godmode/servers/servers.build_table.php:83
+#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410
#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88
-#: ../../mobile/operation/agent.php:327
-#: ../../include/functions_reporting_html.php:2094
-#: ../../include/functions_reporting_html.php:5662
+#: ../../mobile/operation/agent.php:330
+#: ../../include/functions_reporting_html.php:2115
+#: ../../include/functions_reporting_html.php:5690
#: ../../include/functions_reports.php:745
#: ../../include/functions_reports.php:749
#: ../../include/functions_reports.php:753
@@ -4646,53 +4705,53 @@ msgstr "No hay ningún servidor configurado en la base de datos"
#: ../../include/functions_reports.php:765
#: ../../include/functions_reports.php:769
#: ../../include/functions_reports.php:773
-#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745
-#: ../../include/functions_html.php:5982
+#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1755
+#: ../../include/functions_html.php:6006
#: ../../include/class/AgentsAlerts.class.php:253
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:414
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:420
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:432
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:344
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:424
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:430
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:445
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:347
#: ../../operation/search_agents.php:55 ../../operation/tree.php:115
#: ../../operation/search_results.php:159
-#: ../../operation/agentes/estado_agente.php:1046
+#: ../../operation/agentes/estado_agente.php:1054
#: ../../operation/agentes/graphs.php:203
#: ../../operation/agentes/exportdata.php:354
#: ../../operation/agentes/group_view.php:185
-#: ../../operation/agentes/group_view.php:235
+#: ../../operation/agentes/group_view.php:238
msgid "Modules"
msgstr "Módulos"
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-#: ../../godmode/servers/servers.build_table.php:82
+#: ../../enterprise/meta/advanced/servers.build_table.php:82
+#: ../../godmode/servers/servers.build_table.php:84
msgid "Lag"
msgstr "Retraso"
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-#: ../../godmode/servers/servers.build_table.php:82
+#: ../../enterprise/meta/advanced/servers.build_table.php:82
+#: ../../godmode/servers/servers.build_table.php:84
msgid "Avg. Delay(sec)/Modules delayed"
msgstr "Media de retraso (seg.)/Módulos retrasados"
-#: ../../enterprise/meta/advanced/servers.build_table.php:67
-#: ../../godmode/servers/servers.build_table.php:83
+#: ../../enterprise/meta/advanced/servers.build_table.php:83
+#: ../../godmode/servers/servers.build_table.php:85
msgid "T/Q"
msgstr "H/C"
-#: ../../enterprise/meta/advanced/servers.build_table.php:67
-#: ../../godmode/servers/servers.build_table.php:83
+#: ../../enterprise/meta/advanced/servers.build_table.php:83
+#: ../../godmode/servers/servers.build_table.php:85
msgid "Threads / Queued modules currently"
msgstr "Hilos/Cola actual de módulos"
-#: ../../enterprise/meta/advanced/servers.build_table.php:69
+#: ../../enterprise/meta/advanced/servers.build_table.php:85
#: ../../enterprise/include/class/DatabaseHA.class.php:800
#: ../../enterprise/tools/ipam/ipam_ajax.php:497
#: ../../godmode/agentes/agent_incidents.php:92
-#: ../../godmode/servers/servers.build_table.php:85
+#: ../../godmode/servers/servers.build_table.php:87
#: ../../operation/incidents/integriaims_export_csv.php:86
msgid "Updated"
msgstr "Actualizado"
-#: ../../enterprise/meta/advanced/servers.build_table.php:73
+#: ../../enterprise/meta/advanced/servers.build_table.php:89
#: ../../enterprise/meta/include/functions_autoprovision.php:701
#: ../../enterprise/godmode/modules/local_components.php:648
#: ../../enterprise/godmode/policies/policy_alerts.php:368
@@ -4701,47 +4760,54 @@ msgstr "Actualizado"
#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
#: ../../godmode/users/profile_list.php:359
#: ../../godmode/alerts/alert_list.list.php:572
-#: ../../godmode/alerts/alert_templates.php:413
+#: ../../godmode/alerts/alert_templates.php:417
#: ../../godmode/reporting/reporting_builder.list_items.php:429
#: ../../godmode/reporting/graphs.php:375
#: ../../godmode/reporting/reporting_builder.php:931
#: ../../godmode/reporting/reporting_builder.php:1151
-#: ../../godmode/servers/servers.build_table.php:89
-#: ../../godmode/servers/plugin.php:996 ../../include/functions_container.php:157
+#: ../../godmode/servers/servers.build_table.php:91
+#: ../../include/functions_container.php:157
#: ../../operation/gis_maps/gis_map.php:122
msgid "Op."
msgstr "Op."
-#: ../../enterprise/meta/advanced/servers.build_table.php:92
-#: ../../godmode/servers/servers.build_table.php:138
+#: ../../enterprise/meta/advanced/servers.build_table.php:116
+#: ../../godmode/servers/servers.build_table.php:140
msgid "This is a master server"
msgstr "Este es un servidor maestro"
-#: ../../enterprise/meta/advanced/servers.build_table.php:107
-#: ../../enterprise/meta/advanced/servers.build_table.php:113
-#: ../../godmode/servers/servers.build_table.php:157
-#: ../../godmode/servers/servers.build_table.php:163
+#: ../../enterprise/meta/advanced/servers.build_table.php:131
+#: ../../enterprise/meta/advanced/servers.build_table.php:137
+#: ../../godmode/servers/servers.build_table.php:159
+#: ../../godmode/servers/servers.build_table.php:165
msgid "of"
msgstr "de"
-#: ../../enterprise/meta/advanced/servers.build_table.php:143
-#: ../../godmode/servers/servers.build_table.php:274
+#: ../../enterprise/meta/advanced/servers.build_table.php:170
+#: ../../godmode/servers/servers.build_table.php:262
+msgid "Manage server conf"
+msgstr "Gestionar configuración del servidorservidor Satélite"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:186
+#: ../../godmode/servers/servers.build_table.php:287
msgid "Modules run by this server will stop working. Do you want to continue?"
msgstr ""
"Los módulos ejecutados por este servidor podrían dejar de funcionar. ¿Quieres "
"continuar?"
-#: ../../enterprise/meta/advanced/servers.build_table.php:170
-#: ../../godmode/servers/servers.build_table.php:301
+#: ../../enterprise/meta/advanced/servers.build_table.php:213
+#: ../../godmode/servers/servers.build_table.php:314
msgid "Tactical server information"
msgstr "Vista táctica del servidor"
-#: ../../enterprise/meta/advanced/servers.build_table.php:180
+#: ../../enterprise/meta/advanced/servers.build_table.php:223
+#: ../../godmode/servers/servers.build_table.php:327
#: ../../include/help/clippy/server_queued_modules.php:35
msgid "Excesive Queued."
msgstr "Demasiados módulos en cola"
-#: ../../enterprise/meta/advanced/servers.build_table.php:181
+#: ../../enterprise/meta/advanced/servers.build_table.php:224
+#: ../../godmode/servers/servers.build_table.php:328
msgid ""
"You have too many items in the processing queue. This can happen if your "
"server is overloaded and/or improperly configured. This could be something "
@@ -4751,10 +4817,10 @@ msgstr ""
"Tiene demasiados elementos en la cola de procesamiento. Esto puede suceder si "
"su servidor está sobrecargado y/o configurado incorrectamente. Podría tratarse "
"de algo temporal o un cuello de botella. Si está asociado con un retraso en la "
-"monitorizaión, con módulos que pasan a desconocido, intente aumentar el número "
-"de subprocesos."
+"monitorización, con módulos que pasan a desconocido, intente aumentar el "
+"número de subprocesos."
-#: ../../enterprise/meta/advanced/servers.build_table.php:182
+#: ../../enterprise/meta/advanced/servers.build_table.php:225
#: ../../enterprise/meta/advanced/cron_main.php:408
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163
@@ -4762,39 +4828,41 @@ msgstr ""
#: ../../enterprise/godmode/wizards/consoletask_js.php:47
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416
-#: ../../enterprise/operation/log/log_viewer.php:1201
-#: ../../enterprise/operation/log/log_viewer.php:1216
+#: ../../enterprise/operation/log/log_viewer.php:1199
+#: ../../enterprise/operation/log/log_viewer.php:1214
#: ../../enterprise/operation/services/services.treeview_services.php:416
#: ../../extensions/insert_data.php:285
-#: ../../godmode/agentes/planned_downtime.editor.php:2017
+#: ../../godmode/agentes/planned_downtime.editor.php:2013
#: ../../godmode/alerts/configure_alert_template.php:1512
#: ../../godmode/alerts/configure_alert_template.php:1596
-#: ../../godmode/setup/news.php:437
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5168
+#: ../../godmode/setup/news.php:436
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5177
#: ../../godmode/wizards/HostDevices.class.php:797
-#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749
-#: ../../include/functions_menu.php:941
+#: ../../godmode/servers/servers.build_table.php:329
+#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775
+#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323
#: ../../include/class/WelcomeWindow.class.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:743
-#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631
-#: ../../operation/agentes/stat_win.php:591
-#: ../../operation/agentes/interface_traffic_graph_win.php:442
-#: ../../operation/agentes/datos_agente.php:318
-#: ../../operation/agentes/estado_monitores.php:470
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:736
+#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633
+#: ../../operation/agentes/stat_win.php:607
+#: ../../operation/agentes/interface_traffic_graph_win.php:451
+#: ../../operation/agentes/datos_agente.php:320
+#: ../../operation/agentes/estado_monitores.php:467
#: ../../operation/network/network_report.php:463
#: ../../operation/network/network_usage_map.php:300
-#: ../../operation/netflow/nf_live_view.php:871
+#: ../../operation/netflow/nf_live_view.php:982
+#: ../../operation/search_modules.php:359
#: ../../operation/reporting/reporting_viewer.php:366
#: ../../operation/reporting/reporting_viewer.php:385
#: ../../operation/reporting/graph_viewer.php:472
-#: ../../operation/events/events.php:3229
+#: ../../operation/events/events.php:3288
msgid "Close"
msgstr "Cerrar"
#: ../../enterprise/meta/advanced/massive_operations.php:55
#: ../../enterprise/meta/monitoring/wizard/wizard.php:71
#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64
-#: ../../general/node_deactivated.php:59
+#: ../../general/node_deactivated.php:64
msgid "command center"
msgstr "command center"
@@ -4809,7 +4877,7 @@ msgstr ""
"favor, vaya a %s"
#: ../../enterprise/meta/advanced/component_management.php:35
-#: ../../include/functions_menu.php:614
+#: ../../include/functions_menu.php:618
msgid "Tags management"
msgstr "Gestión de etiquetas"
@@ -4826,7 +4894,7 @@ msgstr "Administración de SO"
#: ../../godmode/groups/configure_modu_group.php:43
#: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116
#: ../../godmode/reporting/reporting_builder.item_editor.php:86
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:343
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:346
#: ../../operation/tree.php:103
msgid "Module groups"
msgstr "Grupos de módulos"
@@ -4870,56 +4938,56 @@ msgid "Successfully update"
msgstr "Actualizado correctamente"
#: ../../enterprise/meta/advanced/metasetup.visual.php:100
-#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137
+#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137
#: ../../godmode/setup/setup.php:285
msgid "Visual styles"
msgstr "Estilos visuales"
#: ../../enterprise/meta/advanced/metasetup.visual.php:106
#: ../../enterprise/meta/include/functions_meta.php:1364
-#: ../../godmode/setup/setup_visuals.php:1757
-#: ../../include/functions_config.php:973
+#: ../../godmode/setup/setup_visuals.php:1772
+#: ../../include/functions_config.php:985
msgid "Date format string"
msgstr "Formato de fecha a mostrar"
#: ../../enterprise/meta/advanced/metasetup.visual.php:108
#: ../../enterprise/tools/ipam/ipam_editor.php:147
-#: ../../godmode/setup/setup_visuals.php:1766
+#: ../../godmode/setup/setup_visuals.php:1781
msgid "Example"
msgstr "Ejemplo"
#: ../../enterprise/meta/advanced/metasetup.visual.php:138
-#: ../../godmode/setup/setup_visuals.php:1801
+#: ../../godmode/setup/setup_visuals.php:1816
msgid "Timestamp, time comparison, or compact mode"
msgstr "Marca horaria, comparación horaria o modo compacto"
#: ../../enterprise/meta/advanced/metasetup.visual.php:140
-#: ../../godmode/setup/setup_visuals.php:1611
+#: ../../godmode/setup/setup_visuals.php:1626
msgid "Comparation in rollover"
msgstr "Fecha en comparación"
#: ../../enterprise/meta/advanced/metasetup.visual.php:147
-#: ../../godmode/setup/setup_visuals.php:1618
+#: ../../godmode/setup/setup_visuals.php:1633
msgid "Timestamp in rollover"
msgstr "Fecha literal"
#: ../../enterprise/meta/advanced/metasetup.visual.php:154
-#: ../../godmode/setup/setup_visuals.php:1625
+#: ../../godmode/setup/setup_visuals.php:1640
msgid "Compact mode"
msgstr "Modo compacto"
#: ../../enterprise/meta/advanced/metasetup.visual.php:164
-#: ../../include/functions_config.php:985
+#: ../../include/functions_config.php:997
msgid "Graph color #1"
msgstr "Color de la gráfica #1"
#: ../../enterprise/meta/advanced/metasetup.visual.php:175
-#: ../../include/functions_config.php:989
+#: ../../include/functions_config.php:1001
msgid "Graph color #2"
msgstr "Color de la gráfica #2"
#: ../../enterprise/meta/advanced/metasetup.visual.php:186
-#: ../../include/functions_config.php:993
+#: ../../include/functions_config.php:1005
msgid "Graph color #3"
msgstr "Color de la gráfica #3"
@@ -4933,10 +5001,10 @@ msgstr "La precisión debe ser un número entero entre 0 y 5"
#: ../../enterprise/meta/advanced/metasetup.visual.php:215
#: ../../enterprise/meta/include/functions_meta.php:1414
-#: ../../godmode/setup/setup_visuals.php:1256
+#: ../../godmode/setup/setup_visuals.php:1260
#: ../../godmode/reporting/visual_console_builder.elements.php:233
#: ../../godmode/reporting/visual_console_builder.wizard.php:288
-#: ../../include/functions_visual_map_editor.php:684
+#: ../../include/functions_visual_map_editor.php:734
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458
msgid "Percentile"
msgstr "Percentil"
@@ -4947,46 +5015,46 @@ msgstr "Mostrar el percentil 95 en los gráficos"
#: ../../enterprise/meta/advanced/metasetup.visual.php:231
#: ../../enterprise/meta/include/functions_meta.php:1499
-#: ../../godmode/setup/setup_visuals.php:1160
-#: ../../include/functions_config.php:1025
+#: ../../godmode/setup/setup_visuals.php:1164
+#: ../../include/functions_config.php:1037
msgid "Value to interface graphics"
msgstr "Valor para la interfaz gráfica"
#: ../../enterprise/meta/advanced/metasetup.visual.php:247
#: ../../enterprise/meta/include/functions_meta.php:1512
-#: ../../godmode/users/configure_user.php:1380
-#: ../../godmode/users/user_management.php:583
+#: ../../godmode/users/configure_user.php:1429
+#: ../../godmode/users/user_management.php:589
#: ../../godmode/massive/massive_edit_users.php:263
-#: ../../godmode/setup/setup_visuals.php:92
-#: ../../godmode/events/event_edit_filter.php:457
-#: ../../include/functions_config.php:1042
+#: ../../godmode/setup/setup_visuals.php:96
+#: ../../godmode/events/event_edit_filter.php:459
+#: ../../include/functions_config.php:1054
#: ../../operation/users/user_edit.php:420
msgid "Block size for pagination"
msgstr "Tamaño de bloque para la paginación"
#: ../../enterprise/meta/advanced/metasetup.visual.php:263
#: ../../enterprise/meta/include/functions_meta.php:1428
-#: ../../godmode/setup/setup_visuals.php:1185
+#: ../../godmode/setup/setup_visuals.php:1189
msgid "Number of elements in Custom Graph"
msgstr "Número de elementos en gráfica personalizada"
#: ../../enterprise/meta/advanced/metasetup.visual.php:278
#: ../../enterprise/meta/include/functions_meta.php:1522
-#: ../../godmode/setup/setup_visuals.php:1199
-#: ../../include/functions_config.php:1046
+#: ../../godmode/setup/setup_visuals.php:1203
+#: ../../include/functions_config.php:1058
msgid "Use round corners"
msgstr "Usar bordes redondeados"
#: ../../enterprise/meta/advanced/metasetup.visual.php:288
#: ../../enterprise/meta/include/functions_meta.php:1533
-#: ../../godmode/setup/setup_visuals.php:1210
-#: ../../include/functions_config.php:1050
+#: ../../godmode/setup/setup_visuals.php:1214
+#: ../../include/functions_config.php:1062
msgid "Chart fit to content"
msgstr "Tabla adaptada al contenido"
#: ../../enterprise/meta/advanced/metasetup.visual.php:298
#: ../../enterprise/meta/include/functions_meta.php:1544
-#: ../../include/functions_config.php:1278
+#: ../../include/functions_config.php:1294
msgid "Disable help"
msgstr "Deshabilitar ayuda"
@@ -5013,10 +5081,10 @@ msgstr "Deshabilitar ayuda"
#: ../../enterprise/godmode/modules/local_components.php:555
#: ../../enterprise/godmode/modules/local_components.php:588
#: ../../enterprise/godmode/agentes/collections.data.php:485
-#: ../../enterprise/godmode/policies/policy_queue.php:292
-#: ../../enterprise/godmode/policies/policy_queue.php:304
-#: ../../enterprise/godmode/policies/policy_queue.php:329
-#: ../../enterprise/godmode/policies/policy_queue.php:732
+#: ../../enterprise/godmode/policies/policy_queue.php:294
+#: ../../enterprise/godmode/policies/policy_queue.php:306
+#: ../../enterprise/godmode/policies/policy_queue.php:331
+#: ../../enterprise/godmode/policies/policy_queue.php:734
#: ../../enterprise/godmode/policies/policy_external_alerts.php:383
#: ../../enterprise/godmode/policies/policy_agents.php:453
#: ../../enterprise/godmode/policies/policy_agents.php:588
@@ -5053,15 +5121,15 @@ msgstr "Deshabilitar ayuda"
#: ../../enterprise/operation/agentes/tag_view.php:316
#: ../../enterprise/operation/agentes/tag_view.php:328
#: ../../enterprise/operation/agentes/tag_view.php:430
-#: ../../enterprise/operation/log/log_viewer.php:755
-#: ../../enterprise/operation/log/log_viewer.php:776
-#: ../../enterprise/operation/log/log_viewer.php:830
+#: ../../enterprise/operation/log/log_viewer.php:753
+#: ../../enterprise/operation/log/log_viewer.php:774
+#: ../../enterprise/operation/log/log_viewer.php:828
#: ../../enterprise/operation/snmpconsole/snmp_view.php:33
#: ../../extensions/resource_registration.php:1137
-#: ../../extensions/agents_modules.php:454
+#: ../../extensions/agents_modules.php:462
#: ../../extensions/files_repo/files_repo_form.php:44
#: ../../godmode/modules/manage_network_templates_form.php:303
-#: ../../godmode/modules/manage_network_components.php:665
+#: ../../godmode/modules/manage_network_components.php:668
#: ../../godmode/massive/massive_copy_modules.php:127
#: ../../godmode/massive/massive_copy_modules.php:287
#: ../../godmode/massive/massive_delete_modules.php:327
@@ -5076,11 +5144,11 @@ msgstr "Deshabilitar ayuda"
#: ../../godmode/alerts/alert_list.list.php:152
#: ../../godmode/alerts/alert_list.list.php:169
#: ../../godmode/alerts/alert_list.list.php:201
-#: ../../godmode/alerts/alert_templates.php:313
+#: ../../godmode/alerts/alert_templates.php:317
#: ../../godmode/alerts/alert_list.php:553
#: ../../godmode/alerts/alert_list.php:574
#: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238
-#: ../../godmode/setup/setup_visuals.php:1085
+#: ../../godmode/setup/setup_visuals.php:1089
#: ../../godmode/reporting/reporting_builder.list_items.php:217
#: ../../godmode/reporting/reporting_builder.list_items.php:234
#: ../../godmode/reporting/reporting_builder.list_items.php:251
@@ -5088,28 +5156,28 @@ msgstr "Deshabilitar ayuda"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1710
#: ../../godmode/reporting/reporting_builder.item_editor.php:1728
#: ../../godmode/reporting/reporting_builder.item_editor.php:2153
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3007
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3685
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3766
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3788
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3846
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3016
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3043
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3694
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3775
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3797
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3855
#: ../../godmode/reporting/visual_console_builder.wizard.php:359
-#: ../../godmode/events/event_edit_filter.php:358
-#: ../../godmode/events/event_edit_filter.php:378
-#: ../../godmode/events/event_edit_filter.php:762
+#: ../../godmode/events/event_edit_filter.php:360
+#: ../../godmode/events/event_edit_filter.php:380
+#: ../../godmode/events/event_edit_filter.php:764
#: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68
#: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304
#: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72
-#: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984
-#: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489
+#: ../../mobile/operation/events.php:1018 ../../mobile/operation/events.php:1028
+#: ../../mobile/operation/events.php:1585 ../../mobile/operation/events.php:1614
#: ../../include/functions.php:1127 ../../include/functions.php:1387
-#: ../../include/ajax/events.php:521 ../../include/functions_groupview.php:96
+#: ../../include/ajax/events.php:522 ../../include/functions_groupview.php:96
#: ../../include/functions_modules.php:3604
#: ../../include/functions_modules.php:3606 ../../include/functions_users.php:428
#: ../../include/functions_users.php:686
#: ../../include/functions_notifications.php:105
-#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606
+#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614
#: ../../include/functions_massive_operations.php:158
#: ../../include/functions_massive_operations.php:172
#: ../../include/class/EventSound.class.php:347
@@ -5119,23 +5187,23 @@ msgstr "Deshabilitar ayuda"
#: ../../include/class/SnmpConsole.class.php:308
#: ../../include/class/AuditLog.class.php:232
#: ../../include/class/AuditLog.class.php:242
-#: ../../include/class/TipsWindow.class.php:719
-#: ../../include/class/TipsWindow.class.php:886
-#: ../../include/functions_reporting.php:3343
-#: ../../include/functions_reporting.php:3440
+#: ../../include/class/TipsWindow.class.php:739
+#: ../../include/class/TipsWindow.class.php:906
+#: ../../include/functions_reporting.php:3352
+#: ../../include/functions_reporting.php:3449
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:422
#: ../../include/lib/Dashboard/Widgets/events_list.php:412
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:397
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:431
-#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1959
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:400
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:435
+#: ../../include/functions_groups.php:671 ../../include/functions_groups.php:1984
#: ../../operation/heatmap.php:122 ../../operation/tree.php:205
-#: ../../operation/tree.php:296 ../../operation/agentes/estado_agente.php:330
-#: ../../operation/agentes/status_monitor.php:599
-#: ../../operation/agentes/status_monitor.php:680
-#: ../../operation/agentes/status_monitor.php:977
-#: ../../operation/agentes/estado_monitores.php:515
-#: ../../operation/agentes/estado_monitores.php:536
-#: ../../operation/agentes/agent_inventory.php:122
+#: ../../operation/tree.php:297 ../../operation/agentes/estado_agente.php:330
+#: ../../operation/agentes/status_monitor.php:598
+#: ../../operation/agentes/status_monitor.php:679
+#: ../../operation/agentes/status_monitor.php:979
+#: ../../operation/agentes/estado_monitores.php:512
+#: ../../operation/agentes/estado_monitores.php:533
+#: ../../operation/agentes/agent_inventory.php:124
#: ../../operation/agentes/alerts_status.functions.php:98
#: ../../operation/agentes/alerts_status.functions.php:134
#: ../../operation/agentes/alerts_status.functions.php:165
@@ -5146,24 +5214,24 @@ msgstr "Deshabilitar ayuda"
#: ../../operation/incidents/list_integriaims_incidents.php:407
#: ../../operation/inventory/inventory.php:78
#: ../../operation/inventory/inventory.php:79
-#: ../../operation/inventory/inventory.php:319
-#: ../../operation/inventory/inventory.php:320
-#: ../../operation/inventory/inventory.php:496
-#: ../../operation/inventory/inventory.php:529
-#: ../../operation/inventory/inventory.php:564
-#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745
-#: ../../operation/events/events.php:1839 ../../operation/events/events.php:2039
+#: ../../operation/inventory/inventory.php:321
+#: ../../operation/inventory/inventory.php:322
+#: ../../operation/inventory/inventory.php:498
+#: ../../operation/inventory/inventory.php:531
+#: ../../operation/inventory/inventory.php:566
+#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799
+#: ../../operation/events/events.php:1893 ../../operation/events/events.php:2093
#: ../../general/subselect_data_module.php:62
msgid "All"
msgstr "Todo"
#: ../../enterprise/meta/advanced/metasetup.visual.php:310
-#: ../../godmode/setup/setup_visuals.php:1086
+#: ../../godmode/setup/setup_visuals.php:1090
msgid "On Boolean graphs"
msgstr "En gráficos booleanos"
#: ../../enterprise/meta/advanced/metasetup.visual.php:313
-#: ../../godmode/setup/setup_visuals.php:1268
+#: ../../godmode/setup/setup_visuals.php:1272
msgid "Graph TIP view"
msgstr "Visor de gráfico TIP"
@@ -5172,17 +5240,17 @@ msgid "This option may cause performance issues"
msgstr "Esta opción puede generar problemas de rendimiento"
#: ../../enterprise/meta/advanced/metasetup.visual.php:328
-#: ../../godmode/setup/setup_visuals.php:1089
+#: ../../godmode/setup/setup_visuals.php:1093
msgid "Show only average by default"
msgstr "Mostrar solo la media por defecto"
#: ../../enterprise/meta/advanced/metasetup.visual.php:329
-#: ../../godmode/setup/setup_visuals.php:1090
+#: ../../godmode/setup/setup_visuals.php:1094
msgid "Show MAX/AVG/MIN by default"
msgstr "Mostrar MÁX/MEDIA/MÍN por defecto"
#: ../../enterprise/meta/advanced/metasetup.visual.php:332
-#: ../../godmode/setup/setup_visuals.php:1284
+#: ../../godmode/setup/setup_visuals.php:1288
msgid "Graph mode"
msgstr "Modo de gráfico"
@@ -5191,16 +5259,16 @@ msgid "Zoom graphs:"
msgstr "Gráficas ampliadas:"
#: ../../enterprise/meta/advanced/metasetup.visual.php:369
-#: ../../godmode/setup/setup_visuals.php:1220
+#: ../../godmode/setup/setup_visuals.php:1224
msgid "Type of module charts"
msgstr "Tipo de gráficos de módulos"
#: ../../enterprise/meta/advanced/metasetup.visual.php:371
#: ../../enterprise/godmode/reporting/graph_template_editor.php:260
-#: ../../godmode/setup/setup_visuals.php:1227
+#: ../../godmode/setup/setup_visuals.php:1231
#: ../../godmode/reporting/create_container.php:430
#: ../../godmode/reporting/graph_builder.main.php:208
-#: ../../include/functions_visual_map_editor.php:558
+#: ../../include/functions_visual_map_editor.php:552
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:352
#: ../../operation/agentes/graphs.php:251 ../../operation/agentes/graphs.php:258
@@ -5211,16 +5279,16 @@ msgstr "Área"
#: ../../enterprise/meta/advanced/metasetup.visual.php:378
#: ../../enterprise/godmode/reporting/graph_template_editor.php:262
-#: ../../godmode/setup/setup_visuals.php:1239
+#: ../../godmode/setup/setup_visuals.php:1243
#: ../../godmode/reporting/create_container.php:431
#: ../../godmode/reporting/visual_console_builder.elements.php:365
#: ../../godmode/reporting/graph_builder.main.php:210
#: ../../include/functions_visual_map_editor.php:72
-#: ../../include/functions_visual_map_editor.php:557
-#: ../../include/functions_visual_map_editor.php:1397
+#: ../../include/functions_visual_map_editor.php:551
+#: ../../include/functions_visual_map_editor.php:1455
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:354
-#: ../../operation/visual_console/view.php:381
+#: ../../operation/visual_console/view.php:383
#: ../../operation/agentes/graphs.php:253 ../../operation/agentes/graphs.php:259
#: ../../operation/agentes/graphs.php:451 ../../operation/agentes/graphs.php:465
#: ../../operation/reporting/graph_viewer.php:356
@@ -5239,33 +5307,33 @@ msgstr "Número de elementos recuperados para cada instancia en algunas vistas"
#: ../../enterprise/meta/advanced/metasetup.visual.php:401
#: ../../enterprise/meta/advanced/metasetup.visual.php:919
#: ../../enterprise/meta/advanced/metasetup.visual.php:920
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480
#: ../../enterprise/include/ajax/log_viewer.ajax.php:282
#: ../../godmode/snmpconsole/snmp_alert.php:1608
-#: ../../godmode/setup/setup_visuals.php:1319
-#: ../../godmode/setup/setup_visuals.php:1320
-#: ../../godmode/setup/setup_visuals.php:1898
-#: ../../include/functions_visual_map_editor.php:1221
-#: ../../include/functions_visual_map_editor.php:1222
+#: ../../godmode/setup/setup_visuals.php:1323
+#: ../../godmode/setup/setup_visuals.php:1324
+#: ../../godmode/setup/setup_visuals.php:1913
+#: ../../include/functions_visual_map_editor.php:1279
+#: ../../include/functions_visual_map_editor.php:1280
#: ../../include/functions.php:509 ../../include/functions.php:640
-#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353
-#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355
-#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360
-#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362
-#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364
-#: ../../include/functions_html.php:2135
-#: ../../operation/events/sound_events.php:199
-#: ../../operation/events/sound_events.php:200
-#: ../../operation/events/sound_events.php:201
-#: ../../operation/events/sound_events.php:202
-#: ../../operation/events/sound_events.php:206
-#: ../../operation/events/sound_events.php:207
-#: ../../operation/events/sound_events.php:208
-#: ../../operation/events/sound_events.php:209
-#: ../../operation/events/sound_events.php:210
-#: ../../operation/events/sound_events.php:211
+#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354
+#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356
+#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361
+#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363
+#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365
+#: ../../include/functions_html.php:2143
+#: ../../operation/events/sound_events.php:229
+#: ../../operation/events/sound_events.php:230
+#: ../../operation/events/sound_events.php:231
+#: ../../operation/events/sound_events.php:232
+#: ../../operation/events/sound_events.php:236
+#: ../../operation/events/sound_events.php:237
+#: ../../operation/events/sound_events.php:238
+#: ../../operation/events/sound_events.php:239
+#: ../../operation/events/sound_events.php:240
+#: ../../operation/events/sound_events.php:241
msgid "seconds"
msgstr "segundos"
@@ -5275,45 +5343,45 @@ msgstr "segundos"
#: ../../enterprise/meta/advanced/metasetup.visual.php:923
#: ../../enterprise/meta/advanced/metasetup.visual.php:924
#: ../../enterprise/include/ajax/log_viewer.ajax.php:284
-#: ../../godmode/setup/setup_visuals.php:1321
-#: ../../godmode/setup/setup_visuals.php:1322
-#: ../../godmode/setup/setup_visuals.php:1323
-#: ../../godmode/setup/setup_visuals.php:1324
-#: ../../godmode/setup/setup_visuals.php:1899
-#: ../../include/functions_visual_map_editor.php:1223
-#: ../../include/functions_visual_map_editor.php:1224
-#: ../../include/functions_visual_map_editor.php:1225
-#: ../../include/functions_visual_map_editor.php:1226
+#: ../../godmode/setup/setup_visuals.php:1325
+#: ../../godmode/setup/setup_visuals.php:1326
+#: ../../godmode/setup/setup_visuals.php:1327
+#: ../../godmode/setup/setup_visuals.php:1328
+#: ../../godmode/setup/setup_visuals.php:1914
+#: ../../include/functions_visual_map_editor.php:1281
+#: ../../include/functions_visual_map_editor.php:1282
+#: ../../include/functions_visual_map_editor.php:1283
+#: ../../include/functions_visual_map_editor.php:1284
#: ../../include/functions.php:513 ../../include/functions.php:644
-#: ../../include/functions_html.php:2136
+#: ../../include/functions_html.php:2144
msgid "minutes"
msgstr "minutos"
#: ../../enterprise/meta/advanced/metasetup.visual.php:403
#: ../../enterprise/include/ajax/log_viewer.ajax.php:286
-#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514
+#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514
#: ../../include/functions.php:645 ../../include/functions_snmp.php:402
-#: ../../include/functions_html.php:2137
+#: ../../include/functions_html.php:2145
msgid "hours"
msgstr "horas"
#: ../../enterprise/meta/advanced/metasetup.visual.php:404
#: ../../enterprise/include/ajax/log_viewer.ajax.php:288
#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92
-#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510
-#: ../../include/functions.php:641 ../../include/functions_html.php:2138
+#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510
+#: ../../include/functions.php:641 ../../include/functions_html.php:2146
msgid "days"
msgstr "días"
#: ../../enterprise/meta/advanced/metasetup.visual.php:405
-#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511
-#: ../../include/functions.php:642 ../../include/functions_html.php:2140
+#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511
+#: ../../include/functions.php:642 ../../include/functions_html.php:2148
msgid "months"
msgstr "meses"
#: ../../enterprise/meta/advanced/metasetup.visual.php:406
-#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512
-#: ../../include/functions.php:643 ../../include/functions_html.php:2141
+#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512
+#: ../../include/functions.php:643 ../../include/functions_html.php:2149
msgid "years"
msgstr "años"
@@ -5372,66 +5440,66 @@ msgstr "Añadir nuevo valor personalizado para intervalos"
#: ../../godmode/agentes/planned_downtime.editor.php:1493
#: ../../godmode/snmpconsole/snmp_alert.php:2135
#: ../../godmode/gis_maps/configure_gis_map.php:642
-#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:402
-#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1833
-#: ../../godmode/setup/setup_visuals.php:1923
-#: ../../godmode/setup/setup_visuals.php:2005
-#: ../../godmode/reporting/graph_builder.graph_editor.php:397
+#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:401
+#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1848
+#: ../../godmode/setup/setup_visuals.php:1938
+#: ../../godmode/setup/setup_visuals.php:2020
+#: ../../godmode/reporting/graph_builder.graph_editor.php:324
#: ../../godmode/reporting/visual_console_builder.wizard.php:575
-#: ../../godmode/events/event_edit_filter.php:647
-#: ../../godmode/events/event_edit_filter.php:712
+#: ../../godmode/events/event_edit_filter.php:649
+#: ../../godmode/events/event_edit_filter.php:714
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483
#: ../../include/functions_notifications.php:970
#: ../../include/class/SatelliteAgent.class.php:1147
-#: ../../include/class/ManageNetScanScripts.class.php:475
-#: ../../include/functions_snmp_browser.php:1713
+#: ../../include/class/ManageNetScanScripts.class.php:473
+#: ../../include/functions_snmp_browser.php:1722
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287
-#: ../../operation/events/events.php:1267 ../../operation/events/events.php:1341
+#: ../../operation/events/events.php:1294 ../../operation/events/events.php:1386
msgid "Add"
msgstr "Añadir"
#: ../../enterprise/meta/advanced/metasetup.visual.php:443
#: ../../enterprise/meta/include/functions_meta.php:1853
-#: ../../include/functions_config.php:1449
+#: ../../include/functions_config.php:1465
msgid "Delete interval"
msgstr "Borrar intervalo"
#: ../../enterprise/meta/advanced/metasetup.visual.php:475
#: ../../enterprise/meta/include/functions_meta.php:1644
-#: ../../godmode/setup/setup_visuals.php:1736
+#: ../../godmode/setup/setup_visuals.php:1751
msgid "Show only the group name"
msgstr "Mostrar solo el nombre del grupo"
#: ../../enterprise/meta/advanced/metasetup.visual.php:475
-#: ../../include/functions_config.php:1306
+#: ../../include/functions_config.php:1322
msgid "Show the group name instead the group icon."
msgstr "Mostrar el nombre del grupo en lugar de icono del grupo"
#: ../../enterprise/meta/advanced/metasetup.visual.php:485
#: ../../enterprise/meta/include/functions_meta.php:1945
-#: ../../godmode/setup/setup_visuals.php:129
-#: ../../include/functions_config.php:1330
+#: ../../godmode/setup/setup_visuals.php:133
+#: ../../include/functions_config.php:1346
msgid "Display data of proc modules in other format"
msgstr "Mostrar los datos de los módulos proc en otro formato"
#: ../../enterprise/meta/advanced/metasetup.visual.php:495
#: ../../enterprise/meta/include/functions_meta.php:1955
-#: ../../godmode/setup/setup_visuals.php:140
-#: ../../include/functions_config.php:1334
+#: ../../godmode/setup/setup_visuals.php:144
+#: ../../include/functions_config.php:1350
msgid "Display text proc modules have state is ok"
msgstr "Texto mostrado cuando el estado del módulo proc es OK"
#: ../../enterprise/meta/advanced/metasetup.visual.php:507
#: ../../enterprise/meta/include/functions_meta.php:1965
-#: ../../godmode/setup/setup_visuals.php:144
-#: ../../include/functions_config.php:1338
+#: ../../godmode/setup/setup_visuals.php:148
+#: ../../include/functions_config.php:1354
msgid "Display text when proc modules have state critical"
msgstr "Texto mostrado cuando el estado del módulo proc es Crítico"
#: ../../enterprise/meta/advanced/metasetup.visual.php:528
#: ../../enterprise/meta/include/functions_meta.php:1684
-#: ../../godmode/setup/setup_visuals.php:393
-#: ../../include/functions_config.php:1070
+#: ../../godmode/setup/setup_visuals.php:397
+#: ../../include/functions_config.php:1082
msgid "Custom favicon"
msgstr "Personalizar favicon"
@@ -5444,7 +5512,7 @@ msgstr ""
"estar en formato .ico y tener un tamaño de 16x16."
#: ../../enterprise/meta/advanced/metasetup.visual.php:563
-#: ../../godmode/setup/setup_visuals.php:424
+#: ../../godmode/setup/setup_visuals.php:428
msgid "Custom background logo"
msgstr "Fondo del logo personalizado"
@@ -5462,108 +5530,107 @@ msgstr "Puedes poner tus propias imágenes en el directorio images/backgrounds/"
#: ../../enterprise/operation/agentes/policy_view.php:70
#: ../../godmode/agentes/configurar_agente.php:386
#: ../../godmode/agentes/modificar_agente.php:83
-#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596
-#: ../../godmode/setup/setup_visuals.php:375
-#: ../../godmode/setup/setup_visuals.php:442
-#: ../../godmode/setup/setup_visuals.php:465
-#: ../../godmode/setup/setup_visuals.php:490
-#: ../../godmode/setup/setup_visuals.php:516
-#: ../../godmode/setup/setup_visuals.php:541
-#: ../../godmode/setup/setup_visuals.php:582
-#: ../../godmode/setup/setup_visuals.php:620
-#: ../../godmode/setup/setup_visuals.php:660
-#: ../../godmode/setup/setup_visuals.php:698
-#: ../../godmode/setup/setup_visuals.php:738
-#: ../../godmode/setup/setup_visuals.php:924
-#: ../../godmode/reporting/visual_console_builder.php:841
+#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594
+#: ../../godmode/setup/setup_visuals.php:379
+#: ../../godmode/setup/setup_visuals.php:446
+#: ../../godmode/setup/setup_visuals.php:469
+#: ../../godmode/setup/setup_visuals.php:494
+#: ../../godmode/setup/setup_visuals.php:520
+#: ../../godmode/setup/setup_visuals.php:545
+#: ../../godmode/setup/setup_visuals.php:586
+#: ../../godmode/setup/setup_visuals.php:624
+#: ../../godmode/setup/setup_visuals.php:664
+#: ../../godmode/setup/setup_visuals.php:702
+#: ../../godmode/setup/setup_visuals.php:742
+#: ../../godmode/setup/setup_visuals.php:928
+#: ../../godmode/reporting/visual_console_builder.php:849
#: ../../godmode/module_library/module_library_view.php:59
-#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312
#: ../../include/lib/ClusterViewer/ClusterManager.php:601
-#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212
+#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214
#: ../../operation/visual_console/legacy_view.php:189
#: ../../operation/agentes/status_monitor.php:77
-#: ../../operation/agentes/status_monitor.php:306
+#: ../../operation/agentes/status_monitor.php:305
msgid "View"
msgstr "Vista"
#: ../../enterprise/meta/advanced/metasetup.visual.php:602
-#: ../../godmode/setup/setup_visuals.php:460
+#: ../../godmode/setup/setup_visuals.php:464
msgid "Custom logo (menu)"
msgstr "Logo personalizado (menu)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:633
-#: ../../godmode/setup/setup_visuals.php:485
+#: ../../godmode/setup/setup_visuals.php:489
msgid "Custom logo collapsed (menu)"
msgstr "Icono menú reducido"
#: ../../enterprise/meta/advanced/metasetup.visual.php:663
-#: ../../godmode/setup/setup_visuals.php:511
+#: ../../godmode/setup/setup_visuals.php:515
msgid "Custom logo (header white background)"
msgstr "Logo personalizado (fondo blanco de cabecera)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:694
-#: ../../godmode/setup/setup_visuals.php:536
+#: ../../godmode/setup/setup_visuals.php:540
msgid "Custom logo (login)"
msgstr "Logo personalizado (inicio de sesión)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:724
-#: ../../godmode/setup/setup_visuals.php:564
+#: ../../godmode/setup/setup_visuals.php:568
msgid "Custom Splash (login)"
msgstr "Splash personalizado (inicio de sesión)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:754
#: ../../enterprise/meta/advanced/metasetup.visual.php:847
#: ../../enterprise/meta/include/functions_meta.php:1714
-#: ../../godmode/setup/setup_visuals.php:798
-#: ../../include/functions_config.php:1146
+#: ../../godmode/setup/setup_visuals.php:802
+#: ../../include/functions_config.php:1158
msgid "Product name"
msgstr "Nombre del producto"
#: ../../enterprise/meta/advanced/metasetup.visual.php:767
#: ../../enterprise/meta/advanced/metasetup.visual.php:859
#: ../../enterprise/meta/include/functions_meta.php:1724
-#: ../../godmode/setup/setup_visuals.php:803
-#: ../../include/functions_config.php:1150
+#: ../../godmode/setup/setup_visuals.php:807
+#: ../../include/functions_config.php:1162
msgid "Copyright notice"
msgstr "Aviso de copyright"
#: ../../enterprise/meta/advanced/metasetup.visual.php:780
#: ../../enterprise/meta/include/functions_meta.php:1614
-#: ../../godmode/setup/setup_visuals.php:809
-#: ../../include/functions_config.php:1154
-#: ../../include/functions_config.php:1158
+#: ../../godmode/setup/setup_visuals.php:813
+#: ../../include/functions_config.php:1166
+#: ../../include/functions_config.php:1170
msgid "Background opacity % (login)"
msgstr "% de opacidad de fondo (inicio de sesión)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:786
-#: ../../godmode/setup/setup_visuals.php:762
+#: ../../godmode/setup/setup_visuals.php:766
msgid "Title (header)"
msgstr "Título (encabezado)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:792
-#: ../../godmode/setup/setup_visuals.php:768
+#: ../../godmode/setup/setup_visuals.php:772
msgid "Subtitle (header)"
msgstr "Subtítulo (encabezado)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:798
-#: ../../godmode/setup/setup_visuals.php:776
+#: ../../godmode/setup/setup_visuals.php:780
msgid "Title 1 (login)"
msgstr "Título 1 (inicio de sesión)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:811
-#: ../../godmode/setup/setup_visuals.php:781
+#: ../../godmode/setup/setup_visuals.php:785
msgid "Title 2 (login)"
msgstr "Título 2 (inicio de sesión)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:823
#: ../../enterprise/meta/include/functions_meta.php:1774
-#: ../../godmode/setup/setup_visuals.php:787
+#: ../../godmode/setup/setup_visuals.php:791
msgid "Docs URL (login)"
msgstr "URL de documentos (inicio de sesión)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:835
#: ../../enterprise/meta/include/functions_meta.php:1784
-#: ../../godmode/setup/setup_visuals.php:792
+#: ../../godmode/setup/setup_visuals.php:796
msgid "Support URL (login)"
msgstr "URL soporte (inicio de sesión)"
@@ -5573,17 +5640,17 @@ msgstr "Familia tipográfica de las gráficas"
#: ../../enterprise/meta/advanced/metasetup.visual.php:884
#: ../../enterprise/meta/include/functions_meta.php:1594
-#: ../../godmode/setup/setup_visuals.php:864
+#: ../../godmode/setup/setup_visuals.php:868
msgid "Visual effects and animation"
msgstr "Efectos visuales y animación"
#: ../../enterprise/meta/advanced/metasetup.visual.php:894
-#: ../../godmode/setup/setup_visuals.php:875
+#: ../../godmode/setup/setup_visuals.php:879
msgid "Random background (login)"
msgstr "Fondo aleatorio (inicio de sesión)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:906
-#: ../../godmode/setup/setup_visuals.php:1340
+#: ../../godmode/setup/setup_visuals.php:1344
msgid "Legacy Visual Console View"
msgstr "Vista de la consola visual heredada"
@@ -5592,26 +5659,26 @@ msgid "To use the old view when using the Visual Console visor"
msgstr "Para usar la vista antigua al utilizar el visor de la Consola visual"
#: ../../enterprise/meta/advanced/metasetup.visual.php:925
-#: ../../godmode/setup/setup_visuals.php:1325
-#: ../../include/functions_visual_map_editor.php:1227
+#: ../../godmode/setup/setup_visuals.php:1329
+#: ../../include/functions_visual_map_editor.php:1285
msgid "hour"
msgstr "hora"
#: ../../enterprise/meta/advanced/metasetup.visual.php:928
-#: ../../godmode/setup/setup_visuals.php:1350
+#: ../../godmode/setup/setup_visuals.php:1354
msgid "Default cache expiration"
msgstr "Caducidad del caché por defecto"
#: ../../enterprise/meta/advanced/metasetup.visual.php:933
-#: ../../godmode/setup/setup_visuals.php:1355
-#: ../../include/functions_visual_map_editor.php:1253
+#: ../../godmode/setup/setup_visuals.php:1359
+#: ../../include/functions_visual_map_editor.php:1311
msgid "No cache"
msgstr "No hay chaché"
#: ../../enterprise/meta/advanced/metasetup.visual.php:955
#: ../../enterprise/meta/include/functions_meta.php:1992
-#: ../../godmode/setup/setup_visuals.php:1369
-#: ../../include/functions_config.php:1202
+#: ../../godmode/setup/setup_visuals.php:1373
+#: ../../include/functions_config.php:1214
msgid "Default interval for refresh on Visual Console"
msgstr "Intervalo de actualización por defecto en la consola visual"
@@ -5620,34 +5687,36 @@ msgid "This interval will affect to Visual Console pages"
msgstr "Este intervalo afectará todas las páginas de la consola visual."
#: ../../enterprise/meta/advanced/metasetup.visual.php:973
-#: ../../godmode/setup/setup_visuals.php:1710
+#: ../../godmode/setup/setup_visuals.php:1725
msgid "Use 1024 when module unit are bytes"
msgstr "Utilizar 1024 cuando la unidad del módulo sea bytes"
#: ../../enterprise/meta/advanced/metasetup.visual.php:974
-#: ../../godmode/setup/setup_visuals.php:1711
+#: ../../godmode/setup/setup_visuals.php:1726
msgid "Use always 1000"
msgstr "Utilizar siempre 1000"
#: ../../enterprise/meta/advanced/metasetup.visual.php:975
-#: ../../godmode/setup/setup_visuals.php:1712
+#: ../../godmode/setup/setup_visuals.php:1727
msgid "Use always 1024"
msgstr "Utilizar siempre 1024"
#: ../../enterprise/meta/advanced/metasetup.visual.php:978
-#: ../../godmode/setup/setup_visuals.php:2072
+#: ../../godmode/setup/setup_visuals.php:2087
msgid "Data multiplier to use in graphs/data"
msgstr "Multiplicador de datos para usar en gráficas/datos"
#: ../../enterprise/meta/advanced/metasetup.visual.php:993
#: ../../enterprise/meta/include/functions_meta.php:1997
-#: ../../godmode/setup/setup_visuals.php:1416
-#: ../../include/functions_config.php:1218
+#: ../../godmode/setup/setup_visuals.php:1420
+#: ../../include/functions_config.php:1230
msgid "Mobile view not allow visual console orientation"
msgstr "No permitir orientación de la consola visual en la vista móvil"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1003
#: ../../enterprise/meta/include/functions_meta.php:2002
+#: ../../godmode/setup/setup_visuals.php:1430
+#: ../../include/functions_config.php:1234
msgid "Display item frame on alert triggered"
msgstr "Mostrar fotograma de elemento al activarse la alerta"
@@ -5656,7 +5725,7 @@ msgid "Reports configuration"
msgstr "Configuración de informes"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1028
-#: ../../godmode/setup/setup_visuals.php:1482
+#: ../../godmode/setup/setup_visuals.php:1497
msgid "Show report info with description"
msgstr "Mostrar la información del informe con la descripción"
@@ -5669,7 +5738,7 @@ msgstr ""
"informes por defecto."
#: ../../enterprise/meta/advanced/metasetup.visual.php:1042
-#: ../../godmode/setup/setup_visuals.php:1492
+#: ../../godmode/setup/setup_visuals.php:1507
msgid "Custom report front page"
msgstr "Portada de informe personalizado"
@@ -5683,21 +5752,21 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1055
#: ../../enterprise/meta/include/functions_meta.php:1459
-#: ../../godmode/setup/setup_visuals.php:1503
-#: ../../include/functions_config.php:1480
+#: ../../godmode/setup/setup_visuals.php:1518
+#: ../../include/functions_config.php:1496
msgid "PDF font size (px)"
msgstr "Tamaño de fuente de PDF (px)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1060
#: ../../enterprise/meta/include/functions_meta.php:1449
-#: ../../godmode/setup/setup_visuals.php:1507
-#: ../../include/functions_config.php:1476
+#: ../../godmode/setup/setup_visuals.php:1522
+#: ../../include/functions_config.php:1492
msgid "HTML font size for SLA (em)"
msgstr "Tamaño de fuente en SLA (em)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1065
#: ../../enterprise/meta/include/functions_meta.php:1574
-#: ../../godmode/setup/setup_visuals.php:1513
+#: ../../godmode/setup/setup_visuals.php:1528
msgid "Graph image height for HTML reports"
msgstr "Altura de la imagen de la gráfica en informes HTML"
@@ -5711,21 +5780,21 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1127
#: ../../enterprise/meta/include/functions_meta.php:1479
-#: ../../godmode/setup/setup_visuals.php:2061
-#: ../../include/functions_config.php:1508
+#: ../../godmode/setup/setup_visuals.php:2076
+#: ../../include/functions_config.php:1524
msgid "CSV divider"
msgstr "Separador CSV"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1136
#: ../../enterprise/meta/include/functions_meta.php:1489
-#: ../../godmode/setup/setup_visuals.php:2066
-#: ../../include/functions_config.php:1512
+#: ../../godmode/setup/setup_visuals.php:2081
+#: ../../include/functions_config.php:1528
msgid "CSV decimal separator"
msgstr "Separador decimal CSV"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1146
#: ../../enterprise/meta/include/functions_meta.php:1469
-#: ../../godmode/setup/setup_visuals.php:1517
+#: ../../godmode/setup/setup_visuals.php:1532
msgid "Interval description"
msgstr "Descripción del intervalo"
@@ -5742,9 +5811,9 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1905
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125
-#: ../../godmode/setup/setup_visuals.php:1534
-#: ../../include/functions_config.php:1074
-#: ../../include/functions_config.php:1492
+#: ../../godmode/setup/setup_visuals.php:1549
+#: ../../include/functions_config.php:1086
+#: ../../include/functions_config.php:1508
msgid "Custom logo"
msgstr "Logo personalizado"
@@ -5769,17 +5838,17 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1915
#: ../../enterprise/meta/include/functions_meta.php:1925
#: ../../enterprise/meta/include/functions_meta.php:1935
-#: ../../godmode/setup/setup_visuals.php:1534
#: ../../godmode/setup/setup_visuals.php:1549
-#: ../../godmode/setup/setup_visuals.php:1555
-#: ../../godmode/setup/setup_visuals.php:1568
-#: ../../godmode/setup/setup_visuals.php:1582
-#: ../../include/functions_config.php:1484
-#: ../../include/functions_config.php:1488
-#: ../../include/functions_config.php:1492
-#: ../../include/functions_config.php:1496
+#: ../../godmode/setup/setup_visuals.php:1564
+#: ../../godmode/setup/setup_visuals.php:1570
+#: ../../godmode/setup/setup_visuals.php:1583
+#: ../../godmode/setup/setup_visuals.php:1597
#: ../../include/functions_config.php:1500
#: ../../include/functions_config.php:1504
+#: ../../include/functions_config.php:1508
+#: ../../include/functions_config.php:1512
+#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1520
msgid "Custom report front"
msgstr "Portada de informe personalizado"
@@ -5787,8 +5856,8 @@ msgstr "Portada de informe personalizado"
#: ../../enterprise/meta/include/functions_meta.php:1915
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137
-#: ../../godmode/setup/setup_visuals.php:1555
-#: ../../include/functions_config.php:1496
+#: ../../godmode/setup/setup_visuals.php:1570
+#: ../../include/functions_config.php:1512
msgid "Header"
msgstr "Encabezado"
@@ -5797,23 +5866,93 @@ msgstr "Encabezado"
#: ../../enterprise/meta/include/functions_meta.php:1925
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147
-#: ../../godmode/setup/setup_visuals.php:1568
-#: ../../include/functions_config.php:1500
+#: ../../godmode/setup/setup_visuals.php:1583
+#: ../../include/functions_config.php:1516
msgid "First page"
msgstr "Primera página"
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1420
-#: ../../godmode/setup/setup_visuals.php:2356
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1266
+#: ../../godmode/setup/setup_visuals.php:73
+msgid "Legacy visual console Information"
+msgstr "Información de la consola visual heredada"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1267
+#: ../../godmode/setup/setup_visuals.php:74
+msgid "Visual console in legacy mode will no longer be supported as of LTS 772"
+msgstr ""
+"A partir de la versión LTS 772 Pandora FMS no soportará la consola visual en "
+"modo Legacy"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1400
+#: ../../enterprise/godmode/services/services.service.php:1025
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608
+#: ../../enterprise/include/functions_reporting_csv.php:1589
+#: ../../enterprise/include/functions_reporting_csv.php:1635
+#: ../../enterprise/include/functions_reporting_csv.php:1953
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1704
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1756
+#: ../../enterprise/include/class/DatabaseHA.class.php:390
+#: ../../enterprise/include/class/DatabaseHA.class.php:625
+#: ../../enterprise/include/class/DatabaseHA.class.php:727
+#: ../../enterprise/include/class/AgentRepository.class.php:1000
+#: ../../enterprise/include/class/LogSource.class.php:820
+#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142
+#: ../../enterprise/include/class/ManageBackups.class.php:298
+#: ../../enterprise/include/class/ManageBackups.class.php:454
+#: ../../enterprise/include/class/NewDatabaseHA.class.php:182
+#: ../../enterprise/include/class/NewDatabaseHA.class.php:225
+#: ../../enterprise/include/functions_reporting.php:1876
+#: ../../enterprise/include/functions_reporting.php:2949
+#: ../../enterprise/include/functions_reporting.php:3206
+#: ../../enterprise/include/functions_reporting.php:3939
+#: ../../enterprise/include/functions_reporting.php:4208
+#: ../../enterprise/include/functions_reporting.php:4854
+#: ../../enterprise/include/functions_reporting.php:6176
+#: ../../enterprise/include/functions_reporting.php:6214
+#: ../../enterprise/include/functions_services.php:2091
+#: ../../enterprise/include/functions_ux_console.php:483
+#: ../../enterprise/operation/agentes/ux_console_view.php:186
+#: ../../enterprise/operation/agentes/ux_console_view.php:391
+#: ../../enterprise/operation/agentes/wux_console_view.php:407
+#: ../../extensions/module_groups.php:53
+#: ../../godmode/massive/massive_operations.php:415
+#: ../../godmode/setup/setup_visuals.php:2257
+#: ../../godmode/setup/setup_general.php:1044
+#: ../../godmode/setup/setup_general.php:1062
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2743
+#: ../../include/functions_reporting_html.php:667
+#: ../../include/functions_reporting_html.php:862
+#: ../../include/functions_reporting_html.php:3597
+#: ../../include/functions_reporting_html.php:4894
+#: ../../include/functions_db.php:1974
+#: ../../include/class/ConfigPEN.class.php:674
+#: ../../include/class/ConfigPEN.class.php:698
+#: ../../include/class/SatelliteAgent.class.php:1105
+#: ../../include/class/HelpFeedBack.class.php:370
+#: ../../include/class/CredentialStore.class.php:1655
+#: ../../include/class/ModuleTemplates.class.php:1363
+#: ../../include/class/WelcomeWindow.class.php:173
+#: ../../include/class/AgentWizard.class.php:6229
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:362
+#: ../../operation/agentes/pandora_networkmap.editor.php:745
+#: ../../operation/snmpconsole/snmp_browser.php:622
+#: ../../operation/snmpconsole/snmp_browser.php:698
+msgid "OK"
+msgstr "OK"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1437
+#: ../../godmode/setup/setup_visuals.php:2376
msgid "Logo preview"
msgstr "Logo de vista previa"
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1442
-#: ../../godmode/setup/setup_visuals.php:2386
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1459
+#: ../../godmode/setup/setup_visuals.php:2406
msgid "Splash Preview"
msgstr "Vista previa de Splash"
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1447
-#: ../../godmode/setup/setup_visuals.php:2410
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1464
+#: ../../godmode/setup/setup_visuals.php:2430
#: ../../godmode/reporting/visual_console_builder.data.php:196
msgid "Background preview"
msgstr "Vista previa del fondo"
@@ -5945,12 +6084,12 @@ msgstr "Servidor de origen"
#: ../../godmode/massive/massive_delete_alerts.php:312
#: ../../godmode/massive/massive_add_action_alerts.php:210
#: ../../godmode/massive/massive_edit_modules.php:370
-#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440
+#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445
#: ../../include/functions_massive_operations.php:136
#: ../../include/lib/Dashboard/Widgets/groups_status.php:243
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:334
#: ../../include/lib/Dashboard/Widgets/events_list.php:447
-#: ../../operation/events/events.php:1704
+#: ../../operation/events/events.php:1758
msgid "Group recursion"
msgstr "Recursión de grupos"
@@ -5995,7 +6134,7 @@ msgstr "Servidor de destino"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474
#: ../../enterprise/include/class/Omnishell.class.php:1119
-#: ../../enterprise/operation/services/massive/services.create.php:1305
+#: ../../enterprise/operation/services/massive/services.create.php:1317
#: ../../enterprise/operation/services/massive/service.delete.elements.php:262
#: ../../enterprise/operation/services/massive/service.create.elements.php:610
#: ../../enterprise/operation/services/massive/service.edit.elements.php:369
@@ -6063,8 +6202,8 @@ msgstr "Mover"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130
-#: ../../include/functions_inventory.php:142
-#: ../../include/functions_inventory.php:176
+#: ../../include/functions_inventory.php:143
+#: ../../include/functions_inventory.php:177
#: ../../include/functions_events.php:250
msgid "Agent alias"
msgstr "Alias del agente"
@@ -6080,8 +6219,8 @@ msgstr "Nodo de destino"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591
@@ -6095,9 +6234,9 @@ msgstr "Nodo de destino"
#: ../../godmode/alerts/alert_view.php:130
#: ../../godmode/setup/setup_integria.php:444
#: ../../godmode/setup/setup_integria.php:578
-#: ../../include/functions_reporting_html.php:5374
-#: ../../include/functions_events.php:4593
-#: ../../operation/agentes/estado_generalagente.php:758
+#: ../../include/functions_reporting_html.php:5402
+#: ../../include/functions_events.php:4598
+#: ../../operation/agentes/estado_generalagente.php:727
#: ../../operation/incidents/integriaims_export_csv.php:85
#: ../../operation/incidents/configure_integriaims_incident.php:287
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341
@@ -6128,7 +6267,7 @@ msgstr "Prioridad"
#: ../../godmode/alerts/configure_alert_template.php:270
#: ../../godmode/alerts/configure_alert_template.php:287
#: ../../godmode/alerts/configure_alert_template.php:291
-#: ../../include/functions_config.php:1729
+#: ../../include/functions_config.php:1741
msgid "Step"
msgstr "Paso"
@@ -6156,8 +6295,8 @@ msgstr "Creando agente en el nodo de destino"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661
#: ../../enterprise/meta/advanced/policymanager.queue.php:261
-#: ../../enterprise/godmode/policies/policy_queue.php:711
-#: ../../enterprise/godmode/policies/policy_queue.php:714
+#: ../../enterprise/godmode/policies/policy_queue.php:713
+#: ../../enterprise/godmode/policies/policy_queue.php:716
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453
#: ../../enterprise/include/class/Omnishell.class.php:369
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180
@@ -6186,12 +6325,12 @@ msgid "checking migration requirements"
msgstr "Comprobando requisitos de migración"
#: ../../enterprise/meta/advanced/servers.php:37
-#: ../../godmode/servers/modificar_server.php:308
+#: ../../godmode/servers/modificar_server.php:330
msgid "Server deleted successfully"
msgstr "Servidor eliminado correctamente"
#: ../../enterprise/meta/advanced/servers.php:39
-#: ../../godmode/servers/modificar_server.php:310
+#: ../../godmode/servers/modificar_server.php:332
msgid "There was a problem deleting the server"
msgstr "Hubo un problema al eliminar el servidor"
@@ -6217,12 +6356,12 @@ msgstr "No se ha podido actualizar la cadena de traducción"
#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174
#: ../../enterprise/extensions/translate_string.php:308
-#: ../../godmode/users/configure_user.php:1096
-#: ../../godmode/users/user_management.php:558
+#: ../../godmode/users/configure_user.php:1160
+#: ../../godmode/users/user_management.php:564
#: ../../godmode/massive/massive_edit_users.php:248
-#: ../../include/class/TipsWindow.class.php:453
-#: ../../include/class/TipsWindow.class.php:702
-#: ../../include/class/TipsWindow.class.php:869
+#: ../../include/class/TipsWindow.class.php:465
+#: ../../include/class/TipsWindow.class.php:722
+#: ../../include/class/TipsWindow.class.php:889
#: ../../operation/users/user_edit.php:437
msgid "Language"
msgstr "Idioma"
@@ -6252,7 +6391,7 @@ msgstr "Texto libre para buscar (*)"
#: ../../enterprise/meta/general/main_header.php:689
#: ../../enterprise/meta/general/main_header.php:691
#: ../../enterprise/extensions/translate_string.php:334
-#: ../../enterprise/godmode/policies/policy_modules.php:1466
+#: ../../enterprise/godmode/policies/policy_modules.php:1511
#: ../../enterprise/godmode/policies/policy_collections.php:172
#: ../../enterprise/godmode/policies/policy_agents.php:440
#: ../../enterprise/godmode/policies/policy_agents.php:462
@@ -6260,8 +6399,8 @@ msgstr "Texto libre para buscar (*)"
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:168
#: ../../enterprise/godmode/setup/setup_skins.php:131
#: ../../enterprise/operation/agentes/tag_view.php:229
-#: ../../enterprise/operation/log/log_viewer.php:610
-#: ../../enterprise/operation/log/log_viewer.php:957
+#: ../../enterprise/operation/log/log_viewer.php:608
+#: ../../enterprise/operation/log/log_viewer.php:955
#: ../../enterprise/operation/services/services.list.php:233
#: ../../enterprise/operation/services/services.list.php:338
#: ../../enterprise/operation/services/services.table_services.php:171
@@ -6278,23 +6417,23 @@ msgstr "Texto libre para buscar (*)"
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:335
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:358
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:375
-#: ../../godmode/groups/group_list.php:785 ../../godmode/users/user_list.php:484
-#: ../../godmode/users/user_list.php:504
+#: ../../godmode/groups/group_list.php:786 ../../godmode/users/user_list.php:485
+#: ../../godmode/users/user_list.php:505
#: ../../godmode/agentes/planned_downtime.list.php:372
#: ../../godmode/agentes/planned_downtime.list.php:697
#: ../../godmode/alerts/alert_actions.php:250
#: ../../godmode/alerts/alert_actions.php:317
#: ../../godmode/alerts/alert_actions.php:332
#: ../../godmode/alerts/alert_actions.php:333
-#: ../../godmode/alerts/alert_templates.php:325
-#: ../../godmode/alerts/alert_templates.php:342
+#: ../../godmode/alerts/alert_templates.php:329
+#: ../../godmode/alerts/alert_templates.php:346
#: ../../godmode/reporting/map_builder.php:357
#: ../../godmode/reporting/graphs.php:238
#: ../../godmode/reporting/visual_console_favorite.php:177
#: ../../godmode/reporting/reporting_builder.item_editor.php:1313
#: ../../godmode/module_library/module_library_view.php:102
#: ../../godmode/module_library/module_library_view.php:112
-#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72
+#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76
#: ../../include/functions_snmp.php:358
#: ../../include/class/SatelliteAgent.class.php:184
#: ../../include/class/CalendarManager.class.php:1071
@@ -6302,13 +6441,12 @@ msgstr "Texto libre para buscar (*)"
#: ../../include/class/AgentWizard.class.php:2753
#: ../../include/lib/Dashboard/Widgets/heatmap.php:236
#: ../../include/functions_snmp_browser.php:1023
-#: ../../include/functions_snmp_browser.php:1641
+#: ../../include/functions_snmp_browser.php:1650
#: ../../operation/search_results.php:193 ../../operation/search_results.php:202
#: ../../operation/agentes/estado_agente.php:342
-#: ../../operation/agentes/status_monitor.php:915
-#: ../../operation/agentes/agent_inventory.php:138
-#: ../../operation/agentes/agent_inventory.php:140
-#: ../../operation/inventory/inventory.php:640
+#: ../../operation/agentes/status_monitor.php:917
+#: ../../operation/agentes/agent_inventory.php:153
+#: ../../operation/inventory/inventory.php:642
#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
msgid "Search"
msgstr "Buscar"
@@ -6328,8 +6466,8 @@ msgstr "Buscar"
#: ../../enterprise/godmode/modules/local_components.php:624
#: ../../enterprise/godmode/agentes/collections.php:473
#: ../../enterprise/godmode/agentes/collections.php:474
-#: ../../enterprise/godmode/policies/policy_modules.php:1512
-#: ../../enterprise/godmode/policies/policy_queue.php:378
+#: ../../enterprise/godmode/policies/policy_modules.php:1557
+#: ../../enterprise/godmode/policies/policy_queue.php:380
#: ../../enterprise/godmode/policies/policies.php:364
#: ../../enterprise/godmode/policies/policy_linking.php:175
#: ../../enterprise/godmode/policies/policy_external_alerts.php:415
@@ -6339,14 +6477,14 @@ msgstr "Buscar"
#: ../../enterprise/godmode/setup/setup_acl.php:511
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947
#: ../../enterprise/operation/agentes/tag_view.php:533
-#: ../../enterprise/operation/log/log_viewer.php:1026
+#: ../../enterprise/operation/log/log_viewer.php:1024
#: ../../enterprise/operation/services/services.list.php:497
#: ../../enterprise/operation/services/services.table_services.php:472
#: ../../enterprise/operation/services/services.table_services.php:487
#: ../../extensions/module_groups.php:322
-#: ../../extensions/realtime_graphs.php:220
-#: ../../godmode/modules/manage_network_components.php:713
-#: ../../godmode/groups/group_list.php:820
+#: ../../extensions/realtime_graphs.php:216
+#: ../../godmode/modules/manage_network_components.php:716
+#: ../../godmode/groups/group_list.php:821
#: ../../godmode/agentes/planned_downtime.list.php:661
#: ../../godmode/agentes/planned_downtime.list.php:662
#: ../../godmode/agentes/planned_downtime.list.php:711
@@ -6357,16 +6495,17 @@ msgstr "Buscar"
#: ../../godmode/reporting/visual_console_favorite.php:220
#: ../../godmode/reporting/reporting_builder.php:782
#: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124
-#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715
-#: ../../include/functions_ui.php:3728
-#: ../../include/class/AgentsAlerts.class.php:879
+#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763
+#: ../../include/functions_ui.php:3776
+#: ../../include/class/AgentsAlerts.class.php:880
#: ../../include/functions_snmp_browser.php:992
#: ../../operation/agentes/estado_agente.php:490
-#: ../../operation/agentes/status_monitor.php:1081
+#: ../../operation/agentes/status_monitor.php:1083
+#: ../../operation/agentes/agent_inventory.php:188
#: ../../operation/network/network_report.php:219
#: ../../operation/network/network_report.php:220
#: ../../operation/incidents/list_integriaims_incidents.php:502
-#: ../../operation/inventory/inventory.php:721
+#: ../../operation/inventory/inventory.php:722
#: ../../operation/reporting/reporting_viewer.php:305
#: ../../operation/reporting/graph_viewer.php:415
msgid "Filters"
@@ -6395,7 +6534,7 @@ msgstr "Personalizar traducción"
#: ../../include/ajax/visual_console_builder.ajax.php:343
#: ../../include/functions_visual_map.php:2843
#: ../../operation/network/network_usage_map.php:275
-#: ../../operation/netflow/nf_live_view.php:647
+#: ../../operation/netflow/nf_live_view.php:720
msgid "No data to show"
msgstr "No hay datos que mostrar"
@@ -6409,14 +6548,14 @@ msgstr "No hay datos que mostrar"
#: ../../enterprise/include/functions_cron.php:582
#: ../../enterprise/include/lib/NetworkManager.php:87
#: ../../godmode/agentes/module_manager_editor_wmi.php:59
-#: ../../godmode/agentes/module_manager_editor_network.php:105
+#: ../../godmode/agentes/module_manager_editor_network.php:106
#: ../../godmode/massive/massive_edit_modules.php:834
-#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918
-#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029
-#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182
-#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699
+#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929
+#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040
+#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190
+#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727
#: ../../include/class/CredentialStore.class.php:959
-#: ../../operation/netflow/nf_live_view.php:274
+#: ../../operation/netflow/nf_live_view.php:283
msgid "Custom"
msgstr "Personalizado"
@@ -6443,8 +6582,8 @@ msgid "Imei"
msgstr "IMEI"
#: ../../enterprise/meta/advanced/metasetup.relations.php:330
-#: ../../include/class/NetworkMap.class.php:3265
-#: ../../include/class/NetworkMap.class.php:3266
+#: ../../include/class/NetworkMap.class.php:3271
+#: ../../include/class/NetworkMap.class.php:3272
msgid "Relations"
msgstr "Relaciones"
@@ -6480,21 +6619,21 @@ msgstr "Mostrar lista de relaciones"
#: ../../enterprise/include/functions_reporting_csv.php:2731
#: ../../enterprise/operation/services/services.service.php:115
#: ../../enterprise/operation/services/services.list.php:544
-#: ../../godmode/agentes/module_manager_editor_common.php:1432
+#: ../../godmode/agentes/module_manager_editor_common.php:1442
#: ../../godmode/snmpconsole/snmp_trap_generator.php:126
#: ../../godmode/massive/massive_edit_modules.php:899
#: ../../godmode/alerts/configure_alert_template.php:839
-#: ../../godmode/setup/setup_visuals.php:1823
-#: ../../godmode/setup/setup_visuals.php:1913
-#: ../../godmode/setup/setup_visuals.php:1995
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2708
+#: ../../godmode/setup/setup_visuals.php:1838
+#: ../../godmode/setup/setup_visuals.php:1928
+#: ../../godmode/setup/setup_visuals.php:2010
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2717
#: ../../godmode/reporting/visual_console_builder.wizard.php:330
-#: ../../include/functions_visual_map_editor.php:691
+#: ../../include/functions_visual_map_editor.php:741
#: ../../include/functions_reporting_html.php:949
-#: ../../include/functions_reporting_html.php:2461
-#: ../../include/functions_reporting_html.php:4962
-#: ../../include/functions_reporting_html.php:5492
-#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172
+#: ../../include/functions_reporting_html.php:2482
+#: ../../include/functions_reporting_html.php:4990
+#: ../../include/functions_reporting_html.php:5520
+#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
#: ../../include/functions_reports.php:1087
#: ../../include/functions_netflow.php:212
@@ -6512,7 +6651,7 @@ msgstr "Dirección del nodo"
#: ../../enterprise/meta/advanced/metasetup.relations.php:550
#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255
-#: ../../enterprise/godmode/policies/policy_modules.php:1546
+#: ../../enterprise/godmode/policies/policy_modules.php:1591
#: ../../enterprise/godmode/admin_access_logs.php:54
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:397
@@ -6534,7 +6673,7 @@ msgstr "Dirección del nodo"
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:330
#: ../../godmode/modules/manage_nc_groups.php:266
#: ../../godmode/modules/manage_inventory_modules.php:295
-#: ../../godmode/modules/manage_network_components.php:781
+#: ../../godmode/modules/manage_network_components.php:784
#: ../../godmode/modules/manage_network_templates.php:250
#: ../../godmode/agentes/agent_template.php:277
#: ../../godmode/agentes/planned_downtime.editor.php:1446
@@ -6544,26 +6683,26 @@ msgstr "Dirección del nodo"
#: ../../godmode/snmpconsole/snmp_alert.php:1915
#: ../../godmode/snmpconsole/snmp_alert.php:2075
#: ../../godmode/snmpconsole/snmp_filters.php:315
-#: ../../godmode/massive/massive_operations.php:452
+#: ../../godmode/massive/massive_operations.php:454
#: ../../godmode/massive/massive_standby_alerts.php:251
#: ../../godmode/massive/massive_delete_action_alerts.php:271
#: ../../godmode/massive/massive_enable_disable_alerts.php:223
#: ../../godmode/massive/massive_add_action_alerts.php:249
#: ../../godmode/alerts/alert_list.list.php:825
#: ../../godmode/alerts/alert_view.php:394
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4138
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4650
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4638
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4659
#: ../../godmode/reporting/visual_console_builder.elements.php:134
#: ../../godmode/events/event_filter.php:149
-#: ../../mobile/operation/tactical.php:348
-#: ../../include/functions_reporting_html.php:3451
-#: ../../include/functions_reporting_html.php:6013
+#: ../../mobile/operation/tactical.php:349
+#: ../../include/functions_reporting_html.php:3479
+#: ../../include/functions_reporting_html.php:6047
#: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294
#: ../../include/ajax/alert_list.ajax.php:319
#: ../../include/ajax/alert_list.ajax.php:495
#: ../../include/functions_profile.php:207
-#: ../../include/class/AgentsAlerts.class.php:911
+#: ../../include/class/AgentsAlerts.class.php:912
#: ../../include/class/SnmpConsole.class.php:512
#: ../../include/class/AuditLog.class.php:111
#: ../../include/class/AuditLog.class.php:230
@@ -6572,7 +6711,7 @@ msgstr "Dirección del nodo"
#: ../../operation/agentes/alerts_status.php:279
#: ../../operation/agentes/alerts_status.php:280
#: ../../operation/agentes/alerts_status.functions.php:178
-#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256
+#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301
msgid "Action"
msgstr "Acción"
@@ -6591,7 +6730,7 @@ msgstr "Contraseñas"
#: ../../enterprise/meta/advanced/metasetup.password.php:93
#: ../../enterprise/meta/include/functions_meta.php:377
#: ../../enterprise/godmode/setup/setup.php:318
-#: ../../include/functions_config.php:494
+#: ../../include/functions_config.php:502
msgid "Enable password policy"
msgstr "Habilitar política de contraseñas"
@@ -6626,7 +6765,7 @@ msgstr "Habilitar política de contraseñas"
#: ../../enterprise/godmode/setup/setup_auth.php:230
#: ../../enterprise/godmode/setup/setup_auth.php:431
#: ../../enterprise/godmode/setup/setup_auth.php:479
-#: ../../enterprise/godmode/setup/setup_auth.php:1287
+#: ../../enterprise/godmode/setup/setup_auth.php:1504
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:521
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317
#: ../../enterprise/godmode/reporting/visual_console_template.php:304
@@ -6635,11 +6774,11 @@ msgstr "Habilitar política de contraseñas"
#: ../../enterprise/include/functions_reporting_csv.php:1990
#: ../../enterprise/include/functions_reporting.php:2357
#: ../../godmode/update_manager/update_manager.setup.php:395
-#: ../../godmode/users/configure_user.php:1301
+#: ../../godmode/users/configure_user.php:1365
#: ../../godmode/agentes/agent_conf_gis.php:133
-#: ../../godmode/massive/massive_edit_agents.php:671
-#: ../../godmode/massive/massive_edit_agents.php:1084
-#: ../../godmode/massive/massive_edit_agents.php:1116
+#: ../../godmode/massive/massive_edit_agents.php:688
+#: ../../godmode/massive/massive_edit_agents.php:1101
+#: ../../godmode/massive/massive_edit_agents.php:1133
#: ../../godmode/massive/massive_edit_modules.php:631
#: ../../godmode/massive/massive_edit_modules.php:653
#: ../../godmode/massive/massive_edit_modules.php:722
@@ -6654,13 +6793,13 @@ msgstr "Habilitar política de contraseñas"
#: ../../godmode/reporting/visual_console_builder.wizard.php:382
#: ../../godmode/reporting/visual_console_builder.wizard.php:481
#: ../../godmode/servers/modificar_server.php:80
-#: ../../include/functions_reporting_html.php:1664
+#: ../../include/functions_reporting_html.php:1673
#: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304
#: ../../include/functions_snmp.php:390
#: ../../include/class/EventSound.class.php:349
#: ../../include/class/SnmpConsole.class.php:403
#: ../../operation/users/user_edit.php:433
-#: ../../operation/netflow/nf_live_view.php:340
+#: ../../operation/netflow/nf_live_view.php:349
msgid "Yes"
msgstr "Sí"
@@ -6696,7 +6835,7 @@ msgstr "Sí"
#: ../../enterprise/godmode/setup/setup_auth.php:230
#: ../../enterprise/godmode/setup/setup_auth.php:434
#: ../../enterprise/godmode/setup/setup_auth.php:482
-#: ../../enterprise/godmode/setup/setup_auth.php:1290
+#: ../../enterprise/godmode/setup/setup_auth.php:1507
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:523
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319
#: ../../enterprise/godmode/reporting/visual_console_template.php:304
@@ -6705,11 +6844,11 @@ msgstr "Sí"
#: ../../enterprise/include/functions_reporting_csv.php:1990
#: ../../enterprise/include/functions_reporting.php:2357
#: ../../godmode/update_manager/update_manager.setup.php:396
-#: ../../godmode/users/configure_user.php:1302
+#: ../../godmode/users/configure_user.php:1366
#: ../../godmode/agentes/agent_conf_gis.php:142
-#: ../../godmode/massive/massive_edit_agents.php:672
-#: ../../godmode/massive/massive_edit_agents.php:1095
-#: ../../godmode/massive/massive_edit_agents.php:1117
+#: ../../godmode/massive/massive_edit_agents.php:689
+#: ../../godmode/massive/massive_edit_agents.php:1112
+#: ../../godmode/massive/massive_edit_agents.php:1134
#: ../../godmode/massive/massive_edit_modules.php:632
#: ../../godmode/massive/massive_edit_modules.php:654
#: ../../godmode/massive/massive_edit_modules.php:723
@@ -6720,28 +6859,28 @@ msgstr "Sí"
#: ../../godmode/massive/massive_edit_modules.php:1125
#: ../../godmode/alerts/alert_view.php:135
#: ../../godmode/alerts/alert_view.php:265
-#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390
+#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389
#: ../../godmode/reporting/reporting_builder.php:1086
#: ../../godmode/reporting/visual_console_builder.wizard.php:393
#: ../../godmode/reporting/visual_console_builder.wizard.php:492
#: ../../godmode/servers/modificar_server.php:78
-#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373
-#: ../../include/functions_reporting_html.php:1664
+#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366
+#: ../../include/functions_reporting_html.php:1673
#: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304
#: ../../include/functions_snmp.php:382
#: ../../include/class/EventSound.class.php:348
#: ../../include/class/SnmpConsole.class.php:402
-#: ../../include/functions_events.php:4971
#: ../../include/functions_events.php:4976
+#: ../../include/functions_events.php:4981
#: ../../operation/users/user_edit.php:434
-#: ../../operation/netflow/nf_live_view.php:350
+#: ../../operation/netflow/nf_live_view.php:359
msgid "No"
msgstr "No"
#: ../../enterprise/meta/advanced/metasetup.password.php:114
#: ../../enterprise/meta/include/functions_meta.php:387
#: ../../enterprise/godmode/setup/setup.php:329
-#: ../../include/functions_config.php:498
+#: ../../include/functions_config.php:506
msgid "Min. size password"
msgstr "Contraseña con tamaño mínimo"
@@ -6753,7 +6892,7 @@ msgstr " Caracteres"
#: ../../enterprise/meta/advanced/metasetup.password.php:126
#: ../../enterprise/meta/include/functions_meta.php:417
#: ../../enterprise/godmode/setup/setup.php:347
-#: ../../include/functions_config.php:502
+#: ../../include/functions_config.php:510
msgid "Password expiration"
msgstr "Expiración de contraseña"
@@ -6769,7 +6908,7 @@ msgstr " Días"
#: ../../enterprise/meta/advanced/metasetup.password.php:138
#: ../../enterprise/meta/include/functions_meta.php:437
#: ../../enterprise/godmode/setup/setup.php:395
-#: ../../include/functions_config.php:510
+#: ../../include/functions_config.php:518
msgid "User blocked if login fails"
msgstr "Usuario bloqueado si la identificación falla"
@@ -6781,7 +6920,7 @@ msgstr " Minutos"
#: ../../enterprise/meta/advanced/metasetup.password.php:150
#: ../../enterprise/meta/include/functions_meta.php:447
#: ../../enterprise/godmode/setup/setup.php:413
-#: ../../include/functions_config.php:514
+#: ../../include/functions_config.php:522
msgid "Number of failed login attempts"
msgstr "Número de intentos de identificación fallidos"
@@ -6797,56 +6936,56 @@ msgstr " Intentos"
#: ../../enterprise/meta/advanced/metasetup.password.php:162
#: ../../enterprise/meta/include/functions_meta.php:469
#: ../../enterprise/godmode/setup/setup.php:451
-#: ../../include/functions_config.php:534
+#: ../../include/functions_config.php:542
msgid "Compare previous password"
msgstr "Comparar la contraseña anterior"
#: ../../enterprise/meta/advanced/metasetup.password.php:174
#: ../../enterprise/meta/include/functions_meta.php:457
#: ../../enterprise/godmode/setup/setup.php:441
-#: ../../include/functions_config.php:530
+#: ../../include/functions_config.php:538
msgid "Enable password history"
msgstr "Activar histórico de contraseñas"
#: ../../enterprise/meta/advanced/metasetup.password.php:192
#: ../../enterprise/meta/include/functions_meta.php:480
#: ../../enterprise/godmode/setup/setup.php:431
-#: ../../include/functions_config.php:526
+#: ../../include/functions_config.php:534
msgid "Apply password policy to admin users"
msgstr "Aplicar la política de contraseñas a los usuarios administradores"
#: ../../enterprise/meta/advanced/metasetup.password.php:199
#: ../../enterprise/meta/include/functions_meta.php:427
#: ../../enterprise/godmode/setup/setup.php:385
-#: ../../include/functions_config.php:506
+#: ../../include/functions_config.php:514
msgid "Force change password on first login"
msgstr "Forzar cambio de contraseña en el primer inicio de sesión"
#: ../../enterprise/meta/advanced/metasetup.password.php:206
#: ../../enterprise/meta/include/functions_meta.php:397
#: ../../enterprise/godmode/setup/setup.php:365
-#: ../../include/functions_config.php:518
+#: ../../include/functions_config.php:526
msgid "Password must have numbers"
msgstr "La contraseña debe contener números."
#: ../../enterprise/meta/advanced/metasetup.password.php:213
#: ../../enterprise/meta/include/functions_meta.php:407
#: ../../enterprise/godmode/setup/setup.php:375
-#: ../../include/functions_config.php:522
+#: ../../include/functions_config.php:530
msgid "Password must have symbols"
msgstr "La contraseña debe contener símbolos."
#: ../../enterprise/meta/advanced/metasetup.password.php:220
#: ../../enterprise/meta/include/functions_meta.php:491
#: ../../enterprise/godmode/setup/setup.php:463
-#: ../../include/functions_config.php:538
+#: ../../include/functions_config.php:546
msgid "Activate reset password"
msgstr "Activar reseteo de contraseña"
#: ../../enterprise/meta/advanced/metasetup.password.php:228
#: ../../enterprise/meta/include/functions_meta.php:501
#: ../../enterprise/godmode/setup/setup.php:473
-#: ../../include/functions_config.php:542
+#: ../../include/functions_config.php:550
msgid "Exclusion word list for passwords"
msgstr "Lista de contraseñas prohibidas"
@@ -6915,56 +7054,56 @@ msgstr ""
"que dichos ajustes ignorarán los ajustes de la consola."
#: ../../enterprise/meta/advanced/metasetup.mail.php:117
-#: ../../godmode/setup/setup_general.php:725
+#: ../../godmode/setup/setup_general.php:751
msgid "Mail configuration"
msgstr "Configuración de email"
#: ../../enterprise/meta/advanced/metasetup.mail.php:122
-#: ../../include/functions_config.php:398
+#: ../../include/functions_config.php:406
msgid "From dir"
msgstr "Desde dir"
#: ../../enterprise/meta/advanced/metasetup.mail.php:127
-#: ../../godmode/setup/setup_general.php:756
-#: ../../include/functions_config.php:402
+#: ../../godmode/setup/setup_general.php:782
+#: ../../include/functions_config.php:410
msgid "From name"
msgstr "Desde nombre"
#: ../../enterprise/meta/advanced/metasetup.mail.php:132
-#: ../../include/functions_config.php:394
+#: ../../include/functions_config.php:402
msgid "Server SMTP"
msgstr "Servidor SMTP"
#: ../../enterprise/meta/advanced/metasetup.mail.php:137
-#: ../../include/functions_config.php:406
+#: ../../include/functions_config.php:414
msgid "Port SMTP"
msgstr "Puerto SMTP"
#: ../../enterprise/meta/advanced/metasetup.mail.php:142
-#: ../../godmode/setup/setup_general.php:817
-#: ../../include/functions_config.php:410
+#: ../../godmode/setup/setup_general.php:843
+#: ../../include/functions_config.php:418
msgid "Encryption"
msgstr "Encriptación"
#: ../../enterprise/meta/advanced/metasetup.mail.php:148
#: ../../godmode/gis_maps/configure_gis_map.php:586
-#: ../../godmode/setup/setup_general.php:823
+#: ../../godmode/setup/setup_general.php:849
#: ../../godmode/reporting/create_container.php:291
#: ../../godmode/reporting/create_container.php:310
-#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087
-#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106
+#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088
+#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130
msgid "none"
msgstr "ninguno"
#: ../../enterprise/meta/advanced/metasetup.mail.php:155
-#: ../../godmode/setup/setup_general.php:792
-#: ../../include/functions_config.php:414
+#: ../../godmode/setup/setup_general.php:818
+#: ../../include/functions_config.php:422
msgid "Email user"
msgstr "Usuario de email"
#: ../../enterprise/meta/advanced/metasetup.mail.php:160
-#: ../../godmode/setup/setup_general.php:803
-#: ../../include/functions_config.php:418
+#: ../../godmode/setup/setup_general.php:829
+#: ../../include/functions_config.php:426
msgid "Email password"
msgstr "Contraseña de email"
@@ -6988,11 +7127,11 @@ msgstr "Configuración de contraseñas"
#: ../../enterprise/meta/general/main_header.php:143
#: ../../enterprise/meta/general/main_menu.php:260
#: ../../enterprise/operation/log/elasticsearch_interface.php:30
-#: ../../enterprise/operation/log/log_viewer.php:399
-#: ../../enterprise/operation/log/log_viewer.php:439
-#: ../../enterprise/operation/log/log_viewer.php:498
+#: ../../enterprise/operation/log/log_viewer.php:397
+#: ../../enterprise/operation/log/log_viewer.php:437
+#: ../../enterprise/operation/log/log_viewer.php:496
#: ../../enterprise/operation/menu.php:162
-#: ../../operation/agentes/ver_agente.php:1893
+#: ../../operation/agentes/ver_agente.php:1889
msgid "Log viewer"
msgstr "Visor de logs"
@@ -7000,12 +7139,12 @@ msgstr "Visor de logs"
#: ../../enterprise/godmode/menu.php:132
#: ../../enterprise/include/functions_setup.php:67
#: ../../enterprise/include/functions_setup.php:119
-#: ../../operation/agentes/datos_agente.php:180
+#: ../../operation/agentes/datos_agente.php:181
msgid "History database"
msgstr "Base de datos histórica"
#: ../../enterprise/meta/advanced/metasetup.php:100
-#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360
+#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358
#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274
msgid "Authentication"
msgstr "Autentificación"
@@ -7022,7 +7161,7 @@ msgstr "Configuración del rendimiento"
#: ../../enterprise/meta/advanced/metasetup.php:126
#: ../../enterprise/meta/advanced/metasetup.php:225
-#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439
+#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437
#: ../../godmode/setup/file_manager.php:47
#: ../../godmode/setup/file_manager.php:60
msgid "File manager"
@@ -7039,7 +7178,7 @@ msgid "Mail"
msgstr "Correo electrónico"
#: ../../enterprise/meta/advanced/metasetup.php:150
-#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389
+#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387
#: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325
msgid "Notifications"
msgstr "Notificaciones"
@@ -7111,8 +7250,8 @@ msgstr "Actualización en línea"
#: ../../godmode/update_manager/update_manager.php:57
#: ../../godmode/update_manager/update_manager.php:87
#: ../../godmode/agentes/configurar_agente.php:405
-#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338
-#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389
+#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336
+#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389
#: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67
#: ../../godmode/setup/gis_step_2.php:100 ../../godmode/setup/gis_step_2.php:104
#: ../../godmode/module_library/module_library_view.php:48
@@ -7165,37 +7304,19 @@ msgstr "Aplicar políticas"
#: ../../enterprise/operation/agentes/ver_agente.php:254
#: ../../include/functions_networkmap.php:1303
#: ../../include/functions_maps.php:42
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:346
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:349
#: ../../operation/tree.php:128 ../../operation/search_results.php:172
#: ../../operation/agentes/estado_agente.php:387
-#: ../../operation/agentes/ver_agente.php:1860 ../../operation/search_main.php:73
+#: ../../operation/agentes/ver_agente.php:1856 ../../operation/search_main.php:73
msgid "Policies"
msgstr "Políticas"
-#: ../../enterprise/meta/advanced/policymanager.apply.php:200
-#: ../../enterprise/godmode/servers/new_HA_cluster.php:86
-#: ../../enterprise/godmode/servers/HA_cluster.php:97
-#: ../../enterprise/godmode/servers/manage_export.php:69
-#: ../../enterprise/godmode/servers/manage_export_form.php:85
-#: ../../enterprise/godmode/servers/list_satellite.php:37
-#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225
-#: ../../godmode/reporting/visual_console_builder.wizard.php:353
-#: ../../godmode/servers/modificar_server.php:59
-#: ../../godmode/servers/modificar_server.php:218
-#: ../../godmode/servers/modificar_server.php:271
-#: ../../godmode/servers/plugin_registration.php:73
-#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355
-#: ../../godmode/servers/plugin.php:802 ../../mobile/include/functions_web.php:28
-#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370
-msgid "Servers"
-msgstr "Servidores"
-
#: ../../enterprise/meta/advanced/policymanager.apply.php:213
#: ../../enterprise/meta/advanced/policymanager.queue.php:311
-#: ../../enterprise/godmode/policies/policy_queue.php:754
+#: ../../enterprise/godmode/policies/policy_queue.php:758
#: ../../enterprise/godmode/policies/policy_agents.php:964
#: ../../enterprise/godmode/policies/policy_agents.php:1348
-#: ../../include/functions_visual_map_editor.php:641
+#: ../../include/functions_visual_map_editor.php:637
msgid "Apply"
msgstr "Aplicar"
@@ -7291,8 +7412,8 @@ msgstr "No se puede eliminar"
#: ../../enterprise/godmode/policies/policy_alerts.php:137
#: ../../enterprise/godmode/policies/policy_modules.php:529
#: ../../enterprise/godmode/setup/setup_metaconsole.php:147
-#: ../../godmode/users/user_list.php:448
-#: ../../godmode/agentes/configurar_agente.php:2188
+#: ../../godmode/users/user_list.php:449
+#: ../../godmode/agentes/configurar_agente.php:2251
#: ../../godmode/agentes/modificar_agente.php:227
#: ../../godmode/massive/massive_enable_disable_alerts.php:102
#: ../../godmode/alerts/alert_list.php:382
@@ -7304,7 +7425,7 @@ msgstr "Activado correctamente"
#: ../../enterprise/godmode/policies/policy_alerts.php:138
#: ../../enterprise/godmode/policies/policy_modules.php:530
#: ../../enterprise/godmode/setup/setup_metaconsole.php:148
-#: ../../godmode/agentes/configurar_agente.php:2189
+#: ../../godmode/agentes/configurar_agente.php:2252
#: ../../godmode/agentes/modificar_agente.php:228
#: ../../godmode/massive/massive_enable_disable_alerts.php:102
#: ../../godmode/alerts/alert_list.php:383
@@ -7316,8 +7437,8 @@ msgstr "No se pudo activar"
#: ../../enterprise/godmode/policies/policy_alerts.php:163
#: ../../enterprise/godmode/policies/policy_modules.php:546
#: ../../enterprise/godmode/setup/setup_metaconsole.php:156
-#: ../../godmode/users/user_list.php:442
-#: ../../godmode/agentes/configurar_agente.php:2213
+#: ../../godmode/users/user_list.php:443
+#: ../../godmode/agentes/configurar_agente.php:2276
#: ../../godmode/agentes/modificar_agente.php:270
#: ../../godmode/massive/massive_enable_disable_alerts.php:124
#: ../../godmode/alerts/alert_list.php:418
@@ -7388,29 +7509,30 @@ msgstr "Edición de elemento de Metaconsola %s"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714
#: ../../enterprise/include/functions_reporting_csv.php:1208
-#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/graph_builder.graph_editor.php:347
#: ../../godmode/reporting/reporting_builder.item_editor.php:1290
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.elements.php:310
#: ../../godmode/reporting/visual_console_builder.wizard.php:469
#: ../../include/functions_visual_map_editor.php:67
-#: ../../include/functions_visual_map_editor.php:193
-#: ../../include/functions_visual_map_editor.php:777
-#: ../../include/functions_visual_map_editor.php:1392
-#: ../../include/functions_visual_map.php:4210
-#: ../../include/rest-api/models/VisualConsole/Item.php:1942
-#: ../../include/rest-api/models/VisualConsole/Item.php:2136
+#: ../../include/functions_visual_map_editor.php:189
+#: ../../include/functions_visual_map_editor.php:817
+#: ../../include/functions_visual_map_editor.php:1450
+#: ../../include/functions_visual_map.php:4219
+#: ../../include/rest-api/models/VisualConsole/Item.php:1947
+#: ../../include/rest-api/models/VisualConsole/Item.php:2139
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:329
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447
#: ../../include/lib/Dashboard/Widgets/module_icon.php:347
#: ../../include/lib/Dashboard/Widgets/module_value.php:322
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314
#: ../../include/lib/Dashboard/Widgets/module_status.php:338
-#: ../../operation/visual_console/view.php:356
+#: ../../operation/visual_console/view.php:358
msgid "Label"
msgstr "Etiqueta"
@@ -7500,12 +7622,12 @@ msgstr "Puerto de la BD"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:227
#: ../../extensions/quick_shell.php:539
#: ../../godmode/agentes/module_manager_editor.php:750
-#: ../../godmode/agentes/agent_manager.php:905
-#: ../../godmode/massive/massive_edit_agents.php:1159
+#: ../../godmode/agentes/agent_manager.php:912
+#: ../../godmode/massive/massive_edit_agents.php:1175
#: ../../godmode/massive/massive_add_action_alerts.php:251
-#: ../../include/functions_visual_map_editor.php:893
-#: ../../operation/agentes/status_monitor.php:1022
-#: ../../operation/events/events.php:2271
+#: ../../include/functions_visual_map_editor.php:941
+#: ../../operation/agentes/status_monitor.php:1024
+#: ../../operation/events/events.php:2325
msgid "Advanced options"
msgstr "Opciones avanzadas"
@@ -7614,7 +7736,7 @@ msgstr "Sincronización de bases de datos"
#: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132
#: ../../operation/search_agents.php:133
#: ../../operation/agentes/ver_agente.php:1375
-#: ../../operation/agentes/ver_agente.php:1831
+#: ../../operation/agentes/ver_agente.php:1827
msgid "Manage"
msgstr "Gestionar"
@@ -7657,7 +7779,7 @@ msgstr "Error al crear el enlace"
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50
#: ../../godmode/modules/manage_nc_groups.php:108
#: ../../godmode/users/profile_list.php:278
-#: ../../godmode/users/configure_user.php:530
+#: ../../godmode/users/configure_user.php:479
#: ../../godmode/agentes/configurar_agente.php:888
#: ../../godmode/agentes/planned_downtime.editor.php:660
#: ../../godmode/snmpconsole/snmp_alert.php:302
@@ -7666,7 +7788,7 @@ msgstr "Error al crear el enlace"
#: ../../godmode/alerts/configure_alert_template.php:553
#: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83
#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57
-#: ../../include/functions_alerts.php:2754
+#: ../../include/functions_alerts.php:2755
#: ../../include/class/EventSound.class.php:103
#: ../../include/class/EventSound.class.php:134
#: ../../include/class/CalendarManager.class.php:537
@@ -7686,7 +7808,7 @@ msgstr "Error al modificar el enlace"
#: ../../enterprise/meta/advanced/links.php:69
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126
-#: ../../enterprise/godmode/policies/policy_modules.php:1265
+#: ../../enterprise/godmode/policies/policy_modules.php:1310
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138
@@ -7703,21 +7825,21 @@ msgstr "Error al modificar el enlace"
#: ../../enterprise/tools/ipam/ipam_massive.php:47
#: ../../godmode/modules/manage_nc_groups.php:142
#: ../../godmode/users/profile_list.php:261
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
-#: ../../godmode/agentes/configurar_agente.php:1198
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
+#: ../../godmode/agentes/configurar_agente.php:1214
#: ../../godmode/agentes/planned_downtime.editor.php:662
-#: ../../godmode/netflow/nf_edit_form.php:140
+#: ../../godmode/netflow/nf_edit_form.php:172
#: ../../godmode/snmpconsole/snmp_alert.php:444
#: ../../godmode/snmpconsole/snmp_filters.php:110
#: ../../godmode/massive/massive_edit_modules.php:184
#: ../../godmode/alerts/configure_alert_command.php:149
-#: ../../godmode/alerts/alert_templates.php:161
+#: ../../godmode/alerts/alert_templates.php:165
#: ../../godmode/alerts/configure_alert_template.php:571
#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319
#: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39
#: ../../godmode/setup/links.php:76
-#: ../../godmode/events/event_edit_filter.php:242
-#: ../../include/functions_alerts.php:2754
+#: ../../godmode/events/event_edit_filter.php:244
+#: ../../include/functions_alerts.php:2755
#: ../../include/class/CalendarManager.class.php:534
#: ../../include/class/CalendarManager.class.php:891
#: ../../include/functions_planned_downtimes.php:125
@@ -7775,7 +7897,7 @@ msgstr "Aplicar políticas"
#: ../../enterprise/include/class/CommandCenter.class.php:145
#: ../../godmode/netflow/nf_item_list.php:49
#: ../../operation/agentes/ver_agente.php:1390
-#: ../../operation/agentes/ver_agente.php:1835
+#: ../../operation/agentes/ver_agente.php:1831
msgid "Main"
msgstr "Principal"
@@ -7851,41 +7973,49 @@ msgstr "Colecciones"
#: ../../enterprise/operation/agentes/tag_view.php:787
#: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230
#: ../../extensions/insert_data.php:235
-#: ../../godmode/agentes/status_monitor_custom_fields.php:113
-#: ../../godmode/agentes/status_monitor_custom_fields.php:150
+#: ../../godmode/agentes/status_monitor_custom_fields.php:133
+#: ../../godmode/agentes/status_monitor_custom_fields.php:170
#: ../../godmode/events/custom_events.php:113
-#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718
-#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720
-#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722
-#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724
-#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727
-#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731
-#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733
-#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735
-#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737
-#: ../../mobile/operation/modules.php:853
-#: ../../include/functions_reporting_html.php:2357
-#: ../../include/functions_reporting_html.php:2836
-#: ../../include/functions_reporting_html.php:2840
-#: ../../include/functions_reporting_html.php:2841
-#: ../../include/functions_reporting_html.php:2845
-#: ../../include/functions_reporting_html.php:2850
-#: ../../include/functions_reporting_html.php:2855
-#: ../../include/functions_reporting_html.php:2859
+#: ../../mobile/operation/modules.php:726 ../../mobile/operation/modules.php:730
+#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732
+#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734
+#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:737
+#: ../../mobile/operation/modules.php:740 ../../mobile/operation/modules.php:741
+#: ../../mobile/operation/modules.php:742 ../../mobile/operation/modules.php:743
+#: ../../mobile/operation/modules.php:744 ../../mobile/operation/modules.php:745
+#: ../../mobile/operation/modules.php:749 ../../mobile/operation/modules.php:750
+#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:752
+#: ../../mobile/operation/modules.php:753 ../../mobile/operation/modules.php:754
+#: ../../mobile/operation/modules.php:755 ../../mobile/operation/modules.php:756
+#: ../../mobile/operation/modules.php:758 ../../mobile/operation/modules.php:761
+#: ../../mobile/operation/modules.php:762 ../../mobile/operation/modules.php:763
+#: ../../mobile/operation/modules.php:764 ../../mobile/operation/modules.php:765
+#: ../../mobile/operation/modules.php:766 ../../mobile/operation/modules.php:767
+#: ../../mobile/operation/modules.php:768 ../../mobile/operation/modules.php:912
+#: ../../mobile/operation/module_data.php:164
+#: ../../include/functions_reporting_html.php:2378
#: ../../include/functions_reporting_html.php:2864
-#: ../../include/functions_reporting_html.php:2871
-#: ../../include/functions_reporting_html.php:2921
-#: ../../include/functions_reporting_html.php:2995
-#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412
-#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301
-#: ../../include/functions_reporting.php:4729
-#: ../../include/functions_reporting.php:4770
+#: ../../include/functions_reporting_html.php:2868
+#: ../../include/functions_reporting_html.php:2869
+#: ../../include/functions_reporting_html.php:2873
+#: ../../include/functions_reporting_html.php:2878
+#: ../../include/functions_reporting_html.php:2883
+#: ../../include/functions_reporting_html.php:2887
+#: ../../include/functions_reporting_html.php:2892
+#: ../../include/functions_reporting_html.php:2899
+#: ../../include/functions_reporting_html.php:2949
+#: ../../include/functions_reporting_html.php:3023
+#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028
+#: ../../include/ajax/custom_fields.php:412
+#: ../../include/functions_graph.php:3514 ../../include/functions_netflow.php:301
+#: ../../include/functions_reporting.php:4738
+#: ../../include/functions_reporting.php:4779
#: ../../include/functions_events.php:218 ../../include/functions_events.php:301
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1590
+#: ../../operation/agentes/status_monitor.php:1592
#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:38
+#: ../../operation/search_modules.php:41
msgid "Data"
msgstr "Datos"
@@ -7945,7 +8075,7 @@ msgstr "Colección de ficheros creada correctamente"
#: ../../enterprise/godmode/agentes/collections.editor.php:74
#: ../../enterprise/godmode/agentes/collections.editor.php:463
#: ../../enterprise/include/functions_collection.php:186
-#: ../../operation/agentes/ver_agente.php:1679
+#: ../../operation/agentes/ver_agente.php:1675
msgid "Files"
msgstr "Archivos"
@@ -8051,7 +8181,7 @@ msgstr "Error al mover los datos de aprovisionamiento personalizado"
#: ../../enterprise/godmode/agentes/collections.editor.php:179
#: ../../enterprise/godmode/agentes/collections.editor.php:245
#: ../../godmode/servers/plugin.php:171
-#: ../../include/functions_filemanager.php:776
+#: ../../include/functions_filemanager.php:791
msgid "Edit file"
msgstr "Editar archivo"
@@ -8137,27 +8267,28 @@ msgstr "Para hacer una copia de seguridad, debe tener mysquldump en la consola."
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037
#: ../../enterprise/godmode/wizards/consoletask_js.php:41
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410
-#: ../../enterprise/operation/log/log_viewer.php:1195
-#: ../../enterprise/operation/log/log_viewer.php:1210
+#: ../../enterprise/operation/log/log_viewer.php:1193
+#: ../../enterprise/operation/log/log_viewer.php:1208
#: ../../enterprise/operation/services/services.treeview_services.php:410
#: ../../extensions/insert_data.php:279
-#: ../../godmode/agentes/planned_downtime.editor.php:2011
+#: ../../godmode/agentes/planned_downtime.editor.php:2007
#: ../../godmode/alerts/configure_alert_template.php:1506
#: ../../godmode/alerts/configure_alert_template.php:1590
-#: ../../godmode/setup/news.php:431
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5162
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:737
-#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585
-#: ../../operation/agentes/interface_traffic_graph_win.php:436
-#: ../../operation/agentes/datos_agente.php:312
-#: ../../operation/agentes/estado_monitores.php:464
+#: ../../godmode/setup/news.php:430
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5171
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:730
+#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601
+#: ../../operation/agentes/interface_traffic_graph_win.php:445
+#: ../../operation/agentes/datos_agente.php:314
+#: ../../operation/agentes/estado_monitores.php:461
#: ../../operation/network/network_report.php:457
#: ../../operation/network/network_usage_map.php:294
-#: ../../operation/netflow/nf_live_view.php:865
+#: ../../operation/netflow/nf_live_view.php:976
+#: ../../operation/search_modules.php:353
#: ../../operation/reporting/reporting_viewer.php:360
#: ../../operation/reporting/reporting_viewer.php:379
#: ../../operation/reporting/graph_viewer.php:466
-#: ../../operation/events/events.php:3223
+#: ../../operation/events/events.php:3282
msgid "Choose time"
msgstr "Seleccionar hora"
@@ -8169,28 +8300,29 @@ msgstr "Seleccionar hora"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411
#: ../../enterprise/include/lib/Metaconsole/Node.php:539
-#: ../../enterprise/operation/log/log_viewer.php:1196
-#: ../../enterprise/operation/log/log_viewer.php:1211
+#: ../../enterprise/operation/log/log_viewer.php:1194
+#: ../../enterprise/operation/log/log_viewer.php:1209
#: ../../enterprise/operation/services/services.treeview_services.php:411
#: ../../extensions/insert_data.php:280
-#: ../../godmode/agentes/planned_downtime.editor.php:2012
+#: ../../godmode/agentes/planned_downtime.editor.php:2008
#: ../../godmode/alerts/configure_alert_template.php:1507
#: ../../godmode/alerts/configure_alert_template.php:1591
-#: ../../godmode/setup/news.php:432
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5163
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:738
-#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586
-#: ../../operation/agentes/interface_traffic_graph_win.php:437
-#: ../../operation/agentes/datos_agente.php:313
-#: ../../operation/agentes/estado_monitores.php:465
+#: ../../godmode/setup/news.php:431
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5172
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:731
+#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602
+#: ../../operation/agentes/interface_traffic_graph_win.php:446
+#: ../../operation/agentes/datos_agente.php:315
+#: ../../operation/agentes/estado_monitores.php:462
#: ../../operation/network/network_report.php:458
#: ../../operation/network/network_usage_map.php:295
-#: ../../operation/netflow/nf_live_view.php:866
+#: ../../operation/netflow/nf_live_view.php:977
+#: ../../operation/search_modules.php:354
#: ../../operation/reporting/reporting_viewer.php:361
#: ../../operation/reporting/reporting_viewer.php:380
#: ../../operation/reporting/graph_viewer.php:333
#: ../../operation/reporting/graph_viewer.php:467
-#: ../../operation/events/events.php:3224
+#: ../../operation/events/events.php:3283
msgid "Time"
msgstr "Hora"
@@ -8201,28 +8333,29 @@ msgstr "Hora"
#: ../../enterprise/godmode/wizards/consoletask_js.php:43
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412
-#: ../../enterprise/operation/log/log_viewer.php:1197
-#: ../../enterprise/operation/log/log_viewer.php:1212
+#: ../../enterprise/operation/log/log_viewer.php:1195
+#: ../../enterprise/operation/log/log_viewer.php:1210
#: ../../enterprise/operation/services/services.treeview_services.php:412
#: ../../extensions/insert_data.php:281
-#: ../../godmode/agentes/planned_downtime.editor.php:2013
+#: ../../godmode/agentes/planned_downtime.editor.php:2009
#: ../../godmode/alerts/configure_alert_template.php:1508
#: ../../godmode/alerts/configure_alert_template.php:1592
-#: ../../godmode/setup/news.php:433
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5164
-#: ../../include/functions_html.php:2319
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:739
-#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587
-#: ../../operation/agentes/interface_traffic_graph_win.php:438
-#: ../../operation/agentes/datos_agente.php:314
-#: ../../operation/agentes/estado_monitores.php:466
+#: ../../godmode/setup/news.php:432
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5173
+#: ../../include/functions_html.php:2334
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:732
+#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603
+#: ../../operation/agentes/interface_traffic_graph_win.php:447
+#: ../../operation/agentes/datos_agente.php:316
+#: ../../operation/agentes/estado_monitores.php:463
#: ../../operation/network/network_report.php:459
#: ../../operation/network/network_usage_map.php:296
-#: ../../operation/netflow/nf_live_view.php:867
+#: ../../operation/netflow/nf_live_view.php:978
+#: ../../operation/search_modules.php:355
#: ../../operation/reporting/reporting_viewer.php:362
#: ../../operation/reporting/reporting_viewer.php:381
#: ../../operation/reporting/graph_viewer.php:468
-#: ../../operation/events/events.php:3225
+#: ../../operation/events/events.php:3284
msgid "Hour"
msgstr "Hora"
@@ -8233,28 +8366,29 @@ msgstr "Hora"
#: ../../enterprise/godmode/wizards/consoletask_js.php:44
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413
-#: ../../enterprise/operation/log/log_viewer.php:1198
-#: ../../enterprise/operation/log/log_viewer.php:1213
+#: ../../enterprise/operation/log/log_viewer.php:1196
+#: ../../enterprise/operation/log/log_viewer.php:1211
#: ../../enterprise/operation/services/services.treeview_services.php:413
#: ../../extensions/insert_data.php:282
-#: ../../godmode/agentes/planned_downtime.editor.php:2014
+#: ../../godmode/agentes/planned_downtime.editor.php:2010
#: ../../godmode/alerts/configure_alert_template.php:1509
#: ../../godmode/alerts/configure_alert_template.php:1593
-#: ../../godmode/setup/news.php:434
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5165
-#: ../../include/functions_html.php:2320
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:740
-#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588
-#: ../../operation/agentes/interface_traffic_graph_win.php:439
-#: ../../operation/agentes/datos_agente.php:315
-#: ../../operation/agentes/estado_monitores.php:467
+#: ../../godmode/setup/news.php:433
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5174
+#: ../../include/functions_html.php:2335
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:733
+#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604
+#: ../../operation/agentes/interface_traffic_graph_win.php:448
+#: ../../operation/agentes/datos_agente.php:317
+#: ../../operation/agentes/estado_monitores.php:464
#: ../../operation/network/network_report.php:460
#: ../../operation/network/network_usage_map.php:297
-#: ../../operation/netflow/nf_live_view.php:868
+#: ../../operation/netflow/nf_live_view.php:979
+#: ../../operation/search_modules.php:356
#: ../../operation/reporting/reporting_viewer.php:363
#: ../../operation/reporting/reporting_viewer.php:382
#: ../../operation/reporting/graph_viewer.php:469
-#: ../../operation/events/events.php:3226
+#: ../../operation/events/events.php:3285
msgid "Minute"
msgstr "Minuto"
@@ -8265,27 +8399,28 @@ msgstr "Minuto"
#: ../../enterprise/godmode/wizards/consoletask_js.php:45
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414
-#: ../../enterprise/operation/log/log_viewer.php:1199
-#: ../../enterprise/operation/log/log_viewer.php:1214
+#: ../../enterprise/operation/log/log_viewer.php:1197
+#: ../../enterprise/operation/log/log_viewer.php:1212
#: ../../enterprise/operation/services/services.treeview_services.php:414
#: ../../extensions/insert_data.php:283
-#: ../../godmode/agentes/planned_downtime.editor.php:2015
+#: ../../godmode/agentes/planned_downtime.editor.php:2011
#: ../../godmode/alerts/configure_alert_template.php:1510
#: ../../godmode/alerts/configure_alert_template.php:1594
-#: ../../godmode/setup/news.php:435
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5166
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:741
-#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589
-#: ../../operation/agentes/interface_traffic_graph_win.php:440
-#: ../../operation/agentes/datos_agente.php:316
-#: ../../operation/agentes/estado_monitores.php:468
+#: ../../godmode/setup/news.php:434
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5175
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:734
+#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605
+#: ../../operation/agentes/interface_traffic_graph_win.php:449
+#: ../../operation/agentes/datos_agente.php:318
+#: ../../operation/agentes/estado_monitores.php:465
#: ../../operation/network/network_report.php:461
#: ../../operation/network/network_usage_map.php:298
-#: ../../operation/netflow/nf_live_view.php:869
+#: ../../operation/netflow/nf_live_view.php:980
+#: ../../operation/search_modules.php:357
#: ../../operation/reporting/reporting_viewer.php:364
#: ../../operation/reporting/reporting_viewer.php:383
#: ../../operation/reporting/graph_viewer.php:470
-#: ../../operation/events/events.php:3227
+#: ../../operation/events/events.php:3286
msgid "Second"
msgstr "Segundo"
@@ -8296,36 +8431,37 @@ msgstr "Segundo"
#: ../../enterprise/godmode/wizards/consoletask_js.php:46
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415
-#: ../../enterprise/operation/log/log_viewer.php:1200
-#: ../../enterprise/operation/log/log_viewer.php:1215
+#: ../../enterprise/operation/log/log_viewer.php:1198
+#: ../../enterprise/operation/log/log_viewer.php:1213
#: ../../enterprise/operation/services/services.treeview_services.php:415
#: ../../extensions/insert_data.php:284
-#: ../../godmode/agentes/planned_downtime.editor.php:2016
+#: ../../godmode/agentes/planned_downtime.editor.php:2012
#: ../../godmode/alerts/configure_alert_template.php:1511
#: ../../godmode/alerts/configure_alert_template.php:1595
-#: ../../godmode/setup/news.php:436
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5167
+#: ../../godmode/setup/news.php:435
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5176
#: ../../include/functions.php:515 ../../include/functions.php:646
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:742
-#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590
-#: ../../operation/agentes/interface_traffic_graph_win.php:441
-#: ../../operation/agentes/datos_agente.php:317
-#: ../../operation/agentes/estado_monitores.php:469
-#: ../../operation/agentes/agent_inventory.php:133
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:735
+#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606
+#: ../../operation/agentes/interface_traffic_graph_win.php:450
+#: ../../operation/agentes/datos_agente.php:319
+#: ../../operation/agentes/estado_monitores.php:466
+#: ../../operation/agentes/agent_inventory.php:141
#: ../../operation/network/network_report.php:462
#: ../../operation/network/network_usage_map.php:299
-#: ../../operation/netflow/nf_live_view.php:870
+#: ../../operation/netflow/nf_live_view.php:981
+#: ../../operation/search_modules.php:358
#: ../../operation/reporting/reporting_viewer.php:365
#: ../../operation/reporting/reporting_viewer.php:384
#: ../../operation/reporting/graph_viewer.php:471
-#: ../../operation/events/events.php:3228
+#: ../../operation/events/events.php:3287
msgid "Now"
msgstr "Ahora"
#: ../../enterprise/meta/advanced/metasetup.setup.php:78
#: ../../enterprise/godmode/modules/configure_local_component.php:166
#: ../../godmode/modules/manage_network_components_form_common.php:52
-#: ../../godmode/users/configure_user.php:1405
+#: ../../godmode/users/configure_user.php:1454
#: ../../godmode/alerts/alert_commands.php:143
#: ../../godmode/alerts/alert_commands.php:184
#: ../../godmode/alerts/configure_alert_template.php:953
@@ -8350,17 +8486,17 @@ msgstr "Contraseña («hash») de inicio de sesión automático"
#: ../../enterprise/meta/advanced/metasetup.setup.php:110
#: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248
#: ../../include/functions_reporting_html.php:1142
-#: ../../include/functions_reporting_html.php:2701
+#: ../../include/functions_reporting_html.php:2720
#: ../../include/functions.php:1291
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430
#: ../../include/functions_events.php:2609
-#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833
+#: ../../include/functions_events.php:3167 ../../operation/events/events.php:838
msgid "System"
msgstr "Sistema"
#: ../../enterprise/meta/advanced/metasetup.setup.php:111
-#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:937
+#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:942
msgid "Database"
msgstr "Base de datos"
@@ -8420,7 +8556,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:192
#: ../../enterprise/godmode/setup/setup_auth.php:353
#: ../../godmode/setup/setup_general.php:80
-#: ../../include/functions_visual_map_editor.php:290
+#: ../../include/functions_visual_map_editor.php:286
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271
#: ../../include/functions_register.php:134
msgid "Africa"
@@ -8429,7 +8565,7 @@ msgstr "África"
#: ../../enterprise/meta/advanced/metasetup.setup.php:193
#: ../../enterprise/godmode/setup/setup_auth.php:354
#: ../../godmode/setup/setup_general.php:81
-#: ../../include/functions_visual_map_editor.php:291
+#: ../../include/functions_visual_map_editor.php:287
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272
#: ../../include/functions_register.php:135
msgid "America"
@@ -8438,7 +8574,7 @@ msgstr "América"
#: ../../enterprise/meta/advanced/metasetup.setup.php:194
#: ../../enterprise/godmode/setup/setup_auth.php:355
#: ../../godmode/setup/setup_general.php:82
-#: ../../include/functions_visual_map_editor.php:292
+#: ../../include/functions_visual_map_editor.php:288
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273
#: ../../include/functions_register.php:136
msgid "Antarctica"
@@ -8447,7 +8583,7 @@ msgstr "Antártida"
#: ../../enterprise/meta/advanced/metasetup.setup.php:195
#: ../../enterprise/godmode/setup/setup_auth.php:356
#: ../../godmode/setup/setup_general.php:83
-#: ../../include/functions_visual_map_editor.php:293
+#: ../../include/functions_visual_map_editor.php:289
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274
#: ../../include/functions_register.php:137
msgid "Arctic"
@@ -8456,7 +8592,7 @@ msgstr "Ártico"
#: ../../enterprise/meta/advanced/metasetup.setup.php:196
#: ../../enterprise/godmode/setup/setup_auth.php:357
#: ../../godmode/setup/setup_general.php:84
-#: ../../include/functions_visual_map_editor.php:294
+#: ../../include/functions_visual_map_editor.php:290
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275
#: ../../include/functions_register.php:138
msgid "Asia"
@@ -8465,7 +8601,7 @@ msgstr "Asia"
#: ../../enterprise/meta/advanced/metasetup.setup.php:197
#: ../../enterprise/godmode/setup/setup_auth.php:358
#: ../../godmode/setup/setup_general.php:85
-#: ../../include/functions_visual_map_editor.php:295
+#: ../../include/functions_visual_map_editor.php:291
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276
#: ../../include/functions_register.php:139
msgid "Atlantic"
@@ -8474,7 +8610,7 @@ msgstr "Atlántico"
#: ../../enterprise/meta/advanced/metasetup.setup.php:198
#: ../../enterprise/godmode/setup/setup_auth.php:359
#: ../../godmode/setup/setup_general.php:86
-#: ../../include/functions_visual_map_editor.php:296
+#: ../../include/functions_visual_map_editor.php:292
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277
#: ../../include/functions_register.php:140
msgid "Australia"
@@ -8483,7 +8619,7 @@ msgstr "Australia"
#: ../../enterprise/meta/advanced/metasetup.setup.php:199
#: ../../enterprise/godmode/setup/setup_auth.php:360
#: ../../godmode/setup/setup_general.php:87
-#: ../../include/functions_visual_map_editor.php:297
+#: ../../include/functions_visual_map_editor.php:293
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278
#: ../../include/functions_register.php:141
msgid "Europe"
@@ -8492,7 +8628,7 @@ msgstr "Europa"
#: ../../enterprise/meta/advanced/metasetup.setup.php:200
#: ../../enterprise/godmode/setup/setup_auth.php:361
#: ../../godmode/setup/setup_general.php:88
-#: ../../include/functions_visual_map_editor.php:298
+#: ../../include/functions_visual_map_editor.php:294
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279
#: ../../include/functions_register.php:142
msgid "Indian"
@@ -8501,7 +8637,7 @@ msgstr "Índico"
#: ../../enterprise/meta/advanced/metasetup.setup.php:201
#: ../../enterprise/godmode/setup/setup_auth.php:362
#: ../../godmode/setup/setup_general.php:89
-#: ../../include/functions_visual_map_editor.php:299
+#: ../../include/functions_visual_map_editor.php:295
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280
#: ../../include/functions_register.php:143
msgid "Pacific"
@@ -8510,7 +8646,7 @@ msgstr "Pacífico"
#: ../../enterprise/meta/advanced/metasetup.setup.php:202
#: ../../enterprise/godmode/setup/setup_auth.php:363
#: ../../godmode/setup/setup_general.php:90
-#: ../../include/functions_visual_map_editor.php:300
+#: ../../include/functions_visual_map_editor.php:296
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281
#: ../../include/functions_register.php:144
msgid "UTC"
@@ -8523,7 +8659,6 @@ msgstr "Cambiar zona horaria"
#: ../../enterprise/meta/advanced/metasetup.setup.php:232
#: ../../enterprise/meta/include/functions_meta.php:161
-#: ../../godmode/setup/setup_general.php:434
#: ../../include/functions_register.php:164
#: ../../include/functions_config.php:283
msgid "Timezone setup"
@@ -8567,9 +8702,9 @@ msgstr "Forzar usando la URL pública definida."
#: ../../enterprise/meta/advanced/metasetup.setup.php:306
#: ../../godmode/setup/setup_sflow.php:75
-#: ../../godmode/setup/setup_netflow.php:75
-#: ../../include/functions_config.php:1560
-#: ../../include/functions_config.php:1603
+#: ../../godmode/setup/setup_netflow.php:71
+#: ../../include/functions_config.php:1572
+#: ../../include/functions_config.php:1615
msgid "Disable custom live view filters"
msgstr "Desactiva los filtros de vista activa personalizados"
@@ -8634,7 +8769,7 @@ msgstr "Habilitar actualización de Warp"
#: ../../enterprise/meta/advanced/metasetup.setup.php:437
#: ../../enterprise/meta/include/functions_meta.php:276
#: ../../enterprise/godmode/setup/setup.php:106
-#: ../../include/functions_config.php:442
+#: ../../include/functions_config.php:450
msgid "Size of collection"
msgstr "Tamaño de la colección"
@@ -8695,16 +8830,19 @@ msgstr "Localización de logs: pandora_console/log/audit.log"
#: ../../enterprise/meta/advanced/metasetup.setup.php:598
#: ../../enterprise/meta/include/functions_meta.php:326
#: ../../godmode/setup/setup_general.php:698
-#: ../../include/functions_config.php:386
+#: ../../include/functions_config.php:390
msgid "Enable console report"
msgstr "Habilitar informe de consola"
#: ../../enterprise/meta/advanced/metasetup.setup.php:605
#: ../../enterprise/meta/include/functions_meta.php:346
+#: ../../godmode/setup/setup_general.php:708
+#: ../../include/functions_config.php:394
msgid "Check conexion interval"
msgstr "Comprobar intervalo de conexión"
#: ../../enterprise/meta/advanced/metasetup.setup.php:616
+#: ../../godmode/setup/setup_general.php:719
msgid ""
"If there are any "In process" events with a specific Extra ID and a "
"New event with that Extra ID is received, it will be created as "In "
@@ -8716,12 +8854,13 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:639
#: ../../enterprise/meta/include/functions_meta.php:336
+#: ../../godmode/setup/setup_general.php:724
msgid "Keep In process status for new events with extra ID"
-msgstr "Mantener en proceso el estado para nuevos eventos con ID adicional"
+msgstr "Mantener el estado En proceso para nuevos eventos con ID adicional"
#: ../../enterprise/meta/advanced/policymanager.sync.php:247
#: ../../enterprise/meta/include/functions_groups_meta.php:174
-#: ../../godmode/groups/group_list.php:664
+#: ../../godmode/groups/group_list.php:665
#, php-format
msgid "Error connecting to %s"
msgstr "Error al conectar con %s"
@@ -8782,23 +8921,23 @@ msgstr "%s alertas de políticas eliminadas correctamente"
#: ../../enterprise/include/functions_log.php:279
#: ../../enterprise/include/functions_log.php:282
#: ../../enterprise/include/class/LogSource.class.php:602
-#: ../../enterprise/operation/log/log_viewer.php:793
+#: ../../enterprise/operation/log/log_viewer.php:791
#: ../../godmode/massive/massive_copy_modules.php:144
#: ../../godmode/reporting/reporting_builder.item_editor.php:1677
-#: ../../godmode/events/event_edit_filter.php:797
+#: ../../godmode/events/event_edit_filter.php:799
#: ../../godmode/events/custom_events.php:107
#: ../../include/functions_events.php:212 ../../include/functions_events.php:283
-#: ../../include/functions_events.php:4554
-#: ../../include/functions_events.php:4636
+#: ../../include/functions_events.php:4559
+#: ../../include/functions_events.php:4641
#: ../../operation/agentes/log_sources_status.php:56
#: ../../operation/agentes/pandora_networkmap.editor.php:425
#: ../../operation/agentes/pandora_networkmap.view.php:173
-#: ../../operation/events/events.php:1886
+#: ../../operation/events/events.php:1940
msgid "Source"
msgstr "Origen"
#: ../../enterprise/meta/advanced/policymanager.sync.php:308
-#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:610
+#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:611
msgid "This metaconsole"
msgstr "Esta Metaconsola"
@@ -8808,26 +8947,26 @@ msgstr "Esta Metaconsola"
#: ../../enterprise/extensions/resource_exportation/functions.php:35
#: ../../enterprise/godmode/agentes/collection_manager.php:260
#: ../../enterprise/godmode/agentes/plugins_manager.php:213
-#: ../../enterprise/godmode/policies/policy_queue.php:286
-#: ../../enterprise/godmode/policies/policy_queue.php:685
+#: ../../enterprise/godmode/policies/policy_queue.php:288
+#: ../../enterprise/godmode/policies/policy_queue.php:687
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462
#: ../../enterprise/include/functions_policies.php:4043
#: ../../enterprise/operation/agentes/policy_view.php:67
#: ../../enterprise/operation/agentes/collection_view.php:83
-#: ../../godmode/agentes/status_monitor_custom_fields.php:73
-#: ../../godmode/agentes/status_monitor_custom_fields.php:140
+#: ../../godmode/agentes/status_monitor_custom_fields.php:93
+#: ../../godmode/agentes/status_monitor_custom_fields.php:160
#: ../../godmode/agentes/inventory_manager.php:232
#: ../../godmode/agentes/module_manager.php:619
#: ../../godmode/alerts/alert_view.php:154
-#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999
-#: ../../operation/agentes/alerts_status.php:249
+#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:1022
#: ../../operation/agentes/alerts_status.php:250
-#: ../../operation/agentes/status_monitor.php:1531
+#: ../../operation/agentes/alerts_status.php:251
+#: ../../operation/agentes/status_monitor.php:1533
msgid "Policy"
msgstr "Política"
@@ -8876,12 +9015,12 @@ msgstr "Ejectuado:"
#: ../../enterprise/operation/agentes/wux_console_view.php:342
#: ../../enterprise/operation/agentes/wux_console_view.php:363
#: ../../godmode/setup/performance.php:193
-#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199
+#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208
msgid "ago"
msgstr "hace"
#: ../../enterprise/meta/advanced/metasetup.performance.php:112
-#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125
+#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125
#: ../../godmode/setup/setup.php:279
msgid "Performance"
msgstr "Rendimiento"
@@ -8899,13 +9038,13 @@ msgstr "Usar estadísticas en tiempo real"
#: ../../enterprise/meta/advanced/metasetup.performance.php:139
#: ../../enterprise/meta/include/functions_meta.php:2030
-#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:842
+#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:854
msgid "Max. days before delete audit events"
msgstr "Nº max. de días antes de borrar eventos de auditoría interna"
#: ../../enterprise/meta/advanced/metasetup.performance.php:154
#: ../../enterprise/meta/include/functions_meta.php:2040
-#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:882
+#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:894
msgid "Default hours for event view"
msgstr "Nº de horas predeterminado para la visualización de eventos"
@@ -8932,26 +9071,26 @@ msgid "maximum number of events to be displayed per node"
msgstr "Número máximo de eventos a mostrar por nodo"
#: ../../enterprise/meta/advanced/metasetup.performance.php:211
-#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:944
+#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:956
msgid "Row limit in csv log"
msgstr "Límite de líneas en log CSV"
#: ../../enterprise/meta/advanced/metasetup.performance.php:226
#: ../../enterprise/meta/include/functions_meta.php:2103
-#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:918
+#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:930
msgid "Max. macro data fields"
msgstr "Nº máx. de campos de macro de datos"
#: ../../enterprise/meta/advanced/metasetup.performance.php:241
#: ../../enterprise/meta/include/functions_meta.php:2113
-#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:874
+#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:886
msgid "Limit of events per query"
msgstr "Límite de eventos por consulta"
#: ../../enterprise/meta/advanced/metasetup.performance.php:255
#: ../../enterprise/meta/include/functions_meta.php:2123
#: ../../godmode/setup/performance.php:338
-#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850
+#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:862
msgid "Max. days before purge"
msgstr "Máx. días antes de purga de datos"
@@ -9009,7 +9148,7 @@ msgid "To manage collections you must activate centralized management"
msgstr "Para administrar colecciones, active la gestión centralizada"
#: ../../enterprise/meta/advanced/collections.php:227
-#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493
+#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494
msgid "Search by username, fullname or email"
msgstr "Buscar por nombre de usuario, nombre completo o email"
@@ -9024,7 +9163,7 @@ msgstr "Error: el directorio principal de las colecciones no existe"
#: ../../enterprise/include/functions_groups.php:81
#: ../../enterprise/operation/agentes/ver_agente.php:210
#: ../../godmode/agentes/configurar_agente.php:716
-#: ../../operation/agentes/ver_agente.php:1856
+#: ../../operation/agentes/ver_agente.php:1852
msgid "Collection"
msgstr "Colección"
@@ -9038,7 +9177,7 @@ msgstr "Nombre corto"
#: ../../enterprise/meta/advanced/collections.php:442
#: ../../enterprise/godmode/agentes/collections.php:537
-#: ../../operation/agentes/status_monitor.php:2257
+#: ../../operation/agentes/status_monitor.php:2259
msgid "Are you sure to delete?"
msgstr "¿Estás seguro de que quieres eliminarlo?"
@@ -9092,12 +9231,12 @@ msgid "There are no collections defined yet."
msgstr "No hay colecciones definidas todavía."
#: ../../enterprise/meta/advanced/policymanager.queue.php:58
-#: ../../enterprise/godmode/policies/policy_queue.php:96
+#: ../../enterprise/godmode/policies/policy_queue.php:98
msgid "Operation successfully deleted from the queue"
msgstr "Operación eliminada correctamente de la cola"
#: ../../enterprise/meta/advanced/policymanager.queue.php:59
-#: ../../enterprise/godmode/policies/policy_queue.php:97
+#: ../../enterprise/godmode/policies/policy_queue.php:99
msgid "Operation cannot be deleted from the queue"
msgstr "La operación no puede ser eliminada de la cola."
@@ -9105,42 +9244,42 @@ msgstr "La operación no puede ser eliminada de la cola."
#: ../../enterprise/meta/advanced/policymanager.queue.php:259
#: ../../enterprise/meta/include/functions_autoprovision.php:698
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501
-#: ../../enterprise/godmode/policies/policy_queue.php:311
-#: ../../enterprise/godmode/policies/policy_queue.php:687
+#: ../../enterprise/godmode/policies/policy_queue.php:313
+#: ../../enterprise/godmode/policies/policy_queue.php:689
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176
#: ../../enterprise/include/functions_reporting_csv.php:1064
#: ../../enterprise/include/class/CommandCenter.class.php:453
#: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4642
-#: ../../include/functions_reporting_html.php:2460
-#: ../../include/functions_reporting_html.php:4959
-#: ../../include/functions_menu.php:675
-#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:78
-#: ../../general/main_menu.php:85
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4651
+#: ../../include/functions_reporting_html.php:2481
+#: ../../include/functions_reporting_html.php:4987
+#: ../../include/functions_menu.php:679
+#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:79
+#: ../../general/main_menu.php:86
msgid "Operation"
msgstr "Operación"
#: ../../enterprise/meta/advanced/policymanager.queue.php:218
-#: ../../enterprise/godmode/policies/policy_queue.php:305
+#: ../../enterprise/godmode/policies/policy_queue.php:307
msgid "Apply (database and files)"
msgstr "Aplicar (base de datos y archivos)"
#: ../../enterprise/meta/advanced/policymanager.queue.php:219
#: ../../enterprise/meta/advanced/policymanager.queue.php:315
-#: ../../enterprise/godmode/policies/policy_queue.php:306
-#: ../../enterprise/godmode/policies/policy_queue.php:758
+#: ../../enterprise/godmode/policies/policy_queue.php:308
+#: ../../enterprise/godmode/policies/policy_queue.php:762
msgid "Apply (only database)"
msgstr "Aplicar (solo en la base de datos)"
#: ../../enterprise/meta/advanced/policymanager.queue.php:229
-#: ../../enterprise/godmode/policies/policy_queue.php:330
+#: ../../enterprise/godmode/policies/policy_queue.php:332
msgid "Complete"
msgstr "Completo"
#: ../../enterprise/meta/advanced/policymanager.queue.php:230
-#: ../../enterprise/godmode/policies/policy_queue.php:331
+#: ../../enterprise/godmode/policies/policy_queue.php:333
msgid "Incomplete"
msgstr "Incompleto"
@@ -9151,13 +9290,13 @@ msgstr "Incompleto"
#: ../../enterprise/godmode/agentes/collection_manager.php:94
#: ../../enterprise/godmode/agentes/collection_manager.php:95
#: ../../enterprise/godmode/agentes/collections.php:458
-#: ../../enterprise/godmode/policies/policy_modules.php:1494
-#: ../../enterprise/godmode/policies/policy_queue.php:356
+#: ../../enterprise/godmode/policies/policy_modules.php:1539
+#: ../../enterprise/godmode/policies/policy_queue.php:358
#: ../../enterprise/godmode/policies/policies.php:341
#: ../../enterprise/godmode/policies/policy_linking.php:152
#: ../../enterprise/godmode/policies/policy_external_alerts.php:393
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274
#: ../../enterprise/godmode/setup/setup_acl.php:495
#: ../../enterprise/include/class/SAPView.class.php:409
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928
@@ -9167,18 +9306,18 @@ msgstr "Incompleto"
#: ../../enterprise/operation/services/services.treeview_services.php:164
#: ../../enterprise/operation/services/services.treeview_services.php:187
#: ../../enterprise/operation/services/services.list.php:482
-#: ../../extensions/agents_modules.php:665 ../../extensions/module_groups.php:305
+#: ../../extensions/agents_modules.php:673 ../../extensions/module_groups.php:305
#: ../../godmode/modules/manage_network_templates_form.php:277
#: ../../godmode/modules/manage_network_templates_form.php:337
-#: ../../godmode/modules/manage_network_components.php:697
-#: ../../godmode/groups/group_list.php:799 ../../godmode/users/user_list.php:521
-#: ../../godmode/users/user_list.php:522
+#: ../../godmode/modules/manage_network_components.php:700
+#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:522
+#: ../../godmode/users/user_list.php:523
#: ../../godmode/agentes/modificar_agente.php:397
#: ../../godmode/agentes/modificar_agente.php:412
#: ../../godmode/agentes/modificar_agente.php:413
#: ../../godmode/agentes/planned_downtime.list.php:647
#: ../../godmode/netflow/nf_item_list.php:174
-#: ../../godmode/netflow/nf_edit_form.php:238
+#: ../../godmode/netflow/nf_edit_form.php:283
#: ../../godmode/snmpconsole/snmp_alert.php:1797
#: ../../godmode/snmpconsole/snmp_filters.php:216
#: ../../godmode/snmpconsole/snmp_filters.php:314
@@ -9186,32 +9325,33 @@ msgstr "Incompleto"
#: ../../godmode/reporting/map_builder.php:384
#: ../../godmode/reporting/graphs.php:283
#: ../../godmode/reporting/visual_console_favorite.php:204
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1120
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1122
#: ../../godmode/reporting/reporting_builder.php:766
-#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652
-#: ../../include/functions_ui.php:3697
-#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339
+#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652
+#: ../../include/functions_ui.php:3745
+#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:341
#: ../../operation/agentes/estado_agente.php:444
#: ../../operation/agentes/graphs.php:270
#: ../../operation/agentes/interface_view.functions.php:134
-#: ../../operation/agentes/status_monitor.php:1034
-#: ../../operation/agentes/estado_monitores.php:626
+#: ../../operation/agentes/status_monitor.php:1036
+#: ../../operation/agentes/estado_monitores.php:620
+#: ../../operation/agentes/agent_inventory.php:165
#: ../../operation/network/network_report.php:205
#: ../../operation/network/network_usage_map.php:249
#: ../../operation/network/network_usage_map.php:250
-#: ../../operation/netflow/nf_live_view.php:273
-#: ../../operation/netflow/nf_live_view.php:605
-#: ../../operation/netflow/nf_live_view.php:606
+#: ../../operation/netflow/nf_live_view.php:282
+#: ../../operation/netflow/nf_live_view.php:678
+#: ../../operation/netflow/nf_live_view.php:679
#: ../../operation/incidents/list_integriaims_incidents.php:470
-#: ../../operation/inventory/inventory.php:704
+#: ../../operation/inventory/inventory.php:705
#: ../../operation/reporting/graph_viewer.php:399
msgid "Filter"
msgstr "Filtro"
#: ../../enterprise/meta/advanced/policymanager.queue.php:246
#: ../../enterprise/meta/agentsearch.php:111
-#: ../../godmode/alerts/alert_templates.php:357
-#: ../../godmode/alerts/alert_templates.php:358
+#: ../../godmode/alerts/alert_templates.php:361
+#: ../../godmode/alerts/alert_templates.php:362
msgid "Show Options"
msgstr "Mostrar opciones"
@@ -9229,21 +9369,21 @@ msgstr "Mostrar opciones"
#: ../../enterprise/include/class/CSVImportAgents.class.php:157
#: ../../enterprise/include/class/SAPView.class.php:226
#: ../../enterprise/include/functions_events.php:216
-#: ../../enterprise/operation/log/log_viewer.php:749
-#: ../../godmode/modules/manage_network_components.php:775
+#: ../../enterprise/operation/log/log_viewer.php:747
+#: ../../godmode/modules/manage_network_components.php:778
#: ../../godmode/agentes/agent_manager.php:551
#: ../../godmode/agentes/module_manager.php:623
-#: ../../godmode/massive/massive_edit_agents.php:757
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1215
+#: ../../godmode/massive/massive_edit_agents.php:774
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1217
#: ../../godmode/reporting/reporting_builder.item_editor.php:1238
#: ../../godmode/reporting/reporting_builder.item_editor.php:1260
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3695
-#: ../../godmode/events/event_edit_filter.php:930
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3704
+#: ../../godmode/events/event_edit_filter.php:932
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1065
-#: ../../include/functions_reporting_html.php:2350
+#: ../../include/functions_reporting_html.php:2371
#: ../../include/class/AgentWizard.class.php:1282
-#: ../../operation/inventory/inventory.php:490
-#: ../../operation/events/events.php:1953
+#: ../../operation/inventory/inventory.php:492
+#: ../../operation/events/events.php:2007
msgid "Server"
msgstr "Servidor"
@@ -9253,11 +9393,11 @@ msgstr "Servidor"
#: ../../enterprise/meta/monitoring/group_view.php:212
#: ../../enterprise/meta/include/functions_autoprovision.php:497
#: ../../enterprise/godmode/agentes/collections.agents.php:62
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123
#: ../../enterprise/godmode/agentes/collections.data.php:155
#: ../../enterprise/godmode/agentes/collections.data.php:321
#: ../../enterprise/godmode/agentes/collections.editor.php:83
-#: ../../enterprise/godmode/policies/policy_queue.php:686
+#: ../../enterprise/godmode/policies/policy_queue.php:688
#: ../../enterprise/godmode/policies/policies.php:438
#: ../../enterprise/godmode/policies/policies.php:603
#: ../../enterprise/godmode/policies/policy_agents.php:719
@@ -9274,8 +9414,8 @@ msgstr "Servidor"
#: ../../enterprise/operation/services/massive/services.create.php:985
#: ../../enterprise/operation/services/massive/service.create.elements.php:379
#: ../../enterprise/operation/services/services.service_map.php:148
-#: ../../extensions/agents_modules.php:470
-#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213
+#: ../../extensions/agents_modules.php:478
+#: ../../extensions/agents_modules.php:865 ../../godmode/groups/tactical.php:213
#: ../../godmode/agentes/planned_downtime.list.php:84
#: ../../godmode/agentes/planned_downtime.list.php:109
#: ../../godmode/massive/massive_standby_alerts.php:204
@@ -9292,34 +9432,34 @@ msgstr "Servidor"
#: ../../godmode/reporting/reporting_builder.item_editor.php:2126
#: ../../godmode/reporting/visual_console_builder.wizard.php:430
#: ../../mobile/include/functions_web.php:23
-#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81
-#: ../../mobile/operation/agent.php:155
-#: ../../include/functions_reporting_html.php:2094
-#: ../../include/functions_reporting_html.php:2566
-#: ../../include/functions_reporting_html.php:3349
-#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685
-#: ../../include/functions_html.php:5914
+#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81
+#: ../../mobile/operation/agent.php:161
+#: ../../include/functions_reporting_html.php:2115
+#: ../../include/functions_reporting_html.php:2587
+#: ../../include/functions_reporting_html.php:3377
+#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693
+#: ../../include/functions_html.php:5938
#: ../../include/functions_massive_operations.php:217
-#: ../../include/class/Diagnostics.class.php:1184
#: ../../include/class/Diagnostics.class.php:1188
#: ../../include/class/Diagnostics.class.php:1192
#: ../../include/class/Diagnostics.class.php:1196
-#: ../../include/class/NetworkMap.class.php:3439
+#: ../../include/class/Diagnostics.class.php:1200
+#: ../../include/class/NetworkMap.class.php:3445
#: ../../include/class/AgentsAlerts.class.php:252
#: ../../include/class/AgentsAlerts.class.php:567
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:340
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:345
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:432
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:347
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:352
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:445
#: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98
#: ../../operation/search_results.php:81
#: ../../operation/agentes/interface_view.functions.php:78
#: ../../operation/agentes/group_view.php:184
-#: ../../operation/agentes/group_view.php:234
+#: ../../operation/agentes/group_view.php:237
msgid "Agents"
msgstr "Agentes"
#: ../../enterprise/meta/advanced/policymanager.queue.php:260
-#: ../../enterprise/godmode/policies/policy_queue.php:688
+#: ../../enterprise/godmode/policies/policy_queue.php:690
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712
#: ../../enterprise/include/class/Omnishell.class.php:408
#: ../../enterprise/include/functions_ipam.php:1425
@@ -9329,18 +9469,18 @@ msgid "Progress"
msgstr "Progreso"
#: ../../enterprise/meta/advanced/policymanager.queue.php:298
-#: ../../enterprise/godmode/policies/policy_queue.php:728
+#: ../../enterprise/godmode/policies/policy_queue.php:730
msgid "Policy "
msgstr "Política "
#: ../../enterprise/meta/advanced/policymanager.queue.php:339
-#: ../../enterprise/godmode/policies/policy_queue.php:788
-#: ../../enterprise/godmode/policies/policy_queue.php:797
+#: ../../enterprise/godmode/policies/policy_queue.php:792
+#: ../../enterprise/godmode/policies/policy_queue.php:801
msgid "Policy applying timeout"
msgstr "Tiempo de espera de la aplicación de la política"
#: ../../enterprise/meta/advanced/policymanager.queue.php:353
-#: ../../enterprise/godmode/policies/policy_queue.php:816
+#: ../../enterprise/godmode/policies/policy_queue.php:820
msgid "Delete from queue"
msgstr "Eliminar de la cola"
@@ -9418,17 +9558,17 @@ msgstr "Cola vacía"
#: ../../enterprise/include/functions_services.php:1666
#: ../../enterprise/include/functions_events.php:80
#: ../../enterprise/operation/agentes/tag_view.php:693
-#: ../../enterprise/operation/log/log_viewer.php:770
+#: ../../enterprise/operation/log/log_viewer.php:768
#: ../../enterprise/tools/ipam/ipam_network.php:425
#: ../../enterprise/tools/ipam/ipam_ajax.php:382
#: ../../extensions/insert_data.php:194
#: ../../godmode/modules/manage_inventory_modules.php:317
-#: ../../godmode/agentes/status_monitor_custom_fields.php:77
-#: ../../godmode/agentes/status_monitor_custom_fields.php:141
+#: ../../godmode/agentes/status_monitor_custom_fields.php:97
+#: ../../godmode/agentes/status_monitor_custom_fields.php:161
#: ../../godmode/agentes/module_manager_editor_prediction.php:134
#: ../../godmode/agentes/planned_downtime.list.php:420
-#: ../../godmode/agentes/module_manager_editor_common.php:1475
-#: ../../godmode/agentes/module_manager_editor_common.php:1534
+#: ../../godmode/agentes/module_manager_editor_common.php:1485
+#: ../../godmode/agentes/module_manager_editor_common.php:1544
#: ../../godmode/gis_maps/configure_gis_map.php:592
#: ../../godmode/massive/massive_copy_modules.php:131
#: ../../godmode/massive/massive_copy_modules.php:295
@@ -9444,55 +9584,55 @@ msgstr "Cola vacía"
#: ../../godmode/reporting/create_container.php:473
#: ../../godmode/reporting/create_container.php:657
#: ../../godmode/reporting/create_container.php:744
-#: ../../godmode/reporting/graph_builder.graph_editor.php:212
-#: ../../godmode/reporting/reporting_builder.item_editor.php:211
-#: ../../godmode/reporting/reporting_builder.item_editor.php:890
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1168
+#: ../../godmode/reporting/graph_builder.graph_editor.php:345
+#: ../../godmode/reporting/reporting_builder.item_editor.php:212
+#: ../../godmode/reporting/reporting_builder.item_editor.php:891
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1170
#: ../../godmode/reporting/reporting_builder.item_editor.php:1735
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4093
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4611
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4635
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4102
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4644
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.wizard.php:463
#: ../../godmode/reporting/visual_console_builder.wizard.php:789
#: ../../godmode/reporting/visual_console_builder.wizard.php:812
#: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93
-#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597
-#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335
-#: ../../mobile/operation/events.php:841
-#: ../../include/functions_visual_map_editor.php:422
-#: ../../include/functions_visual_map_editor.php:455
+#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608
+#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225
+#: ../../mobile/operation/events.php:870
+#: ../../include/functions_visual_map_editor.php:416
+#: ../../include/functions_visual_map_editor.php:449
#: ../../include/functions_reporting_html.php:548
#: ../../include/functions_reporting_html.php:947
#: ../../include/functions_reporting_html.php:1059
#: ../../include/functions_reporting_html.php:1067
-#: ../../include/functions_reporting_html.php:2016
-#: ../../include/functions_reporting_html.php:2353
-#: ../../include/functions_reporting_html.php:2458
-#: ../../include/functions_reporting_html.php:3312
-#: ../../include/functions_reporting_html.php:3447
-#: ../../include/functions_reporting_html.php:3741
-#: ../../include/functions_reporting_html.php:3822
-#: ../../include/functions_reporting_html.php:3830
-#: ../../include/functions_reporting_html.php:3839
-#: ../../include/functions_reporting_html.php:3851
-#: ../../include/functions_reporting_html.php:4011
-#: ../../include/functions_reporting_html.php:4135
-#: ../../include/functions_reporting_html.php:4229
-#: ../../include/functions_reporting_html.php:4956
-#: ../../include/functions_reporting_html.php:5004
-#: ../../include/functions_reporting_html.php:5043
-#: ../../include/functions_reporting_html.php:5371
-#: ../../include/functions_reporting_html.php:5411
-#: ../../include/functions_reporting_html.php:5661
-#: ../../include/ajax/heatmap.ajax.php:252
-#: ../../include/ajax/heatmap.ajax.php:291
-#: ../../include/ajax/heatmap.ajax.php:326
+#: ../../include/functions_reporting_html.php:2032
+#: ../../include/functions_reporting_html.php:2374
+#: ../../include/functions_reporting_html.php:2479
+#: ../../include/functions_reporting_html.php:3340
+#: ../../include/functions_reporting_html.php:3475
+#: ../../include/functions_reporting_html.php:3769
+#: ../../include/functions_reporting_html.php:3850
+#: ../../include/functions_reporting_html.php:3858
+#: ../../include/functions_reporting_html.php:3867
+#: ../../include/functions_reporting_html.php:3879
+#: ../../include/functions_reporting_html.php:4039
+#: ../../include/functions_reporting_html.php:4163
+#: ../../include/functions_reporting_html.php:4257
+#: ../../include/functions_reporting_html.php:4984
+#: ../../include/functions_reporting_html.php:5032
+#: ../../include/functions_reporting_html.php:5071
+#: ../../include/functions_reporting_html.php:5399
+#: ../../include/functions_reporting_html.php:5439
+#: ../../include/functions_reporting_html.php:5689
+#: ../../include/ajax/heatmap.ajax.php:294
+#: ../../include/ajax/heatmap.ajax.php:419
+#: ../../include/ajax/heatmap.ajax.php:454
#: ../../include/ajax/alert_list.ajax.php:459
-#: ../../include/functions_inventory.php:393
-#: ../../include/functions_inventory.php:1063
-#: ../../include/functions_inventory.php:1119
-#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229
+#: ../../include/functions_inventory.php:402
+#: ../../include/functions_inventory.php:1173
+#: ../../include/functions_inventory.php:1229
+#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281
@@ -9501,22 +9641,24 @@ msgstr "Cola vacía"
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368
#: ../../include/functions_reports.php:1332
-#: ../../include/class/NetworkMap.class.php:2979
-#: ../../include/class/NetworkMap.class.php:3031
-#: ../../include/class/NetworkMap.class.php:3363
+#: ../../include/class/NetworkMap.class.php:2985
+#: ../../include/class/NetworkMap.class.php:3037
+#: ../../include/class/NetworkMap.class.php:3369
#: ../../include/class/AgentsAlerts.class.php:430
-#: ../../include/class/AgentsAlerts.class.php:981
-#: ../../include/functions_reporting.php:7332
+#: ../../include/class/AgentsAlerts.class.php:982
+#: ../../include/functions_reporting.php:7341
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:341
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442
#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250
#: ../../include/lib/Dashboard/Widgets/module_icon.php:359
#: ../../include/lib/Dashboard/Widgets/module_value.php:334
@@ -9527,20 +9669,20 @@ msgstr "Cola vacía"
#: ../../include/lib/Dashboard/Widgets/module_status.php:350
#: ../../include/lib/Dashboard/Widgets/single_graph.php:301
#: ../../include/lib/Dashboard/Widgets/top_n.php:206
-#: ../../include/functions_snmp_browser.php:1809
+#: ../../include/functions_snmp_browser.php:1818
#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48
#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/estado_agente.php:1023
+#: ../../operation/agentes/estado_agente.php:1030
#: ../../operation/agentes/interface_view.functions.php:499
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1536
+#: ../../operation/agentes/status_monitor.php:1538
#: ../../operation/agentes/estado_monitores.php:123
#: ../../operation/agentes/ver_agente.php:1187
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269
#: ../../operation/search_alerts.php:34
-#: ../../operation/inventory/inventory.php:628
-#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688
+#: ../../operation/inventory/inventory.php:630
+#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742
msgid "Agent"
msgstr "Agente"
@@ -9562,14 +9704,13 @@ msgstr "Agente"
#: ../../extensions/api_checker.php:231 ../../extensions/users_connected.php:178
#: ../../godmode/reporting/reporting_builder.item_editor.php:70
#: ../../godmode/reporting/visual_console_builder.elements.php:847
-#: ../../include/functions_visual_map_editor.php:1455
-#: ../../include/functions_reporting_html.php:3329
-#: ../../include/functions_reporting_html.php:3662
-#: ../../include/ajax/heatmap.ajax.php:333
+#: ../../include/functions_visual_map_editor.php:1513
+#: ../../include/functions_reporting_html.php:3357
+#: ../../include/functions_reporting_html.php:3690
+#: ../../include/ajax/heatmap.ajax.php:461
#: ../../include/class/AuditLog.class.php:223
#: ../../operation/network/network_report.php:272
-#: ../../operation/inventory/inventory.php:1000
-#: ../../operation/inventory/inventory.php:1294
+#: ../../operation/inventory/inventory.php:1246
msgid "IP"
msgstr "IP"
@@ -9591,43 +9732,43 @@ msgstr "Estado de agente"
#: ../../enterprise/operation/services/services.treeview_services.php:321
#: ../../enterprise/operation/services/services.list.php:205
#: ../../enterprise/operation/services/services.table_services.php:141
-#: ../../godmode/groups/group_list.php:1114
+#: ../../godmode/groups/group_list.php:1126
#: ../../godmode/agentes/module_manager_editor_common.php:476
-#: ../../godmode/agentes/module_manager_editor_common.php:559
-#: ../../godmode/netflow/nf_edit_form.php:245
+#: ../../godmode/agentes/module_manager_editor_common.php:564
+#: ../../godmode/netflow/nf_edit_form.php:290
#: ../../godmode/massive/massive_copy_modules.php:115
#: ../../godmode/massive/massive_copy_modules.php:275
#: ../../godmode/massive/massive_delete_modules.php:418
#: ../../godmode/massive/massive_delete_modules.php:439
#: ../../godmode/massive/massive_edit_modules.php:385
#: ../../godmode/massive/massive_edit_modules.php:471
-#: ../../godmode/setup/setup_visuals.php:1013
-#: ../../godmode/setup/setup_visuals.php:1035
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3830
+#: ../../godmode/setup/setup_visuals.php:1017
+#: ../../godmode/setup/setup_visuals.php:1039
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3839
#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69
-#: ../../include/functions_reporting_html.php:2573
+#: ../../include/functions_reporting_html.php:2594
#: ../../include/functions.php:1087 ../../include/functions.php:1327
#: ../../include/functions.php:1334 ../../include/functions.php:1367
-#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329
-#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432
+#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339
+#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:4852
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578
#: ../../include/functions_massive_operations.php:146
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:315
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:398
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:432
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:729
-#: ../../include/functions_events.php:3218 ../../operation/tree.php:208
-#: ../../operation/tree.php:298 ../../operation/tree.php:533
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:401
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:436
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:722
+#: ../../include/functions_events.php:3223 ../../operation/tree.php:208
+#: ../../operation/tree.php:299 ../../operation/tree.php:535
#: ../../operation/agentes/estado_agente.php:273
-#: ../../operation/agentes/status_monitor.php:564
-#: ../../operation/agentes/group_view.php:244
-#: ../../operation/agentes/group_view.php:249
-#: ../../operation/agentes/estado_monitores.php:518
+#: ../../operation/agentes/status_monitor.php:563
+#: ../../operation/agentes/group_view.php:247
+#: ../../operation/agentes/group_view.php:252
+#: ../../operation/agentes/estado_monitores.php:515
#: ../../operation/agentes/tactical.php:199
-#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150
+#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159
msgid "Normal"
msgstr "Normal"
@@ -9664,24 +9805,24 @@ msgstr "Normal"
#: ../../enterprise/operation/services/services.table_services.php:143
#: ../../extensions/module_groups.php:50
#: ../../godmode/modules/manage_network_components_form_wizard.php:418
-#: ../../godmode/groups/group_list.php:1094
+#: ../../godmode/groups/group_list.php:1106
#: ../../godmode/massive/massive_copy_modules.php:117
#: ../../godmode/massive/massive_copy_modules.php:277
#: ../../godmode/massive/massive_delete_modules.php:420
#: ../../godmode/massive/massive_delete_modules.php:441
#: ../../godmode/massive/massive_edit_modules.php:387
#: ../../godmode/massive/massive_edit_modules.php:473
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3832
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3841
#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71
#: ../../include/functions_reporting_html.php:867
-#: ../../include/functions_reporting_html.php:2574
-#: ../../include/functions_reporting_html.php:4871
+#: ../../include/functions_reporting_html.php:2595
+#: ../../include/functions_reporting_html.php:4899
#: ../../include/functions.php:1095 ../../include/functions.php:1331
#: ../../include/functions.php:1332 ../../include/functions.php:1334
-#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938
-#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355
-#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418
+#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966
+#: ../../include/functions_graph.php:3363 ../../include/functions_graph.php:3365
+#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564
#: ../../include/functions_massive_operations.php:148
#: ../../include/class/AgentWizard.class.php:1404
#: ../../include/class/AgentWizard.class.php:4161
@@ -9690,18 +9831,18 @@ msgstr "Normal"
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:400
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:434
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:709
-#: ../../include/functions_events.php:3226 ../../operation/tree.php:210
-#: ../../operation/tree.php:300 ../../operation/tree.php:513
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:403
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:438
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:702
+#: ../../include/functions_events.php:3231 ../../operation/tree.php:210
+#: ../../operation/tree.php:301 ../../operation/tree.php:515
#: ../../operation/agentes/estado_agente.php:275
-#: ../../operation/agentes/status_monitor.php:566
-#: ../../operation/agentes/group_view.php:246
-#: ../../operation/agentes/group_view.php:251
-#: ../../operation/agentes/estado_monitores.php:516
+#: ../../operation/agentes/status_monitor.php:565
+#: ../../operation/agentes/group_view.php:249
+#: ../../operation/agentes/group_view.php:254
+#: ../../operation/agentes/estado_monitores.php:513
#: ../../operation/agentes/tactical.php:197
-#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148
+#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157
msgid "Critical"
msgstr "Crítico"
@@ -9726,15 +9867,16 @@ msgstr "Vista de campos personalizados"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:170
#: ../../enterprise/godmode/policies/policies.php:314
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:736
-#: ../../extensions/agents_modules.php:439
+#: ../../extensions/agents_modules.php:447
#: ../../godmode/agentes/modificar_agente.php:333
#: ../../godmode/agentes/planned_downtime.editor.php:1197
#: ../../godmode/reporting/reporting_builder.item_editor.php:1667
-#: ../../include/functions_html.php:1575
-#: ../../include/class/NetworkMap.class.php:3427
+#: ../../include/functions_html.php:1581
+#: ../../include/class/NetworkMap.class.php:3433
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254
#: ../../operation/agentes/estado_agente.php:310
#: ../../operation/agentes/interface_view.functions.php:61
-#: ../../operation/agentes/status_monitor.php:845
+#: ../../operation/agentes/status_monitor.php:844
msgid "Recursion"
msgstr "Recurrencia"
@@ -9747,21 +9889,21 @@ msgstr "Recurrencia"
#: ../../godmode/massive/massive_delete_modules.php:443
#: ../../godmode/massive/massive_edit_modules.php:389
#: ../../godmode/massive/massive_edit_modules.php:475
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3834
-#: ../../godmode/events/event_edit_filter.php:350
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3843
+#: ../../godmode/events/event_edit_filter.php:352
#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333
#: ../../include/functions_massive_operations.php:150
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258
#: ../../include/lib/Dashboard/Widgets/events_list.php:319
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:403
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:437
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:734
-#: ../../include/functions_events.php:3174 ../../operation/tree.php:538
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:406
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:441
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:727
+#: ../../include/functions_events.php:3179 ../../operation/tree.php:540
#: ../../operation/agentes/estado_agente.php:277
-#: ../../operation/agentes/status_monitor.php:568
-#: ../../operation/events/events.php:1739
+#: ../../operation/agentes/status_monitor.php:567
+#: ../../operation/events/events.php:1793
msgid "Not normal"
msgstr "No normal"
@@ -9772,30 +9914,30 @@ msgstr "No normal"
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124
#: ../../enterprise/operation/agentes/tag_view.php:136
#: ../../enterprise/operation/services/services.treeview_services.php:316
-#: ../../godmode/groups/group_list.php:1109
+#: ../../godmode/groups/group_list.php:1121
#: ../../godmode/massive/massive_copy_modules.php:120
#: ../../godmode/massive/massive_copy_modules.php:280
#: ../../godmode/massive/massive_delete_modules.php:423
#: ../../godmode/massive/massive_delete_modules.php:444
#: ../../godmode/massive/massive_edit_modules.php:390
#: ../../godmode/massive/massive_edit_modules.php:476
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3835
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3844
#: ../../mobile/operation/modules.php:75
#: ../../include/functions_reporting_html.php:660
-#: ../../include/functions_reporting_html.php:2577
-#: ../../include/functions_reporting_html.php:4678
-#: ../../include/ajax/module.php:1950
+#: ../../include/functions_reporting_html.php:2598
+#: ../../include/functions_reporting_html.php:4706
+#: ../../include/ajax/module.php:1978
#: ../../include/functions_massive_operations.php:151
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:402
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:436
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:724
-#: ../../operation/tree.php:212 ../../operation/tree.php:302
-#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278
-#: ../../operation/agentes/status_monitor.php:570
-#: ../../operation/agentes/group_view.php:243
-#: ../../operation/agentes/group_view.php:248
-#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:405
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:440
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:717
+#: ../../operation/tree.php:212 ../../operation/tree.php:303
+#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278
+#: ../../operation/agentes/status_monitor.php:569
+#: ../../operation/agentes/group_view.php:246
+#: ../../operation/agentes/group_view.php:251
+#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161
msgid "Not init"
msgstr "No iniciados"
@@ -9811,14 +9953,14 @@ msgstr "Módulo de estado"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:230
#: ../../enterprise/meta/monitoring/custom_fields_view.php:231
#: ../../enterprise/include/ajax/log_viewer.ajax.php:410
-#: ../../enterprise/operation/log/log_viewer.php:994
-#: ../../enterprise/operation/log/log_viewer.php:2026
-#: ../../enterprise/operation/log/log_viewer.php:2065
-#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864
+#: ../../enterprise/operation/log/log_viewer.php:992
+#: ../../enterprise/operation/log/log_viewer.php:2024
+#: ../../enterprise/operation/log/log_viewer.php:2063
+#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865
#: ../../include/class/AuditLog.class.php:167
-#: ../../include/class/AuditLog.class.php:445
-#: ../../include/class/AuditLog.class.php:485
-#: ../../operation/events/events.php:1871
+#: ../../include/class/AuditLog.class.php:457
+#: ../../include/class/AuditLog.class.php:497
+#: ../../operation/events/events.php:1925
msgid "Save filter"
msgstr "Guardar filtro"
@@ -9827,21 +9969,20 @@ msgstr "Guardar filtro"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:245
#: ../../enterprise/include/ajax/log_viewer.ajax.php:709
#: ../../enterprise/include/ajax/log_viewer.ajax.php:727
-#: ../../enterprise/operation/log/log_viewer.php:979
-#: ../../enterprise/operation/log/log_viewer.php:2078
-#: ../../enterprise/operation/log/log_viewer.php:2115
+#: ../../enterprise/operation/log/log_viewer.php:977
+#: ../../enterprise/operation/log/log_viewer.php:2076
+#: ../../enterprise/operation/log/log_viewer.php:2113
#: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168
-#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173
+#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202
#: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518
-#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583
-#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159
-#: ../../include/class/AuditLog.class.php:502
-#: ../../include/class/AuditLog.class.php:539
+#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584
+#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159
+#: ../../include/class/AuditLog.class.php:514
+#: ../../include/class/AuditLog.class.php:551
#: ../../operation/agentes/estado_agente.php:455
-#: ../../operation/agentes/status_monitor.php:1045
-#: ../../operation/netflow/nf_live_view.php:277
-#: ../../operation/events/sound_events.php:184
-#: ../../operation/events/events.php:1862
+#: ../../operation/agentes/status_monitor.php:1047
+#: ../../operation/netflow/nf_live_view.php:286
+#: ../../operation/events/events.php:1916
msgid "Load filter"
msgstr "Cargar filtro"
@@ -9855,8 +9996,8 @@ msgid "Custom Fields Data"
msgstr "Datos de campos personalizados"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:295
-#: ../../godmode/events/event_edit_filter.php:780
-#: ../../operation/events/events.php:1969
+#: ../../godmode/events/event_edit_filter.php:782
+#: ../../operation/events/events.php:2023
msgid "Module search"
msgstr "Búsqueda por módulo"
@@ -9865,8 +10006,8 @@ msgstr "Búsqueda por módulo"
#: ../../enterprise/include/class/DeploymentCenter.class.php:1569
#: ../../enterprise/include/class/AgentRepository.class.php:873
#: ../../enterprise/include/class/Omnishell.class.php:1359
-#: ../../enterprise/include/class/LogSource.class.php:745
-#: ../../godmode/users/configure_user.php:1024
+#: ../../enterprise/include/class/LogSource.class.php:742
+#: ../../godmode/users/configure_user.php:1072
#: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299
#: ../../operation/agentes/interface_view.functions.php:172
msgid "Show"
@@ -9875,11 +10016,11 @@ msgstr "Mostrar"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:321
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565
#: ../../enterprise/include/functions_ipam.php:339
-#: ../../enterprise/operation/log/log_viewer.php:968
+#: ../../enterprise/operation/log/log_viewer.php:966
#: ../../enterprise/operation/reporting/custom_reporting.php:100
#: ../../godmode/modules/manage_network_templates.php:290
#: ../../godmode/agentes/planned_downtime.list.php:1000
-#: ../../include/graphs/functions_flot.php:382
+#: ../../include/graphs/functions_flot.php:383
#: ../../include/class/ModuleTemplates.class.php:904
#: ../../operation/network/network_report.php:230
#: ../../operation/incidents/list_integriaims_incidents.php:480
@@ -9890,170 +10031,170 @@ msgstr "Exportar a CSV"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:361
#: ../../enterprise/include/class/DatabaseHA.class.php:217
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1883
-#: ../../include/functions_ui.php:3741
+#: ../../include/functions_ui.php:3789
msgid "Processing"
msgstr "Procesando"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:386
-#: ../../mobile/operation/groups.php:153
-#: ../../include/functions_reporting_html.php:5843
+#: ../../mobile/operation/groups.php:192
+#: ../../include/functions_reporting_html.php:5871
#: ../../include/functions_agents.php:3955
msgid "Agents critical"
msgstr "Agentes críticos"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:399
-#: ../../include/functions_reporting_html.php:5846
+#: ../../include/functions_reporting_html.php:5874
#: ../../include/functions_agents.php:3965
msgid "Agents warning"
msgstr "Agentes en estado de advertencia"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:412
-#: ../../include/functions_reporting_html.php:5852
+#: ../../include/functions_reporting_html.php:5880
#: ../../include/functions_agents.php:3945
#: ../../include/functions_agents.php:3999
msgid "Agents ok"
msgstr "Agentes OK"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:425
-#: ../../mobile/operation/groups.php:156
-#: ../../include/functions_reporting_html.php:5855
+#: ../../mobile/operation/groups.php:195
+#: ../../include/functions_reporting_html.php:5883
#: ../../include/functions_agents.php:3975
msgid "Agents unknown"
msgstr "Agentes desconocidos"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:438
-#: ../../mobile/operation/groups.php:150
-#: ../../include/functions_reporting_html.php:5861
+#: ../../mobile/operation/groups.php:189
+#: ../../include/functions_reporting_html.php:5889
#: ../../include/functions_agents.php:3989
msgid "Agents not init"
msgstr "Agentes no iniciados"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:464
-#: ../../include/functions_reporting.php:12227
-#: ../../include/functions_groups.php:2794
+#: ../../include/functions_reporting.php:12300
+#: ../../include/functions_groups.php:2819
msgid "Monitor critical"
msgstr "Monitor crítico"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:475
-#: ../../include/functions_reporting.php:12231
-#: ../../include/functions_groups.php:2798
+#: ../../include/functions_reporting.php:12304
+#: ../../include/functions_groups.php:2823
msgid "Monitor warning"
msgstr "Monitor en estado de advertencia"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:486
-#: ../../include/functions_reporting.php:12238
-#: ../../include/functions_groups.php:2805
+#: ../../include/functions_reporting.php:12311
+#: ../../include/functions_groups.php:2830
msgid "Monitor normal"
msgstr "Monitor normal"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:497
-#: ../../include/functions_reporting.php:12242
-#: ../../include/functions_groups.php:2809
+#: ../../include/functions_reporting.php:12315
+#: ../../include/functions_groups.php:2834
msgid "Monitor unknown"
msgstr "Monitor en estado desconocido"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:508
-#: ../../include/functions_reporting.php:12249
-#: ../../include/functions_groups.php:2816
+#: ../../include/functions_reporting.php:12322
+#: ../../include/functions_groups.php:2841
msgid "Monitor not init"
msgstr "Monitor en estado no iniciado"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:523
-#: ../../include/functions_reporting_html.php:5870
-#: ../../include/functions_reporting_html.php:5875
+#: ../../include/functions_reporting_html.php:5898
+#: ../../include/functions_reporting_html.php:5903
msgid "Agents by status"
msgstr "Agentes por estado"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:531
-#: ../../include/functions_reporting.php:12269
-#: ../../include/functions_reporting.php:12275
-#: ../../include/functions_groups.php:2836
-#: ../../include/functions_groups.php:2842
+#: ../../include/functions_reporting.php:12342
+#: ../../include/functions_reporting.php:12348
+#: ../../include/functions_groups.php:2861
+#: ../../include/functions_groups.php:2867
msgid "Monitors by status"
msgstr "Monitores por estado"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:545
#: ../../enterprise/operation/services/services.treeview_services.php:299
-#: ../../godmode/groups/group_list.php:1092
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:707
-#: ../../operation/tree.php:511
+#: ../../godmode/groups/group_list.php:1104
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:700
+#: ../../operation/tree.php:513
msgid "Critical agents"
msgstr "Agentes críticos"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:555
#: ../../enterprise/operation/services/services.treeview_services.php:304
-#: ../../godmode/groups/group_list.php:1097
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:712
-#: ../../operation/tree.php:516
+#: ../../godmode/groups/group_list.php:1109
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:705
+#: ../../operation/tree.php:518
msgid "Warning agents"
msgstr "Agentes en estado de advertencia"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:565
#: ../../enterprise/operation/services/services.treeview_services.php:319
-#: ../../godmode/groups/group_list.php:1112
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:727
-#: ../../operation/tree.php:531
+#: ../../godmode/groups/group_list.php:1124
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:720
+#: ../../operation/tree.php:533
msgid "Normal agents"
msgstr "Agentes en normal"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:575
#: ../../enterprise/operation/services/services.treeview_services.php:309
-#: ../../godmode/groups/group_list.php:1102
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:717
-#: ../../operation/tree.php:521
+#: ../../godmode/groups/group_list.php:1114
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:710
+#: ../../operation/tree.php:523
msgid "Unknown agents"
msgstr "Agentes en desconocido"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:585
#: ../../enterprise/operation/services/services.treeview_services.php:314
-#: ../../godmode/groups/group_list.php:1107
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:722
-#: ../../operation/tree.php:526
+#: ../../godmode/groups/group_list.php:1119
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:715
+#: ../../operation/tree.php:528
msgid "Not init agents"
msgstr "Agentes no iniciados"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:614
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:300
-#: ../../godmode/groups/group_list.php:1093 ../../mobile/operation/groups.php:171
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:708
-#: ../../operation/tree.php:512
+#: ../../godmode/groups/group_list.php:1105 ../../mobile/operation/groups.php:210
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:701
+#: ../../operation/tree.php:514
msgid "Critical modules"
msgstr "Módulos críticos"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:625
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:305
-#: ../../godmode/groups/group_list.php:1098 ../../mobile/operation/groups.php:168
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:713
-#: ../../operation/tree.php:517
+#: ../../godmode/groups/group_list.php:1110 ../../mobile/operation/groups.php:207
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:706
+#: ../../operation/tree.php:519
msgid "Warning modules"
msgstr "Módulos de advertencia"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:636
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:320
-#: ../../godmode/groups/group_list.php:1113 ../../mobile/operation/groups.php:165
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:728
-#: ../../operation/tree.php:532
+#: ../../godmode/groups/group_list.php:1125 ../../mobile/operation/groups.php:204
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:721
+#: ../../operation/tree.php:534
msgid "Normal modules"
msgstr "Módulos normales"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:647
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:310
-#: ../../godmode/groups/group_list.php:1103 ../../mobile/operation/groups.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:718
-#: ../../operation/tree.php:522
+#: ../../godmode/groups/group_list.php:1115 ../../mobile/operation/groups.php:198
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:711
+#: ../../operation/tree.php:524
msgid "Unknown modules"
msgstr "Módulos desconocidos"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:658
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:315
-#: ../../godmode/groups/group_list.php:1108 ../../mobile/operation/groups.php:162
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:723
-#: ../../operation/tree.php:527
+#: ../../godmode/groups/group_list.php:1120 ../../mobile/operation/groups.php:201
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:716
+#: ../../operation/tree.php:529
msgid "Not init modules"
msgstr "Módulos no iniciados"
@@ -10085,7 +10226,7 @@ msgstr "No hay búsquedas personalizadas definidas."
#: ../../enterprise/meta/monitoring/custom_fields_view.php:1167
#: ../../enterprise/meta/event/custom_events.php:245
#: ../../enterprise/include/functions_login.php:114
-#: ../../godmode/agentes/status_monitor_custom_fields.php:253
+#: ../../godmode/agentes/status_monitor_custom_fields.php:273
#: ../../godmode/events/custom_events.php:233
#: ../../include/class/TreeGroupEdition.class.php:164
msgid "Confirm"
@@ -10094,9 +10235,9 @@ msgstr "Confirmar"
#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227
#: ../../godmode/agentes/configurar_agente.php:835
-#: ../../godmode/agentes/modificar_agente.php:1025
-#: ../../include/class/SnmpConsole.class.php:781
-#: ../../operation/agentes/estado_agente.php:1317
+#: ../../godmode/agentes/modificar_agente.php:1036
+#: ../../include/class/SnmpConsole.class.php:783
+#: ../../operation/agentes/estado_agente.php:1326
#: ../../operation/snmpconsole/snmp_statistics.php:195
msgid "Create agent"
msgstr "Crear agente"
@@ -10182,18 +10323,18 @@ msgstr "Crear alerta"
#: ../../enterprise/include/functions_services.php:1779
#: ../../enterprise/include/functions_events.php:90
#: ../../enterprise/operation/agentes/policy_view.php:259
-#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195
+#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195
#: ../../godmode/agentes/module_manager_editor_prediction.php:135
#: ../../godmode/agentes/planned_downtime.list.php:425
#: ../../godmode/agentes/planned_downtime.editor.php:1445
-#: ../../godmode/agentes/module_manager_editor_common.php:1481
-#: ../../godmode/agentes/module_manager_editor_common.php:1535
+#: ../../godmode/agentes/module_manager_editor_common.php:1491
+#: ../../godmode/agentes/module_manager_editor_common.php:1545
#: ../../godmode/massive/massive_standby_alerts.php:224
#: ../../godmode/massive/massive_standby_alerts.php:259
#: ../../godmode/massive/massive_enable_disable_alerts.php:196
#: ../../godmode/massive/massive_enable_disable_alerts.php:231
-#: ../../godmode/massive/massive_edit_agents.php:682
-#: ../../godmode/massive/massive_edit_agents.php:1147
+#: ../../godmode/massive/massive_edit_agents.php:699
+#: ../../godmode/massive/massive_edit_agents.php:1164
#: ../../godmode/alerts/alert_list.list.php:566
#: ../../godmode/alerts/alert_list.list.php:817
#: ../../godmode/alerts/alert_view.php:97
@@ -10202,41 +10343,41 @@ msgstr "Crear alerta"
#: ../../godmode/reporting/create_container.php:490
#: ../../godmode/reporting/create_container.php:662
#: ../../godmode/reporting/create_container.php:745
-#: ../../godmode/reporting/graph_builder.graph_editor.php:213
-#: ../../godmode/reporting/reporting_builder.item_editor.php:212
-#: ../../godmode/reporting/reporting_builder.item_editor.php:891
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1191
+#: ../../godmode/reporting/graph_builder.graph_editor.php:346
+#: ../../godmode/reporting/reporting_builder.item_editor.php:213
+#: ../../godmode/reporting/reporting_builder.item_editor.php:892
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1193
#: ../../godmode/reporting/reporting_builder.item_editor.php:1792
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4098
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4614
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4638
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4107
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4623
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4647
#: ../../godmode/reporting/visual_console_builder.elements.php:121
#: ../../godmode/reporting/visual_console_builder.wizard.php:462
#: ../../godmode/reporting/visual_console_builder.wizard.php:821
-#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338
-#: ../../include/functions_visual_map_editor.php:497
+#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332
+#: ../../include/functions_visual_map_editor.php:491
#: ../../include/functions_reporting_html.php:549
#: ../../include/functions_reporting_html.php:948
-#: ../../include/functions_reporting_html.php:2017
-#: ../../include/functions_reporting_html.php:2354
-#: ../../include/functions_reporting_html.php:2459
-#: ../../include/functions_reporting_html.php:3448
-#: ../../include/functions_reporting_html.php:3823
-#: ../../include/functions_reporting_html.php:3831
-#: ../../include/functions_reporting_html.php:3840
-#: ../../include/functions_reporting_html.php:3852
-#: ../../include/functions_reporting_html.php:4012
-#: ../../include/functions_reporting_html.php:4141
-#: ../../include/functions_reporting_html.php:4235
-#: ../../include/functions_reporting_html.php:4957
-#: ../../include/functions_reporting_html.php:5005
+#: ../../include/functions_reporting_html.php:2033
+#: ../../include/functions_reporting_html.php:2375
+#: ../../include/functions_reporting_html.php:2480
+#: ../../include/functions_reporting_html.php:3476
+#: ../../include/functions_reporting_html.php:3851
+#: ../../include/functions_reporting_html.php:3859
+#: ../../include/functions_reporting_html.php:3868
+#: ../../include/functions_reporting_html.php:3880
+#: ../../include/functions_reporting_html.php:4040
+#: ../../include/functions_reporting_html.php:4169
+#: ../../include/functions_reporting_html.php:4263
+#: ../../include/functions_reporting_html.php:4985
+#: ../../include/functions_reporting_html.php:5033
#: ../../include/ajax/alert_list.ajax.php:292
#: ../../include/ajax/alert_list.ajax.php:317
#: ../../include/ajax/alert_list.ajax.php:480
-#: ../../include/functions_inventory.php:1064
-#: ../../include/functions_inventory.php:1120
-#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393
-#: ../../include/functions_ui.php:7411
+#: ../../include/functions_inventory.php:1174
+#: ../../include/functions_inventory.php:1230
+#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463
+#: ../../include/functions_ui.php:7488
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299
@@ -10245,17 +10386,19 @@ msgstr "Crear alerta"
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385
#: ../../include/functions_reports.php:1363
#: ../../include/class/AgentsAlerts.class.php:432
-#: ../../include/class/AgentsAlerts.class.php:910
-#: ../../include/functions_reporting.php:7333
+#: ../../include/class/AgentsAlerts.class.php:911
+#: ../../include/functions_reporting.php:7342
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:359
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441
#: ../../include/lib/Dashboard/Widgets/module_icon.php:377
#: ../../include/lib/Dashboard/Widgets/module_value.php:352
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254
@@ -10263,16 +10406,16 @@ msgstr "Crear alerta"
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344
#: ../../include/lib/Dashboard/Widgets/module_status.php:368
#: ../../include/lib/Dashboard/Widgets/single_graph.php:319
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:736
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:729
#: ../../include/lib/Dashboard/Widgets/top_n.php:221
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
#: ../../operation/agentes/estado_monitores.php:125
-#: ../../operation/agentes/agent_inventory.php:116
+#: ../../operation/agentes/agent_inventory.php:118
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/search_alerts.php:35
-#: ../../operation/inventory/inventory.php:634
-#: ../../operation/search_modules.php:32
+#: ../../operation/inventory/inventory.php:636
+#: ../../operation/search_modules.php:35
msgid "Module"
msgstr "Módulo"
@@ -10288,18 +10431,18 @@ msgstr "Módulo"
#: ../../godmode/alerts/alert_list.list.php:570
#: ../../godmode/alerts/alert_view.php:101
#: ../../godmode/alerts/alert_list.builder.php:151
-#: ../../godmode/reporting/reporting_builder.item_editor.php:216
-#: ../../godmode/reporting/reporting_builder.item_editor.php:896
-#: ../../mobile/operation/alerts.php:342
-#: ../../include/functions_reporting_html.php:3449
-#: ../../include/functions_reporting_html.php:3452
+#: ../../godmode/reporting/reporting_builder.item_editor.php:217
+#: ../../godmode/reporting/reporting_builder.item_editor.php:897
+#: ../../mobile/operation/alerts.php:349
+#: ../../include/functions_reporting_html.php:3477
+#: ../../include/functions_reporting_html.php:3480
#: ../../include/functions_cron.php:691
#: ../../include/ajax/alert_list.ajax.php:293
#: ../../include/ajax/alert_list.ajax.php:318
-#: ../../include/functions_treeview.php:399
-#: ../../include/functions_treeview.php:440
+#: ../../include/functions_treeview.php:403
+#: ../../include/functions_treeview.php:444
#: ../../include/class/AgentsAlerts.class.php:359
-#: ../../include/class/AgentsAlerts.class.php:983
+#: ../../include/class/AgentsAlerts.class.php:984
#: ../../operation/search_alerts.php:36
msgid "Template"
msgstr "Plantilla"
@@ -10379,8 +10522,8 @@ msgstr "Crear nueva acción"
#: ../../godmode/alerts/configure_alert_action.php:287
#: ../../godmode/alerts/alert_view.php:367
#: ../../godmode/alerts/alert_list.builder.php:169
-#: ../../include/functions_reporting_html.php:3710
-#: ../../include/functions_reporting_html.php:5493
+#: ../../include/functions_reporting_html.php:3738
+#: ../../include/functions_reporting_html.php:5521
#: ../../include/ajax/alert_list.ajax.php:540
#: ../../include/ajax/custom_fields.php:413
#: ../../include/class/AgentsAlerts.class.php:398
@@ -10401,8 +10544,8 @@ msgstr "Configuración avanzada"
#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117
-#: ../../godmode/agentes/module_manager.php:1027
-#: ../../operation/snmpconsole/snmp_browser.php:633
+#: ../../godmode/agentes/module_manager.php:1041
+#: ../../operation/snmpconsole/snmp_browser.php:692
msgid "Create module"
msgstr "Crear módulo"
@@ -10441,11 +10584,11 @@ msgstr "Se han encontrado caracteres no válidos en el nombre del módulo."
#: ../../enterprise/godmode/policies/policy.php:158
#: ../../enterprise/godmode/setup/setup_acl.php:664
#: ../../enterprise/include/functions_reporting.php:60
-#: ../../enterprise/include/functions_reporting.php:8008
-#: ../../enterprise/include/functions_reporting.php:8034
-#: ../../godmode/reporting/visual_console_builder.php:830
-#: ../../include/functions_menu.php:589
-#: ../../operation/visual_console/view.php:202
+#: ../../enterprise/include/functions_reporting.php:8017
+#: ../../enterprise/include/functions_reporting.php:8043
+#: ../../godmode/reporting/visual_console_builder.php:838
+#: ../../include/functions_menu.php:593
+#: ../../operation/visual_console/view.php:204
#: ../../operation/visual_console/legacy_view.php:171
msgid "Wizard"
msgstr "Asistente"
@@ -10460,8 +10603,8 @@ msgstr "Gestionar módulos"
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720
#: ../../enterprise/meta/agentsearch.php:52
#: ../../enterprise/meta/agentsearch.php:58
-#: ../../godmode/events/event_edit_filter.php:447
-#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946
+#: ../../godmode/events/event_edit_filter.php:449
+#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000
msgid "Agent search"
msgstr "Búsqueda de agente"
@@ -10475,18 +10618,22 @@ msgstr "Selecciona el agente donde quieres crear el módulo"
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744
#: ../../godmode/snmpconsole/snmp_alert.php:1688
#: ../../godmode/alerts/configure_alert_action.php:432
-#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241
-#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148
-#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256
+#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241
+#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128
+#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199
+#: ../../mobile/operation/visualmap.php:256
#: ../../mobile/operation/visualmaps.php:189
-#: ../../mobile/operation/module_graph.php:364
-#: ../../mobile/operation/module_graph.php:377
-#: ../../mobile/operation/events.php:913 ../../mobile/operation/tactical.php:102
+#: ../../mobile/operation/module_data.php:130
+#: ../../mobile/operation/module_graph.php:365
+#: ../../mobile/operation/module_graph.php:378
+#: ../../mobile/operation/events.php:957
+#: ../../mobile/operation/server_status.php:232
+#: ../../mobile/operation/tactical.php:102
msgid "Back"
msgstr "Atrás"
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326
-#: ../../godmode/agentes/module_manager.php:1146
+#: ../../godmode/agentes/module_manager.php:1162
msgid "Create Module"
msgstr "Crear módulo"
@@ -10563,14 +10710,14 @@ msgstr "Por favor, introduce un intervalo."
#: ../../godmode/modules/manage_network_components_form_wizard.php:336
#: ../../godmode/massive/massive_delete_modules.php:323
#: ../../godmode/massive/massive_edit_modules.php:309
-#: ../../include/ajax/module.php:1000
+#: ../../include/ajax/module.php:1023
msgid "Module type"
msgstr "Tipo módulo"
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146
#: ../../mobile/include/functions_web.php:24
-#: ../../include/functions_reporting_html.php:5412
-#: ../../include/functions_reporting_html.php:5566
+#: ../../include/functions_reporting_html.php:5440
+#: ../../include/functions_reporting_html.php:5594
msgid "Monitor"
msgstr "Monitor"
@@ -10585,7 +10732,7 @@ msgstr "Comprobación web"
#: ../../enterprise/include/functions_reporting_csv.php:763
#: ../../enterprise/operation/agentes/tag_view.php:174
#: ../../enterprise/operation/agentes/ver_agente.php:53
-#: ../../extensions/agents_modules.php:448
+#: ../../extensions/agents_modules.php:456
#: ../../godmode/modules/manage_network_components_form_common.php:111
#: ../../godmode/agentes/module_manager_editor_common.php:292
#: ../../godmode/massive/massive_edit_modules.php:904
@@ -10593,15 +10740,17 @@ msgstr "Comprobación web"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1720
#: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184
#: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294
-#: ../../include/functions_reporting_html.php:1768
-#: ../../include/ajax/heatmap.ajax.php:193
-#: ../../include/ajax/heatmap.ajax.php:263
-#: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085
-#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600
+#: ../../mobile/operation/server_status.php:174
+#: ../../mobile/operation/server_status.php:175
+#: ../../include/functions_reporting_html.php:1777
+#: ../../include/ajax/heatmap.ajax.php:222
+#: ../../include/ajax/heatmap.ajax.php:305
+#: ../../include/ajax/heatmap.ajax.php:430 ../../include/functions_graph.php:5095
+#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1607
#: ../../include/lib/Dashboard/Widgets/heatmap.php:324
-#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103
-#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:859
-#: ../../operation/agentes/estado_monitores.php:592
+#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103
+#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:858
+#: ../../operation/agentes/estado_monitores.php:590
#: ../../operation/agentes/ver_agente.php:1175
msgid "Module group"
msgstr "Grupo del módulo"
@@ -10621,14 +10770,14 @@ msgstr "Wizard paso a paso"
#: ../../enterprise/godmode/agentes/plugins_manager.php:130
#: ../../enterprise/godmode/policies/policy_plugins.php:126
#: ../../godmode/modules/manage_network_components_form_common.php:53
-#: ../../godmode/users/configure_user.php:1406
-#: ../../godmode/netflow/nf_edit_form.php:251
+#: ../../godmode/users/configure_user.php:1455
+#: ../../godmode/netflow/nf_edit_form.php:296
#: ../../godmode/alerts/alert_commands.php:159
#: ../../godmode/alerts/alert_commands.php:196
#: ../../godmode/alerts/configure_alert_template.php:966
#: ../../godmode/alerts/configure_alert_template.php:1011
#: ../../godmode/alerts/configure_alert_template.php:1169
-#: ../../operation/netflow/nf_live_view.php:563
+#: ../../operation/netflow/nf_live_view.php:636
msgid "Advanced"
msgstr "Avanzado"
@@ -10639,7 +10788,7 @@ msgstr "Haz clic en Crear para continuar"
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380
#: ../../enterprise/meta/monitoring/wizard/wizard.php:150
-#: ../../godmode/reporting/graph_builder.graph_editor.php:423
+#: ../../godmode/reporting/graph_builder.graph_editor.php:438
msgid "Please, select a module"
msgstr "Por favor, selecciona un módulo."
@@ -10649,7 +10798,7 @@ msgstr "Por favor, selecciona un módulo."
#: ../../enterprise/include/class/Omnishell.class.php:975
#: ../../enterprise/include/class/Omnishell.class.php:1056
#: ../../enterprise/include/class/DB2.app.php:862
-#: ../../enterprise/include/class/SAP.app.php:924
+#: ../../enterprise/include/class/SAP.app.php:925
#: ../../enterprise/include/class/Aws.cloud.php:1467
#: ../../enterprise/include/class/MySQL.app.php:938
#: ../../enterprise/include/class/Oracle.app.php:970
@@ -10657,8 +10806,8 @@ msgstr "Por favor, selecciona un módulo."
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:336
#: ../../godmode/alerts/configure_alert_template.php:1216
#: ../../godmode/wizards/HostDevices.class.php:1617
-#: ../../include/class/CustomNetScan.class.php:758
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244
+#: ../../include/class/CustomNetScan.class.php:757
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245
msgid "Finish"
msgstr "Finalizar"
@@ -10693,8 +10842,8 @@ msgstr "Vacío"
#: ../../enterprise/godmode/agentes/collections.data.php:241
#: ../../enterprise/godmode/agentes/collections.data.php:272
#: ../../enterprise/godmode/agentes/collections.data.php:336
-#: ../../include/functions_events.php:3268
-#: ../../include/functions_events.php:3542
+#: ../../include/functions_events.php:3273
+#: ../../include/functions_events.php:3547
msgid "New"
msgstr "Nuevo"
@@ -10714,18 +10863,18 @@ msgid "Please, select an agent"
msgstr "Por favor, selecciona un agente."
#: ../../enterprise/meta/monitoring/wizard/wizard.php:154
-#: ../../enterprise/godmode/policies/policy_modules.php:1764
+#: ../../enterprise/godmode/policies/policy_modules.php:1809
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195
#: ../../enterprise/include/class/CommandCenter.class.php:465
-#: ../../enterprise/operation/log/log_viewer.php:1051
-#: ../../enterprise/operation/log/log_viewer.php:1073
+#: ../../enterprise/operation/log/log_viewer.php:1049
+#: ../../enterprise/operation/log/log_viewer.php:1071
#: ../../enterprise/operation/services/services.treeview_services.php:197
-#: ../../godmode/groups/group_list.php:744
+#: ../../godmode/groups/group_list.php:745
#: ../../godmode/massive/massive_copy_modules.php:235
#: ../../godmode/massive/massive_operations.php:384
#: ../../godmode/massive/massive_add_profiles.php:292
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:602
-#: ../../include/functions_events.php:4282 ../../operation/tree.php:374
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:595
+#: ../../include/functions_events.php:4287 ../../operation/tree.php:376
#: ../../operation/reporting/reporting_viewer.php:340
#: ../../operation/reporting/graph_viewer.php:430
#: ../../general/ui/agents_list.php:146
@@ -10734,10 +10883,10 @@ msgstr "Cargando"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:156
#: ../../enterprise/meta/include/functions_wizard_meta.php:642
-#: ../../godmode/tag/edit_tag.php:212
-#: ../../include/class/TipsWindow.class.php:726
-#: ../../include/class/TipsWindow.class.php:893
-#: ../../include/functions_reporting.php:7470
+#: ../../godmode/tag/edit_tag.php:216
+#: ../../include/class/TipsWindow.class.php:746
+#: ../../include/class/TipsWindow.class.php:913
+#: ../../include/functions_reporting.php:7479
#: ../../include/lib/Dashboard/Widgets/url.php:216
msgid "Url"
msgstr "URL"
@@ -10761,21 +10910,21 @@ msgstr "Ya hay otro agente con ese nombre."
#: ../../enterprise/meta/monitoring/wizard/wizard.php:161
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476
-#: ../../godmode/agentes/module_manager_editor_common.php:673
-#: ../../godmode/agentes/module_manager_editor_common.php:675
+#: ../../godmode/agentes/module_manager_editor_common.php:678
+#: ../../godmode/agentes/module_manager_editor_common.php:680
#, php-format
msgid "Agent interval x %s"
msgstr "Intervalo del agente x %s"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:365
msgid ""
-"This feature will be removed in version 771 and its\n"
+"This feature will be removed in version 773 and its\n"
" functions transferred to different metaconsole tools "
"( bulk operations, agent alert editing, etc).\n"
" The current functions of the wizard is minimal and we do "
"not recommend its use."
msgstr ""
-"Esta característica se eliminará en la versión 771 y sus\n"
+"Esta función se eliminará en la versión 771 y sus\n"
" funciones se transferirán a diferentes herramientas de la "
"Metaconsola (operaciones masivas, edición de alertas de agentes, etc.).\n"
" Las funciones actuales del asistente son mínimas y no "
@@ -10787,9 +10936,10 @@ msgstr "Vista de grupo"
#: ../../enterprise/meta/monitoring/group_view.php:64
#: ../../godmode/groups/group_list.php:324
+#: ../../godmode/users/configure_user.php:61
#: ../../godmode/users/user_management.php:40
#: ../../godmode/massive/massive_edit_users.php:276
-#: ../../operation/users/user_edit.php:471
+#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471
#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176
msgid "Group view"
msgstr "Vista de grupo"
@@ -10836,9 +10986,9 @@ msgid "% Monitors Not init"
msgstr "% módulos no iniciados"
#: ../../enterprise/meta/monitoring/group_view.php:203
-#: ../../godmode/agentes/modificar_agente.php:1016
-#: ../../operation/agentes/estado_agente.php:1309
-#: ../../operation/agentes/group_view.php:600
+#: ../../godmode/agentes/modificar_agente.php:1028
+#: ../../operation/agentes/estado_agente.php:1318
+#: ../../operation/agentes/group_view.php:603
msgid "There are no defined agents"
msgstr "No hay ningún agente definido"
@@ -10853,15 +11003,15 @@ msgstr "Grupo o etiqueta"
#: ../../enterprise/meta/monitoring/group_view.php:232
#: ../../enterprise/operation/services/services.treeview_services.php:291
-#: ../../godmode/groups/group_list.php:1084
-#: ../../include/functions_reporting_html.php:2562
-#: ../../include/functions_reporting_html.php:2572
-#: ../../include/functions_inventory.php:511
-#: ../../include/functions_inventory.php:654
-#: ../../include/functions_alerts.php:3386
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:699
-#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241
-#: ../../operation/agentes/agent_inventory.php:266
+#: ../../godmode/groups/group_list.php:1096
+#: ../../include/functions_reporting_html.php:2583
+#: ../../include/functions_reporting_html.php:2593
+#: ../../include/functions_inventory.php:520
+#: ../../include/functions_inventory.php:663
+#: ../../include/functions_alerts.php:3387
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:692
+#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244
+#: ../../operation/agentes/agent_inventory.php:321
msgid "Total"
msgstr "Total"
@@ -10870,18 +11020,18 @@ msgstr "Total"
#: ../../godmode/alerts/alert_list.list.php:645
#: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324
#: ../../include/functions.php:1284 ../../include/functions_agents.php:2998
-#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417
-#: ../../include/class/AgentsAlerts.class.php:956
-#: ../../include/class/SnmpConsole.class.php:841
-#: ../../include/functions_reporting.php:13143
-#: ../../include/functions_events.php:2942
-#: ../../include/functions_events.php:3142
-#: ../../operation/agentes/group_view.php:252
+#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460
+#: ../../include/class/AgentsAlerts.class.php:957
+#: ../../include/class/SnmpConsole.class.php:843
+#: ../../include/functions_reporting.php:13216
+#: ../../include/functions_events.php:2947
+#: ../../include/functions_events.php:3147
+#: ../../operation/agentes/group_view.php:255
msgid "Alert fired"
msgstr "Alerta disparada"
#: ../../enterprise/meta/monitoring/group_view.php:367
-#: ../../operation/agentes/group_view.php:343
+#: ../../operation/agentes/group_view.php:346
#, php-format
msgid ""
"This %s installation are using the secondary groups feature. For this reason, "
@@ -10893,9 +11043,11 @@ msgstr ""
#: ../../enterprise/meta/monitoring/tactical.php:46
#: ../../enterprise/meta/general/main_header.php:103
#: ../../enterprise/meta/general/main_menu.php:205
+#: ../../godmode/users/configure_user.php:62
#: ../../godmode/users/user_management.php:41
#: ../../godmode/massive/massive_edit_users.php:277
#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97
+#: ../../include/auth/mysql.php:810
#: ../../include/lib/Dashboard/Widgets/tactical.php:176
#: ../../include/lib/Dashboard/Widgets/tactical.php:533
#: ../../operation/users/user_edit.php:472
@@ -10919,14 +11071,14 @@ msgstr "Informe de estado"
#: ../../enterprise/meta/general/main_menu.php:271
#: ../../enterprise/include/class/CommandCenter.class.php:1087
#: ../../enterprise/tools/ipam/ipam_network.php:427
-#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246
+#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245
#: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25
-#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908
-#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219
+#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:952
+#: ../../include/functions.php:4193 ../../include/ajax/events.php:2220
#: ../../include/functions_reports.php:876
#: ../../include/functions_reports.php:880
#: ../../include/functions_reports.php:884 ../../operation/menu.php:518
-#: ../../operation/events/events.php:1613
+#: ../../operation/events/events.php:1667
msgid "Events"
msgstr "Eventos"
@@ -10950,14 +11102,14 @@ msgstr "Ver eventos"
#: ../../enterprise/meta/event/custom_events.php:42
#: ../../godmode/netflow/nf_edit.php:211
-#: ../../godmode/netflow/nf_edit_form.php:69
+#: ../../godmode/netflow/nf_edit_form.php:80
#: ../../godmode/snmpconsole/snmp_filters.php:37
#: ../../godmode/events/event_filter.php:230
#: ../../include/ajax/custom_fields.php:654
msgid "Create filter"
msgstr "Crear filtro"
-#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241
+#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240
#: ../../godmode/events/events.php:83
msgid "Event responses"
msgstr "Respuestas de evento"
@@ -10967,24 +11119,23 @@ msgstr "Respuestas de evento"
#: ../../enterprise/meta/event/custom_events.php:72
#: ../../enterprise/meta/event/custom_events.php:90
#: ../../godmode/agentes/fields_manager.php:59
-#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103
-#: ../../godmode/massive/massive_edit_agents.php:1251
+#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103
+#: ../../godmode/massive/massive_edit_agents.php:1267
#: ../../godmode/reporting/reporting_builder.item_editor.php:76
-#: ../../include/functions_reporting_html.php:1620
-#: ../../include/functions_events.php:4440
+#: ../../include/functions_reporting_html.php:1629
+#: ../../include/functions_events.php:4445
#: ../../operation/agentes/status_monitor.php:64
#: ../../operation/agentes/status_monitor.php:87
-#: ../../operation/agentes/status_monitor.php:293
-#: ../../operation/agentes/status_monitor.php:316
-#: ../../operation/agentes/ver_agente.php:1565
-#: ../../operation/agentes/ver_agente.php:1823
-#: ../../operation/inventory/inventory.php:1009
-#: ../../operation/inventory/inventory.php:1303
+#: ../../operation/agentes/status_monitor.php:292
+#: ../../operation/agentes/status_monitor.php:315
+#: ../../operation/agentes/ver_agente.php:1561
+#: ../../operation/agentes/ver_agente.php:1819
+#: ../../operation/inventory/inventory.php:1255
msgid "Custom fields"
msgstr "Campos personalizados"
#: ../../enterprise/meta/event/custom_events.php:77
-#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790
+#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791
msgid "Responses"
msgstr "Respuestas"
@@ -10999,25 +11150,25 @@ msgid "Fields"
msgstr "Campos"
#: ../../enterprise/meta/event/custom_events.php:173
-#: ../../godmode/agentes/status_monitor_custom_fields.php:168
+#: ../../godmode/agentes/status_monitor_custom_fields.php:188
#: ../../godmode/events/custom_events.php:127
msgid "Fields available"
msgstr "Campos disponibles"
#: ../../enterprise/meta/event/custom_events.php:175
-#: ../../godmode/agentes/status_monitor_custom_fields.php:190
+#: ../../godmode/agentes/status_monitor_custom_fields.php:210
#: ../../godmode/events/custom_events.php:150
msgid "Fields selected"
msgstr "Campos seleccionados"
#: ../../enterprise/meta/event/custom_events.php:185
-#: ../../godmode/agentes/status_monitor_custom_fields.php:175
+#: ../../godmode/agentes/status_monitor_custom_fields.php:195
#: ../../godmode/events/custom_events.php:134
msgid "Add fields to select"
msgstr "Añadir campos para seleccionar"
#: ../../enterprise/meta/event/custom_events.php:195
-#: ../../godmode/agentes/status_monitor_custom_fields.php:184
+#: ../../godmode/agentes/status_monitor_custom_fields.php:204
#: ../../godmode/events/custom_events.php:144
msgid "Delete fields to select"
msgstr "Eliminar campos para seleccionar"
@@ -11028,7 +11179,7 @@ msgid "Show event fields"
msgstr "Mostrar campos de eventos"
#: ../../enterprise/meta/event/custom_events.php:244
-#: ../../godmode/agentes/status_monitor_custom_fields.php:252
+#: ../../godmode/agentes/status_monitor_custom_fields.php:272
#: ../../godmode/events/custom_events.php:232
msgid "There must be at least one custom field. Timestamp will be set by default"
msgstr ""
@@ -11086,9 +11237,9 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007
#: ../../enterprise/include/functions_ipam.php:1665
#: ../../godmode/reporting/reporting_builder.list_items.php:442
-#: ../../godmode/reporting/reporting_builder.list_items.php:738
-#: ../../godmode/reporting/graph_builder.graph_editor.php:217
-#: ../../godmode/reporting/graph_builder.graph_editor.php:354
+#: ../../godmode/reporting/reporting_builder.list_items.php:739
+#: ../../godmode/reporting/graph_builder.graph_editor.php:267
+#: ../../godmode/reporting/graph_builder.graph_editor.php:350
msgid "Sort"
msgstr "Ordenar"
@@ -11179,7 +11330,7 @@ msgstr "Error al duplicar nombre"
#: ../../godmode/users/profile_list.php:61
#: ../../godmode/users/configure_profile.php:54
#: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276
-#: ../../godmode/users/configure_user.php:245
+#: ../../godmode/users/configure_user.php:183
#: ../../operation/users/user_edit_header.php:89
msgid "User management"
msgstr "Gestión de usuarios"
@@ -11189,7 +11340,7 @@ msgstr "Gestión de usuarios"
#: ../../godmode/users/profile_list.php:72
#: ../../godmode/users/configure_profile.php:65
#: ../../godmode/users/user_list.php:262
-#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159
+#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159
msgid "Profile management"
msgstr "Gestionar perfiles"
@@ -11224,11 +11375,10 @@ msgstr "Gestión de usuarios"
#: ../../godmode/groups/tactical.php:179
#: ../../godmode/agentes/agent_manager.php:373
#: ../../godmode/reporting/reporting_builder.item_editor.php:69
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3993
-#: ../../include/functions_reporting_html.php:1592
-#: ../../include/functions_reporting_html.php:1756
-#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999
-#: ../../operation/inventory/inventory.php:1293
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4002
+#: ../../include/functions_reporting_html.php:1601
+#: ../../include/functions_reporting_html.php:1765
+#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245
msgid "Alias"
msgstr "Alias"
@@ -11240,18 +11390,18 @@ msgstr "Alias"
#: ../../enterprise/include/functions_reporting_csv.php:725
#: ../../godmode/agentes/agent_manager.php:401
#: ../../godmode/servers/modificar_server.php:95
-#: ../../include/functions_reporting_html.php:1596
-#: ../../include/functions_reporting_html.php:4139
-#: ../../include/functions_reporting_html.php:4233
-#: ../../include/functions_treeview.php:643
-#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290
+#: ../../include/functions_reporting_html.php:1605
+#: ../../include/functions_reporting_html.php:4167
+#: ../../include/functions_reporting_html.php:4261
+#: ../../include/functions_treeview.php:647
+#: ../../include/functions_events.php:4377 ../../operation/gis_maps/ajax.php:290
msgid "IP Address"
msgstr "Dirección IP"
#: ../../enterprise/meta/include/functions_wizard_meta.php:236
#: ../../enterprise/meta/include/functions_wizard_meta.php:682
#: ../../enterprise/godmode/modules/configure_local_component.php:515
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206
#: ../../enterprise/godmode/setup/setup_log_collector.php:89
#: ../../enterprise/include/functions_metaconsole.php:1339
#: ../../enterprise/include/functions_metaconsole.php:1372
@@ -11260,7 +11410,7 @@ msgstr "Dirección IP"
#: ../../enterprise/include/functions_metaconsole.php:1471
#: ../../enterprise/include/functions_metaconsole.php:1502
#: ../../enterprise/include/functions_metaconsole.php:1535
-#: ../../godmode/agentes/module_manager_editor_web.php:179
+#: ../../godmode/agentes/module_manager_editor_web.php:182
msgid "Check"
msgstr "Comprobar"
@@ -11274,9 +11424,9 @@ msgstr "Comprobar"
#: ../../godmode/alerts/configure_alert_template.php:246
#: ../../godmode/alerts/configure_alert_template.php:250
#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268
-#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740
+#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741
#: ../../include/functions_reports.php:783
-#: ../../include/functions_reporting.php:10176
+#: ../../include/functions_reporting.php:10185
msgid "General"
msgstr "General"
@@ -11302,7 +11452,7 @@ msgstr "Deshacer los cambios"
#: ../../enterprise/meta/include/functions_wizard_meta.php:492
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753
#: ../../godmode/agentes/module_manager_editor_wmi.php:57
-#: ../../godmode/agentes/module_manager_editor_network.php:103
+#: ../../godmode/agentes/module_manager_editor_network.php:104
#: ../../godmode/massive/massive_edit_modules.php:832
msgid "Auto"
msgstr "Automático"
@@ -11310,7 +11460,7 @@ msgstr "Automático"
#: ../../enterprise/meta/include/functions_wizard_meta.php:493
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754
#: ../../godmode/agentes/module_manager_editor_wmi.php:58
-#: ../../godmode/agentes/module_manager_editor_network.php:104
+#: ../../godmode/agentes/module_manager_editor_network.php:105
#: ../../godmode/massive/massive_edit_modules.php:833
msgid "Force primary key"
msgstr "Forzar clave primaria"
@@ -11325,8 +11475,8 @@ msgstr "Forzar clave primaria"
#: ../../enterprise/meta/general/login_page.php:267
#: ../../enterprise/extensions/disabled/check_acls.php:47
#: ../../enterprise/extensions/disabled/check_acls.php:132
-#: ../../enterprise/godmode/setup/setup_auth.php:1130
-#: ../../enterprise/godmode/setup/setup_auth.php:1162
+#: ../../enterprise/godmode/setup/setup_auth.php:1347
+#: ../../enterprise/godmode/setup/setup_auth.php:1379
#: ../../enterprise/godmode/servers/manage_export_form.php:155
#: ../../enterprise/include/functions_tasklist.php:172
#: ../../enterprise/include/class/DB2.app.php:509
@@ -11337,23 +11487,22 @@ msgstr "Forzar clave primaria"
#: ../../godmode/update_manager/update_manager.history.php:43
#: ../../godmode/setup/setup_ehorus.php:97
#: ../../godmode/setup/setup_integria.php:292
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3525
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3534
#: ../../godmode/events/custom_events.php:97
-#: ../../mobile/include/user.class.php:392
-#: ../../mobile/operation/tactical.php:349
-#: ../../include/functions_reporting_html.php:6011
+#: ../../mobile/operation/tactical.php:350
+#: ../../include/functions_reporting_html.php:6045
#: ../../include/functions.php:3109 ../../include/functions_cron.php:498
-#: ../../include/functions_config.php:731 ../../include/functions_config.php:751
+#: ../../include/functions_config.php:743 ../../include/functions_config.php:763
#: ../../include/class/CredentialStore.class.php:817
-#: ../../include/class/CredentialStore.class.php:1300
+#: ../../include/class/CredentialStore.class.php:1301
#: ../../include/class/AuditLog.class.php:110
#: ../../include/class/AuditLog.class.php:240
#: ../../include/functions_events.php:202 ../../include/functions_events.php:253
-#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:857
-#: ../../operation/users/user_edit.php:910
+#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:854
+#: ../../operation/users/user_edit.php:907
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265
-#: ../../general/logon_ok.php:255 ../../general/login_page.php:276
+#: ../../general/logon_ok.php:300 ../../general/login_page.php:276
#: ../../general/login_page.php:335
msgid "User"
msgstr "Usuario"
@@ -11367,8 +11516,8 @@ msgstr "Usuario"
#: ../../enterprise/meta/general/login_page.php:284
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851
#: ../../enterprise/godmode/setup/setup_module_library.php:57
-#: ../../enterprise/godmode/setup/setup_auth.php:1136
-#: ../../enterprise/godmode/setup/setup_auth.php:1168
+#: ../../enterprise/godmode/setup/setup_auth.php:1353
+#: ../../enterprise/godmode/setup/setup_auth.php:1385
#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250
#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59
#: ../../enterprise/godmode/servers/manage_export_form.php:161
@@ -11384,22 +11533,21 @@ msgstr "Usuario"
#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532
#: ../../extensions/api_checker.php:260
#: ../../godmode/modules/manage_network_components_form_wmi.php:49
-#: ../../godmode/users/configure_user.php:1126
+#: ../../godmode/users/configure_user.php:1190
#: ../../godmode/users/user_management.php:280
#: ../../godmode/agentes/module_manager_editor_wmi.php:148
#: ../../godmode/massive/massive_edit_modules.php:923
#: ../../godmode/setup/setup_ehorus.php:104
-#: ../../godmode/setup/setup_integria.php:306
-#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484
-#: ../../include/functions_config.php:735 ../../include/functions_config.php:755
+#: ../../godmode/setup/setup_integria.php:306 ../../include/functions_ui.php:7561
+#: ../../include/functions_config.php:747 ../../include/functions_config.php:767
#: ../../include/class/CredentialStore.class.php:974
#: ../../include/class/CredentialStore.class.php:1024
-#: ../../include/class/CredentialStore.class.php:1301
-#: ../../include/class/CredentialStore.class.php:1324
-#: ../../include/class/CredentialStore.class.php:1346
+#: ../../include/class/CredentialStore.class.php:1302
+#: ../../include/class/CredentialStore.class.php:1328
+#: ../../include/class/CredentialStore.class.php:1352
#: ../../include/class/AgentWizard.class.php:690
-#: ../../operation/users/user_edit.php:863
-#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290
+#: ../../operation/users/user_edit.php:860
+#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290
#: ../../general/login_page.php:351
msgid "Password"
msgstr "Contraseña"
@@ -11413,14 +11561,14 @@ msgid "Response"
msgstr "Respuesta"
#: ../../enterprise/meta/include/functions_wizard_meta.php:593
-#: ../../godmode/agentes/module_manager_editor_web.php:213
+#: ../../godmode/agentes/module_manager_editor_web.php:216
msgid "Check type"
msgstr "Comprueba el tipo"
#: ../../enterprise/meta/include/functions_wizard_meta.php:610
#: ../../enterprise/meta/include/functions_wizard_meta.php:667
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066
-#: ../../enterprise/include/functions_enterprise.php:447
+#: ../../enterprise/include/functions_enterprise.php:457
#: ../../godmode/agentes/module_manager_editor_web.php:92
#: ../../godmode/massive/massive_edit_modules.php:1156
msgid "Web checks"
@@ -11440,47 +11588,47 @@ msgstr "Eliminar comprobación"
#: ../../enterprise/meta/include/functions_wizard_meta.php:674
#: ../../enterprise/godmode/modules/configure_local_component.php:506
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217
-#: ../../godmode/agentes/module_manager_editor_web.php:168
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218
+#: ../../godmode/agentes/module_manager_editor_web.php:171
msgid "Load basic"
msgstr "cargar básicos"
#: ../../enterprise/meta/include/functions_wizard_meta.php:680
-#: ../../godmode/agentes/module_manager_editor_web.php:177
+#: ../../godmode/agentes/module_manager_editor_web.php:180
msgid "Load a basic structure on Web Checks"
msgstr "Cargar una estructura básica en las comprobaciones web"
#: ../../enterprise/meta/include/functions_wizard_meta.php:688
-#: ../../godmode/agentes/module_manager_editor_web.php:188
+#: ../../godmode/agentes/module_manager_editor_web.php:191
msgid "Check the correct structure of the WebCheck"
msgstr "Cargar la estructura correcta de las comprobaciones web"
#: ../../enterprise/meta/include/functions_wizard_meta.php:695
-#: ../../godmode/agentes/module_manager_editor_web.php:267
+#: ../../godmode/agentes/module_manager_editor_web.php:270
msgid "First line must be \"task_begin\""
msgstr "La primera línea tiene que ser \"task_begin\"."
#: ../../enterprise/meta/include/functions_wizard_meta.php:696
-#: ../../godmode/agentes/module_manager_editor_web.php:268
+#: ../../godmode/agentes/module_manager_editor_web.php:271
msgid "Webchecks configuration is empty"
msgstr "La configuración de comprobaciones web está vacía."
#: ../../enterprise/meta/include/functions_wizard_meta.php:697
#: ../../enterprise/meta/include/functions_wizard_meta.php:698
-#: ../../godmode/agentes/module_manager_editor_web.php:269
-#: ../../godmode/agentes/module_manager_editor_web.php:270
+#: ../../godmode/agentes/module_manager_editor_web.php:272
+#: ../../godmode/agentes/module_manager_editor_web.php:273
msgid "Last line must be \"task_end\""
msgstr "La última línea tiene que ser \"task_end\"."
#: ../../enterprise/meta/include/functions_wizard_meta.php:699
#: ../../enterprise/godmode/modules/configure_local_component.php:525
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256
-#: ../../godmode/agentes/module_manager_editor_web.php:271
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257
+#: ../../godmode/agentes/module_manager_editor_web.php:274
msgid "There is a line with a unknown token 'token_fail'."
msgstr "Hay una línea con un token desconocido \"token_fail\"."
#: ../../enterprise/meta/include/functions_wizard_meta.php:700
-#: ../../godmode/agentes/module_manager_editor_web.php:273
+#: ../../godmode/agentes/module_manager_editor_web.php:276
msgid "Web checks are built correctly"
msgstr "Las comprobaciones web se han efectuado correctamente."
@@ -11513,42 +11661,41 @@ msgstr "Las comprobaciones web se han efectuado correctamente."
#: ../../enterprise/operation/agentes/tag_view.php:784
#: ../../enterprise/tools/ipam/ipam_list.php:724
#: ../../godmode/modules/manage_network_components_form_common.php:143
-#: ../../godmode/agentes/status_monitor_custom_fields.php:93
-#: ../../godmode/agentes/status_monitor_custom_fields.php:145
+#: ../../godmode/agentes/status_monitor_custom_fields.php:113
+#: ../../godmode/agentes/status_monitor_custom_fields.php:165
#: ../../godmode/agentes/inventory_manager.php:236
#: ../../godmode/agentes/agent_manager.php:503
-#: ../../godmode/agentes/module_manager_editor_common.php:1067
+#: ../../godmode/agentes/module_manager_editor_common.php:1077
#: ../../godmode/agentes/module_manager.php:637
-#: ../../godmode/massive/massive_edit_agents.php:714
+#: ../../godmode/massive/massive_edit_agents.php:731
#: ../../godmode/massive/massive_edit_modules.php:769
-#: ../../godmode/setup/setup_visuals.php:1919
-#: ../../godmode/setup/setup_visuals.php:2001
+#: ../../godmode/setup/setup_visuals.php:1934
+#: ../../godmode/setup/setup_visuals.php:2016
#: ../../godmode/wizards/HostDevices.class.php:799
#: ../../godmode/wizards/DiscoveryTaskList.class.php:599
-#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659
-#: ../../mobile/operation/modules.php:851
-#: ../../include/functions_reporting_html.php:3712
-#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83
-#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417
+#: ../../mobile/operation/modules.php:668 ../../mobile/operation/modules.php:670
+#: ../../mobile/operation/modules.php:910
+#: ../../include/functions_reporting_html.php:3740
+#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83
+#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494
#: ../../include/class/CustomNetScan.class.php:526
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:376
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:387
#: ../../include/lib/Dashboard/Widgets/single_graph.php:347
#: ../../include/lib/Dashboard/Widgets/top_n.php:236
#: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45
#: ../../operation/search_agents.php:51
-#: ../../operation/agentes/estado_agente.php:1035
-#: ../../operation/agentes/status_monitor.php:1560
-#: ../../operation/agentes/estado_generalagente.php:458
+#: ../../operation/agentes/status_monitor.php:1562
+#: ../../operation/agentes/estado_generalagente.php:429
#: ../../operation/network/network_usage_map.php:114
-#: ../../operation/netflow/nf_live_view.php:389
-#: ../../operation/inventory/inventory.php:1006
-#: ../../operation/inventory/inventory.php:1300
-#: ../../operation/search_modules.php:35
-#: ../../operation/events/sound_events.php:219
+#: ../../operation/netflow/nf_live_view.php:462
+#: ../../operation/inventory/inventory.php:1252
+#: ../../operation/search_modules.php:38
+#: ../../operation/events/sound_events.php:249
msgid "Interval"
msgstr "Intervalo"
@@ -11562,9 +11709,9 @@ msgstr "Intervalo"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868
#: ../../enterprise/include/functions_reporting_csv.php:2791
#: ../../godmode/modules/manage_network_components_form_common.php:323
-#: ../../godmode/agentes/module_manager_editor_common.php:1327
+#: ../../godmode/agentes/module_manager_editor_common.php:1337
#: ../../godmode/massive/massive_edit_modules.php:940
-#: ../../include/functions_reporting_html.php:3713
+#: ../../include/functions_reporting_html.php:3741
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498
msgid "Unit"
msgstr "Unidad"
@@ -11587,7 +11734,7 @@ msgstr "Comunidad SNMP"
#: ../../enterprise/include/class/DeploymentCenter.class.php:1344
#: ../../enterprise/include/class/DeploymentCenter.class.php:1354
#: ../../extensions/api_checker.php:331
-#: ../../godmode/wizards/HostDevices.class.php:1508
+#: ../../godmode/wizards/HostDevices.class.php:1504
msgid "Credentials"
msgstr "Credenciales"
@@ -11612,9 +11759,10 @@ msgstr "Credenciales"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268
#: ../../godmode/alerts/alert_view.php:272
#: ../../godmode/reporting/reporting_builder.item_editor.php:1483
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2574
-#: ../../include/functions_reporting_html.php:5008
-#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1539
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2583
+#: ../../include/functions_reporting_html.php:5036
+#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912
+#: ../../include/functions_reporting.php:1539
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439
@@ -11642,9 +11790,10 @@ msgstr "Mín."
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268
#: ../../godmode/alerts/alert_view.php:272
#: ../../godmode/reporting/reporting_builder.item_editor.php:1485
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2567
-#: ../../include/functions_reporting_html.php:5007
-#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1535
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2576
+#: ../../include/functions_reporting_html.php:5035
+#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912
+#: ../../include/functions_reporting.php:1535
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448
@@ -11674,8 +11823,8 @@ msgstr "Máx."
#: ../../godmode/modules/manage_network_components_form_wizard.php:444
#: ../../godmode/agentes/module_manager_editor_common.php:477
#: ../../godmode/agentes/module_manager_editor_common.php:485
-#: ../../godmode/agentes/module_manager_editor_common.php:560
-#: ../../godmode/agentes/module_manager_editor_common.php:569
+#: ../../godmode/agentes/module_manager_editor_common.php:565
+#: ../../godmode/agentes/module_manager_editor_common.php:574
#: ../../godmode/massive/massive_edit_modules.php:625
#: ../../godmode/massive/massive_edit_modules.php:716
msgid "Inverse interval"
@@ -11684,13 +11833,13 @@ msgstr "Intervalo inverso"
#: ../../enterprise/meta/include/functions_wizard_meta.php:996
#: ../../enterprise/meta/include/functions_wizard_meta.php:1081
#: ../../enterprise/meta/include/functions_wizard_meta.php:1314
-#: ../../include/ajax/module.php:1004
+#: ../../include/ajax/module.php:1027
msgid "Thresholds"
msgstr "Umbrales"
#: ../../enterprise/meta/include/functions_wizard_meta.php:1087
#: ../../enterprise/meta/include/functions_wizard_meta.php:1619
-#: ../../godmode/agentes/module_manager_editor_web.php:238
+#: ../../godmode/agentes/module_manager_editor_web.php:241
msgid "Proxy URL"
msgstr "Proxy URL"
@@ -11715,7 +11864,7 @@ msgid "Alerts in module"
msgstr "Alertas en el módulo"
#: ../../enterprise/meta/include/functions_wizard_meta.php:1376
-#: ../../include/functions_reporting_html.php:5372
+#: ../../include/functions_reporting_html.php:5400
msgid "Alert description"
msgstr "Descripción de la alerta"
@@ -11750,7 +11899,7 @@ msgstr "Error al crear las alertas; operación cancelada"
#: ../../enterprise/meta/include/functions_wizard_meta.php:2064
#: ../../enterprise/meta/include/functions_wizard_meta.php:2159
-#: ../../enterprise/godmode/policies/policy_modules.php:933
+#: ../../enterprise/godmode/policies/policy_modules.php:937
msgid "Successfully added module."
msgstr "Módulo añadido correctamente"
@@ -11826,7 +11975,7 @@ msgstr "Cada día"
#: ../../enterprise/include/ajax/ipam.ajax.php:521
#: ../../enterprise/tools/ipam/ipam_editor.php:364
#: ../../godmode/alerts/alert_templates.php:71
-#: ../../include/functions_config.php:1684
+#: ../../include/functions_config.php:1696
msgid "Days"
msgstr "Días"
@@ -11841,7 +11990,7 @@ msgid "and"
msgstr "y"
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263
#: ../../godmode/snmpconsole/snmp_alert.php:1589
@@ -11867,8 +12016,8 @@ msgstr "Umbral de tiempo"
#: ../../godmode/alerts/alert_list.list.php:733
#: ../../godmode/alerts/alert_templates.php:94
#: ../../include/functions_reporting_html.php:148
-#: ../../include/functions_reporting_html.php:3202
-#: ../../include/functions_reporting_html.php:4013
+#: ../../include/functions_reporting_html.php:3230
+#: ../../include/functions_reporting_html.php:4041
#: ../../include/rest-api/index.php:375
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513
@@ -11894,10 +12043,10 @@ msgstr "De"
#: ../../godmode/alerts/alert_templates.php:96
#: ../../godmode/alerts/alert_list.builder.php:126
#: ../../include/functions_reporting_html.php:149
-#: ../../include/functions_reporting_html.php:3207
+#: ../../include/functions_reporting_html.php:3235
#: ../../include/ajax/alert_list.ajax.php:527
#: ../../include/class/AgentsAlerts.class.php:321
-#: ../../include/functions_reporting.php:14866
+#: ../../include/functions_reporting.php:14939
#: ../../operation/reporting/reporting_viewer.php:272
msgid "to"
msgstr "a"
@@ -11921,9 +12070,9 @@ msgstr "Identificación del evento"
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587
#: ../../include/functions_reporting_html.php:1307
#: ../../include/functions_reporting_html.php:1315
-#: ../../include/functions_reporting_html.php:5304
+#: ../../include/functions_reporting_html.php:5332
#: ../../include/functions_events.php:200 ../../include/functions_events.php:2529
-#: ../../include/functions_events.php:4901
+#: ../../include/functions_events.php:4906
msgid "Event name"
msgstr "Nombre del evento"
@@ -11931,15 +12080,15 @@ msgstr "Nombre del evento"
#: ../../enterprise/include/functions_reporting_csv.php:921
#: ../../enterprise/include/class/Omnishell.class.php:642
#: ../../enterprise/include/functions_ipam.php:2114
-#: ../../godmode/agentes/modificar_agente.php:690
+#: ../../godmode/agentes/modificar_agente.php:700
#: ../../godmode/agentes/agent_manager.php:357
-#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849
-#: ../../include/functions_reporting_html.php:3659
-#: ../../include/functions_treeview.php:607
+#: ../../mobile/operation/modules.php:608 ../../mobile/operation/modules.php:908
+#: ../../include/functions_reporting_html.php:3687
+#: ../../include/functions_treeview.php:611
#: ../../include/class/SatelliteAgent.class.php:513
#: ../../include/lib/Group.php:550 ../../include/functions_events.php:201
#: ../../include/functions_events.php:247 ../../include/functions_events.php:2534
-#: ../../operation/events/events.php:2669
+#: ../../operation/events/events.php:2723
msgid "Agent name"
msgstr "Nombre del agente"
@@ -11954,38 +12103,39 @@ msgstr "Nombre del agente"
#: ../../enterprise/include/class/LogSource.class.php:604
#: ../../enterprise/operation/agentes/tag_view.php:789
#: ../../godmode/update_manager/update_manager.history.php:44
-#: ../../godmode/agentes/status_monitor_custom_fields.php:117
-#: ../../godmode/agentes/status_monitor_custom_fields.php:151
-#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100
-#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852
-#: ../../mobile/operation/events.php:804
+#: ../../godmode/agentes/status_monitor_custom_fields.php:137
+#: ../../godmode/agentes/status_monitor_custom_fields.php:171
+#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100
+#: ../../mobile/operation/modules.php:672 ../../mobile/operation/modules.php:911
+#: ../../mobile/operation/module_data.php:165
+#: ../../mobile/operation/events.php:833
#: ../../include/functions_reporting_html.php:1062
#: ../../include/functions_reporting_html.php:1070
#: ../../include/functions_reporting_html.php:1310
#: ../../include/functions_reporting_html.php:1317
-#: ../../include/functions_reporting_html.php:2646
-#: ../../include/functions_reporting_html.php:5306
+#: ../../include/functions_reporting_html.php:2665
+#: ../../include/functions_reporting_html.php:5334
#: ../../include/ajax/events_extended.php:90
#: ../../include/ajax/custom_fields.php:415
-#: ../../include/functions_inventory.php:143
-#: ../../include/functions_inventory.php:177
-#: ../../include/functions_inventory.php:379
-#: ../../include/functions_inventory.php:399
-#: ../../include/functions_inventory.php:585
+#: ../../include/functions_inventory.php:144
+#: ../../include/functions_inventory.php:178
+#: ../../include/functions_inventory.php:388
+#: ../../include/functions_inventory.php:408
+#: ../../include/functions_inventory.php:594
#: ../../include/functions_netflow.php:278
#: ../../include/class/SnmpConsole.class.php:279
#: ../../include/functions_events.php:205 ../../include/functions_events.php:262
#: ../../include/functions_events.php:2539
-#: ../../include/functions_events.php:4914
+#: ../../include/functions_events.php:4919
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1598
-#: ../../operation/agentes/estado_generalagente.php:751
+#: ../../operation/agentes/status_monitor.php:1600
+#: ../../operation/agentes/estado_generalagente.php:720
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/messages/message_list.php:196
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263
-#: ../../operation/search_modules.php:39
+#: ../../operation/search_modules.php:42
msgid "Timestamp"
msgstr "Marca temporal"
@@ -11995,12 +12145,12 @@ msgstr "Marca temporal"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406
#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127
#: ../../enterprise/include/functions_events.php:60
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3025
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
#: ../../godmode/events/event_filter.php:146
-#: ../../godmode/events/event_edit_filter.php:352
+#: ../../godmode/events/event_edit_filter.php:354
#: ../../include/lib/Dashboard/Widgets/events_list.php:332
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267
-#: ../../include/functions_events.php:206 ../../operation/events/events.php:1749
+#: ../../include/functions_events.php:206 ../../operation/events/events.php:1803
msgid "Event type"
msgstr "Tipo de evento"
@@ -12009,20 +12159,20 @@ msgstr "Tipo de evento"
#: ../../enterprise/include/functions_reporting_csv.php:923
#: ../../enterprise/operation/agentes/tag_view.php:217
#: ../../godmode/modules/manage_network_templates_form.php:231
-#: ../../godmode/modules/manage_network_components.php:774
+#: ../../godmode/modules/manage_network_components.php:777
#: ../../godmode/modules/manage_network_components_form_wizard.php:272
#: ../../godmode/agentes/agent_template.php:274
-#: ../../godmode/agentes/status_monitor_custom_fields.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:143
+#: ../../godmode/agentes/status_monitor_custom_fields.php:105
+#: ../../godmode/agentes/status_monitor_custom_fields.php:163
#: ../../godmode/alerts/alert_list.list.php:104
-#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848
-#: ../../include/ajax/heatmap.ajax.php:239
-#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001
+#: ../../mobile/operation/modules.php:602 ../../mobile/operation/modules.php:604
+#: ../../mobile/operation/modules.php:907 ../../include/ajax/heatmap.ajax.php:281
+#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024
#: ../../include/ajax/custom_fields.php:411
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558
-#: ../../operation/agentes/status_monitor.php:902
-#: ../../operation/agentes/status_monitor.php:1548
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559
+#: ../../operation/agentes/status_monitor.php:901
+#: ../../operation/agentes/status_monitor.php:1550
msgid "Module name"
msgstr "Nombre del módulo"
@@ -12033,14 +12183,14 @@ msgstr "Nombre del módulo"
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:380
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422
#: ../../godmode/alerts/configure_alert_template.php:1602
-#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174
+#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200
#: ../../include/functions_snmp.php:324
#: ../../include/class/SnmpConsole.class.php:280
#: ../../include/class/SnmpConsole.class.php:352
#: ../../include/class/SnmpConsole.class.php:506
#: ../../include/class/SnmpConsole.class.php:507
#: ../../include/functions_events.php:208 ../../include/functions_events.php:271
-#: ../../operation/agentes/estado_monitores.php:517
+#: ../../operation/agentes/estado_monitores.php:514
msgid "Alert"
msgstr "Alerta"
@@ -12051,35 +12201,35 @@ msgstr "Alerta"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867
#: ../../enterprise/include/functions_reporting.php:2020
#: ../../enterprise/include/functions_events.php:70
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3007
#: ../../godmode/events/event_filter.php:148
-#: ../../godmode/events/event_edit_filter.php:372
+#: ../../godmode/events/event_edit_filter.php:374
#: ../../godmode/events/custom_events.php:104
-#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679
-#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982
-#: ../../mobile/operation/events.php:983
+#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708
+#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026
+#: ../../mobile/operation/events.php:1027
#: ../../include/functions_reporting_html.php:1060
#: ../../include/functions_reporting_html.php:1068
#: ../../include/functions_reporting_html.php:1308
#: ../../include/functions_reporting_html.php:1316
-#: ../../include/functions_reporting_html.php:2644
+#: ../../include/functions_reporting_html.php:2663
#: ../../include/functions_snmp.php:335
#: ../../include/class/SnmpConsole.class.php:363
#: ../../include/class/SnmpConsole.class.php:483
#: ../../include/lib/Dashboard/Widgets/events_list.php:404
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396
#: ../../include/functions_events.php:209 ../../include/functions_events.php:274
-#: ../../include/functions_events.php:4982 ../../operation/events/events.php:1850
+#: ../../include/functions_events.php:4987 ../../operation/events/events.php:1904
msgid "Severity"
msgstr "Gravedad"
#: ../../enterprise/meta/include/functions_events_meta.php:102
-#: ../../godmode/events/event_edit_filter.php:829
+#: ../../godmode/events/event_edit_filter.php:831
#: ../../godmode/events/custom_events.php:105
-#: ../../godmode/wizards/HostDevices.class.php:960
+#: ../../godmode/wizards/HostDevices.class.php:956
#: ../../include/class/CustomNetScan.class.php:474
#: ../../include/functions_events.php:210 ../../include/functions_events.php:277
-#: ../../include/functions_events.php:3622 ../../operation/events/events.php:1906
+#: ../../include/functions_events.php:3627 ../../operation/events/events.php:1960
msgid "Comment"
msgstr "Comentar"
@@ -12090,7 +12240,7 @@ msgstr "Comentar"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971
#: ../../enterprise/godmode/setup/setup_auth.php:253
#: ../../enterprise/godmode/setup/setup_auth.php:603
-#: ../../enterprise/godmode/setup/setup_auth.php:1413
+#: ../../enterprise/godmode/setup/setup_auth.php:1630
#: ../../enterprise/include/functions_reporting_csv.php:763
#: ../../enterprise/operation/agentes/tag_view.php:241
#: ../../enterprise/operation/agentes/tag_view.php:781
@@ -12102,27 +12252,27 @@ msgstr "Comentar"
#: ../../godmode/massive/massive_edit_modules.php:491
#: ../../godmode/massive/massive_edit_modules.php:1062
#: ../../godmode/reporting/reporting_builder.item_editor.php:85
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3964
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3973
#: ../../godmode/events/custom_events.php:106
-#: ../../mobile/operation/events.php:845
-#: ../../include/functions_reporting_html.php:1772
-#: ../../include/functions_reporting_html.php:3715
+#: ../../mobile/operation/events.php:874
+#: ../../include/functions_reporting_html.php:1781
+#: ../../include/functions_reporting_html.php:3743
#: ../../include/functions_treeview.php:152
#: ../../include/functions_profile.php:205
#: ../../include/lib/Dashboard/Widgets/events_list.php:461
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:342
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:345
#: ../../include/functions_events.php:211 ../../include/functions_events.php:280
-#: ../../include/functions_events.php:5080 ../../operation/tree.php:67
-#: ../../operation/users/user_edit.php:1000
-#: ../../operation/agentes/status_monitor.php:878
-#: ../../operation/agentes/group_view.php:240
+#: ../../include/functions_events.php:5085 ../../operation/tree.php:67
+#: ../../operation/users/user_edit.php:997
+#: ../../operation/agentes/status_monitor.php:877
+#: ../../operation/agentes/group_view.php:243
#: ../../operation/agentes/alerts_status.functions.php:146
#: ../../general/first_task/tags.php:22
msgid "Tags"
msgstr "Etiquetas"
#: ../../enterprise/meta/include/functions_events_meta.php:114
-#: ../../include/functions_events.php:213 ../../include/functions_events.php:4626
+#: ../../include/functions_events.php:213 ../../include/functions_events.php:4631
msgid "Extra id"
msgstr "ID extra"
@@ -12130,13 +12280,13 @@ msgstr "ID extra"
#: ../../godmode/setup/setup_integria.php:464
#: ../../godmode/setup/setup_integria.php:598
#: ../../godmode/events/custom_events.php:109
-#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214
-#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936
+#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214
+#: ../../include/functions_events.php:289 ../../include/functions_events.php:4941
#: ../../operation/incidents/integriaims_export_csv.php:89
#: ../../operation/incidents/configure_integriaims_incident.php:339
#: ../../operation/incidents/list_integriaims_incidents.php:360
#: ../../operation/incidents/list_integriaims_incidents.php:593
-#: ../../operation/events/events.php:2026
+#: ../../operation/events/events.php:2080
msgid "Owner"
msgstr "Propietario"
@@ -12149,7 +12299,7 @@ msgstr "ACK Marca temporal"
#: ../../enterprise/meta/include/functions_events_meta.php:126
#: ../../godmode/events/custom_events.php:111
#: ../../include/functions_events.php:216 ../../include/functions_events.php:295
-#: ../../include/functions_events.php:4614 ../../operation/events/events.php:3239
+#: ../../include/functions_events.php:4619 ../../operation/events/events.php:3298
msgid "Instructions"
msgstr "Instrucciones"
@@ -12165,11 +12315,11 @@ msgid "Server name"
msgstr "Nombre del servidor"
#: ../../enterprise/meta/include/functions_events_meta.php:138
-#: ../../include/functions_reporting_html.php:5216
+#: ../../include/functions_reporting_html.php:5244
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172
#: ../../include/lib/Dashboard/Widgets/module_status.php:175
#: ../../include/lib/Dashboard/Widgets/module_status.php:610
-#: ../../include/functions_events.php:219 ../../operation/tree.php:315
+#: ../../include/functions_events.php:219 ../../operation/tree.php:317
msgid "Module status"
msgstr "Estado del módulo"
@@ -12213,8 +12363,8 @@ msgstr "Ir a la Wiki de Pandora FMS"
#: ../../enterprise/meta/include/process_reset_pass.php:58
#: ../../enterprise/meta/include/reset_pass.php:58
#: ../../enterprise/godmode/modules/configure_local_component.php:657
-#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624
-#: ../../include/class/ManageNetScanScripts.class.php:698
+#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667
+#: ../../include/class/ManageNetScanScripts.class.php:694
msgid "Help"
msgstr "Ayuda"
@@ -12235,8 +12385,8 @@ msgid "Change password"
msgstr "Cambiar contraseña"
#: ../../enterprise/meta/include/process_reset_pass.php:123
-#: ../../enterprise/meta/index.php:691
-#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856
+#: ../../enterprise/meta/index.php:692
+#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857
msgid "Passwords must be the same"
msgstr "Las contraseñas deben coincidir"
@@ -12261,8 +12411,7 @@ msgstr "METACONSOLA"
#: ../../enterprise/meta/general/login_page.php:316
#: ../../enterprise/include/process_reset_pass.php:239
#: ../../enterprise/include/reset_pass.php:213
-#: ../../enterprise/include/reset_pass.php:320
-#: ../../include/functions_menu.php:955 ../../general/login_page.php:460
+#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460
msgid "Build"
msgstr "Crear"
@@ -12324,7 +12473,7 @@ msgstr "Operaciones de usuario"
#: ../../enterprise/meta/include/functions_agents_meta.php:661
#: ../../enterprise/extensions/disabled/check_acls.php:50
#: ../../enterprise/extensions/disabled/check_acls.php:137
-#: ../../include/functions_menu.php:567
+#: ../../include/functions_menu.php:569
msgid "Agents management"
msgstr "Gestión de agentes"
@@ -12340,7 +12489,7 @@ msgid "No admin user"
msgstr "No hay usuario administrador"
#: ../../enterprise/meta/include/functions_meta.php:71
-#: ../../include/functions_config.php:438
+#: ../../include/functions_config.php:446
msgid "Activate Metaconsole"
msgstr "Activar la Metaconsola"
@@ -12388,26 +12537,26 @@ msgstr "Puerto ElasticSearch"
#: ../../enterprise/meta/include/functions_meta.php:533
#: ../../enterprise/godmode/setup/setup_log_collector.php:64
-#: ../../include/functions_config.php:1625
+#: ../../include/functions_config.php:1637
msgid "Number of logs viewed"
msgstr "Número de logs vistos"
#: ../../enterprise/meta/include/functions_meta.php:554
-#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:559
+#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:567
#: ../../include/class/CredentialStore.class.php:1162
-#: ../../include/class/CredentialStore.class.php:1455
+#: ../../include/class/CredentialStore.class.php:1464
#: ../../include/class/AgentWizard.class.php:925
msgid "Authentication method"
msgstr "Método de autentificación"
#: ../../enterprise/meta/include/functions_meta.php:564
-#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691
+#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703
msgid "Fallback to local authentication"
msgstr "Alternativa si falla la autentificación"
#: ../../enterprise/meta/include/functions_meta.php:574
#: ../../enterprise/meta/include/functions_meta.php:798
-#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563
+#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571
msgid "Autocreate remote users"
msgstr "Crear usuarios remotos automáticamente"
@@ -12415,8 +12564,8 @@ msgstr "Crear usuarios remotos automáticamente"
#: ../../enterprise/godmode/setup/setup_auth.php:55
#: ../../enterprise/godmode/setup/setup_auth.php:325
#: ../../enterprise/godmode/setup/setup_auth.php:457
-#: ../../enterprise/godmode/setup/setup_auth.php:1250
-#: ../../include/functions_config.php:567
+#: ../../enterprise/godmode/setup/setup_auth.php:1467
+#: ../../include/functions_config.php:575
msgid "Autocreate profile"
msgstr "Crear el perfil automáticamente"
@@ -12424,8 +12573,8 @@ msgstr "Crear el perfil automáticamente"
#: ../../enterprise/godmode/setup/setup_auth.php:61
#: ../../enterprise/godmode/setup/setup_auth.php:331
#: ../../enterprise/godmode/setup/setup_auth.php:463
-#: ../../enterprise/godmode/setup/setup_auth.php:1256
-#: ../../include/functions_config.php:571
+#: ../../enterprise/godmode/setup/setup_auth.php:1473
+#: ../../include/functions_config.php:579
msgid "Autocreate profile group"
msgstr "Crear perfil de grupo automáticamente"
@@ -12433,29 +12582,29 @@ msgstr "Crear perfil de grupo automáticamente"
#: ../../enterprise/godmode/setup/setup_auth.php:68
#: ../../enterprise/godmode/setup/setup_auth.php:340
#: ../../enterprise/godmode/setup/setup_auth.php:472
-#: ../../enterprise/godmode/setup/setup_auth.php:1280
-#: ../../include/functions_config.php:575
+#: ../../enterprise/godmode/setup/setup_auth.php:1497
+#: ../../include/functions_config.php:583
msgid "Autocreate profile tags"
msgstr "Crear etiquetas de perfil automáticamente"
#: ../../enterprise/meta/include/functions_meta.php:614
#: ../../enterprise/godmode/setup/setup_auth.php:346
-#: ../../include/functions_config.php:579
+#: ../../include/functions_config.php:587
msgid "Automatically assigned no hierarchy"
msgstr "Jerarquía no asignada automáticamente"
#: ../../enterprise/meta/include/functions_meta.php:624
-#: ../../enterprise/godmode/setup/setup_auth.php:662
-#: ../../enterprise/godmode/setup/setup_auth.php:1477
-#: ../../include/functions_config.php:587
+#: ../../enterprise/godmode/setup/setup_auth.php:668
+#: ../../enterprise/godmode/setup/setup_auth.php:1694
+#: ../../include/functions_config.php:595
msgid "Autocreate blacklist"
msgstr "Crear una lista negra automáticamente"
#: ../../enterprise/meta/include/functions_meta.php:634
#: ../../enterprise/meta/include/functions_meta.php:941
-#: ../../godmode/users/configure_user.php:1493
-#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:799
-#: ../../operation/users/user_edit.php:544
+#: ../../godmode/users/configure_user.php:1546
+#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:811
+#: ../../operation/users/user_edit.php:537
msgid "Double authentication"
msgstr "Doble autentificación"
@@ -12465,7 +12614,7 @@ msgstr "2FA_all_users"
#: ../../enterprise/meta/include/functions_meta.php:656
#: ../../enterprise/meta/include/functions_meta.php:954
-#: ../../include/functions_config.php:807 ../../include/functions_config.php:813
+#: ../../include/functions_config.php:819 ../../include/functions_config.php:825
msgid "Session timeout"
msgstr "Sesión expirada"
@@ -12473,7 +12622,7 @@ msgstr "Sesión expirada"
#: ../../enterprise/meta/include/functions_meta.php:1148
#: ../../enterprise/godmode/setup/setup_auth.php:82
#: ../../enterprise/godmode/setup/setup_auth.php:441
-#: ../../include/functions_config.php:704 ../../include/functions_config.php:820
+#: ../../include/functions_config.php:716 ../../include/functions_config.php:832
msgid "Save Password"
msgstr "Guardar contraseña"
@@ -12482,58 +12631,58 @@ msgid "Timezone visual"
msgstr "Visualización de zona horaria"
#: ../../enterprise/meta/include/functions_meta.php:692
-#: ../../enterprise/godmode/setup/setup_auth.php:670
-#: ../../enterprise/godmode/setup/setup_auth.php:1485
-#: ../../include/functions_config.php:591
+#: ../../enterprise/godmode/setup/setup_auth.php:676
+#: ../../enterprise/godmode/setup/setup_auth.php:1702
+#: ../../include/functions_config.php:599
msgid "Active directory server"
msgstr "Servidor de directorio activo"
#: ../../enterprise/meta/include/functions_meta.php:702
-#: ../../enterprise/godmode/setup/setup_auth.php:676
-#: ../../enterprise/godmode/setup/setup_auth.php:1502
-#: ../../include/functions_config.php:595
+#: ../../enterprise/godmode/setup/setup_auth.php:682
+#: ../../enterprise/godmode/setup/setup_auth.php:1719
+#: ../../include/functions_config.php:603
msgid "Active directory port"
msgstr "Puerto del directorio activo"
#: ../../enterprise/meta/include/functions_meta.php:712
#: ../../enterprise/meta/include/functions_meta.php:996
-#: ../../enterprise/godmode/setup/setup_auth.php:682
-#: ../../enterprise/godmode/setup/setup_auth.php:1519
-#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:599
-#: ../../include/functions_config.php:635
+#: ../../enterprise/godmode/setup/setup_auth.php:688
+#: ../../enterprise/godmode/setup/setup_auth.php:1736
+#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:607
+#: ../../include/functions_config.php:647
msgid "Start TLS"
msgstr "Start TLS"
#: ../../enterprise/meta/include/functions_meta.php:722
#: ../../enterprise/godmode/setup/setup_auth.php:446
-#: ../../enterprise/godmode/setup/setup_auth.php:1239
-#: ../../include/functions_config.php:603
+#: ../../enterprise/godmode/setup/setup_auth.php:1456
+#: ../../include/functions_config.php:615
msgid "Advanced Config AD"
msgstr "Configuración avanzada AD"
#: ../../enterprise/meta/include/functions_meta.php:732
-#: ../../enterprise/godmode/setup/setup_auth.php:688
-#: ../../enterprise/godmode/setup/setup_auth.php:1525
-#: ../../include/functions_config.php:611
+#: ../../enterprise/godmode/setup/setup_auth.php:694
+#: ../../enterprise/godmode/setup/setup_auth.php:1742
+#: ../../include/functions_config.php:623
msgid "Domain"
msgstr "Dominio"
#: ../../enterprise/meta/include/functions_meta.php:742
#: ../../enterprise/godmode/setup/setup_auth.php:506
-#: ../../enterprise/godmode/setup/setup_auth.php:1314
-#: ../../include/functions_config.php:615
+#: ../../enterprise/godmode/setup/setup_auth.php:1531
+#: ../../include/functions_config.php:627
msgid "Advanced Permisions AD"
msgstr "Permisos avanzados de AD"
#: ../../enterprise/meta/include/functions_meta.php:752
#: ../../enterprise/godmode/setup/setup_auth.php:151
-#: ../../include/functions_config.php:619
+#: ../../include/functions_config.php:631
msgid "Advanced Permissions LDAP"
msgstr "Permisos LDAP avanzados"
#: ../../enterprise/meta/include/functions_meta.php:762
#: ../../enterprise/godmode/setup/setup_auth.php:128
-#: ../../include/functions_config.php:607
+#: ../../include/functions_config.php:619
msgid "Advanced Config LDAP"
msgstr "Configuración LDAP avanzada"
@@ -12541,47 +12690,47 @@ msgstr "Configuración LDAP avanzada"
#: ../../enterprise/meta/include/functions_meta.php:784
#: ../../enterprise/godmode/setup/setup_auth.php:430
#: ../../enterprise/godmode/setup/setup_auth.php:478
-#: ../../enterprise/godmode/setup/setup_auth.php:1286
+#: ../../enterprise/godmode/setup/setup_auth.php:1503
msgid "Auto enable node access"
msgstr "Auto-habilitar acceso al nodo"
#: ../../enterprise/meta/include/functions_meta.php:811
-#: ../../include/functions_config.php:759
+#: ../../include/functions_config.php:771
msgid "Saml path"
msgstr "Ruta de SAML"
#: ../../enterprise/meta/include/functions_meta.php:824
-#: ../../include/functions_config.php:763
+#: ../../include/functions_config.php:775
msgid "Saml source"
msgstr "Saml origen"
#: ../../enterprise/meta/include/functions_meta.php:837
-#: ../../include/functions_config.php:767
+#: ../../include/functions_config.php:779
msgid "Saml user id parameter"
msgstr "Parámetro de ID de usuario saml"
#: ../../enterprise/meta/include/functions_meta.php:850
-#: ../../include/functions_config.php:771
+#: ../../include/functions_config.php:783
msgid "Saml mail parameter"
msgstr "Parámetro de correo de saml"
#: ../../enterprise/meta/include/functions_meta.php:863
-#: ../../include/functions_config.php:775
+#: ../../include/functions_config.php:787
msgid "Saml group name parameter"
msgstr "Parámetro de nombre de grupo saml"
#: ../../enterprise/meta/include/functions_meta.php:876
-#: ../../include/functions_config.php:779
+#: ../../include/functions_config.php:791
msgid "Saml attr type parameter"
msgstr "Parámetro de tipo de attr saml"
#: ../../enterprise/meta/include/functions_meta.php:889
-#: ../../include/functions_config.php:783
+#: ../../include/functions_config.php:795
msgid "Saml profiles and tags parameter"
msgstr "Parámetro de perfiles y etiquetas saml"
#: ../../enterprise/meta/include/functions_meta.php:902
-#: ../../include/functions_config.php:795
+#: ../../include/functions_config.php:807
msgid "Saml profile and tag separator"
msgstr "Separador de perfil y etiqueta saml"
@@ -12590,42 +12739,42 @@ msgid "SAML profile parameters"
msgstr "Parámetros de perfil SAML"
#: ../../enterprise/meta/include/functions_meta.php:928
-#: ../../include/functions_config.php:791
+#: ../../include/functions_config.php:803
msgid "Saml tag parameter"
msgstr "Parámetro de etiqueta saml"
#: ../../enterprise/meta/include/functions_meta.php:966
-#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623
+#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635
msgid "LDAP server"
msgstr "Servidor LDAP"
#: ../../enterprise/meta/include/functions_meta.php:976
-#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:627
+#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:639
msgid "LDAP port"
msgstr "Puerto LDAP"
#: ../../enterprise/meta/include/functions_meta.php:986
-#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:631
+#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:643
msgid "LDAP version"
msgstr "Versión LDAP"
#: ../../enterprise/meta/include/functions_meta.php:1006
-#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:639
+#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:651
msgid "Base DN"
msgstr "DN base"
#: ../../enterprise/meta/include/functions_meta.php:1016
-#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:643
+#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:655
msgid "Login attribute"
msgstr "Atributo de acceso"
#: ../../enterprise/meta/include/functions_meta.php:1026
-#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:647
+#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:659
msgid "Admin LDAP login"
msgstr "Inicio de sesión de administrador LDAP"
#: ../../enterprise/meta/include/functions_meta.php:1036
-#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:651
+#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:663
msgid "Admin LDAP password"
msgstr "Contraseña de administrador LDAP"
@@ -12635,22 +12784,22 @@ msgid "Ldap search timeout (secs)"
msgstr "Tiempo de espera de búsqueda LDAP (segundos)"
#: ../../enterprise/meta/include/functions_meta.php:1056
-#: ../../include/functions_config.php:715
+#: ../../include/functions_config.php:727
msgid "LDAP secondary enabled"
msgstr "LDAP secundario habilitado"
#: ../../enterprise/meta/include/functions_meta.php:1065
-#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:659
+#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:671
msgid "Secondary LDAP server"
msgstr "Servidor LDAP secundario"
#: ../../enterprise/meta/include/functions_meta.php:1075
-#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:663
+#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:675
msgid "Secondary LDAP port"
msgstr "Puerto LDAP secundario"
#: ../../enterprise/meta/include/functions_meta.php:1085
-#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:667
+#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:679
msgid "Secondary LDAP version"
msgstr "Versión LDAP secundaria"
@@ -12660,39 +12809,39 @@ msgid "Secondary start TLS"
msgstr "TLS de inicio secundario"
#: ../../enterprise/meta/include/functions_meta.php:1105
-#: ../../include/functions_config.php:675
+#: ../../include/functions_config.php:687
msgid "Secondary base DN"
msgstr "Base secundaria DN"
#: ../../enterprise/meta/include/functions_meta.php:1115
-#: ../../include/functions_config.php:679
+#: ../../include/functions_config.php:691
msgid "Secondary login attribute"
msgstr "Atributo de inicio de sesión secundario"
#: ../../enterprise/meta/include/functions_meta.php:1125
-#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:683
+#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:695
msgid "Admin secondary LDAP login"
msgstr "Inicio de sesión LDAP secundario del administrador"
#: ../../enterprise/meta/include/functions_meta.php:1135
-#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:687
+#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:699
msgid "Admin secondary LDAP password"
msgstr "Contraseña LDAP secundaria del administrador"
#: ../../enterprise/meta/include/functions_meta.php:1168
#: ../../enterprise/godmode/setup/setup_auth.php:112
-#: ../../include/functions_config.php:695
+#: ../../include/functions_config.php:707
msgid "Login user attribute"
msgstr "Identificar atributo de usuario"
#: ../../enterprise/meta/include/functions_meta.php:1178
-#: ../../include/functions_config.php:711
+#: ../../include/functions_config.php:723
msgid "Save profile"
msgstr "Guardar perfil"
#: ../../enterprise/meta/include/functions_meta.php:1189
#: ../../enterprise/godmode/setup/setup_auth.php:94
-#: ../../include/functions_config.php:699
+#: ../../include/functions_config.php:711
msgid "LDAP function"
msgstr "Función LDAP"
@@ -12704,9 +12853,9 @@ msgstr "Host %s"
#: ../../enterprise/meta/include/functions_meta.php:1211
#: ../../enterprise/meta/include/functions_meta.php:1265
#: ../../enterprise/meta/include/functions_meta.php:1319
-#: ../../enterprise/godmode/setup/setup_auth.php:1118
-#: ../../enterprise/godmode/setup/setup_auth.php:1150
-#: ../../include/functions_config.php:723 ../../include/functions_config.php:743
+#: ../../enterprise/godmode/setup/setup_auth.php:1335
+#: ../../enterprise/godmode/setup/setup_auth.php:1367
+#: ../../include/functions_config.php:735 ../../include/functions_config.php:755
msgid "MySQL port"
msgstr "Puerto de MySQL"
@@ -12715,10 +12864,10 @@ msgstr "Puerto de MySQL"
#: ../../enterprise/meta/include/functions_meta.php:1329
#: ../../enterprise/meta/include/functions_meta.php:2167
#: ../../enterprise/godmode/setup/setup_history.php:210
-#: ../../enterprise/godmode/setup/setup_auth.php:1124
-#: ../../enterprise/godmode/setup/setup_auth.php:1156
-#: ../../include/functions_config.php:727 ../../include/functions_config.php:747
-#: ../../include/functions_config.php:1655
+#: ../../enterprise/godmode/setup/setup_auth.php:1341
+#: ../../enterprise/godmode/setup/setup_auth.php:1373
+#: ../../include/functions_config.php:739 ../../include/functions_config.php:759
+#: ../../include/functions_config.php:1667
msgid "Database name"
msgstr "Nombre de la base de datos"
@@ -12727,13 +12876,13 @@ msgid "Babel Enterprise host"
msgstr "Servidor de Babel Enterprise"
#: ../../enterprise/meta/include/functions_meta.php:1309
-#: ../../enterprise/godmode/setup/setup_auth.php:1144
-#: ../../include/functions_config.php:739
+#: ../../enterprise/godmode/setup/setup_auth.php:1361
+#: ../../include/functions_config.php:751
msgid "Integria host"
msgstr "Servidor de Integria IMS"
#: ../../enterprise/meta/include/functions_meta.php:1374
-#: ../../include/functions_config.php:981
+#: ../../include/functions_config.php:993
msgid "Timestamp or time comparation"
msgstr "Marca o comparación temporal"
@@ -12750,7 +12899,7 @@ msgid "Graph color (max)"
msgstr "Color del gráfico (máx.)"
#: ../../enterprise/meta/include/functions_meta.php:1439
-#: ../../include/functions_config.php:1029
+#: ../../include/functions_config.php:1041
msgid "Data precision for reports"
msgstr "Precisión de los datos en los informes"
@@ -12767,8 +12916,8 @@ msgid "type mode zoom charts"
msgstr "zoom de gráfica"
#: ../../enterprise/meta/include/functions_meta.php:1604
-#: ../../include/functions_config.php:1270
-#: ../../include/functions_config.php:1274
+#: ../../include/functions_config.php:1286
+#: ../../include/functions_config.php:1290
msgid "Random background"
msgstr "Fondo aleatorio"
@@ -12777,7 +12926,7 @@ msgid "Type of charts"
msgstr "Tipo de gráficos"
#: ../../enterprise/meta/include/functions_meta.php:1664
-#: ../../include/functions_config.php:1078
+#: ../../include/functions_config.php:1090
msgid "Custom logo collapsed"
msgstr "Icono menú reducido"
@@ -12786,32 +12935,32 @@ msgid "Custom logo (white background)"
msgstr "Logo personalizado (fondo blanco)"
#: ../../enterprise/meta/include/functions_meta.php:1694
-#: ../../include/functions_config.php:1086
+#: ../../include/functions_config.php:1098
msgid "Custom logo login"
msgstr "Logo personalizado en la pantalla de bienvenida"
#: ../../enterprise/meta/include/functions_meta.php:1704
-#: ../../include/functions_config.php:1090
+#: ../../include/functions_config.php:1102
msgid "Custom splash login"
msgstr "Login de Splash personalizado"
#: ../../enterprise/meta/include/functions_meta.php:1734
-#: ../../include/functions_config.php:1126
+#: ../../include/functions_config.php:1138
msgid "Custom title1 login"
msgstr "Título1 conexión personalizado"
#: ../../enterprise/meta/include/functions_meta.php:1744
-#: ../../include/functions_config.php:1130
+#: ../../include/functions_config.php:1142
msgid "Custom title2 login"
msgstr "Título2 conexión personalizado"
#: ../../enterprise/meta/include/functions_meta.php:1754
-#: ../../include/functions_config.php:1118
+#: ../../include/functions_config.php:1130
msgid "Meta custom title header"
msgstr "Encabezado de título personalizado"
#: ../../enterprise/meta/include/functions_meta.php:1764
-#: ../../include/functions_config.php:1122
+#: ../../include/functions_config.php:1134
msgid "Meta custom subtitle header"
msgstr "Encabezado de subtítulos meta personalizado"
@@ -12828,42 +12977,42 @@ msgid "Custom copyright notice"
msgstr "Aviso de copyright personalizado"
#: ../../enterprise/meta/include/functions_meta.php:1863
-#: ../../include/functions_config.php:1062
+#: ../../include/functions_config.php:1074
msgid "Font path"
msgstr "Ruta de la tipografía"
#: ../../enterprise/meta/include/functions_meta.php:1873
-#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1532
msgid "Use data multiplier"
msgstr "Usar multiplicador de datos"
#: ../../enterprise/meta/include/functions_meta.php:1885
-#: ../../include/functions_config.php:1472
+#: ../../include/functions_config.php:1488
msgid "Custom report info"
msgstr "Información del informe personalizado"
#: ../../enterprise/meta/include/functions_meta.php:1895
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122
-#: ../../include/functions_config.php:1488
+#: ../../include/functions_config.php:1504
msgid "Font family"
msgstr "Tipo de letra"
#: ../../enterprise/meta/include/functions_meta.php:1935
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157
-#: ../../godmode/setup/setup_visuals.php:1582
-#: ../../include/functions_config.php:1504
+#: ../../godmode/setup/setup_visuals.php:1597
+#: ../../include/functions_config.php:1520
msgid "Footer"
msgstr "Pie de página"
#: ../../enterprise/meta/include/functions_meta.php:1970
-#: ../../include/functions_config.php:1194
+#: ../../include/functions_config.php:1206
msgid "Use the legacy Visual Console"
msgstr "Usar la consola visual heredada"
#: ../../enterprise/meta/include/functions_meta.php:1981
-#: ../../include/functions_config.php:1198
+#: ../../include/functions_config.php:1210
msgid "Default expiration of the Visual Console item's cache"
msgstr "Caducidad del caché de los elementos de la consola visual por defecto"
@@ -12872,7 +13021,7 @@ msgid "Realtime stats"
msgstr "Estadísticas en tiempo real"
#: ../../enterprise/meta/include/functions_meta.php:2050
-#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:894
+#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:906
msgid "Use agent access graph"
msgstr "Usar la gráfica de acceso del agente"
@@ -12893,35 +13042,35 @@ msgid "Node address default"
msgstr "Dirección del nodo por defecto"
#: ../../enterprise/meta/include/functions_meta.php:2153
-#: ../../include/functions_config.php:1642
+#: ../../include/functions_config.php:1654
msgid "Active and historical database cannot be the same."
msgstr "La base de datos activa y la histórica no pueden ser la misma."
#: ../../enterprise/meta/include/functions_meta.php:2157
#: ../../enterprise/godmode/setup/setup_history.php:178
-#: ../../include/functions_config.php:1647
+#: ../../include/functions_config.php:1659
msgid "Host"
msgstr "Host"
#: ../../enterprise/meta/include/functions_meta.php:2173
-#: ../../include/functions_config.php:1660
+#: ../../include/functions_config.php:1672
msgid "Enable history database"
msgstr "Activar base de datos histórica"
#: ../../enterprise/meta/include/functions_meta.php:2178
-#: ../../include/functions_config.php:1664
+#: ../../include/functions_config.php:1676
msgid "Enable history event"
msgstr "Activar histórico de eventos"
#: ../../enterprise/meta/include/functions_meta.php:2183
#: ../../enterprise/godmode/setup/setup_history.php:226
-#: ../../include/functions_config.php:1672
+#: ../../include/functions_config.php:1684
msgid "Database user"
msgstr "Usuario de la base de datos"
#: ../../enterprise/meta/include/functions_meta.php:2188
#: ../../enterprise/godmode/setup/setup_history.php:242
-#: ../../include/functions_config.php:1676
+#: ../../include/functions_config.php:1688
msgid "Database password"
msgstr "Contraseña de la base de datos"
@@ -12934,45 +13083,45 @@ msgid "Database advanced"
msgstr "Base de datos avanzada"
#: ../../enterprise/meta/include/functions_meta.php:2231
-#: ../../include/functions_config.php:1705
+#: ../../include/functions_config.php:1717
msgid "Event Days"
msgstr "Eventos en día"
#: ../../enterprise/meta/include/functions_meta.php:2249
#: ../../enterprise/godmode/servers/new_HA_cluster.php:143
-#: ../../include/functions_config.php:1737
+#: ../../include/functions_config.php:1749
msgid "Delay"
msgstr "Retraso"
#: ../../enterprise/meta/include/functions_meta.php:2282
-#: ../../include/functions_config.php:1769
+#: ../../include/functions_config.php:1781
msgid "Historical database purge"
msgstr "Purga de la base de datos histórica"
#: ../../enterprise/meta/include/functions_meta.php:2291
-#: ../../include/functions_config.php:1777
+#: ../../include/functions_config.php:1789
msgid "Historical database partitions"
msgstr "Particiones de base de datos histórica"
#: ../../enterprise/meta/include/functions_meta.php:2300
-#: ../../include/functions_config.php:1785
+#: ../../include/functions_config.php:1797
msgid "Historical database events purge"
msgstr "Purga de eventod de base de datos histórica"
#: ../../enterprise/meta/include/functions_meta.php:2309
-#: ../../include/functions_config.php:1801
+#: ../../include/functions_config.php:1813
msgid "Historical database string purge"
msgstr "Purga de cadenas de base de datos histórica"
#: ../../enterprise/meta/include/functions_meta.php:2524
#: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323
-#: ../../godmode/menu.php:478
+#: ../../godmode/menu.php:476
msgid "DB interface"
msgstr "Interfaz de la BD"
#: ../../enterprise/meta/include/functions_meta.php:2598
#: ../../enterprise/include/functions_policies.php:935
-#: ../../include/functions_reporting.php:7569
+#: ../../include/functions_reporting.php:7578
#, php-format
msgid "Failed to connect to node %s"
msgstr "Error al conectarse al %s de nodo"
@@ -12986,7 +13135,6 @@ msgstr "Grupos de componentes"
#: ../../enterprise/meta/include/functions_components_meta.php:88
#: ../../enterprise/meta/include/functions_components_meta.php:139
#: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175
-#: ../../godmode/menu.php:181
msgid "Local components"
msgstr "Componentes locales"
@@ -13009,13 +13157,13 @@ msgstr "Gestión de plugins"
#: ../../godmode/modules/manage_inventory_modules.php:45
#: ../../godmode/modules/manage_inventory_modules.php:58
#: ../../godmode/modules/manage_inventory_modules_form.php:49
-#: ../../godmode/menu.php:187
+#: ../../godmode/menu.php:186
msgid "Inventory modules"
msgstr "Módulos de inventario"
#: ../../enterprise/meta/include/functions_components_meta.php:124
#: ../../enterprise/meta/include/functions_components_meta.php:164
-#: ../../godmode/servers/plugin_registration.php:109
+#: ../../godmode/servers/plugin_registration.php:105
#: ../../godmode/servers/plugin.php:346
msgid "Plugin registration"
msgstr "Registro de plugins"
@@ -13050,32 +13198,32 @@ msgstr "%s - Flexible Monitoring System"
#: ../../enterprise/godmode/setup/setup.php:602
#: ../../enterprise/include/class/CommandCenter.class.php:475
#: ../../enterprise/include/functions_login.php:165
-#: ../../enterprise/include/functions_login.php:580
+#: ../../enterprise/include/functions_login.php:584
#: ../../enterprise/include/lib/Metaconsole/Node.php:541
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151
-#: ../../godmode/users/configure_user.php:2067
-#: ../../godmode/users/configure_user.php:2136
+#: ../../godmode/users/configure_user.php:2119
+#: ../../godmode/users/configure_user.php:2188
#: ../../godmode/massive/massive_edit_plugins.php:856
#: ../../godmode/massive/massive_edit_plugins.php:857
#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292
#: ../../include/ajax/double_auth.ajax.php:270
#: ../../include/ajax/double_auth.ajax.php:368
#: ../../include/ajax/double_auth.ajax.php:414
-#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2273
-#: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306
+#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2274
+#: ../../include/functions_menu.php:897 ../../include/functions_ui.php:306
#: ../../include/class/SatelliteAgent.class.php:831
-#: ../../include/class/Diagnostics.class.php:1855
-#: ../../include/functions_events.php:2966
-#: ../../include/functions_events.php:3166 ../../index.php:1555
-#: ../../operation/users/user_edit.php:1241
-#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168
+#: ../../include/class/Diagnostics.class.php:1859
+#: ../../include/functions_events.php:2971
+#: ../../include/functions_events.php:3171 ../../index.php:1557
+#: ../../operation/users/user_edit.php:1238
+#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168
#: ../../general/mysqlerr.php:28 ../../general/login_page.php:566
msgid "Error"
msgstr "Error"
#: ../../enterprise/meta/include/functions_alerts_meta.php:137
#: ../../enterprise/meta/include/functions_alerts_meta.php:168
-#: ../../godmode/menu.php:282
+#: ../../godmode/menu.php:280
msgid "Commands"
msgstr "Comandos"
@@ -13093,8 +13241,8 @@ msgid "User to reset password"
msgstr "Usuario de la contraseña a resetear"
#: ../../enterprise/meta/include/reset_pass.php:103
-#: ../../enterprise/meta/index.php:757
-#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928
+#: ../../enterprise/meta/index.php:758
+#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929
msgid "Reset password"
msgstr "Restablecer la contraseña"
@@ -13104,8 +13252,8 @@ msgstr "Restablecer la contraseña"
#: ../../enterprise/include/process_reset_pass.php:174
#: ../../enterprise/include/reset_pass.php:295
#: ../../enterprise/include/reset_pass.php:298
-#: ../../include/functions_config.php:2678
-#: ../../include/functions_config.php:2730 ../../general/login_page.php:527
+#: ../../include/functions_config.php:2698
+#: ../../include/functions_config.php:2750 ../../general/login_page.php:527
#: ../../general/login_page.php:530
msgid "ONE TOOL TO RULE THEM ALL"
msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS"
@@ -13113,7 +13261,7 @@ msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS"
#: ../../enterprise/meta/include/reset_pass.php:147
#: ../../enterprise/meta/general/login_page.php:335
#: ../../enterprise/include/reset_pass.php:285
-#: ../../include/functions_config.php:2734
+#: ../../include/functions_config.php:2754
msgid "COMMAND CENTER"
msgstr "CENTRO DE COMANDO"
@@ -13194,21 +13342,19 @@ msgstr "Error al eliminar la relación"
msgid "Relation deleted successfully"
msgstr "Relación eliminada con éxito"
-#: ../../enterprise/meta/index.php:221 ../../index.php:1492
+#: ../../enterprise/meta/index.php:221 ../../index.php:1494
#: ../../operation/visual_console/legacy_public_view.php:57
#: ../../operation/visual_console/public_view.php:38
#: ../../operation/agentes/stat_win.php:92
#: ../../operation/gis_maps/public_console.php:277
-#: ../../operation/events/sound_events.php:168
msgid "Connection with server has been lost"
msgstr "Se ha perdido la conexión con el servidor"
-#: ../../enterprise/meta/index.php:222 ../../index.php:1493
+#: ../../enterprise/meta/index.php:222 ../../index.php:1495
#: ../../operation/visual_console/legacy_public_view.php:58
#: ../../operation/visual_console/public_view.php:39
#: ../../operation/agentes/stat_win.php:93
#: ../../operation/gis_maps/public_console.php:278
-#: ../../operation/events/sound_events.php:169
msgid ""
"Connection to the server has been lost. Please check your internet connection "
"or contact with administrator."
@@ -13234,55 +13380,55 @@ msgstr "Inicio de sesión caducado"
msgid "Login error"
msgstr "Error de conexión"
-#: ../../enterprise/meta/index.php:682 ../../index.php:845
+#: ../../enterprise/meta/index.php:683 ../../index.php:846
msgid "Password changed successfully"
msgstr "Contraseña modificada correctamente"
-#: ../../enterprise/meta/index.php:688 ../../index.php:851
+#: ../../enterprise/meta/index.php:689 ../../index.php:852
msgid "Failed to change password"
msgstr "No se pudo modificar la contraseña"
-#: ../../enterprise/meta/index.php:702 ../../index.php:868
+#: ../../enterprise/meta/index.php:703 ../../index.php:869
msgid "Too much time since password change request"
msgstr "Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña"
-#: ../../enterprise/meta/index.php:709 ../../index.php:875
+#: ../../enterprise/meta/index.php:710 ../../index.php:876
msgid "This user has not requested a password change"
msgstr "Este usuario no ha solicitado un cambio de contraseña"
-#: ../../enterprise/meta/index.php:725 ../../index.php:902
+#: ../../enterprise/meta/index.php:726 ../../index.php:903
msgid "Id user cannot be empty"
msgstr "El ID de usuario no puede estar vacío"
-#: ../../enterprise/meta/index.php:733 ../../index.php:910
+#: ../../enterprise/meta/index.php:734 ../../index.php:911
msgid "Error in reset password request"
msgstr "Error en la solicitud para restablecer la contraseña"
-#: ../../enterprise/meta/index.php:741 ../../index.php:918
+#: ../../enterprise/meta/index.php:742 ../../index.php:919
msgid "This user doesn't have a valid email address"
msgstr "Este usuario no tiene una dirección válida de email"
-#: ../../enterprise/meta/index.php:758 ../../index.php:929
+#: ../../enterprise/meta/index.php:759 ../../index.php:930
msgid "This is an automatically sent message for user "
msgstr "Este es un mensaje enviado automáticamente para el usuario "
-#: ../../enterprise/meta/index.php:761 ../../index.php:932
+#: ../../enterprise/meta/index.php:762 ../../index.php:933
msgid "Please click the link below to reset your password"
msgstr "Haz clic en el enlace de abajo para restablecer la contraseña"
-#: ../../enterprise/meta/index.php:763 ../../index.php:934
+#: ../../enterprise/meta/index.php:764 ../../index.php:935
msgid "Reset your password"
msgstr "Restablecer la contraseña"
-#: ../../enterprise/meta/index.php:767 ../../index.php:938
+#: ../../enterprise/meta/index.php:768 ../../index.php:939
msgid "Please do not reply to this email."
msgstr "No respondas a este email."
-#: ../../enterprise/meta/index.php:773 ../../index.php:943
+#: ../../enterprise/meta/index.php:774 ../../index.php:944
msgid "Error at sending the email"
msgstr "Error al enviar el email"
-#: ../../enterprise/meta/index.php:933
+#: ../../enterprise/meta/index.php:934
#, php-format
msgid ""
"System is not centralised, please go to %s to perform a database merge process."
@@ -13290,17 +13436,17 @@ msgstr ""
"El sistema no está centralizado, vaya a %s para realizar un proceso de fusión "
"de bases de datos."
-#: ../../enterprise/meta/index.php:1001
+#: ../../enterprise/meta/index.php:1002
#, php-format
msgid "There are nodes with different MR than this (%d):"
msgstr "Hay nodos con RM diferente a esta (%d):"
-#: ../../enterprise/meta/index.php:1010 ../../index.php:1237
+#: ../../enterprise/meta/index.php:1011 ../../index.php:1238
msgid "Please keep all environment updated to same version."
msgstr "Mantenga todo el entorno actualizado a la misma versión."
-#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170
-#: ../../index.php:1340
+#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172
+#: ../../index.php:1341
msgid "Sorry! I can't find the page!"
msgstr "No se puede encontrar la página"
@@ -13319,22 +13465,21 @@ msgstr "Agentes encontrados"
#: ../../enterprise/operation/agentes/policy_view.php:400
#: ../../enterprise/operation/agentes/tag_view.php:703
#: ../../enterprise/operation/agentes/ver_agente.php:95
-#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:576
+#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:577
#: ../../godmode/agentes/planned_downtime.editor.php:1359
-#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417
-#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422
-#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006
-#: ../../include/functions_treeview.php:671
-#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46
+#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418
+#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423
+#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483
+#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675
+#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46
#: ../../operation/search_agents.php:58
#: ../../operation/agentes/log_sources_status.php:58
-#: ../../operation/agentes/estado_agente.php:1055
+#: ../../operation/agentes/estado_agente.php:1063
#: ../../operation/agentes/ver_agente.php:1046
-#: ../../operation/agentes/estado_generalagente.php:464
+#: ../../operation/agentes/estado_generalagente.php:435
#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349
#: ../../operation/gis_maps/ajax.php:466
-#: ../../operation/inventory/inventory.php:1007
-#: ../../operation/inventory/inventory.php:1301
+#: ../../operation/inventory/inventory.php:1253
msgid "Last contact"
msgstr "Último contacto"
@@ -13343,8 +13488,8 @@ msgid "There are no agents included in this group"
msgstr "No hay ningún agente en este grupo"
#: ../../enterprise/meta/agentsearch.php:320
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:650
-#: ../../operation/tree.php:468
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:643
+#: ../../operation/tree.php:470
msgid "Policies found"
msgstr "Políticas encontradas"
@@ -13375,21 +13520,24 @@ msgstr "No hay políticas incluidas en este grupo"
msgid "%s %s - %s - MR %s"
msgstr "%s %s - %s - MR %s"
-#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459
+#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460
msgid "Page generated at"
msgstr "Página generada en"
#: ../../enterprise/meta/general/metaconsole_no_activated.php:12
#: ../../enterprise/meta/general/noaccesssaml.php:130
-#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266
-#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218
-#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117
+#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284
+#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218
+#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68
+#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119
#: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185
#: ../../mobile/operation/visualmaps.php:159
-#: ../../mobile/operation/module_graph.php:255
-#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79
-#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16
-#: ../../general/noaccess2.php:18
+#: ../../mobile/operation/module_data.php:107
+#: ../../mobile/operation/module_graph.php:256
+#: ../../mobile/operation/events.php:773
+#: ../../mobile/operation/server_status.php:209
+#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130
+#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18
msgid "You don't have access to this page"
msgstr "No tienes permiso para acceder a esta página"
@@ -13446,8 +13594,8 @@ msgstr "Actualización automática desactivada"
#: ../../enterprise/meta/general/header.php:266
#: ../../enterprise/meta/general/main_header.php:535
#: ../../mobile/include/functions_web.php:34
-#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460
-#: ../../mobile/operation/home.php:148 ../../general/header.php:443
+#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:527
+#: ../../mobile/operation/home.php:167 ../../general/header.php:443
#: ../../general/header.php:445
msgid "Logout"
msgstr "Salir"
@@ -13463,7 +13611,7 @@ msgid "Please navigate to %s"
msgstr "Por favor, navegue hasta %s"
#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69
-#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64
+#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69
msgid "You will be automatically redirected when all tasks finish"
msgstr "Se le redirigirá automáticamente cuando finalicen todas las tareas"
@@ -13471,8 +13619,8 @@ msgstr "Se le redirigirá automáticamente cuando finalicen todas las tareas"
#: ../../enterprise/meta/general/main_menu.php:199
#: ../../enterprise/operation/services/services.treeview_services.php:60
#: ../../godmode/groups/group_list.php:347
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:178
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:768
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:173
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:761
#: ../../operation/tree.php:137 ../../operation/menu.php:179
msgid "Tree view"
msgstr "Vista de árbol"
@@ -13497,7 +13645,7 @@ msgstr "Visor de monitores"
#: ../../enterprise/meta/general/main_menu.php:312
#: ../../enterprise/meta/general/main_menu.php:313
#: ../../enterprise/mobile/include/functions_web.php:15
-#: ../../include/functions_reporting.php:15831
+#: ../../include/functions_reporting.php:15908
#: ../../include/functions_groups.php:139 ../../operation/search_results.php:133
msgid "Reports"
msgstr "Informes"
@@ -13515,7 +13663,7 @@ msgstr "Plantillas de informes"
#: ../../enterprise/meta/general/main_header.php:200
#: ../../enterprise/meta/general/main_menu.php:340
#: ../../enterprise/include/functions_reporting.php:124
-#: ../../include/functions_menu.php:584
+#: ../../include/functions_menu.php:586
msgid "Templates wizard"
msgstr "Asistente de plantillas"
@@ -13543,7 +13691,8 @@ msgstr "Asistente de plantillas"
#: ../../enterprise/operation/services/services.treeview_services.php:73
#: ../../enterprise/operation/services/services.list.php:70
#: ../../enterprise/operation/services/services.table_services.php:67
-#: ../../operation/agentes/ver_agente.php:1668
+#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123
+#: ../../operation/agentes/ver_agente.php:1664
#: ../../general/first_task/service_list.php:38
#: ../../general/first_task/service_list.php:41
msgid "Services"
@@ -13558,7 +13707,7 @@ msgstr "Pantallas"
#: ../../enterprise/meta/general/main_header.php:240
#: ../../enterprise/meta/general/main_menu.php:436
-#: ../../enterprise/include/functions_enterprise.php:443
+#: ../../enterprise/include/functions_enterprise.php:453
#: ../../include/class/OrderInterpreter.class.php:233
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515
@@ -13585,8 +13734,8 @@ msgstr "Consola visual de asistente"
#: ../../enterprise/meta/general/main_header.php:275
#: ../../enterprise/meta/general/logon_ok.php:44
#: ../../enterprise/meta/general/main_menu.php:473
-#: ../../enterprise/include/functions_enterprise.php:439
-#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371
+#: ../../enterprise/include/functions_enterprise.php:449
+#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369
#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290
#: ../../include/functions_reports.php:925
#: ../../include/functions_reports.php:929
@@ -13642,7 +13791,7 @@ msgid "Command Center"
msgstr "command center"
#: ../../enterprise/meta/general/main_header.php:369
-#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406
+#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404
#: ../../godmode/setup/license.php:59
msgid "License"
msgstr "Licencia"
@@ -13657,8 +13806,8 @@ msgstr "Metasetup"
#: ../../enterprise/meta/general/main_header.php:448
#: ../../enterprise/meta/general/main_menu.php:720
#: ../../enterprise/meta/general/main_menu.php:755
-#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428
-#: ../../godmode/menu.php:550 ../../general/links_menu.php:17
+#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426
+#: ../../godmode/menu.php:548 ../../general/links_menu.php:17
msgid "Links"
msgstr "Enlaces"
@@ -13693,9 +13842,9 @@ msgstr "Registros de auditoría"
#: ../../godmode/reporting/graph_container.php:118
#: ../../godmode/reporting/graphs.php:129
#: ../../godmode/reporting/reporting_builder.php:557
-#: ../../godmode/reporting/reporting_builder.php:3597
-#: ../../godmode/reporting/reporting_builder.php:3695
-#: ../../godmode/reporting/reporting_builder.php:3723
+#: ../../godmode/reporting/reporting_builder.php:3614
+#: ../../godmode/reporting/reporting_builder.php:3712
+#: ../../godmode/reporting/reporting_builder.php:3740
#: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450
#: ../../operation/reporting/reporting_viewer.php:218
#: ../../operation/reporting/custom_reporting.php:23
@@ -13756,39 +13905,40 @@ msgstr ""
#: ../../include/functions_reports.php:905
#: ../../include/functions_reports.php:909
#: ../../include/functions_reporting.php:3124
-#: ../../operation/agentes/ver_agente.php:1450
-#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203
-#: ../../operation/inventory/inventory.php:301
+#: ../../operation/agentes/ver_agente.php:1451
+#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203
+#: ../../operation/inventory/inventory.php:303
msgid "Inventory"
msgstr "Inventario"
#: ../../enterprise/meta/general/main_menu.php:277
-#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604
+#: ../../include/ajax/events.php:2321 ../../operation/events/sound_events.php:197
+#: ../../operation/events/events.php:1658
msgid "Events list"
msgstr "Lista de eventos"
#: ../../enterprise/meta/general/main_menu.php:285
-#: ../../operation/events/events.php:1516
+#: ../../operation/events/events.php:1570
msgid "Sound Console"
msgstr "Consola sonora"
#: ../../enterprise/meta/general/main_menu.php:286
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376
-#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141
-#: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493
-#: ../../operation/users/user_edit.php:874
-#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571
-#: ../../operation/events/events.php:1517
+#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494
+#: ../../operation/users/user_edit.php:871
+#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571
+#: ../../operation/events/sound_events.php:368
+#: ../../operation/events/events.php:1571
msgid "Start"
msgstr "Inicio"
#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573
-#: ../../operation/events/events.php:1519
+#: ../../operation/events/events.php:1573
msgid "No alert"
msgstr "Sin alertas"
#: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574
-#: ../../operation/events/events.php:1520
+#: ../../operation/events/events.php:1574
msgid "Silence alarm"
msgstr "Silenciar alarma"
@@ -13812,7 +13962,7 @@ msgstr "Mensajes"
#: ../../enterprise/meta/general/main_menu.php:409
#: ../../enterprise/operation/services/services.list.php:57
msgid "List of services"
-msgstr "de los Servicios"
+msgstr "Lista de servicios"
#: ../../enterprise/meta/general/main_menu.php:498
#: ../../enterprise/meta/general/main_menu.php:499
@@ -13822,7 +13972,7 @@ msgstr "Correlación de alertas"
#: ../../enterprise/meta/general/main_menu.php:504
#: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:286
-#: ../../include/functions_events.php:4548
+#: ../../include/functions_events.php:4553
msgid "Alert details"
msgstr "Detalles de alerta"
@@ -13835,7 +13985,7 @@ msgstr "Detalles de alerta"
msgid "Centralised management"
msgstr "Gestión centralizada"
-#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204
+#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203
#: ../../godmode/massive/massive_operations.php:313
#: ../../godmode/massive/massive_operations.php:336
#: ../../godmode/massive/massive_operations.php:342
@@ -13853,12 +14003,12 @@ msgstr "Herramienta de fusión"
msgid "List of Links"
msgstr "Lista de enlaces"
-#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426
+#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424
msgid "System audit log"
msgstr "Logs de auditoría del sistema"
#: ../../enterprise/meta/general/main_menu.php:869
-#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608
+#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606
msgid "About"
msgstr "Acerca de"
@@ -13876,18 +14026,18 @@ msgid "Authentication code"
msgstr "Código de autentificación"
#: ../../enterprise/meta/general/login_page.php:185
-#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393
+#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393
msgid "Check code"
msgstr "Código de comprobación"
#: ../../enterprise/meta/general/login_page.php:229
#: ../../enterprise/meta/general/login_page.php:288
-#: ../../mobile/include/user.class.php:404
+#: ../../mobile/include/user.class.php:470
msgid "Login"
msgstr "Iniciar sesión"
#: ../../enterprise/meta/general/login_page.php:245
-#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316
+#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316
msgid "Login with SAML"
msgstr "Entrar con SAML"
@@ -13977,15 +14127,15 @@ msgstr "O deshabilite %s Enterprise"
#: ../../enterprise/godmode/reporting/aws_view.php:181
#: ../../enterprise/godmode/wizards/Cloud.class.php:330
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239
-#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858
+#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887
#: ../../include/ajax/alert_list.ajax.php:280
#: ../../include/ajax/alert_list.ajax.php:306
#: ../../include/class/SnmpConsole.class.php:456
#: ../../include/class/SnmpConsole.class.php:514
-#: ../../include/class/SnmpConsole.class.php:854
-#: ../../operation/agentes/alerts_status.php:302
-#: ../../operation/agentes/alerts_status.php:441
-#: ../../operation/agentes/alerts_status.php:455
+#: ../../include/class/SnmpConsole.class.php:856
+#: ../../operation/agentes/alerts_status.php:301
+#: ../../operation/agentes/alerts_status.php:444
+#: ../../operation/agentes/alerts_status.php:458
msgid "Validate"
msgstr "Validar"
@@ -14072,7 +14222,7 @@ msgstr "Póngase en contacto con %s para renovar la licencia."
#: ../../enterprise/load_enterprise.php:931
#: ../../enterprise/load_enterprise.php:1072
-#: ../../godmode/users/configure_user.php:1008
+#: ../../godmode/users/configure_user.php:1056
msgid "Renew"
msgstr "Renovar"
@@ -14155,7 +14305,7 @@ msgstr "Gestión de sistemas"
#: ../../enterprise/extensions/disabled/check_acls.php:150
#: ../../enterprise/godmode/setup/setup_metaconsole.php:276
#: ../../enterprise/godmode/servers/HA_cluster.php:182
-#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767
+#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768
#: ../../operation/search_users.php:62
msgid "Admin"
msgstr "Administrador"
@@ -14202,7 +14352,7 @@ msgstr "Vista VMware"
#: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34
#: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253
#: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38
-#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39
+#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39
#: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56
#: ../../include/class/EventSound.class.php:226
#: ../../include/class/Diagnostics.class.php:159
@@ -14213,7 +14363,7 @@ msgstr "Herramientas administrativas"
#: ../../extensions/extension_uploader.php:43
#: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145
#: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99
-#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537
+#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535
msgid "Extension manager"
msgstr "Gestor de extensión"
@@ -14268,7 +14418,7 @@ msgstr "Separador"
#: ../../enterprise/extensions/csv_import_group/main.php:131
#: ../../enterprise/include/class/CSVImportAgents.class.php:208
-#: ../../include/functions_filemanager.php:899
+#: ../../include/functions_filemanager.php:919
msgid "Go"
msgstr "Ir"
@@ -14446,24 +14596,24 @@ msgstr "Host ESX"
#: ../../enterprise/operation/agentes/tag_view.php:1137
#: ../../enterprise/operation/agentes/tag_view.php:1143
#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571
-#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634
-#: ../../include/functions.php:1416 ../../include/functions.php:1455
-#: ../../include/functions_modules.php:2905
+#: ../../mobile/operation/modules.php:622 ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416
+#: ../../include/functions.php:1455 ../../include/functions_modules.php:2905
#: ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:4235
-#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246
-#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664
+#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320
+#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687
#: ../../include/lib/Module.php:603 ../../include/functions_events.php:64
#: ../../include/functions_events.php:116 ../../include/functions_events.php:179
-#: ../../operation/agentes/status_monitor.php:1791
-#: ../../operation/agentes/status_monitor.php:1797
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/pandora_networkmap.view.php:1848
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/search_modules.php:115 ../../operation/search_modules.php:142
-#: ../../operation/events/events.php:633 ../../operation/events/events.php:710
-#: ../../operation/events/events.php:736
+#: ../../operation/agentes/status_monitor.php:1793
+#: ../../operation/agentes/status_monitor.php:1799
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/pandora_networkmap.view.php:1849
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/search_modules.php:118 ../../operation/search_modules.php:145
+#: ../../operation/events/events.php:638 ../../operation/events/events.php:715
+#: ../../operation/events/events.php:741
msgid "NORMAL"
msgstr "NORMAL"
@@ -14476,24 +14626,24 @@ msgstr "NORMAL"
#: ../../enterprise/operation/agentes/tag_view.php:1153
#: ../../enterprise/operation/agentes/tag_view.php:1159
#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642
-#: ../../include/functions.php:1404 ../../include/functions.php:1436
-#: ../../include/functions_modules.php:2899
+#: ../../mobile/operation/modules.php:628 ../../mobile/operation/modules.php:653
+#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404
+#: ../../include/functions.php:1436 ../../include/functions_modules.php:2899
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:4239
-#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252
-#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634
+#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326
+#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657
#: ../../include/lib/Module.php:587 ../../include/functions_events.php:67
#: ../../include/functions_events.php:120 ../../include/functions_events.php:164
-#: ../../operation/agentes/status_monitor.php:1805
-#: ../../operation/agentes/status_monitor.php:1818
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/pandora_networkmap.view.php:1842
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/search_modules.php:121 ../../operation/search_modules.php:150
-#: ../../operation/events/events.php:608 ../../operation/events/events.php:716
-#: ../../operation/events/events.php:741
+#: ../../operation/agentes/status_monitor.php:1807
+#: ../../operation/agentes/status_monitor.php:1820
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/pandora_networkmap.view.php:1843
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/search_modules.php:124 ../../operation/search_modules.php:153
+#: ../../operation/events/events.php:613 ../../operation/events/events.php:721
+#: ../../operation/events/events.php:746
msgid "CRITICAL"
msgstr "CRÍTICO"
@@ -14507,25 +14657,25 @@ msgstr "CRÍTICO"
#: ../../enterprise/operation/agentes/tag_view.php:1169
#: ../../enterprise/operation/agentes/tag_view.php:1175
#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587
-#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650
-#: ../../include/functions.php:1407 ../../include/functions.php:1443
-#: ../../include/functions_modules.php:2902
+#: ../../mobile/operation/modules.php:634 ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407
+#: ../../include/functions.php:1443 ../../include/functions_modules.php:2902
#: ../../include/functions_modules.php:2919
#: ../../include/functions_modules.php:4243
-#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240
-#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642
-#: ../../include/class/NetworkMap.class.php:2949 ../../include/lib/Module.php:591
+#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314
+#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665
+#: ../../include/class/NetworkMap.class.php:2955 ../../include/lib/Module.php:591
#: ../../include/functions_events.php:78 ../../include/functions_events.php:112
#: ../../include/functions_events.php:182
-#: ../../operation/agentes/status_monitor.php:1826
-#: ../../operation/agentes/status_monitor.php:1839
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1845
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:127 ../../operation/search_modules.php:158
-#: ../../operation/events/events.php:638 ../../operation/events/events.php:704
-#: ../../operation/events/events.php:758
+#: ../../operation/agentes/status_monitor.php:1828
+#: ../../operation/agentes/status_monitor.php:1841
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1846
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:130 ../../operation/search_modules.php:161
+#: ../../operation/events/events.php:643 ../../operation/events/events.php:709
+#: ../../operation/events/events.php:763
msgid "WARNING"
msgstr "ADVERTENCIA"
@@ -14541,31 +14691,31 @@ msgstr "ADVERTENCIA"
#: ../../enterprise/operation/agentes/tag_view.php:1169
#: ../../enterprise/operation/agentes/tag_view.php:1175
#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
-#: ../../include/functions.php:1420 ../../include/functions.php:1446
-#: ../../include/functions_modules.php:2911
+#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420
+#: ../../include/functions.php:1446 ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:2919
-#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259
-#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648
+#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333
+#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671
#: ../../include/lib/Module.php:594 ../../include/functions_events.php:81
#: ../../include/functions_events.php:125 ../../include/functions_events.php:185
-#: ../../operation/agentes/status_monitor.php:1847
-#: ../../operation/agentes/status_monitor.php:1860
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:133 ../../operation/search_modules.php:142
-#: ../../operation/search_modules.php:150 ../../operation/search_modules.php:158
-#: ../../operation/events/events.php:644 ../../operation/events/events.php:723
-#: ../../operation/events/events.php:763
+#: ../../operation/agentes/status_monitor.php:1849
+#: ../../operation/agentes/status_monitor.php:1862
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:136 ../../operation/search_modules.php:145
+#: ../../operation/search_modules.php:153 ../../operation/search_modules.php:161
+#: ../../operation/events/events.php:649 ../../operation/events/events.php:728
+#: ../../operation/events/events.php:768
msgid "UNKNOWN"
msgstr "DESCONOCIDO"
@@ -14787,7 +14937,7 @@ msgid "Power Status: "
msgstr "Estado: "
#: ../../enterprise/extensions/vmware/vmware_manager.php:269
-#: ../../operation/agentes/pandora_networkmap.view.php:1881
+#: ../../operation/agentes/pandora_networkmap.view.php:1882
msgid "Status: "
msgstr "Estado: "
@@ -14800,7 +14950,7 @@ msgid "Export agents"
msgstr "Exportar agentes"
#: ../../enterprise/extensions/resource_exportation/functions.php:46
-#: ../../enterprise/include/functions_reporting.php:8156
+#: ../../enterprise/include/functions_reporting.php:8165
#: ../../extensions/resource_exportation.php:456
#: ../../extensions/resource_exportation.php:468
#: ../../operation/agentes/exportdata.php:464
@@ -14920,12 +15070,12 @@ msgstr "Estado advertencia"
#: ../../godmode/modules/manage_network_components_form_common.php:217
#: ../../godmode/modules/manage_network_components_form_wizard.php:387
#: ../../godmode/modules/manage_network_components_form_wizard.php:421
-#: ../../godmode/agentes/module_manager_editor_common.php:1141
+#: ../../godmode/agentes/module_manager_editor_common.php:1151
#: ../../godmode/massive/massive_edit_modules.php:580
#: ../../godmode/massive/massive_edit_modules.php:671
#: ../../godmode/massive/massive_edit_modules.php:900
#: ../../godmode/alerts/configure_alert_template.php:870
-#: ../../include/functions_reporting_html.php:5528
+#: ../../include/functions_reporting_html.php:5556
#: ../../include/functions_treeview.php:91
#: ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:676
@@ -14944,12 +15094,12 @@ msgstr "Mín."
#: ../../godmode/modules/manage_network_components_form_common.php:226
#: ../../godmode/modules/manage_network_components_form_wizard.php:389
#: ../../godmode/modules/manage_network_components_form_wizard.php:430
-#: ../../godmode/agentes/module_manager_editor_common.php:1142
+#: ../../godmode/agentes/module_manager_editor_common.php:1152
#: ../../godmode/massive/massive_edit_modules.php:595
#: ../../godmode/massive/massive_edit_modules.php:686
#: ../../godmode/massive/massive_edit_modules.php:902
#: ../../godmode/alerts/configure_alert_template.php:883
-#: ../../include/functions_reporting_html.php:5529
+#: ../../include/functions_reporting_html.php:5557
#: ../../include/functions_treeview.php:91
#: ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:675
@@ -14966,7 +15116,7 @@ msgstr "Máx."
#: ../../godmode/modules/manage_network_components_form_common.php:183
#: ../../godmode/modules/manage_network_components_form_common.php:235
#: ../../godmode/agentes/module_manager_editor_common.php:504
-#: ../../godmode/agentes/module_manager_editor_common.php:596
+#: ../../godmode/agentes/module_manager_editor_common.php:601
#: ../../godmode/massive/massive_edit_modules.php:610
#: ../../godmode/massive/massive_edit_modules.php:701
#: ../../include/functions_treeview.php:89
@@ -14983,7 +15133,7 @@ msgstr "Str."
#: ../../godmode/modules/manage_network_components_form_wizard.php:400
#: ../../godmode/modules/manage_network_components_form_wizard.php:448
#: ../../godmode/agentes/module_manager_editor_common.php:478
-#: ../../godmode/agentes/module_manager_editor_common.php:561
+#: ../../godmode/agentes/module_manager_editor_common.php:566
#: ../../godmode/massive/massive_edit_modules.php:645
#: ../../godmode/massive/massive_edit_modules.php:737
msgid "Percentage"
@@ -14998,12 +15148,14 @@ msgstr "Define el umbral como un porcentaje de disminución/incremento del valor
#: ../../enterprise/godmode/modules/configure_local_component.php:350
#: ../../godmode/modules/manage_network_components_form_common.php:201
#: ../../godmode/modules/manage_network_components_form_wizard.php:412
+#: ../../godmode/agentes/module_manager_editor_common.php:528
msgid "Change to critical status after"
msgstr "Cambiar al estado crítico después de"
#: ../../enterprise/godmode/modules/configure_local_component.php:359
#: ../../godmode/modules/manage_network_components_form_common.php:210
#: ../../godmode/modules/manage_network_components_form_wizard.php:414
+#: ../../godmode/agentes/module_manager_editor_common.php:530
msgid "intervals in warning status."
msgstr "intervalos en estado de advertencia."
@@ -15023,7 +15175,7 @@ msgstr "Estado crítico"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873
#: ../../godmode/modules/manage_network_components_form_common.php:254
-#: ../../godmode/agentes/module_manager_editor_common.php:1191
+#: ../../godmode/agentes/module_manager_editor_common.php:1201
#: ../../godmode/massive/massive_edit_modules.php:945
msgid "FF threshold"
msgstr "Umbral FF"
@@ -15031,7 +15183,7 @@ msgstr "Umbral FF"
#: ../../enterprise/godmode/modules/configure_local_component.php:406
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941
#: ../../godmode/modules/manage_network_components_form_common.php:257
-#: ../../godmode/agentes/module_manager_editor_common.php:1314
+#: ../../godmode/agentes/module_manager_editor_common.php:1324
#: ../../godmode/massive/massive_edit_modules.php:1009
msgid "Keep counters"
msgstr "Mantener los contadores"
@@ -15041,7 +15193,7 @@ msgstr "Mantener los contadores"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900
#: ../../godmode/modules/manage_network_components_form_common.php:271
-#: ../../godmode/agentes/module_manager_editor_common.php:1195
+#: ../../godmode/agentes/module_manager_editor_common.php:1205
#: ../../godmode/massive/massive_edit_modules.php:953
#: ../../godmode/massive/massive_edit_modules.php:968
msgid "All state changing"
@@ -15052,7 +15204,7 @@ msgstr "Todos los cambios de estado"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910
#: ../../godmode/modules/manage_network_components_form_common.php:287
-#: ../../godmode/agentes/module_manager_editor_common.php:1196
+#: ../../godmode/agentes/module_manager_editor_common.php:1206
#: ../../godmode/massive/massive_edit_modules.php:952
#: ../../godmode/massive/massive_edit_modules.php:978
msgid "Each state changing"
@@ -15062,7 +15214,7 @@ msgstr "Cada cambio de estado"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911
#: ../../godmode/modules/manage_network_components_form_common.php:288
-#: ../../godmode/agentes/module_manager_editor_common.php:1228
+#: ../../godmode/agentes/module_manager_editor_common.php:1238
#: ../../godmode/massive/massive_edit_modules.php:979
msgid "To normal"
msgstr "A normal"
@@ -15071,7 +15223,7 @@ msgstr "A normal"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921
#: ../../godmode/modules/manage_network_components_form_common.php:297
-#: ../../godmode/agentes/module_manager_editor_common.php:1229
+#: ../../godmode/agentes/module_manager_editor_common.php:1239
#: ../../godmode/massive/massive_edit_modules.php:989
msgid "To warning"
msgstr "A advertencia"
@@ -15080,7 +15232,7 @@ msgstr "A advertencia"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931
#: ../../godmode/modules/manage_network_components_form_common.php:306
-#: ../../godmode/agentes/module_manager_editor_common.php:1230
+#: ../../godmode/agentes/module_manager_editor_common.php:1240
#: ../../godmode/massive/massive_edit_modules.php:999
msgid "To critical"
msgstr "A crítico"
@@ -15090,15 +15242,16 @@ msgstr "A crítico"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966
#: ../../enterprise/include/functions_reporting_csv.php:2225
#: ../../godmode/modules/manage_network_components_form_common.php:316
-#: ../../godmode/agentes/module_manager_editor_common.php:619
+#: ../../godmode/agentes/module_manager_editor_common.php:624
#: ../../godmode/massive/massive_edit_modules.php:1057
-#: ../../include/functions_reporting.php:4664
+#: ../../mobile/operation/modules.php:860
+#: ../../include/functions_reporting.php:4673
msgid "Historical data"
msgstr "Histórico de datos"
#: ../../enterprise/godmode/modules/configure_local_component.php:462
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963
-#: ../../godmode/agentes/module_manager_editor_common.php:1282
+#: ../../godmode/agentes/module_manager_editor_common.php:1292
#: ../../godmode/massive/massive_edit_modules.php:1043
msgid "FF timeout"
msgstr "FF tiempo de espera"
@@ -15121,9 +15274,9 @@ msgstr "Solo debe establecerse este valor en los módulos asíncronos."
#: ../../enterprise/godmode/modules/configure_local_component.php:473
#: ../../enterprise/include/functions_reporting_csv.php:1251
#: ../../godmode/modules/manage_network_components_form_common.php:319
-#: ../../godmode/agentes/module_manager_editor_common.php:1105
+#: ../../godmode/agentes/module_manager_editor_common.php:1115
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480
-#: ../../include/functions_reporting.php:7102
+#: ../../include/functions_reporting.php:7111
msgid "Min. Value"
msgstr "Valor mínimo"
@@ -15135,9 +15288,9 @@ msgstr "Cualquier valor por debajo de este número será descartado."
#: ../../enterprise/godmode/modules/configure_local_component.php:478
#: ../../enterprise/include/functions_reporting_csv.php:1306
#: ../../godmode/modules/manage_network_components_form_common.php:321
-#: ../../godmode/agentes/module_manager_editor_common.php:1106
+#: ../../godmode/agentes/module_manager_editor_common.php:1116
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492
-#: ../../include/functions_reporting.php:7098
+#: ../../include/functions_reporting.php:7107
msgid "Max. Value"
msgstr "Valor máximo"
@@ -15149,9 +15302,9 @@ msgstr "Cualquier valor por encima de este número será descartado."
#: ../../enterprise/godmode/modules/configure_local_component.php:485
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716
#: ../../godmode/modules/manage_network_components_form_plugin.php:49
-#: ../../godmode/modules/manage_network_components_form_network.php:178
+#: ../../godmode/modules/manage_network_components_form_network.php:210
#: ../../godmode/modules/manage_network_components_form_wmi.php:55
-#: ../../godmode/agentes/module_manager_editor_common.php:1328
+#: ../../godmode/agentes/module_manager_editor_common.php:1338
#: ../../godmode/massive/massive_edit_modules.php:795
#: ../../godmode/setup/snmp_wizard.php:43
msgid "Post process"
@@ -15166,24 +15319,24 @@ msgid "Check the correct structure of the data configuration"
msgstr "Comprobar la estructura correcta de la configuración de datos"
#: ../../enterprise/godmode/modules/configure_local_component.php:518
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250
msgid "First line must be \"module_begin\""
msgstr "La primera línea tiene que ser \"module_begin\"."
#: ../../enterprise/godmode/modules/configure_local_component.php:519
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251
msgid "Data configuration is empty"
msgstr "La configuración de datos está vacía."
#: ../../enterprise/godmode/modules/configure_local_component.php:520
#: ../../enterprise/godmode/modules/configure_local_component.php:524
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256
msgid "Last line must be \"module_end\""
msgstr "La última línea tiene que ser \"module_end\"."
#: ../../enterprise/godmode/modules/configure_local_component.php:521
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253
msgid ""
"Name is missed. Please add a line with \"module_name yourmodulename\" to data "
"configuration"
@@ -15192,7 +15345,7 @@ msgstr ""
"yourmodulename\" a la configuración de datos."
#: ../../enterprise/godmode/modules/configure_local_component.php:522
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254
msgid ""
"Type is missed. Please add a line with \"module_type yourmoduletype\" to data "
"configuration"
@@ -15201,24 +15354,24 @@ msgstr ""
"\" a la configuración de datos."
#: ../../enterprise/godmode/modules/configure_local_component.php:523
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255
msgid "Type is wrong. Please set a correct type"
msgstr "El tipo es incorrecto. Por favor, introduce un tipo correcto."
#: ../../enterprise/godmode/modules/configure_local_component.php:526
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258
msgid "Error in the syntax, please check the data configuration."
msgstr "Error en la sintaxis; comprueba la configuración de datos."
#: ../../enterprise/godmode/modules/configure_local_component.php:527
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259
msgid "Data configuration are built correctly"
msgstr "La configuración de datos se ha efectuado correctamente."
#: ../../enterprise/godmode/modules/configure_local_component.php:535
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
#: ../../godmode/modules/manage_network_components_form_common.php:334
-#: ../../godmode/agentes/module_manager_editor_common.php:1044
+#: ../../godmode/agentes/module_manager_editor_common.php:1053
#: ../../godmode/massive/massive_edit_modules.php:1107
msgid "Critical instructions"
msgstr "Instrucciones de crítico"
@@ -15233,7 +15386,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado crítico"
#: ../../enterprise/godmode/modules/configure_local_component.php:540
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
#: ../../godmode/modules/manage_network_components_form_common.php:338
-#: ../../godmode/agentes/module_manager_editor_common.php:1043
+#: ../../godmode/agentes/module_manager_editor_common.php:1054
#: ../../godmode/massive/massive_edit_modules.php:1111
msgid "Warning instructions"
msgstr "Instrucciones de advertencia"
@@ -15248,7 +15401,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado de advertencia"
#: ../../enterprise/godmode/modules/configure_local_component.php:545
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
#: ../../godmode/modules/manage_network_components_form_common.php:342
-#: ../../godmode/agentes/module_manager_editor_common.php:1020
+#: ../../godmode/agentes/module_manager_editor_common.php:1030
#: ../../godmode/massive/massive_edit_modules.php:1115
msgid "Unknown instructions"
msgstr "Instrucciones de desconocido"
@@ -15263,7 +15416,7 @@ msgstr "Instrucciones en caso de que se encuentre en estado desconocido"
#: ../../enterprise/godmode/modules/configure_local_component.php:554
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984
#: ../../godmode/modules/manage_network_components_form_common.php:353
-#: ../../godmode/agentes/module_manager_editor_common.php:745
+#: ../../godmode/agentes/module_manager_editor_common.php:755
#: ../../godmode/massive/massive_edit_modules.php:1075
#: ../../godmode/module_library/module_library_view.php:123
msgid "Category"
@@ -15271,13 +15424,13 @@ msgstr "Categoría"
#: ../../enterprise/godmode/modules/configure_local_component.php:573
#: ../../godmode/modules/manage_network_components_form_common.php:373
-#: ../../godmode/agentes/module_manager_editor_common.php:782
+#: ../../godmode/agentes/module_manager_editor_common.php:792
msgid "Tags available"
msgstr "Etiquetas disponibles"
#: ../../enterprise/godmode/modules/configure_local_component.php:591
#: ../../godmode/modules/manage_network_components_form_common.php:391
-#: ../../godmode/agentes/module_manager_editor_common.php:862
+#: ../../godmode/agentes/module_manager_editor_common.php:872
msgid "Add tags to module"
msgstr "Añadir etiquetas al módulo"
@@ -15289,7 +15442,7 @@ msgstr "Eliminar etiquetas del módulo"
#: ../../enterprise/godmode/modules/configure_local_component.php:593
#: ../../enterprise/godmode/setup/setup_auth.php:196
#: ../../enterprise/godmode/setup/setup_auth.php:551
-#: ../../enterprise/godmode/setup/setup_auth.php:1359
+#: ../../enterprise/godmode/setup/setup_auth.php:1576
#: ../../godmode/modules/manage_network_components_form_common.php:393
msgid "Tags selected"
msgstr "Etiquetas seleccionadas"
@@ -15300,42 +15453,42 @@ msgstr "Macros"
#: ../../enterprise/godmode/modules/configure_local_component.php:651
#: ../../godmode/servers/plugin.php:573
-#: ../../include/class/ManageNetScanScripts.class.php:644
+#: ../../include/class/ManageNetScanScripts.class.php:640
msgid "Default value"
msgstr "Valor por defecto"
#: ../../enterprise/godmode/modules/configure_local_component.php:667
-#: ../../godmode/servers/plugin.php:628
-#: ../../include/class/ManageNetScanScripts.class.php:732
+#: ../../godmode/servers/plugin.php:632
+#: ../../include/class/ManageNetScanScripts.class.php:728
msgid "Add macro"
msgstr "Añadir macro"
#: ../../enterprise/godmode/modules/configure_local_component.php:675
-#: ../../include/class/ManageNetScanScripts.class.php:750
+#: ../../include/class/ManageNetScanScripts.class.php:746
msgid "Delete macro"
msgstr "Eliminar macro"
#: ../../enterprise/godmode/modules/configure_local_component.php:993
#: ../../godmode/modules/manage_network_components_form_common.php:717
-#: ../../godmode/agentes/module_manager_editor_common.php:2263
+#: ../../godmode/agentes/module_manager_editor_common.php:2273
msgid "Normal Status"
msgstr "Estado normal"
#: ../../enterprise/godmode/modules/configure_local_component.php:994
#: ../../godmode/modules/manage_network_components_form_common.php:718
-#: ../../godmode/agentes/module_manager_editor_common.php:2264
+#: ../../godmode/agentes/module_manager_editor_common.php:2274
msgid "Warning Status"
msgstr "Estado de advertencia"
#: ../../enterprise/godmode/modules/configure_local_component.php:995
#: ../../godmode/modules/manage_network_components_form_common.php:719
-#: ../../godmode/agentes/module_manager_editor_common.php:2265
+#: ../../godmode/agentes/module_manager_editor_common.php:2275
msgid "Critical Status"
msgstr "Estado crítico"
#: ../../enterprise/godmode/modules/configure_local_component.php:998
#: ../../godmode/modules/manage_network_components_form_common.php:721
-#: ../../godmode/agentes/module_manager_editor_common.php:2268
+#: ../../godmode/agentes/module_manager_editor_common.php:2278
msgid "Please introduce a maximum warning higher than the minimun warning"
msgstr ""
"Por favor, introduce un máximo de advertencia mayor que el mínimo de "
@@ -15343,7 +15496,7 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:1000
#: ../../godmode/modules/manage_network_components_form_common.php:722
-#: ../../godmode/agentes/module_manager_editor_common.php:2269
+#: ../../godmode/agentes/module_manager_editor_common.php:2279
msgid "Please introduce a maximum critical higher than the minimun critical"
msgstr "Por favor introduce un máximo de crítico mayor que el mínimo de crítico."
@@ -15352,7 +15505,7 @@ msgid "Please introduce a positicve percentage value"
msgstr "Introduzca un valor porcentual positivo"
#: ../../enterprise/godmode/modules/local_components.php:140
-#: ../../godmode/modules/manage_network_components.php:195
+#: ../../godmode/modules/manage_network_components.php:196
#: ../../godmode/alerts/configure_alert_template.php:208
#, php-format
msgid "Successfully created from %s"
@@ -15373,9 +15526,9 @@ msgstr "Creado correctamente desde %s"
#: ../../enterprise/tools/ipam/ipam_action.php:164
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51
#: ../../godmode/modules/manage_nc_groups.php:109
-#: ../../godmode/modules/manage_network_components.php:198
-#: ../../godmode/modules/manage_network_components.php:436
-#: ../../godmode/users/configure_user.php:531
+#: ../../godmode/modules/manage_network_components.php:199
+#: ../../godmode/modules/manage_network_components.php:438
+#: ../../godmode/users/configure_user.php:480
#: ../../godmode/agentes/configurar_agente.php:361
#: ../../godmode/agentes/configurar_agente.php:883
#: ../../godmode/agentes/planned_downtime.editor.php:650
@@ -15384,8 +15537,8 @@ msgstr "Creado correctamente desde %s"
#: ../../godmode/alerts/configure_alert_template.php:544
#: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84
#: ../../godmode/setup/gis.php:49
-#: ../../godmode/reporting/reporting_builder.item_editor.php:6025
-#: ../../include/functions_alerts.php:2755
+#: ../../godmode/reporting/reporting_builder.item_editor.php:6028
+#: ../../include/functions_alerts.php:2756
#: ../../include/functions_planned_downtimes.php:113
#: ../../include/functions_planned_downtimes.php:845
#: ../../operation/agentes/pandora_networkmap.php:140
@@ -15407,14 +15560,14 @@ msgstr ""
"las políticas está en modo lectura. Vaya a %s para administrarlo."
#: ../../enterprise/godmode/modules/local_components.php:339
-#: ../../godmode/modules/manage_network_components.php:447
+#: ../../godmode/modules/manage_network_components.php:449
#: ../../include/class/ManageNetScanScripts.class.php:228
msgid "Created successfully"
msgstr "Creado correctamente"
#: ../../enterprise/godmode/modules/local_components.php:407
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127
-#: ../../enterprise/godmode/policies/policy_modules.php:1266
+#: ../../enterprise/godmode/policies/policy_modules.php:1311
#: ../../enterprise/godmode/policies/policies.php:212
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139
@@ -15425,22 +15578,22 @@ msgstr "Creado correctamente"
#: ../../enterprise/include/ajax/servers.ajax.php:368
#: ../../enterprise/tools/ipam/ipam_action.php:277
#: ../../enterprise/tools/ipam/ipam_massive.php:48
-#: ../../godmode/modules/manage_network_components.php:535
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
+#: ../../godmode/modules/manage_network_components.php:538
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
#: ../../godmode/agentes/planned_downtime.editor.php:652
#: ../../godmode/alerts/configure_alert_command.php:150
-#: ../../godmode/alerts/alert_templates.php:162
+#: ../../godmode/alerts/alert_templates.php:166
#: ../../godmode/alerts/configure_alert_template.php:572
#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320
-#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755
+#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2756
#: ../../include/functions_planned_downtimes.php:123
#: ../../operation/agentes/pandora_networkmap.php:216
-#: ../../operation/agentes/pandora_networkmap.php:515
+#: ../../operation/agentes/pandora_networkmap.php:516
msgid "Could not be updated"
msgstr "No se pudo actualizar"
#: ../../enterprise/godmode/modules/local_components.php:415
-#: ../../godmode/modules/manage_network_components.php:544
+#: ../../godmode/modules/manage_network_components.php:547
#: ../../include/class/ManageNetScanScripts.class.php:315
msgid "Updated successfully"
msgstr "Actualizado correctamente"
@@ -15449,7 +15602,7 @@ msgstr "Actualizado correctamente"
#: ../../godmode/modules/manage_nc_groups.php:218
#: ../../godmode/modules/manage_inventory_modules.php:234
#: ../../godmode/modules/manage_inventory_modules.php:267
-#: ../../godmode/modules/manage_network_components.php:588
+#: ../../godmode/modules/manage_network_components.php:591
#: ../../godmode/modules/manage_network_templates.php:114
msgid "Successfully multiple deleted"
msgstr "Supresión múltiple correcta"
@@ -15458,14 +15611,14 @@ msgstr "Supresión múltiple correcta"
#: ../../godmode/modules/manage_nc_groups.php:219
#: ../../godmode/modules/manage_inventory_modules.php:235
#: ../../godmode/modules/manage_inventory_modules.php:268
-#: ../../godmode/modules/manage_network_components.php:589
+#: ../../godmode/modules/manage_network_components.php:592
#: ../../godmode/modules/manage_network_templates.php:115
msgid "Not deleted. Error deleting multiple data"
msgstr "No borrado. Error al borrar datos múltiples."
#: ../../enterprise/godmode/modules/local_components.php:567
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902
-#: ../../godmode/modules/manage_network_components.php:677
+#: ../../godmode/modules/manage_network_components.php:680
msgid "Free Search"
msgstr "Búsqueda libre"
@@ -15474,15 +15627,15 @@ msgid "Search by name, description or data, list matches."
msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos."
#: ../../enterprise/godmode/modules/local_components.php:732
-#: ../../enterprise/godmode/policies/policy_modules.php:1636
+#: ../../enterprise/godmode/policies/policy_modules.php:1681
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:595
#: ../../enterprise/include/class/NetworkConfigManager.class.php:628
-#: ../../godmode/modules/manage_network_components.php:841
-#: ../../godmode/agentes/module_manager.php:961
+#: ../../godmode/modules/manage_network_components.php:844
+#: ../../godmode/agentes/module_manager.php:975
#: ../../godmode/snmpconsole/snmp_alert.php:1984
#: ../../godmode/snmpconsole/snmp_alert.php:1985
#: ../../godmode/alerts/alert_actions.php:461
-#: ../../godmode/alerts/alert_templates.php:458
+#: ../../godmode/alerts/alert_templates.php:462
#: ../../godmode/reporting/reporting_builder.php:1194
msgid "Duplicate"
msgstr "Duplicar"
@@ -15558,7 +15711,7 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wizard.php:661
#: ../../godmode/agentes/planned_downtime.list.php:737
#: ../../godmode/agentes/planned_downtime.editor.php:951
-#: ../../include/functions_reporting_html.php:6372
+#: ../../include/functions_reporting_html.php:6406
msgid "Execution"
msgstr "Ejecución"
@@ -15646,8 +15799,8 @@ msgstr "Lanzar script"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643
@@ -15677,20 +15830,20 @@ msgstr "Lanzar script"
#: ../../godmode/massive/massive_edit_users.php:462
#: ../../godmode/massive/massive_edit_users.php:470
#: ../../godmode/massive/massive_edit_users.php:507
-#: ../../godmode/massive/massive_edit_users.php:609
-#: ../../godmode/massive/massive_edit_users.php:628
-#: ../../godmode/massive/massive_edit_users.php:635
-#: ../../godmode/massive/massive_edit_agents.php:677
-#: ../../godmode/massive/massive_edit_agents.php:703
-#: ../../godmode/massive/massive_edit_agents.php:739
-#: ../../godmode/massive/massive_edit_agents.php:763
-#: ../../godmode/massive/massive_edit_agents.php:880
-#: ../../godmode/massive/massive_edit_agents.php:927
-#: ../../godmode/massive/massive_edit_agents.php:1020
-#: ../../godmode/massive/massive_edit_agents.php:1073
-#: ../../godmode/massive/massive_edit_agents.php:1115
-#: ../../godmode/massive/massive_edit_agents.php:1143
-#: ../../godmode/massive/massive_edit_agents.php:1237
+#: ../../godmode/massive/massive_edit_users.php:610
+#: ../../godmode/massive/massive_edit_users.php:629
+#: ../../godmode/massive/massive_edit_users.php:636
+#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:720
+#: ../../godmode/massive/massive_edit_agents.php:756
+#: ../../godmode/massive/massive_edit_agents.php:780
+#: ../../godmode/massive/massive_edit_agents.php:897
+#: ../../godmode/massive/massive_edit_agents.php:944
+#: ../../godmode/massive/massive_edit_agents.php:1037
+#: ../../godmode/massive/massive_edit_agents.php:1090
+#: ../../godmode/massive/massive_edit_agents.php:1132
+#: ../../godmode/massive/massive_edit_agents.php:1159
+#: ../../godmode/massive/massive_edit_agents.php:1253
#: ../../godmode/massive/massive_edit_modules.php:630
#: ../../godmode/massive/massive_edit_modules.php:652
#: ../../godmode/massive/massive_edit_modules.php:721
@@ -15712,28 +15865,27 @@ msgstr "Lanzar script"
#: ../../godmode/massive/massive_edit_modules.php:1095
#: ../../godmode/massive/massive_edit_modules.php:1123
#: ../../godmode/massive/massive_edit_modules.php:1227
-#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978
-#: ../../include/functions_html.php:2116
+#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989
+#: ../../include/functions_html.php:2127
msgid "No change"
msgstr "Sin cambios"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683
-#: ../../godmode/agentes/agent_manager.php:636
+#: ../../godmode/agentes/agent_manager.php:638
#: ../../godmode/reporting/reporting_builder.item_editor.php:73
-#: ../../include/functions_events.php:5061
-#: ../../operation/agentes/estado_generalagente.php:504
-#: ../../operation/inventory/inventory.php:1003
-#: ../../operation/inventory/inventory.php:1297
+#: ../../include/functions_events.php:5066
+#: ../../operation/agentes/estado_generalagente.php:475
+#: ../../operation/inventory/inventory.php:1249
msgid "Secondary groups"
msgstr "Grupos secundarios"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730
-#: ../../godmode/massive/massive_edit_agents.php:825
+#: ../../godmode/massive/massive_edit_agents.php:842
msgid "Add secondary groups"
msgstr "Añadir grupos secundarios"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737
-#: ../../godmode/massive/massive_edit_agents.php:851
+#: ../../godmode/massive/massive_edit_agents.php:868
msgid "Remove secondary groups"
msgstr "Eliminar grupos secundarios"
@@ -15744,7 +15896,7 @@ msgstr "Añadir política"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435
-#: ../../operation/agentes/estado_agente.php:1063
+#: ../../operation/agentes/estado_agente.php:1071
msgid "Op"
msgstr "Op"
@@ -15826,13 +15978,13 @@ msgstr "No hay autoconfiguraciones definidas"
#: ../../enterprise/include/functions_HA_cluster.php:61
#: ../../enterprise/include/lib/Metaconsole/Node.php:1114
#: ../../enterprise/include/lib/Metaconsole/Node.php:1115
-#: ../../godmode/users/user_list.php:845
+#: ../../godmode/users/user_list.php:846
#: ../../godmode/massive/massive_edit_users.php:529
-#: ../../godmode/alerts/alert_list.list.php:1170
+#: ../../godmode/alerts/alert_list.list.php:1169
#: ../../include/class/SatelliteAgent.class.php:1195
-#: ../../include/class/TipsWindow.class.php:456
-#: ../../include/class/TipsWindow.class.php:734
-#: ../../include/class/TipsWindow.class.php:901
+#: ../../include/class/TipsWindow.class.php:468
+#: ../../include/class/TipsWindow.class.php:754
+#: ../../include/class/TipsWindow.class.php:921
#: ../../operation/users/user_edit_notifications.php:64
msgid "Enable"
msgstr "Activar"
@@ -15844,14 +15996,14 @@ msgstr "Activar"
#: ../../enterprise/include/functions_HA_cluster.php:58
#: ../../enterprise/include/lib/Metaconsole/Node.php:1140
#: ../../enterprise/include/lib/Metaconsole/Node.php:1141
-#: ../../godmode/users/user_list.php:840
+#: ../../godmode/users/user_list.php:841
#: ../../godmode/massive/massive_edit_users.php:518
-#: ../../godmode/alerts/alert_list.list.php:1143 ../../include/functions.php:3413
+#: ../../godmode/alerts/alert_list.list.php:1142 ../../include/functions.php:3413
#: ../../include/class/SatelliteAgent.class.php:1195
msgid "Disable"
msgstr "Desactivar"
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226
msgid "Add new configuration definition"
msgstr "Añadir definición de nueva configuración"
@@ -15875,10 +16027,10 @@ msgstr "Administrador de configuración de red"
#: ../../enterprise/godmode/agentes/plugins_manager.php:212
#: ../../enterprise/godmode/policies/policy_plugins.php:185
#: ../../enterprise/godmode/policies/policies.php:607
-#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322
+#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320
#: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282
-#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764
-#: ../../godmode/servers/plugin.php:806
+#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756
+#: ../../godmode/servers/plugin.php:798
msgid "Plugins"
msgstr "Plugins"
@@ -15905,12 +16057,12 @@ msgid "Show files"
msgstr "Mostrar archivos"
#: ../../enterprise/godmode/agentes/collection_manager.php:251
-#: ../../enterprise/operation/log/log_viewer.php:1477
-#: ../../enterprise/operation/log/log_viewer.php:1485
+#: ../../enterprise/operation/log/log_viewer.php:1475
+#: ../../enterprise/operation/log/log_viewer.php:1483
#: ../../godmode/reporting/reporting_builder.php:1268
-#: ../../include/functions_reporting.php:3199
-#: ../../operation/agentes/agent_inventory.php:280
-#: ../../operation/inventory/inventory.php:776
+#: ../../include/functions_reporting.php:3208
+#: ../../operation/agentes/agent_inventory.php:334
+#: ../../operation/inventory/inventory.php:1005
msgid "No data found."
msgstr "No se encontraron datos."
@@ -15919,9 +16071,9 @@ msgstr "No se encontraron datos."
#: ../../godmode/agentes/inventory_manager.php:232
#: ../../godmode/snmpconsole/snmp_alert.php:1891
#: ../../godmode/reporting/reporting_builder.list_items.php:373
-#: ../../godmode/reporting/graph_builder.graph_editor.php:211
+#: ../../godmode/reporting/graph_builder.graph_editor.php:344
#: ../../include/ajax/alert_list.ajax.php:285
-#: ../../operation/agentes/status_monitor.php:1531
+#: ../../operation/agentes/status_monitor.php:1533
msgid "P."
msgstr "P."
@@ -15937,7 +16089,7 @@ msgid "Capacity planning"
msgstr "Planificación de la capacidad"
#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186
#: ../../enterprise/godmode/services/services.elements.php:95
#: ../../enterprise/godmode/services/services.elements.php:184
#: ../../enterprise/include/functions_visual_map_editor.php:30
@@ -15948,7 +16100,8 @@ msgstr "Planificación de la capacidad"
#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288
#: ../../enterprise/include/functions_reporting.php:6152
#: ../../enterprise/include/functions_services.php:1712
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4118
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4127
+#: ../../mobile/operation/services.php:267
#: ../../include/lib/Dashboard/Widgets/service_map.php:318
msgid "Service"
msgstr "Servicio"
@@ -15965,59 +16118,59 @@ msgstr "Media sintética"
msgid "Trending module"
msgstr "Módulo de tendencias"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138
msgid "Fixed value"
msgstr "Valor fijo"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141
msgid "Add module to operation as add"
msgstr "Añadir módulo a la operación como suma"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142
msgid "Add module to operations as deduct"
msgstr "Añadir módulo a la operación como resta"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143
msgid "Add module to operations as multiplicate "
msgstr "Añadir módulo a la operación como multiplicador "
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
msgid "Add module to operations as divide"
msgstr "Añadir módulo a la operación como divisor"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145
msgid "Remove selected modules"
msgstr "Eliminar los módulos seleccionados"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148
msgid "Add module to average operation"
msgstr "Añadir módulo al promedio de la operación"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149
msgid "Remove selected modules from operations stack"
msgstr "Eliminar los módulos de las operaciones de apilado"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160
msgid "Move down selected modules"
msgstr "Mover hacia abajo los módulos seleccionados"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161
msgid "Move up selected modules"
msgstr "Mover hacia arriba los módulos seleccionados"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197
msgid "Select Service"
msgstr "Seleccionar servicio"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214
msgid "Netflow filter"
msgstr "Filtro de Netflow"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223
msgid "Select filter"
msgstr "Seleccionar filtro"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238
msgid "Percentual value"
msgstr "Valor porcentual"
@@ -16134,15 +16287,19 @@ msgstr "Configuración manual"
msgid "No component was found"
msgstr "No se encontró ningún componente"
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132
+msgid "Macro value"
+msgstr "Valor de macro"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171
msgid "Show configuration data"
msgstr "Mostrar datos de configuración"
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182
msgid "Hide configuration data"
msgstr "Ocultar datos de configuración"
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190
msgid "Data configuration"
msgstr "Configuración de datos"
@@ -16180,7 +16337,7 @@ msgid "Add Modules"
msgstr "Añadir módulos"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83
-#: ../../godmode/agentes/module_manager.php:1247
+#: ../../godmode/agentes/module_manager.php:1268
msgid "Delete module"
msgstr "Eliminar módulo"
@@ -16224,8 +16381,8 @@ msgstr ""
"completa %s."
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231
-#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718
-#: ../../include/class/TipsWindow.class.php:885
+#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:738
+#: ../../include/class/TipsWindow.class.php:905
#: ../../operation/search_users.php:47
msgid "Profile"
msgstr "Perfil"
@@ -16247,7 +16404,7 @@ msgid "Only Selenium 3."
msgstr "Solo Selenium 3."
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286
-#: ../../godmode/agentes/module_manager_editor_common.php:1206
+#: ../../godmode/agentes/module_manager_editor_common.php:1216
msgid "Change all states"
msgstr "Cambiar todos los estados"
@@ -16272,15 +16429,15 @@ msgstr "Pega el test de selenium, exportado como HTML, aquí"
#: ../../enterprise/tools/ipam/ipam_excel.php:220
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:419
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:792
-#: ../../godmode/groups/configure_group.php:234
+#: ../../godmode/groups/configure_group.php:253
#: ../../godmode/agentes/agent_manager.php:195
-#: ../../godmode/agentes/module_manager_editor_common.php:744
-#: ../../godmode/massive/massive_edit_agents.php:812
+#: ../../godmode/agentes/module_manager_editor_common.php:754
+#: ../../godmode/massive/massive_edit_agents.php:829
msgid "Custom ID"
msgstr "ID personalizado"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497
-#: ../../godmode/agentes/module_manager.php:902
+#: ../../godmode/agentes/module_manager.php:916
msgid ""
"The policy modules of data type will only update their intervals when policy "
"is applied."
@@ -16290,7 +16447,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961
-#: ../../godmode/agentes/module_manager_editor_common.php:1281
+#: ../../godmode/agentes/module_manager_editor_common.php:1291
#: ../../godmode/massive/massive_edit_modules.php:1029
msgid "FF interval"
msgstr "Intervalo FF"
@@ -16303,7 +16460,7 @@ msgstr "Tiempo del intervalo de flip flop de ejecución del módulo (en segundos
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057
-#: ../../godmode/agentes/module_manager_editor_common.php:1410
+#: ../../godmode/agentes/module_manager_editor_common.php:1420
#: ../../godmode/massive/massive_edit_modules.php:1150
msgid "Retries"
msgstr "Reintentos"
@@ -16317,7 +16474,7 @@ msgstr "Número de intentos que el módulo intentará activar"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619
#: ../../enterprise/godmode/policies/policy_modules.php:418
#: ../../godmode/agentes/module_manager_editor.php:762
-#: ../../godmode/agentes/module_manager_editor_common.php:1444
+#: ../../godmode/agentes/module_manager_editor_common.php:1454
msgid "Custom macros"
msgstr "Macros personalizadas"
@@ -16343,13 +16500,15 @@ msgstr "Editor de mapas de red vacío"
#: ../../enterprise/operation/services/services.table_services.php:63
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104
#: ../../godmode/gis_maps/configure_gis_map.php:116
-#: ../../godmode/reporting/visual_console_builder.php:865
+#: ../../godmode/reporting/visual_console_builder.php:873
#: ../../godmode/reporting/map_builder.php:129
#: ../../godmode/reporting/visual_console_favorite.php:126
-#: ../../operation/visual_console/view.php:247
+#: ../../operation/visual_console/view.php:249
+#: ../../operation/visual_console/legacy_view.php:215
+#: ../../operation/agentes/networkmap.dinamic.php:146
#: ../../operation/agentes/pandora_networkmap.editor.php:232
-#: ../../operation/agentes/pandora_networkmap.php:681
-#: ../../operation/agentes/pandora_networkmap.view.php:2409
+#: ../../operation/agentes/pandora_networkmap.php:682
+#: ../../operation/agentes/pandora_networkmap.view.php:2410
#: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47
#: ../../operation/gis_maps/render_view.php:189
msgid "Topology maps"
@@ -16358,15 +16517,15 @@ msgstr "Mapas topológicos"
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108
#: ../../operation/agentes/pandora_networkmap.editor.php:236
-#: ../../operation/agentes/pandora_networkmap.php:685
-#: ../../operation/agentes/pandora_networkmap.view.php:2311
+#: ../../operation/agentes/pandora_networkmap.php:686
+#: ../../operation/agentes/pandora_networkmap.view.php:2312
msgid "Networkmap"
msgstr "Mapa de red"
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115
#: ../../operation/agentes/pandora_networkmap.editor.php:274
-#: ../../operation/agentes/pandora_networkmap.view.php:2317
+#: ../../operation/agentes/pandora_networkmap.view.php:2318
msgid "Not found networkmap."
msgstr "No se encontró ningún mapa de red."
@@ -16472,7 +16631,7 @@ msgstr "Crear un módulo de análisis web nuevo"
#: ../../enterprise/godmode/policies/policy_alerts.php:75
#: ../../enterprise/godmode/policies/configure_policy.php:92
#: ../../enterprise/godmode/policies/policy_modules.php:488
-#: ../../enterprise/godmode/policies/policy_queue.php:218
+#: ../../enterprise/godmode/policies/policy_queue.php:220
#: ../../enterprise/godmode/policies/policies.php:275
#: ../../enterprise/godmode/policies/policy_linking.php:127
#: ../../enterprise/godmode/policies/policy_external_alerts.php:329
@@ -16508,7 +16667,7 @@ msgstr "No se puede añadir a los plugins pendientes de eliminar."
#: ../../enterprise/godmode/policies/policy_plugins.php:70
#: ../../enterprise/godmode/policies/policy_alerts.php:270
-#: ../../enterprise/godmode/policies/policy_modules.php:1332
+#: ../../enterprise/godmode/policies/policy_modules.php:1377
#: ../../enterprise/godmode/policies/policy_external_alerts.php:162
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:177
#: ../../enterprise/godmode/policies/policy_collections.php:122
@@ -16519,7 +16678,7 @@ msgstr "Eliminación revertida correctamente"
#: ../../enterprise/godmode/policies/policy_plugins.php:71
#: ../../enterprise/godmode/policies/policy_alerts.php:271
-#: ../../enterprise/godmode/policies/policy_modules.php:1333
+#: ../../enterprise/godmode/policies/policy_modules.php:1378
#: ../../enterprise/godmode/policies/policy_external_alerts.php:163
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:180
#: ../../enterprise/godmode/policies/policy_collections.php:123
@@ -16541,7 +16700,7 @@ msgid "There are no defined plugins"
msgstr "No hay plugins definidos"
#: ../../enterprise/godmode/policies/policy_alerts.php:105
-#: ../../enterprise/godmode/policies/policy_modules.php:611
+#: ../../enterprise/godmode/policies/policy_modules.php:615
#: ../../enterprise/godmode/policies/policies.php:256
#: ../../enterprise/godmode/policies/policy_linking.php:51
#: ../../enterprise/godmode/policies/policy_external_alerts.php:87
@@ -16555,7 +16714,7 @@ msgstr "Esta política se está aplicando y no puede ser modificada"
#: ../../enterprise/godmode/policies/policy_alerts.php:164
#: ../../enterprise/godmode/policies/policy_modules.php:547
#: ../../enterprise/godmode/setup/setup_metaconsole.php:157
-#: ../../godmode/agentes/configurar_agente.php:2214
+#: ../../godmode/agentes/configurar_agente.php:2277
#: ../../godmode/agentes/modificar_agente.php:271
#: ../../godmode/massive/massive_enable_disable_alerts.php:124
#: ../../godmode/alerts/alert_list.php:419
@@ -16642,8 +16801,8 @@ msgstr "Siempre"
#: ../../enterprise/godmode/policies/policy_external_alerts.php:510
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443
#: ../../godmode/alerts/alert_list.list.php:724
-#: ../../include/class/Diagnostics.class.php:1204
#: ../../include/class/Diagnostics.class.php:1208
+#: ../../include/class/Diagnostics.class.php:1212
msgid "On"
msgstr "Activado"
@@ -16655,7 +16814,7 @@ msgid "Until"
msgstr "Hasta"
#: ../../enterprise/godmode/policies/policy_alerts.php:577
-#: ../../enterprise/godmode/policies/policy_modules.php:1653
+#: ../../enterprise/godmode/policies/policy_modules.php:1698
#: ../../enterprise/godmode/policies/policy_external_alerts.php:583
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303
#: ../../enterprise/godmode/policies/policy_agents.php:1192
@@ -16668,12 +16827,12 @@ msgid "There is not alerts configured in this policy."
msgstr "No hay alertas configuradas en esta política."
#: ../../enterprise/godmode/policies/policy_alerts.php:695
-#: ../../godmode/alerts/alert_list.list.php:1197
+#: ../../godmode/alerts/alert_list.list.php:1196
msgid "Set off standby"
msgstr "Desactivar modo standby"
#: ../../enterprise/godmode/policies/policy_alerts.php:704
-#: ../../godmode/alerts/alert_list.list.php:1224
+#: ../../godmode/alerts/alert_list.list.php:1223
msgid "Set standby"
msgstr "Activar modo standby"
@@ -16692,9 +16851,9 @@ msgstr "Añadir alerta"
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:476
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544
#: ../../godmode/snmpconsole/snmp_alert.php:2020
-#: ../../godmode/alerts/alert_list.list.php:995
-#: ../../godmode/alerts/alert_list.list.php:1006
-#: ../../godmode/alerts/alert_list.list.php:1270
+#: ../../godmode/alerts/alert_list.list.php:994
+#: ../../godmode/alerts/alert_list.list.php:1005
+#: ../../godmode/alerts/alert_list.list.php:1269
msgid "Add action"
msgstr "Añadir acción"
@@ -16754,40 +16913,40 @@ msgstr "Opciones de base"
msgid "Could not be added module(s). You must select a policy"
msgstr "El módulo no se pudo añadir. Tienes que seleccionar una política."
-#: ../../enterprise/godmode/policies/policy_modules.php:593
+#: ../../enterprise/godmode/policies/policy_modules.php:597
#, php-format
msgid "Successfully added module(s) (%s/%s) to policy %s"
msgstr "Módulo(s) (%s/%s) añadido(s) correctamente a la política %s"
-#: ../../enterprise/godmode/policies/policy_modules.php:599
+#: ../../enterprise/godmode/policies/policy_modules.php:603
#, php-format
msgid "Could not be added module(s) (%s/%s) to policy %s"
msgstr "El módulo (%s/%s) no se pudo añadir a la política %s"
-#: ../../enterprise/godmode/policies/policy_modules.php:635
+#: ../../enterprise/godmode/policies/policy_modules.php:639
msgid "To define plugins please use plugin configuration tab."
msgstr "Para definir plugins, use la pestaña de configuración de plugins."
-#: ../../enterprise/godmode/policies/policy_modules.php:934
+#: ../../enterprise/godmode/policies/policy_modules.php:938
msgid "Could not be added module."
msgstr "El módulo no se pudo añadir."
-#: ../../enterprise/godmode/policies/policy_modules.php:1281
+#: ../../enterprise/godmode/policies/policy_modules.php:1326
msgid ""
"The module type in Data configuration is empty, take from combo box of form."
msgstr ""
"El tipo de datos en la configuración está vacío, elige uno del combo del "
"formulario."
-#: ../../enterprise/godmode/policies/policy_modules.php:1285
+#: ../../enterprise/godmode/policies/policy_modules.php:1330
msgid ""
"The module name in Data configuration is empty, take from text field of form."
msgstr ""
"El nombre del módulo en la configuración está vacío, elige uno del combo del "
"formulario."
-#: ../../enterprise/godmode/policies/policy_modules.php:1315
-#: ../../enterprise/godmode/policies/policy_modules.php:1328
+#: ../../enterprise/godmode/policies/policy_modules.php:1360
+#: ../../enterprise/godmode/policies/policy_modules.php:1373
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:171
msgid ""
"Successfully added to delete pending modules. Will be deleted in the next "
@@ -16796,95 +16955,95 @@ msgstr ""
"Añadido correctamente a la cola de módulos pendientes de eliminación. Será "
"eliminado en la próxima aplicación de políticas."
-#: ../../enterprise/godmode/policies/policy_modules.php:1319
+#: ../../enterprise/godmode/policies/policy_modules.php:1364
msgid "Could not be added to deleted all modules."
msgstr "No se pudo añadir a la lista para eliminar todos los módulos."
-#: ../../enterprise/godmode/policies/policy_modules.php:1379
-#: ../../godmode/agentes/configurar_agente.php:2127
+#: ../../enterprise/godmode/policies/policy_modules.php:1424
+#: ../../godmode/agentes/configurar_agente.php:2190
#: ../../include/functions_reports.php:975
#, php-format
msgid "copy of %s"
msgstr "copia de %s"
-#: ../../enterprise/godmode/policies/policy_modules.php:1397
-#: ../../godmode/agentes/configurar_agente.php:2141
+#: ../../enterprise/godmode/policies/policy_modules.php:1442
+#: ../../godmode/agentes/configurar_agente.php:2204
#, php-format
msgid "copy of %s (%d)"
msgstr "copia de %s (%d)"
-#: ../../enterprise/godmode/policies/policy_modules.php:1427
+#: ../../enterprise/godmode/policies/policy_modules.php:1472
msgid "Successfully duplicate the module."
msgstr "Módulo duplicado correctamente"
-#: ../../enterprise/godmode/policies/policy_modules.php:1428
-#: ../../operation/agentes/pandora_networkmap.php:540
+#: ../../enterprise/godmode/policies/policy_modules.php:1473
+#: ../../operation/agentes/pandora_networkmap.php:541
msgid "Could not be duplicated"
msgstr "No se puede duplicar"
-#: ../../enterprise/godmode/policies/policy_modules.php:1482
-#: ../../operation/agentes/estado_monitores.php:610
+#: ../../enterprise/godmode/policies/policy_modules.php:1527
+#: ../../operation/agentes/estado_monitores.php:608
msgid "Show in hierachy mode"
msgstr "Mostrar en modo jerarquía"
-#: ../../enterprise/godmode/policies/policy_modules.php:1577
+#: ../../enterprise/godmode/policies/policy_modules.php:1622
msgid "Local component"
msgstr "Componente local"
-#: ../../enterprise/godmode/policies/policy_modules.php:1590
-#: ../../enterprise/godmode/policies/policy_modules.php:1591
+#: ../../enterprise/godmode/policies/policy_modules.php:1635
+#: ../../enterprise/godmode/policies/policy_modules.php:1636
msgid "Disabled module"
msgstr "Módulo deshabilitado"
-#: ../../enterprise/godmode/policies/policy_modules.php:1598
-#: ../../enterprise/godmode/policies/policy_modules.php:1599
+#: ../../enterprise/godmode/policies/policy_modules.php:1643
+#: ../../enterprise/godmode/policies/policy_modules.php:1644
msgid "Enabled module"
msgstr "Módulo habilitado"
-#: ../../enterprise/godmode/policies/policy_modules.php:1609
-#: ../../enterprise/godmode/policies/policy_modules.php:1610
-#: ../../godmode/agentes/module_manager.php:940
+#: ../../enterprise/godmode/policies/policy_modules.php:1654
+#: ../../enterprise/godmode/policies/policy_modules.php:1655
+#: ../../godmode/agentes/module_manager.php:954
msgid "Enable module"
msgstr "Habilitar el módulo"
-#: ../../enterprise/godmode/policies/policy_modules.php:1619
-#: ../../enterprise/godmode/policies/policy_modules.php:1620
-#: ../../godmode/agentes/module_manager.php:949
+#: ../../enterprise/godmode/policies/policy_modules.php:1664
+#: ../../enterprise/godmode/policies/policy_modules.php:1665
+#: ../../godmode/agentes/module_manager.php:963
msgid "Disable module"
msgstr "Deshabilitar el módulo"
-#: ../../enterprise/godmode/policies/policy_modules.php:1719
+#: ../../enterprise/godmode/policies/policy_modules.php:1764
msgid "There are no defined modules"
msgstr "No hay módulos definidos"
-#: ../../enterprise/godmode/policies/policy_modules.php:1840
+#: ../../enterprise/godmode/policies/policy_modules.php:1885
#: ../../godmode/agentes/module_manager_editor.php:868
msgid "No module name provided"
msgstr "No se proporcionó ningún nombre de módulo."
-#: ../../enterprise/godmode/policies/policy_modules.php:1841
+#: ../../enterprise/godmode/policies/policy_modules.php:1886
#: ../../godmode/agentes/module_manager_editor.php:878
msgid "No target IP provided"
msgstr "No se proporcionó ninguna IP de destino."
-#: ../../enterprise/godmode/policies/policy_modules.php:1842
+#: ../../enterprise/godmode/policies/policy_modules.php:1887
#: ../../godmode/agentes/module_manager_editor.php:888
msgid "No SNMP OID provided"
msgstr "No se proporcionó ningún OID de SMTP."
-#: ../../enterprise/godmode/policies/policy_modules.php:2008
+#: ../../enterprise/godmode/policies/policy_modules.php:2053
msgid "Are you sure to copy modules into policy?\\n"
msgstr "¿Estás seguro de que quieres copiar los módulos en la política?\\n"
-#: ../../enterprise/godmode/policies/policy_modules.php:2028
+#: ../../enterprise/godmode/policies/policy_modules.php:2071
msgid "Please select any module to copy"
msgstr "Por favor, selecciona algún módulo para copiar."
-#: ../../enterprise/godmode/policies/policy_queue.php:63
+#: ../../enterprise/godmode/policies/policy_queue.php:65
msgid "No policies with this id"
msgstr "No hay políticas con este identificador"
-#: ../../enterprise/godmode/policies/policy_queue.php:78
+#: ../../enterprise/godmode/policies/policy_queue.php:80
#: ../../enterprise/godmode/policies/policy_agents.php:61
msgid ""
"Starting with Pandora FMS version 760, assigning an entire group to a policy "
@@ -16894,118 +17053,118 @@ msgstr ""
"política la aplicará automáticamente a todos los nuevos agentes añadidos a ese "
"grupo."
-#: ../../enterprise/godmode/policies/policy_queue.php:146
+#: ../../enterprise/godmode/policies/policy_queue.php:148
#, php-format
msgid "%s: Operations successfully deleted from the queue"
msgstr "%s: Operaciones eliminadas correctamente de la cola"
-#: ../../enterprise/godmode/policies/policy_queue.php:153
+#: ../../enterprise/godmode/policies/policy_queue.php:155
msgid "Operations successfully deleted from the queue"
msgstr "Operaciones eliminadas correctamente de la cola"
-#: ../../enterprise/godmode/policies/policy_queue.php:154
+#: ../../enterprise/godmode/policies/policy_queue.php:156
msgid "Operations cannot be deleted from the queue"
msgstr "Las operaciones no pueden ser eliminadas de la cola."
-#: ../../enterprise/godmode/policies/policy_queue.php:261
+#: ../../enterprise/godmode/policies/policy_queue.php:263
#, php-format
msgid "Some nodes (%s) are unreachebles. Some information may be missing."
msgstr "Algunos nódulos (%s) están inaccesible. Podría faltar información."
-#: ../../enterprise/godmode/policies/policy_queue.php:418
+#: ../../enterprise/godmode/policies/policy_queue.php:420
msgid "Update pending"
msgstr "Actualización pendiente"
-#: ../../enterprise/godmode/policies/policy_queue.php:424
+#: ../../enterprise/godmode/policies/policy_queue.php:426
msgid "Update pending agents"
msgstr "Actualizar agentes pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:447
+#: ../../enterprise/godmode/policies/policy_queue.php:449
#: ../../enterprise/godmode/policies/policy_agents.php:1135
#: ../../enterprise/godmode/policies/policy_agents.php:1477
msgid "Add to apply queue"
msgstr "Añadir a la cola para aplicarlo"
-#: ../../enterprise/godmode/policies/policy_queue.php:453
+#: ../../enterprise/godmode/policies/policy_queue.php:455
msgid "Add to apply queue only for database"
msgstr "Añadir a la cola de aplicación solo de cambios de base de datos"
-#: ../../enterprise/godmode/policies/policy_queue.php:464
+#: ../../enterprise/godmode/policies/policy_queue.php:466
msgid "Update pending groups"
msgstr "Actualizar grupos pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:478
+#: ../../enterprise/godmode/policies/policy_queue.php:480
msgid "Link pending modules"
msgstr "Enlazar módulos pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:486
+#: ../../enterprise/godmode/policies/policy_queue.php:488
msgid "Will be linked in the next policy application"
msgstr "Se enlazará en la siguiente aplicación de políticas"
-#: ../../enterprise/godmode/policies/policy_queue.php:492
+#: ../../enterprise/godmode/policies/policy_queue.php:494
msgid "Unlink pending modules"
msgstr "Desenlazar módulos pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:498
+#: ../../enterprise/godmode/policies/policy_queue.php:500
msgid "Will be unlinked in the next policy application"
msgstr "Será desenlazado en la siguiente aplicación de políticas"
-#: ../../enterprise/godmode/policies/policy_queue.php:503
+#: ../../enterprise/godmode/policies/policy_queue.php:505
msgid "Delete pending"
msgstr "Eliminación pendiente"
-#: ../../enterprise/godmode/policies/policy_queue.php:509
+#: ../../enterprise/godmode/policies/policy_queue.php:511
msgid "Delete pending agents"
msgstr "Eliminar agentes pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:517
-#: ../../enterprise/godmode/policies/policy_queue.php:532
-#: ../../enterprise/godmode/policies/policy_queue.php:547
-#: ../../enterprise/godmode/policies/policy_queue.php:562
-#: ../../enterprise/godmode/policies/policy_queue.php:577
-#: ../../enterprise/godmode/policies/policy_queue.php:592
-#: ../../enterprise/godmode/policies/policy_queue.php:607
-#: ../../enterprise/godmode/policies/policy_queue.php:622
+#: ../../enterprise/godmode/policies/policy_queue.php:519
+#: ../../enterprise/godmode/policies/policy_queue.php:534
+#: ../../enterprise/godmode/policies/policy_queue.php:549
+#: ../../enterprise/godmode/policies/policy_queue.php:564
+#: ../../enterprise/godmode/policies/policy_queue.php:579
+#: ../../enterprise/godmode/policies/policy_queue.php:594
+#: ../../enterprise/godmode/policies/policy_queue.php:609
+#: ../../enterprise/godmode/policies/policy_queue.php:624
msgid "Will be deleted in the next policy application"
msgstr "Se eliminará en la siguiente aplicación de políticas"
-#: ../../enterprise/godmode/policies/policy_queue.php:524
+#: ../../enterprise/godmode/policies/policy_queue.php:526
msgid "Delete pending groups"
msgstr "Eliminar grupos pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:539
+#: ../../enterprise/godmode/policies/policy_queue.php:541
msgid "Delete pending modules"
msgstr "Eliminar módulos pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:554
+#: ../../enterprise/godmode/policies/policy_queue.php:556
msgid "Delete pending inventory modules"
msgstr "Eliminar módulos de inventario pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:569
+#: ../../enterprise/godmode/policies/policy_queue.php:571
msgid "Delete pending alerts"
msgstr "Eliminar alertas pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:584
+#: ../../enterprise/godmode/policies/policy_queue.php:586
msgid "Delete pending external alerts"
msgstr "Eliminar alertas externas pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:599
+#: ../../enterprise/godmode/policies/policy_queue.php:601
msgid "Delete pending file collections"
msgstr "Eliminar colecciones de archivos pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:614
+#: ../../enterprise/godmode/policies/policy_queue.php:616
msgid "Delete pending plugins"
msgstr "Eliminar plugins pendientes"
-#: ../../enterprise/godmode/policies/policy_queue.php:628
+#: ../../enterprise/godmode/policies/policy_queue.php:630
msgid "Advices"
msgstr "Consejos"
-#: ../../enterprise/godmode/policies/policy_queue.php:633
+#: ../../enterprise/godmode/policies/policy_queue.php:635
msgid "Queue summary"
msgstr "Resumen de cola"
-#: ../../enterprise/godmode/policies/policy_queue.php:634
+#: ../../enterprise/godmode/policies/policy_queue.php:636
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:186
#: ../../godmode/snmpconsole/snmp_alert.php:1812
#: ../../godmode/alerts/alert_list.list.php:260
@@ -17013,28 +17172,28 @@ msgstr "Resumen de cola"
msgid "Toggle filter(s)"
msgstr "Conmutar filtro(s)"
-#: ../../enterprise/godmode/policies/policy_queue.php:710
+#: ../../enterprise/godmode/policies/policy_queue.php:712
#: ../../enterprise/godmode/policies/policy_linking.php:203
#: ../../include/functions_massive_operations.php:189
-#: ../../include/lib/Dashboard/Widget.php:603
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544
-#: ../../include/functions_events.php:4908
+#: ../../include/lib/Dashboard/Widget.php:604
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545
+#: ../../include/functions_events.php:4913
msgid "Node"
msgstr "Nodo"
-#: ../../enterprise/godmode/policies/policy_queue.php:838
+#: ../../enterprise/godmode/policies/policy_queue.php:842
msgid "Empty queue"
msgstr "Vaciar cola"
-#: ../../enterprise/godmode/policies/policy_queue.php:852
+#: ../../enterprise/godmode/policies/policy_queue.php:856
msgid "This operation could take a long time"
msgstr "Esta operación podría tardar bastante tiempo."
-#: ../../enterprise/godmode/policies/policy_queue.php:864
+#: ../../enterprise/godmode/policies/policy_queue.php:868
msgid "Apply all queues"
msgstr "Aplicar todas las colas"
-#: ../../enterprise/godmode/policies/policy_queue.php:877
+#: ../../enterprise/godmode/policies/policy_queue.php:881
msgid "Clear all items"
msgstr "Borrar todos los elementos"
@@ -17361,7 +17520,7 @@ msgstr "Agentes en la política"
#: ../../enterprise/godmode/policies/policy_agents.php:851
#: ../../enterprise/godmode/setup/setup_auth.php:252
#: ../../enterprise/godmode/setup/setup_auth.php:602
-#: ../../enterprise/godmode/setup/setup_auth.php:1412
+#: ../../enterprise/godmode/setup/setup_auth.php:1629
#: ../../extensions/files_repo/files_repo_form.php:54
#: ../../extensions/module_groups.php:350
#: ../../godmode/reporting/visual_console_builder.wizard.php:368
@@ -17375,12 +17534,12 @@ msgstr "Agentes en la política"
#: ../../include/lib/Dashboard/Widgets/events_list.php:431
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:341
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:350
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:372
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:344
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:353
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:375
#: ../../include/lib/Dashboard/Widgets/tactical.php:331
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301
-#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:719
+#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:720
msgid "Groups"
msgstr "Grupos"
@@ -17399,10 +17558,10 @@ msgstr "Grupos en la política"
#: ../../enterprise/godmode/policies/policy_agents.php:959
#: ../../godmode/agentes/configurar_agente.php:623
#: ../../godmode/agentes/configurar_agente.php:762
-#: ../../godmode/agentes/agent_manager.php:862
-#: ../../godmode/massive/massive_edit_agents.php:966
+#: ../../godmode/agentes/agent_manager.php:870
+#: ../../godmode/massive/massive_edit_agents.php:983
#: ../../godmode/reporting/reporting_builder.item_editor.php:79
-#: ../../godmode/servers/servers.build_table.php:260
+#: ../../godmode/servers/servers.build_table.php:273
#: ../../operation/agentes/estado_generalagente.php:313
msgid "Remote configuration"
msgstr "Configuración remota"
@@ -17420,7 +17579,7 @@ msgstr "R."
#: ../../enterprise/operation/agentes/policy_view.php:167
#: ../../enterprise/operation/agentes/policy_view.php:258
#: ../../enterprise/operation/agentes/policy_view.php:263
-#: ../../mobile/operation/agents.php:406
+#: ../../mobile/operation/agents.php:407
#: ../../include/ajax/alert_list.ajax.php:286
#: ../../include/ajax/alert_list.ajax.php:311
#: ../../include/class/AuditLog.class.php:130
@@ -17439,7 +17598,7 @@ msgstr "U."
#: ../../enterprise/godmode/policies/policy_agents.php:1348
#: ../../enterprise/godmode/admin_access_logs.php:54
#: ../../godmode/reporting/visual_console_builder.elements.php:134
-#: ../../mobile/operation/agents.php:407
+#: ../../mobile/operation/agents.php:408
#: ../../include/class/AuditLog.class.php:130
msgid "A."
msgstr "A."
@@ -17526,16 +17685,20 @@ msgstr "Asistente de agente"
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
+#: ../../godmode/snmpconsole/snmp_filters.php:59
#: ../../include/class/CredentialStore.class.php:965
#: ../../include/class/SnmpConsole.class.php:221
#: ../../operation/snmpconsole/snmp_statistics.php:104
+#: ../../operation/snmpconsole/snmp_browser.php:92
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
#: ../../operation/menu.php:259
msgid "SNMP"
msgstr "SNMP"
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304
#: ../../godmode/setup/snmp_wizard.php:42
#: ../../include/functions_snmp_browser.php:556
msgid "OID"
@@ -17551,13 +17714,13 @@ msgstr "OID personalizado"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232
#: ../../enterprise/include/functions_reporting_csv.php:2437
#: ../../enterprise/include/functions_reporting_csv.php:2451
-#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2349
+#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2358
#: ../../include/functions_reports.php:847
-#: ../../include/class/TipsWindow.class.php:455
-#: ../../include/class/TipsWindow.class.php:730
-#: ../../include/class/TipsWindow.class.php:897
-#: ../../include/functions_reporting.php:7509
+#: ../../include/class/TipsWindow.class.php:467
+#: ../../include/class/TipsWindow.class.php:750
+#: ../../include/class/TipsWindow.class.php:917
+#: ../../include/functions_reporting.php:7518
#: ../../include/lib/Dashboard/Widgets/post.php:214
msgid "Text"
msgstr "Texto"
@@ -17565,8 +17728,8 @@ msgstr "Texto"
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44
#: ../../enterprise/operation/snmpconsole/snmp_view.php:82
#: ../../enterprise/operation/menu.php:151
-#: ../../include/class/SnmpConsole.class.php:915
-#: ../../include/class/SnmpConsole.class.php:916
+#: ../../include/class/SnmpConsole.class.php:917
+#: ../../include/class/SnmpConsole.class.php:918
msgid "SNMP trap editor"
msgstr "Editor de traps SNMP"
@@ -17835,7 +17998,7 @@ msgid "Failed: create the alerts for this modules, please check."
msgstr "Error al crear las alertas para estos módulos. Resuelve el problema."
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127
#: ../../enterprise/include/ajax/policy.ajax.php:263
#: ../../godmode/massive/massive_standby_alerts.php:218
#: ../../godmode/massive/massive_add_alerts.php:280
@@ -17846,8 +18009,9 @@ msgstr "Plantilla de alerta"
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2200
#: ../../include/functions_alerts.php:673
msgid "Regular expression"
msgstr "Expresión regular"
@@ -17930,8 +18094,9 @@ msgstr " política de"
#: ../../enterprise/godmode/setup/setup_auth.php:341
#: ../../enterprise/godmode/setup/setup_auth.php:473
#: ../../enterprise/godmode/setup/setup_auth.php:639
-#: ../../enterprise/godmode/setup/setup_auth.php:1281
-#: ../../enterprise/godmode/setup/setup_auth.php:1451
+#: ../../enterprise/godmode/setup/setup_auth.php:1197
+#: ../../enterprise/godmode/setup/setup_auth.php:1498
+#: ../../enterprise/godmode/setup/setup_auth.php:1668
#: ../../enterprise/godmode/setup/setup_acl.php:487
#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719
#: ../../enterprise/include/functions_tasklist.php:606
@@ -17951,30 +18116,30 @@ msgstr " política de"
#: ../../godmode/massive/massive_copy_modules.php:178
#: ../../godmode/massive/massive_delete_modules.php:407
#: ../../godmode/massive/massive_delete_modules.php:521
-#: ../../godmode/massive/massive_edit_agents.php:650
-#: ../../godmode/massive/massive_edit_agents.php:1153
+#: ../../godmode/massive/massive_edit_agents.php:667
+#: ../../godmode/massive/massive_edit_agents.php:1170
#: ../../godmode/massive/massive_add_action_alerts.php:217
#: ../../godmode/massive/massive_edit_modules.php:411
#: ../../godmode/massive/massive_edit_modules.php:497
#: ../../godmode/reporting/create_container.php:674
-#: ../../godmode/events/event_edit_filter.php:510
-#: ../../godmode/events/event_edit_filter.php:526
-#: ../../include/functions_visual_map_editor.php:498
-#: ../../include/functions_visual_map_editor.php:1454
-#: ../../include/functions_visual_map_editor.php:1548
+#: ../../godmode/events/event_edit_filter.php:512
+#: ../../godmode/events/event_edit_filter.php:528
+#: ../../include/functions_visual_map_editor.php:492
+#: ../../include/functions_visual_map_editor.php:1512
+#: ../../include/functions_visual_map_editor.php:1606
#: ../../include/ajax/visual_console_builder.ajax.php:1186
-#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2327
-#: ../../include/functions_html.php:2328 ../../include/functions_html.php:2329
-#: ../../include/functions_html.php:2330 ../../include/functions_html.php:2331
-#: ../../include/functions_html.php:2333 ../../include/functions_html.php:2334
-#: ../../include/functions_html.php:2335 ../../include/functions_html.php:2336
-#: ../../include/functions_html.php:2337 ../../include/functions_html.php:2352
-#: ../../include/functions_html.php:2374 ../../include/functions_html.php:2396
-#: ../../include/functions_html.php:2418 ../../include/functions_html.php:2440
+#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2342
+#: ../../include/functions_html.php:2343 ../../include/functions_html.php:2344
+#: ../../include/functions_html.php:2345 ../../include/functions_html.php:2346
+#: ../../include/functions_html.php:2348 ../../include/functions_html.php:2349
+#: ../../include/functions_html.php:2350 ../../include/functions_html.php:2351
+#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2367
+#: ../../include/functions_html.php:2389 ../../include/functions_html.php:2411
+#: ../../include/functions_html.php:2433 ../../include/functions_html.php:2455
#: ../../include/lib/Dashboard/Widgets/events_list.php:340
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275
-#: ../../operation/events/events.php:1999 ../../operation/events/events.php:2017
-#: ../../operation/events/events.php:3028
+#: ../../operation/events/events.php:2053 ../../operation/events/events.php:2071
+#: ../../operation/events/events.php:3087
msgid "Any"
msgstr "Cualquiera"
@@ -17989,7 +18154,7 @@ msgstr "a políticas"
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365
#: ../../godmode/massive/massive_add_alerts.php:324
-#: ../../godmode/massive/massive_edit_agents.php:1391
+#: ../../godmode/massive/massive_edit_agents.php:1407
#: ../../godmode/massive/massive_delete_alerts.php:389
msgid ""
"Unsucessful sending the data, please contact with your administrator or make "
@@ -18017,7 +18182,7 @@ msgstr "No hay políticas de destino que copiar"
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211
#: ../../godmode/massive/massive_delete_modules.php:372
#: ../../godmode/massive/massive_edit_modules.php:356
-#: ../../include/functions_reporting_html.php:1776
+#: ../../include/functions_reporting_html.php:1785
msgid "Agent group"
msgstr "Grupo de agentes"
@@ -18036,8 +18201,8 @@ msgid "When select agents"
msgstr "Al seleccionar agentes"
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265
-#: ../../extensions/agents_modules.php:489
-#: ../../extensions/agents_modules.php:493
+#: ../../extensions/agents_modules.php:497
+#: ../../extensions/agents_modules.php:501
#: ../../godmode/agentes/planned_downtime.editor.php:1235
#: ../../godmode/massive/massive_delete_action_alerts.php:246
#: ../../godmode/massive/massive_delete_modules.php:555
@@ -18046,12 +18211,12 @@ msgstr "Al seleccionar agentes"
#: ../../godmode/massive/massive_add_action_alerts.php:225
#: ../../godmode/massive/massive_edit_modules.php:528
#: ../../godmode/reporting/reporting_builder.item_editor.php:1923
-#: ../../include/functions_html.php:5947
+#: ../../include/functions_html.php:5971
msgid "Show common modules"
msgstr "Mostrar módulos comunes"
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266
-#: ../../extensions/agents_modules.php:490
+#: ../../extensions/agents_modules.php:498
#: ../../godmode/agentes/planned_downtime.editor.php:1236
#: ../../godmode/massive/massive_delete_action_alerts.php:247
#: ../../godmode/massive/massive_delete_modules.php:556
@@ -18060,7 +18225,7 @@ msgstr "Mostrar módulos comunes"
#: ../../godmode/massive/massive_add_action_alerts.php:226
#: ../../godmode/massive/massive_edit_modules.php:529
#: ../../godmode/reporting/reporting_builder.item_editor.php:1924
-#: ../../include/functions_html.php:5948
+#: ../../include/functions_html.php:5972
msgid "Show all modules"
msgstr "Mostrar todos los módulos"
@@ -18092,7 +18257,7 @@ msgstr "Operaciones masivas"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30
#: ../../godmode/snmpconsole/snmp_alert.php:41
#: ../../include/class/SnmpConsole.class.php:315
-#: ../../include/class/SnmpConsole.class.php:1379
+#: ../../include/class/SnmpConsole.class.php:1381
msgid "Cold start (0)"
msgstr "Inicio cero (0)"
@@ -18100,7 +18265,7 @@ msgstr "Inicio cero (0)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31
#: ../../godmode/snmpconsole/snmp_alert.php:42
#: ../../include/class/SnmpConsole.class.php:316
-#: ../../include/class/SnmpConsole.class.php:1383
+#: ../../include/class/SnmpConsole.class.php:1385
msgid "Warm start (1)"
msgstr "Comienzo de inicio (1)"
@@ -18108,7 +18273,7 @@ msgstr "Comienzo de inicio (1)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32
#: ../../godmode/snmpconsole/snmp_alert.php:43
#: ../../include/class/SnmpConsole.class.php:317
-#: ../../include/class/SnmpConsole.class.php:1387
+#: ../../include/class/SnmpConsole.class.php:1389
msgid "Link down (2)"
msgstr "Enlace interrumpido (2)"
@@ -18116,7 +18281,7 @@ msgstr "Enlace interrumpido (2)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33
#: ../../godmode/snmpconsole/snmp_alert.php:44
#: ../../include/class/SnmpConsole.class.php:318
-#: ../../include/class/SnmpConsole.class.php:1391
+#: ../../include/class/SnmpConsole.class.php:1393
msgid "Link up (3)"
msgstr "Enlace activo (3)"
@@ -18124,7 +18289,7 @@ msgstr "Enlace activo (3)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34
#: ../../godmode/snmpconsole/snmp_alert.php:45
#: ../../include/class/SnmpConsole.class.php:319
-#: ../../include/class/SnmpConsole.class.php:1395
+#: ../../include/class/SnmpConsole.class.php:1397
msgid "Authentication failure (4)"
msgstr "Fallo de autentificación (4)"
@@ -18134,14 +18299,15 @@ msgstr "Fallo de autentificación (4)"
#: ../../enterprise/godmode/setup/setup_acl.php:534
#: ../../enterprise/include/class/Aws.cloud.php:347
#: ../../extensions/api_checker.php:303
-#: ../../godmode/groups/configure_group.php:249
+#: ../../godmode/groups/configure_group.php:268
+#: ../../godmode/users/configure_user.php:65
#: ../../godmode/users/user_management.php:44
#: ../../godmode/snmpconsole/snmp_alert.php:46
#: ../../godmode/massive/massive_edit_users.php:279
-#: ../../include/functions_graph.php:3543
+#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553
#: ../../include/class/SnmpConsole.class.php:320
-#: ../../include/class/SnmpConsole.class.php:1372
-#: ../../include/class/SnmpConsole.class.php:1399
+#: ../../include/class/SnmpConsole.class.php:1374
+#: ../../include/class/SnmpConsole.class.php:1401
#: ../../operation/users/user_edit.php:474
#: ../../operation/gis_maps/render_view.php:168
msgid "Other"
@@ -18160,12 +18326,12 @@ msgid "Unsuccessfully deleted alerts (%s / %s)"
msgstr "Error al eliminar las alertas (%s / %s)"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237
msgid "You must select a SNMP alert"
msgstr "Seleccione una alerta SNMP"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263
msgid ""
"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single "
"value, each Custom OIDs/Datas."
@@ -18174,8 +18340,8 @@ msgstr ""
"(IP) SNMP, Valor único, cada OIDs/Datos personalizado."
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310
#: ../../godmode/snmpconsole/snmp_alert.php:863
#: ../../godmode/snmpconsole/snmp_alert.php:1757
#: ../../include/functions_snmp.php:433
@@ -18188,30 +18354,34 @@ msgid "SNMP Alerts to be deleted"
msgstr "Alertas SNMP para añadir"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414
msgid "No snmp alert found."
msgstr "No se ha encontrado la alerta SNMP."
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
#, php-format
msgid "Successfully updated alerts (%s / %s)"
msgstr "Alertas actualizadas correctamente (%s / %s)"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224
#, php-format
msgid "Unsuccessfully updated alerts (%s / %s)"
msgstr "No se han podido actualizar las alertas (%s / %s)"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+msgid "At least one parameter must be modified"
+msgstr "Se debe modificar al menos un parámetro"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282
msgid "SNMP Alerts to be edit"
msgstr "Alertas SNMP para editar"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306
#: ../../godmode/snmpconsole/snmp_alert.php:783
msgid "Custom Value/OID"
msgstr "Valor/OID personalizado"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308
#: ../../godmode/snmpconsole/snmp_trap_generator.php:138
#: ../../godmode/snmpconsole/snmp_alert.php:814
#: ../../godmode/snmpconsole/snmp_alert.php:1896
@@ -18219,38 +18389,38 @@ msgstr "Valor/OID personalizado"
msgid "SNMP Agent"
msgstr "Agente SNMP"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312
#: ../../godmode/snmpconsole/snmp_alert.php:884
msgid "Single value"
msgstr "Valor único"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314
#: ../../godmode/snmpconsole/snmp_alert.php:1537
#: ../../godmode/alerts/configure_alert_template.php:744
msgid "Min. number of alerts"
msgstr "Número mínimo de alertas"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316
#: ../../godmode/snmpconsole/snmp_alert.php:1554
#: ../../godmode/alerts/configure_alert_template.php:784
msgid "Max. number of alerts"
msgstr "Número máximo de alertas"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331
#: ../../godmode/snmpconsole/snmp_alert.php:1583
msgid "Other value"
msgstr "Otros valores"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337
#: ../../godmode/snmpconsole/snmp_alert.php:1651
#: ../../godmode/snmpconsole/snmp_alert.php:1891
#: ../../godmode/reporting/reporting_builder.list_items.php:373
-#: ../../godmode/reporting/reporting_builder.list_items.php:717
-#: ../../godmode/reporting/graph_builder.graph_editor.php:331
+#: ../../godmode/reporting/reporting_builder.list_items.php:718
+#: ../../godmode/reporting/graph_builder.graph_editor.php:244
#: ../../godmode/reporting/visual_console_builder.elements.php:123
-#: ../../include/functions_visual_map_editor.php:920
+#: ../../include/functions_visual_map_editor.php:968
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246
-#: ../../include/rest-api/models/VisualConsole/Item.php:2024
+#: ../../include/rest-api/models/VisualConsole/Item.php:2027
msgid "Position"
msgstr "Posición"
@@ -18262,15 +18432,15 @@ msgstr "Módulos sin usar"
msgid "Modules used"
msgstr "Módulos usados"
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90
msgid "Success: remove the alerts."
msgstr "Alertas borradas correctamente"
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90
msgid "Failed: remove the alerts for this modules, please check."
msgstr "Error al borrar las alertas en estos módulos"
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143
msgid "Modules agents in policy"
msgstr "Módulos de agentes en la política"
@@ -18281,23 +18451,25 @@ msgstr "Mínimo dinámico"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270
-#: ../../godmode/modules/manage_network_components_form_network.php:82
-#: ../../godmode/agentes/module_manager_editor_network.php:196
+#: ../../godmode/modules/manage_network_components_form_network.php:85
+#: ../../godmode/agentes/module_manager_editor_network.php:197
+#: ../../godmode/massive/massive_edit_modules.php:811
#: ../../include/class/CredentialStore.class.php:1094
-#: ../../include/class/CredentialStore.class.php:1369
+#: ../../include/class/CredentialStore.class.php:1378
#: ../../include/class/AgentWizard.class.php:796
msgid "SNMP community"
msgstr "Comunidad SNMP"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742
-#: ../../godmode/agentes/module_manager_editor_network.php:198
+#: ../../godmode/agentes/module_manager_editor_network.php:199
#: ../../godmode/massive/massive_edit_modules.php:821
msgid "SNMP OID"
msgstr "SNMP OID"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757
+#: ../../godmode/modules/manage_network_components_form_network.php:53
#: ../../godmode/agentes/module_manager_editor_wmi.php:97
-#: ../../godmode/agentes/module_manager_editor_network.php:81
+#: ../../godmode/agentes/module_manager_editor_network.php:82
#: ../../godmode/massive/massive_edit_modules.php:836
#: ../../include/class/AgentWizard.class.php:633
#: ../../include/functions_snmp_browser.php:709
@@ -18307,55 +18479,55 @@ msgstr "IP objetivo"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288
-#: ../../godmode/modules/manage_network_components_form_network.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:197
+#: ../../godmode/modules/manage_network_components_form_network.php:66
+#: ../../godmode/agentes/module_manager_editor_network.php:198
#: ../../godmode/massive/massive_edit_modules.php:854
-#: ../../godmode/wizards/HostDevices.class.php:1220
+#: ../../godmode/wizards/HostDevices.class.php:1216
#: ../../include/class/CredentialStore.class.php:1106
-#: ../../include/class/CredentialStore.class.php:1382
+#: ../../include/class/CredentialStore.class.php:1391
#: ../../include/class/AgentWizard.class.php:818
msgid "SNMP version"
msgstr "Versión SNMP"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322
-#: ../../godmode/modules/manage_network_components_form_network.php:96
-#: ../../godmode/agentes/module_manager_editor_network.php:377
+#: ../../godmode/modules/manage_network_components_form_network.php:127
+#: ../../godmode/agentes/module_manager_editor_network.php:378
#: ../../godmode/massive/massive_edit_modules.php:867
-#: ../../godmode/wizards/HostDevices.class.php:1298
+#: ../../godmode/wizards/HostDevices.class.php:1294
#: ../../include/functions_snmp_browser.php:839
msgid "Auth user"
msgstr "Autentificación de usuario"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338
-#: ../../godmode/modules/manage_network_components_form_network.php:105
-#: ../../godmode/agentes/module_manager_editor_network.php:390
+#: ../../godmode/modules/manage_network_components_form_network.php:107
+#: ../../godmode/agentes/module_manager_editor_network.php:391
#: ../../godmode/massive/massive_edit_modules.php:876
-#: ../../godmode/wizards/HostDevices.class.php:1340
+#: ../../godmode/wizards/HostDevices.class.php:1336
#: ../../include/functions_snmp_browser.php:851
msgid "Auth password"
msgstr "Autentificación de contraseña"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
-#: ../../godmode/agentes/module_manager_editor_network.php:390
-#: ../../godmode/agentes/module_manager_editor_network.php:412
+#: ../../godmode/agentes/module_manager_editor_network.php:391
+#: ../../godmode/agentes/module_manager_editor_network.php:415
#: ../../godmode/massive/massive_edit_modules.php:876
#: ../../godmode/massive/massive_edit_modules.php:880
-#: ../../godmode/wizards/HostDevices.class.php:1342
-#: ../../godmode/wizards/HostDevices.class.php:1373
+#: ../../godmode/wizards/HostDevices.class.php:1338
+#: ../../godmode/wizards/HostDevices.class.php:1369
msgid "The pass length must be eight character minimum."
msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres."
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360
-#: ../../godmode/modules/manage_network_components_form_network.php:123
-#: ../../godmode/agentes/module_manager_editor_network.php:410
+#: ../../godmode/modules/manage_network_components_form_network.php:149
+#: ../../godmode/agentes/module_manager_editor_network.php:413
#: ../../godmode/massive/massive_edit_modules.php:878
-#: ../../godmode/wizards/HostDevices.class.php:1356
+#: ../../godmode/wizards/HostDevices.class.php:1352
#: ../../include/class/CredentialStore.class.php:1196
-#: ../../include/class/CredentialStore.class.php:1489
+#: ../../include/class/CredentialStore.class.php:1498
#: ../../include/class/AgentWizard.class.php:954
#: ../../include/functions_snmp_browser.php:870
msgid "Privacy method"
@@ -18363,24 +18535,24 @@ msgstr "Método de privacidad"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363
-#: ../../godmode/modules/manage_network_components_form_network.php:126
-#: ../../godmode/agentes/module_manager_editor_network.php:411
+#: ../../godmode/modules/manage_network_components_form_network.php:152
+#: ../../godmode/agentes/module_manager_editor_network.php:414
#: ../../godmode/massive/massive_edit_modules.php:879
-#: ../../godmode/wizards/HostDevices.class.php:1361
+#: ../../godmode/wizards/HostDevices.class.php:1357
#: ../../include/class/CredentialStore.class.php:1205
-#: ../../include/class/CredentialStore.class.php:1498
+#: ../../include/class/CredentialStore.class.php:1507
#: ../../include/functions_snmp_browser.php:873
msgid "DES"
msgstr "DES"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364
-#: ../../godmode/modules/manage_network_components_form_network.php:127
-#: ../../godmode/agentes/module_manager_editor_network.php:411
+#: ../../godmode/modules/manage_network_components_form_network.php:153
+#: ../../godmode/agentes/module_manager_editor_network.php:414
#: ../../godmode/massive/massive_edit_modules.php:879
-#: ../../godmode/wizards/HostDevices.class.php:1362
+#: ../../godmode/wizards/HostDevices.class.php:1358
#: ../../include/class/CredentialStore.class.php:1204
-#: ../../include/class/CredentialStore.class.php:1496
+#: ../../include/class/CredentialStore.class.php:1505
#: ../../include/functions_snmp_browser.php:874
msgid "AES"
msgstr "AES"
@@ -18388,11 +18560,11 @@ msgstr "AES"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379
#: ../../godmode/modules/manage_network_components_form_network.php:136
-#: ../../godmode/agentes/module_manager_editor_network.php:412
+#: ../../godmode/agentes/module_manager_editor_network.php:415
#: ../../godmode/massive/massive_edit_modules.php:880
-#: ../../godmode/wizards/HostDevices.class.php:1371
+#: ../../godmode/wizards/HostDevices.class.php:1367
#: ../../include/class/CredentialStore.class.php:1213
-#: ../../include/class/CredentialStore.class.php:1510
+#: ../../include/class/CredentialStore.class.php:1519
#: ../../include/class/AgentWizard.class.php:968
#: ../../include/functions_snmp_browser.php:886
msgid "Privacy pass"
@@ -18400,47 +18572,47 @@ msgstr "Conexión privada"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396
-#: ../../godmode/modules/manage_network_components_form_network.php:148
-#: ../../godmode/agentes/module_manager_editor_network.php:432
+#: ../../godmode/modules/manage_network_components_form_network.php:180
+#: ../../godmode/agentes/module_manager_editor_network.php:437
#: ../../godmode/massive/massive_edit_modules.php:882
-#: ../../godmode/wizards/HostDevices.class.php:1325
+#: ../../godmode/wizards/HostDevices.class.php:1321
#: ../../include/functions_snmp_browser.php:898
msgid "Auth method"
msgstr "Método de autentificación"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399
-#: ../../godmode/modules/manage_network_components_form_network.php:151
-#: ../../godmode/agentes/module_manager_editor_network.php:435
+#: ../../godmode/modules/manage_network_components_form_network.php:183
+#: ../../godmode/agentes/module_manager_editor_network.php:440
#: ../../godmode/massive/massive_edit_modules.php:883
-#: ../../godmode/wizards/HostDevices.class.php:1330
-#: ../../include/class/Diagnostics.class.php:2203
+#: ../../godmode/wizards/HostDevices.class.php:1326
+#: ../../include/class/Diagnostics.class.php:2207
#: ../../include/class/CredentialStore.class.php:1170
-#: ../../include/class/CredentialStore.class.php:1462
+#: ../../include/class/CredentialStore.class.php:1471
#: ../../include/functions_snmp_browser.php:901
msgid "MD5"
msgstr "MD5"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400
-#: ../../godmode/modules/manage_network_components_form_network.php:152
-#: ../../godmode/agentes/module_manager_editor_network.php:436
+#: ../../godmode/modules/manage_network_components_form_network.php:184
+#: ../../godmode/agentes/module_manager_editor_network.php:441
#: ../../godmode/massive/massive_edit_modules.php:883
-#: ../../godmode/wizards/HostDevices.class.php:1331
+#: ../../godmode/wizards/HostDevices.class.php:1327
#: ../../include/class/CredentialStore.class.php:1171
-#: ../../include/class/CredentialStore.class.php:1464
+#: ../../include/class/CredentialStore.class.php:1473
#: ../../include/functions_snmp_browser.php:902
msgid "SHA"
msgstr "SHA"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415
-#: ../../godmode/modules/manage_network_components_form_network.php:161
-#: ../../godmode/agentes/module_manager_editor_network.php:449
+#: ../../godmode/modules/manage_network_components_form_network.php:162
+#: ../../godmode/agentes/module_manager_editor_network.php:454
#: ../../godmode/massive/massive_edit_modules.php:884
-#: ../../godmode/wizards/HostDevices.class.php:1309
+#: ../../godmode/wizards/HostDevices.class.php:1305
#: ../../include/class/CredentialStore.class.php:1125
-#: ../../include/class/CredentialStore.class.php:1414
+#: ../../include/class/CredentialStore.class.php:1423
#: ../../include/class/AgentWizard.class.php:895
#: ../../include/functions_snmp_browser.php:914
msgid "Security level"
@@ -18448,30 +18620,30 @@ msgstr "Nivel de seguridad"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418
-#: ../../godmode/modules/manage_network_components_form_network.php:164
-#: ../../godmode/agentes/module_manager_editor_network.php:452
+#: ../../godmode/modules/manage_network_components_form_network.php:165
+#: ../../godmode/agentes/module_manager_editor_network.php:457
#: ../../godmode/massive/massive_edit_modules.php:887
-#: ../../godmode/wizards/HostDevices.class.php:1314
+#: ../../godmode/wizards/HostDevices.class.php:1310
#: ../../include/functions_snmp_browser.php:917
msgid "Not auth and not privacy method"
msgstr "Método sin autentificación ni privacidad"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419
-#: ../../godmode/modules/manage_network_components_form_network.php:165
-#: ../../godmode/agentes/module_manager_editor_network.php:453
+#: ../../godmode/modules/manage_network_components_form_network.php:166
+#: ../../godmode/agentes/module_manager_editor_network.php:458
#: ../../godmode/massive/massive_edit_modules.php:888
-#: ../../godmode/wizards/HostDevices.class.php:1315
+#: ../../godmode/wizards/HostDevices.class.php:1311
#: ../../include/functions_snmp_browser.php:918
msgid "Auth and not privacy method"
msgstr "Método con autentificación y sin privacidad"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420
-#: ../../godmode/modules/manage_network_components_form_network.php:166
-#: ../../godmode/agentes/module_manager_editor_network.php:454
+#: ../../godmode/modules/manage_network_components_form_network.php:167
+#: ../../godmode/agentes/module_manager_editor_network.php:459
#: ../../godmode/massive/massive_edit_modules.php:889
-#: ../../godmode/wizards/HostDevices.class.php:1316
+#: ../../godmode/wizards/HostDevices.class.php:1312
#: ../../include/functions_snmp_browser.php:919
msgid "Auth and privacy method"
msgstr "Método con autentificación y privacidad"
@@ -18479,13 +18651,13 @@ msgstr "Método con autentificación y privacidad"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835
#: ../../enterprise/operation/agentes/tag_view.php:157
#: ../../godmode/agentes/module_manager_editor_common.php:301
-#: ../../godmode/agentes/module_manager_editor_common.php:974
+#: ../../godmode/agentes/module_manager_editor_common.php:984
#: ../../godmode/massive/massive_edit_modules.php:907
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3928
-#: ../../include/ajax/heatmap.ajax.php:199 ../../include/functions_graph.php:5035
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3937
+#: ../../include/ajax/heatmap.ajax.php:228 ../../include/functions_graph.php:5045
#: ../../include/functions_treeview.php:115
#: ../../include/lib/Dashboard/Widgets/heatmap.php:334
-#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:573
+#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:572
msgid "Not assigned"
msgstr "Sin asignar"
@@ -18495,15 +18667,15 @@ msgstr "Sin asignar"
#: ../../godmode/modules/manage_network_components_form_wmi.php:47
#: ../../godmode/agentes/module_manager_editor_wmi.php:128
#: ../../godmode/massive/massive_edit_modules.php:921
-#: ../../include/functions_ui.php:7468
+#: ../../include/functions_ui.php:7545
#: ../../include/class/CredentialStore.class.php:973
-#: ../../include/class/CredentialStore.class.php:1345
+#: ../../include/class/CredentialStore.class.php:1351
#: ../../include/class/AgentWizard.class.php:677
msgid "Username"
msgstr "Usuario"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855
-#: ../../godmode/agentes/module_manager_editor_common.php:1355
+#: ../../godmode/agentes/module_manager_editor_common.php:1365
#: ../../godmode/massive/massive_edit_modules.php:927
msgid "Export target"
msgstr "Servidor de exportación"
@@ -18534,16 +18706,16 @@ msgid "Linked"
msgstr "Enlazado"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../godmode/agentes/module_manager.php:847
+#: ../../godmode/agentes/module_manager.php:854
+#: ../../godmode/agentes/module_manager.php:857
#: ../../godmode/massive/massive_edit_modules.php:1082
-#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075
+#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098
msgid "Unlinked"
msgstr "Desenlazado"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000
#: ../../godmode/modules/manage_network_components_form_common.php:326
-#: ../../godmode/agentes/module_manager_editor_common.php:1385
+#: ../../godmode/agentes/module_manager_editor_common.php:1395
#: ../../godmode/massive/massive_edit_modules.php:1091
msgid "Discard unknown events"
msgstr "Descartar eventos desconocidos"
@@ -18555,7 +18727,7 @@ msgstr ""
"El módulo todavía almacena datos pero las alertas y los eventos se detendrán."
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044
-#: ../../godmode/agentes/module_manager_editor_common.php:1409
+#: ../../godmode/agentes/module_manager_editor_common.php:1419
#: ../../godmode/massive/massive_edit_modules.php:1137
msgid "Timeout"
msgstr "Tiempo de espera"
@@ -18566,15 +18738,15 @@ msgid "Seconds that agent will wait for the execution of the module."
msgstr "Segundos que el agente tendrá que esperar para la ejecución del módulo"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070
-#: ../../godmode/modules/manage_network_components_form_network.php:209
-#: ../../godmode/agentes/module_manager_editor_network.php:322
+#: ../../godmode/modules/manage_network_components_form_network.php:227
+#: ../../godmode/agentes/module_manager_editor_network.php:323
#: ../../godmode/massive/massive_edit_modules.php:1163
msgid "TCP send"
msgstr "Enviar TCP"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073
-#: ../../godmode/modules/manage_network_components_form_network.php:216
-#: ../../godmode/agentes/module_manager_editor_network.php:323
+#: ../../godmode/modules/manage_network_components_form_network.php:234
+#: ../../godmode/agentes/module_manager_editor_network.php:324
#: ../../godmode/massive/massive_edit_modules.php:1166
msgid "TCP receive"
msgstr "Recibir TCP"
@@ -18606,13 +18778,13 @@ msgstr "Campo número"
#: ../../godmode/agentes/module_manager_editor_plugin.php:49
#: ../../godmode/massive/massive_edit_plugins.php:346
#: ../../godmode/massive/massive_edit_modules.php:1178
-#: ../../godmode/servers/plugin_registration.php:513
+#: ../../godmode/servers/plugin_registration.php:509
msgid "Plugin"
msgstr "Plugin"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103
-#: ../../godmode/modules/manage_network_components_form_network.php:223
-#: ../../godmode/agentes/module_manager_editor_network.php:474
+#: ../../godmode/modules/manage_network_components_form_network.php:241
+#: ../../godmode/agentes/module_manager_editor_network.php:479
#: ../../godmode/massive/massive_edit_plugins.php:480
#: ../../godmode/massive/massive_edit_modules.php:1196
#: ../../godmode/alerts/configure_alert_command.php:266
@@ -18621,7 +18793,7 @@ msgstr "Plugin"
#: ../../godmode/alerts/configure_alert_action.php:271
#: ../../godmode/events/event_responses.editor.php:230
#: ../../godmode/events/event_responses.editor.php:255
-#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994
+#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986
#: ../../include/class/ManageNetScanScripts.class.php:434
#: ../../include/class/ExternalTools.class.php:382
msgid "Command"
@@ -18629,33 +18801,33 @@ msgstr "Comando"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120
#: ../../enterprise/include/class/DeploymentCenter.class.php:1429
-#: ../../godmode/modules/manage_network_components_form_network.php:242
-#: ../../godmode/agentes/module_manager_editor_network.php:501
+#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/agentes/module_manager_editor_network.php:506
#: ../../godmode/massive/massive_edit_modules.php:1213
msgid "Credential identifier"
msgstr "Credencial"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135
-#: ../../godmode/modules/manage_network_components_form_network.php:258
-#: ../../godmode/agentes/module_manager_editor_network.php:534
+#: ../../godmode/modules/manage_network_components_form_network.php:276
+#: ../../godmode/agentes/module_manager_editor_network.php:539
#: ../../godmode/massive/massive_edit_modules.php:1228
msgid "Inherited"
msgstr "Heredado"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136
-#: ../../godmode/modules/manage_network_components_form_network.php:259
+#: ../../godmode/modules/manage_network_components_form_network.php:277
#: ../../godmode/massive/massive_edit_modules.php:1229
msgid "Linux"
msgstr "Linux"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137
-#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/modules/manage_network_components_form_network.php:278
#: ../../godmode/massive/massive_edit_modules.php:1230
msgid "Windows"
msgstr "Windows"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140
-#: ../../godmode/modules/manage_network_components_form_network.php:263
+#: ../../godmode/modules/manage_network_components_form_network.php:281
#: ../../godmode/massive/massive_edit_modules.php:1233
msgid "Target OS"
msgstr "SO objetivo"
@@ -18680,11 +18852,11 @@ msgstr "La comprobación de seguridad está OK."
msgid "Security check is fail."
msgstr "La comprobación de seguridad ha fallado."
-#: ../../enterprise/godmode/admin_access_logs.php:213
+#: ../../enterprise/godmode/admin_access_logs.php:216
msgid "Extended info:"
msgstr "Información extendida:"
-#: ../../enterprise/godmode/admin_access_logs.php:221
+#: ../../enterprise/godmode/admin_access_logs.php:224
msgid "Changes:"
msgstr "Cambios:"
@@ -18695,7 +18867,7 @@ msgstr "ACL de grupo"
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:414
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2723
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
msgid "Condition"
msgstr "Condición"
@@ -18734,11 +18906,11 @@ msgstr "Nombre de la alerta"
#: ../../enterprise/operation/agentes/policy_view.php:262
#: ../../godmode/snmpconsole/snmp_alert.php:1912
#: ../../godmode/alerts/alert_view.php:105
-#: ../../include/functions_reporting_html.php:5494
+#: ../../include/functions_reporting_html.php:5522
#: ../../include/ajax/alert_list.ajax.php:295
#: ../../include/ajax/alert_list.ajax.php:320
-#: ../../include/functions_treeview.php:442
-#: ../../include/class/AgentsAlerts.class.php:912
+#: ../../include/functions_treeview.php:446
+#: ../../include/class/AgentsAlerts.class.php:913
msgid "Last fired"
msgstr "Disparada por última vez"
@@ -18747,9 +18919,9 @@ msgstr "Disparada por última vez"
#: ../../enterprise/operation/agentes/policy_view.php:349
#: ../../godmode/alerts/alert_list.list.php:648
#: ../../godmode/alerts/alert_view.php:114 ../../mobile/operation/alerts.php:327
-#: ../../include/functions_ui.php:1420
-#: ../../include/class/AgentsAlerts.class.php:959
-#: ../../include/functions_reporting.php:13152
+#: ../../include/functions_ui.php:1463
+#: ../../include/class/AgentsAlerts.class.php:960
+#: ../../include/functions_reporting.php:13225
msgid "Alert disabled"
msgstr "Alerta desactivada"
@@ -18785,26 +18957,26 @@ msgstr "Montador de alertas de inventario"
#: ../../enterprise/godmode/alerts/alert_inventory.php:92
#: ../../godmode/agentes/planned_downtime.editor.php:58
-#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1933
-#: ../../include/functions_html.php:1934 ../../include/functions_html.php:2044
-#: ../../include/functions_html.php:2045 ../../include/functions_html.php:2227
-#: ../../include/functions_html.php:2228 ../../include/functions_html.php:6713
-#: ../../include/functions_html.php:6714
+#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1944
+#: ../../include/functions_html.php:1945 ../../include/functions_html.php:2055
+#: ../../include/functions_html.php:2056 ../../include/functions_html.php:2235
+#: ../../include/functions_html.php:2236 ../../include/functions_html.php:6741
+#: ../../include/functions_html.php:6742
#: ../../include/class/SnmpConsole.class.php:196
#: ../../operation/snmpconsole/snmp_statistics.php:67
-#: ../../operation/events/events.php:1592
+#: ../../operation/events/events.php:1646
msgid "List"
msgstr "Lista"
#: ../../enterprise/godmode/alerts/alert_inventory.php:111
-#: ../../godmode/reporting/visual_console_builder.php:835
+#: ../../godmode/reporting/visual_console_builder.php:843
#: ../../operation/visual_console/legacy_view.php:179
msgid "Builder"
msgstr "Creador"
#: ../../enterprise/godmode/services/services.massive.meta.php:54
#: ../../enterprise/godmode/services/services.massive.elements.php:106
-#: ../../godmode/massive/massive_edit_agents.php:985
+#: ../../godmode/massive/massive_edit_agents.php:1002
msgid "Not available"
msgstr "No disponible"
@@ -18907,7 +19079,7 @@ msgstr "Editar elementos"
#: ../../enterprise/godmode/services/services.service.php:495
#: ../../enterprise/godmode/services/services.elements.php:894
#: ../../enterprise/operation/services/services.php:193
-#: ../../godmode/reporting/reporting_builder.list_items.php:816
+#: ../../godmode/reporting/reporting_builder.list_items.php:817
msgid "Delete items"
msgstr "Borrar elementos"
@@ -18962,7 +19134,7 @@ msgstr "Agentes para almacenar datos"
#: ../../enterprise/tools/ipam/ipam_list.php:779
#: ../../godmode/wizards/HostDevices.class.php:808
#: ../../godmode/wizards/DiscoveryTaskList.class.php:717
-#: ../../include/class/CustomNetScan.class.php:535
+#: ../../include/class/CustomNetScan.class.php:537
msgid "Manual"
msgstr "Manual"
@@ -19057,61 +19229,6 @@ msgstr "Alerta de servicio en desconocido"
msgid "S.L.A. critical service alert"
msgstr "Alerta de servicio en crítico de S.L.A"
-#: ../../enterprise/godmode/services/services.service.php:1025
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608
-#: ../../enterprise/include/functions_reporting_csv.php:1589
-#: ../../enterprise/include/functions_reporting_csv.php:1635
-#: ../../enterprise/include/functions_reporting_csv.php:1953
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1704
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1756
-#: ../../enterprise/include/class/DatabaseHA.class.php:390
-#: ../../enterprise/include/class/DatabaseHA.class.php:625
-#: ../../enterprise/include/class/DatabaseHA.class.php:727
-#: ../../enterprise/include/class/AgentRepository.class.php:1000
-#: ../../enterprise/include/class/LogSource.class.php:823
-#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142
-#: ../../enterprise/include/class/ManageBackups.class.php:298
-#: ../../enterprise/include/class/ManageBackups.class.php:454
-#: ../../enterprise/include/class/NewDatabaseHA.class.php:182
-#: ../../enterprise/include/class/NewDatabaseHA.class.php:225
-#: ../../enterprise/include/functions_reporting.php:1876
-#: ../../enterprise/include/functions_reporting.php:2949
-#: ../../enterprise/include/functions_reporting.php:3206
-#: ../../enterprise/include/functions_reporting.php:3939
-#: ../../enterprise/include/functions_reporting.php:4208
-#: ../../enterprise/include/functions_reporting.php:4854
-#: ../../enterprise/include/functions_reporting.php:6176
-#: ../../enterprise/include/functions_reporting.php:6214
-#: ../../enterprise/include/functions_services.php:2091
-#: ../../enterprise/include/functions_ux_console.php:483
-#: ../../enterprise/operation/agentes/ux_console_view.php:186
-#: ../../enterprise/operation/agentes/ux_console_view.php:391
-#: ../../enterprise/operation/agentes/wux_console_view.php:407
-#: ../../extensions/module_groups.php:53
-#: ../../godmode/massive/massive_operations.php:415
-#: ../../godmode/setup/setup_general.php:1018
-#: ../../godmode/setup/setup_general.php:1036
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2734
-#: ../../include/functions_reporting_html.php:667
-#: ../../include/functions_reporting_html.php:862
-#: ../../include/functions_reporting_html.php:3569
-#: ../../include/functions_reporting_html.php:4866
-#: ../../include/functions_db.php:1974
-#: ../../include/class/ConfigPEN.class.php:674
-#: ../../include/class/ConfigPEN.class.php:698
-#: ../../include/class/SatelliteAgent.class.php:1105
-#: ../../include/class/HelpFeedBack.class.php:370
-#: ../../include/class/CredentialStore.class.php:1646
-#: ../../include/class/ModuleTemplates.class.php:1359
-#: ../../include/class/WelcomeWindow.class.php:173
-#: ../../include/class/AgentWizard.class.php:6233
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:362
-#: ../../operation/agentes/pandora_networkmap.editor.php:745
-#: ../../operation/snmpconsole/snmp_browser.php:639
-msgid "OK"
-msgstr "OK"
-
#: ../../enterprise/godmode/services/services.service.php:1028
msgid ""
"This change in the service configuration will delete the history of the "
@@ -19137,8 +19254,8 @@ msgstr "Servicio no válido"
#: ../../enterprise/include/functions_reporting.php:3500
#: ../../enterprise/include/functions_reporting.php:4476
#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1075
-#: ../../include/functions_reporting.php:9702
-#: ../../operation/agentes/pandora_networkmap.php:789
+#: ../../include/functions_reporting.php:9711
+#: ../../operation/agentes/pandora_networkmap.php:790
msgid "Dynamic"
msgstr "Dinámico"
@@ -19336,7 +19453,7 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_history.php:416
msgid ""
"Automatically create partitions on specific database IDB files (tagente_datos, "
-"tagente_datos_string, tevento). Monthly partitions."
+"tagente_datos_string). Monthly partitions."
msgstr ""
"Crear automáticamente particiones en archivos específicos de la base de datos "
"IDB (tagent_data, tagent_data_string, tevent). Particiones mensuales."
@@ -19553,12 +19670,12 @@ msgid "Yes without changing status"
msgstr "Sí, sin cambiar estado"
#: ../../enterprise/godmode/setup/setup.php:81
-#: ../../include/functions_config.php:430
+#: ../../include/functions_config.php:438
msgid "Forward SNMP traps to agent (if exist)"
msgstr "Reenviar los traps SNMP al agente (si existe)"
#: ../../enterprise/godmode/setup/setup.php:92
-#: ../../include/functions_config.php:434
+#: ../../include/functions_config.php:442
msgid "Use Enterprise ACL System"
msgstr "Utilizar el sistema ACL Enterprise"
@@ -19592,7 +19709,7 @@ msgid "Metaconsole DB password"
msgstr "Contraseña BD Metaconsola"
#: ../../enterprise/godmode/setup/setup.php:210
-#: ../../include/functions_config.php:470
+#: ../../include/functions_config.php:478
msgid "Activate Log Collector"
msgstr "Activar el colector de logs"
@@ -19717,7 +19834,7 @@ msgid "Port of ElasticSearch server"
msgstr "Puerto del servidor ElasticSearch"
#: ../../enterprise/godmode/setup/setup_log_collector.php:77
-#: ../../include/functions_config.php:1629
+#: ../../include/functions_config.php:1641
msgid "Days to purge old information"
msgstr "Días para purgar información antigua"
@@ -19749,21 +19866,21 @@ msgstr "Función PHP"
#: ../../enterprise/include/functions_tasklist.php:283
#: ../../enterprise/include/functions_tasklist.php:370
#: ../../enterprise/operation/reporting/custom_reporting.php:20
-#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306
-#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613
+#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307
+#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613
#: ../../include/functions_cron.php:704 ../../operation/search_users.php:45
msgid "Email"
msgstr "Correo electrónico"
#: ../../enterprise/godmode/setup/setup_auth.php:194
#: ../../enterprise/godmode/setup/setup_auth.php:549
-#: ../../enterprise/godmode/setup/setup_auth.php:1357
+#: ../../enterprise/godmode/setup/setup_auth.php:1574
msgid "Profiles selected"
msgstr "Perfiles seleccionados"
#: ../../enterprise/godmode/setup/setup_auth.php:195
#: ../../enterprise/godmode/setup/setup_auth.php:550
-#: ../../enterprise/godmode/setup/setup_auth.php:1358
+#: ../../enterprise/godmode/setup/setup_auth.php:1575
msgid "Groups selected"
msgstr "Grupos seleccionados"
@@ -19782,15 +19899,15 @@ msgstr "Atributos LDAP"
#: ../../enterprise/godmode/setup/setup_auth.php:256
#: ../../enterprise/godmode/setup/setup_auth.php:553
#: ../../enterprise/godmode/setup/setup_auth.php:605
-#: ../../enterprise/godmode/setup/setup_auth.php:1361
-#: ../../enterprise/godmode/setup/setup_auth.php:1415
+#: ../../enterprise/godmode/setup/setup_auth.php:1578
+#: ../../enterprise/godmode/setup/setup_auth.php:1632
#: ../../godmode/setup/snmp_wizard.php:44
msgid "OP"
msgstr "OP"
#: ../../enterprise/godmode/setup/setup_auth.php:251
#: ../../enterprise/godmode/setup/setup_auth.php:601
-#: ../../enterprise/godmode/setup/setup_auth.php:1411
+#: ../../enterprise/godmode/setup/setup_auth.php:1628
#: ../../enterprise/godmode/setup/setup_acl.php:68
#: ../../godmode/groups/configure_group.php:108
#: ../../godmode/groups/group_list.php:377
@@ -19798,19 +19915,20 @@ msgstr "OP"
#: ../../godmode/users/profile_list.php:332
#: ../../godmode/users/configure_profile.php:86
#: ../../godmode/users/user_list.php:297
-#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165
+#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165
msgid "Profiles"
msgstr "Perfiles"
#: ../../enterprise/godmode/setup/setup_auth.php:264
#: ../../enterprise/godmode/setup/setup_auth.php:612
-#: ../../enterprise/godmode/setup/setup_auth.php:1422
+#: ../../enterprise/godmode/setup/setup_auth.php:1112
+#: ../../enterprise/godmode/setup/setup_auth.php:1639
msgid "Select profile"
msgstr "Seleccionar perfil"
#: ../../enterprise/godmode/setup/setup_auth.php:309
#: ../../enterprise/godmode/setup/setup_auth.php:650
-#: ../../enterprise/godmode/setup/setup_auth.php:1465
+#: ../../enterprise/godmode/setup/setup_auth.php:1682
msgid "Add new permissions"
msgstr "Agregar nuevos permisos"
@@ -19823,57 +19941,63 @@ msgid "Change timezone visual"
msgstr "Cambiar visualización de zona horaria"
#: ../../enterprise/godmode/setup/setup_auth.php:478
-#: ../../enterprise/godmode/setup/setup_auth.php:1286
+#: ../../enterprise/godmode/setup/setup_auth.php:1503
msgid "New users will be able to log in to the nodes."
msgstr "Los usuarios nuevos podrán conectarse en los nodos."
#: ../../enterprise/godmode/setup/setup_auth.php:552
#: ../../enterprise/godmode/setup/setup_auth.php:604
-#: ../../enterprise/godmode/setup/setup_auth.php:1360
-#: ../../enterprise/godmode/setup/setup_auth.php:1414
+#: ../../enterprise/godmode/setup/setup_auth.php:1577
+#: ../../enterprise/godmode/setup/setup_auth.php:1631
msgid "AD Groups"
msgstr "Grupos AD"
-#: ../../enterprise/godmode/setup/setup_auth.php:831
-#: ../../enterprise/godmode/setup/setup_auth.php:947
+#: ../../enterprise/godmode/setup/setup_auth.php:661
+msgid "Recursive group search"
+msgstr "Búsqueda recursiva de grupos"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:837
+#: ../../enterprise/godmode/setup/setup_auth.php:956
+#: ../../enterprise/godmode/setup/setup_auth.php:1067
msgid "You must select a profile from the list of profiles."
msgstr "Selecciona un perfil de la lista de perfiles"
-#: ../../enterprise/godmode/setup/setup_auth.php:836
-#: ../../enterprise/godmode/setup/setup_auth.php:952
+#: ../../enterprise/godmode/setup/setup_auth.php:842
+#: ../../enterprise/godmode/setup/setup_auth.php:961
+#: ../../enterprise/godmode/setup/setup_auth.php:1071
msgid "You must select a group from the list of groups."
msgstr "Seleccione un grupo de la lista de grupos"
-#: ../../enterprise/godmode/setup/setup_auth.php:1112
-#: ../../include/functions_config.php:719
+#: ../../enterprise/godmode/setup/setup_auth.php:1329
+#: ../../include/functions_config.php:731
msgid "MySQL host"
msgstr "Dirección de MySQL"
-#: ../../enterprise/godmode/setup/setup_auth.php:1175
+#: ../../enterprise/godmode/setup/setup_auth.php:1392
msgid "SimpleSAML path"
msgstr "Ruta de SimpleSAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1176
+#: ../../enterprise/godmode/setup/setup_auth.php:1393
msgid "Directory where your 'simplesamlphp' folder is located."
msgstr "Directorio donde se encuentra la carpeta 'simplesamlphp'."
-#: ../../enterprise/godmode/setup/setup_auth.php:1182
+#: ../../enterprise/godmode/setup/setup_auth.php:1399
msgid "SAML source"
msgstr "SAML de origen"
-#: ../../enterprise/godmode/setup/setup_auth.php:1183
+#: ../../enterprise/godmode/setup/setup_auth.php:1400
msgid "Authsource name, e.g. 'example-userpass'"
msgstr "Nombre authsource, por ejemplo: 'example-userpass'"
-#: ../../enterprise/godmode/setup/setup_auth.php:1190
+#: ../../enterprise/godmode/setup/setup_auth.php:1407
msgid "SAML user id attribute"
msgstr "Atribito de ID de usuario SAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1195
+#: ../../enterprise/godmode/setup/setup_auth.php:1412
msgid "SAML mail attribute"
msgstr "Atributo de correo SAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1196
+#: ../../enterprise/godmode/setup/setup_auth.php:1413
msgid ""
"SAML field where search for the user email (while autocreate remote users is "
"enabled)"
@@ -19881,11 +20005,11 @@ msgstr ""
"Campo SAML donde buscar el correo electrónico del usuario (mientras auto crear "
"usuarios remotos esté activado)"
-#: ../../enterprise/godmode/setup/setup_auth.php:1203
+#: ../../enterprise/godmode/setup/setup_auth.php:1420
msgid "SAML group name attribute"
msgstr "Atributo de nombre de grupo SAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1204
+#: ../../enterprise/godmode/setup/setup_auth.php:1421
msgid ""
"SAML field where search for the group name (while autocreate remote users is "
"enabled)"
@@ -19893,23 +20017,23 @@ msgstr ""
"Campo SAML donde buscar el nombre del grupo (mientras auto crear usuarios "
"remotos esté activado)"
-#: ../../enterprise/godmode/setup/setup_auth.php:1211
+#: ../../enterprise/godmode/setup/setup_auth.php:1428
msgid "Simple attribute / Multivalue attribute"
msgstr "Atributo simple/atributo con valores múltiples"
-#: ../../enterprise/godmode/setup/setup_auth.php:1216
+#: ../../enterprise/godmode/setup/setup_auth.php:1433
msgid "SAML profiles and tag attribute"
msgstr "Atributo de perfiles y etiquetas SAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1221
+#: ../../enterprise/godmode/setup/setup_auth.php:1438
msgid "Profile attribute"
msgstr "Atributo de perfil"
-#: ../../enterprise/godmode/setup/setup_auth.php:1226
+#: ../../enterprise/godmode/setup/setup_auth.php:1443
msgid "Tag attribute"
msgstr "Atributo de etiqueta"
-#: ../../enterprise/godmode/setup/setup_auth.php:1231
+#: ../../enterprise/godmode/setup/setup_auth.php:1448
msgid "SAML profile and tags prefix"
msgstr "Prefijo de perfiles y etiquetas SAML"
@@ -19987,7 +20111,7 @@ msgstr "Añadir elemento personalizado al perfil"
#: ../../godmode/massive/massive_delete_profiles.php:152
#: ../../godmode/massive/massive_add_profiles.php:202
#: ../../include/functions_profile.php:203
-#: ../../operation/users/user_edit.php:998
+#: ../../operation/users/user_edit.php:995
msgid "Profile name"
msgstr "Nombre del perfil"
@@ -20115,10 +20239,12 @@ msgstr "Grupo objetivo"
#: ../../godmode/reporting/create_container.php:746
#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195
#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309
-#: ../../include/ajax/heatmap.ajax.php:129
-#: ../../include/ajax/heatmap.ajax.php:310
+#: ../../mobile/operation/server_status.php:185
+#: ../../mobile/operation/server_status.php:186
+#: ../../include/ajax/heatmap.ajax.php:158
+#: ../../include/ajax/heatmap.ajax.php:438
#: ../../include/lib/Dashboard/Widgets/heatmap.php:301
-#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350
+#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353
msgid "Tag"
msgstr "Etiqueta"
@@ -20138,8 +20264,8 @@ msgstr "Filtro por etiqueta"
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:313
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:822
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:824
-#: ../../include/functions_snmp_browser.php:1653
-#: ../../include/functions_snmp_browser.php:1660
+#: ../../include/functions_snmp_browser.php:1662
+#: ../../include/functions_snmp_browser.php:1669
msgid "Select all"
msgstr "Seleccionar todo"
@@ -20317,15 +20443,18 @@ msgstr "Asistente de plantillas"
#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133
#: ../../enterprise/godmode/reporting/visual_console_template.php:136
#: ../../extensions/resource_exportation.php:459
+#: ../../godmode/users/configure_user.php:59
#: ../../godmode/users/user_management.php:38
#: ../../godmode/massive/massive_edit_users.php:274
-#: ../../godmode/reporting/visual_console_builder.php:869
+#: ../../godmode/reporting/visual_console_builder.php:877
#: ../../godmode/reporting/map_builder.php:133
#: ../../godmode/reporting/visual_console_favorite.php:130
+#: ../../include/auth/mysql.php:807
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360
#: ../../operation/users/user_edit.php:469
-#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299
-#: ../../operation/menu.php:306
+#: ../../operation/visual_console/view.php:253
+#: ../../operation/visual_console/legacy_view.php:219
+#: ../../operation/menu.php:299 ../../operation/menu.php:306
msgid "Visual console"
msgstr "Consola visual"
@@ -20427,7 +20556,7 @@ msgstr "Editor de plantillas gráficas"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:155
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61
#: ../../godmode/modules/manage_nc_groups.php:119
-#: ../../godmode/netflow/nf_edit_form.php:119
+#: ../../godmode/netflow/nf_edit_form.php:146
#: ../../godmode/events/event_edit_filter.php:232
msgid "Not updated. Blank name"
msgstr "No actualizado; nombre en blanco"
@@ -20446,8 +20575,9 @@ msgstr "Error al actualizar la plantilla"
#: ../../godmode/reporting/visual_console_builder.wizard.php:173
#: ../../godmode/events/event_responses.editor.php:186
#: ../../include/functions_visual_map_editor.php:97
+#: ../../include/functions_visual_map_editor.php:698
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930
#: ../../include/functions_reports.php:1267
msgid "Width"
msgstr "Anchura"
@@ -20456,18 +20586,18 @@ msgstr "Anchura"
#: ../../godmode/setup/gis_step_2.php:399
#: ../../godmode/reporting/visual_console_builder.wizard.php:175
#: ../../godmode/events/event_responses.editor.php:198
-#: ../../include/functions_visual_map_editor.php:672
+#: ../../include/functions_visual_map_editor.php:712
#: ../../include/functions_reports.php:1283
#: ../../include/functions_reports.php:1383
msgid "Height"
msgstr "Altura"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:235
-#: ../../enterprise/operation/log/log_viewer.php:672
+#: ../../enterprise/operation/log/log_viewer.php:670
#: ../../godmode/setup/performance.php:627
#: ../../godmode/reporting/create_container.php:418
#: ../../include/functions.php:2755 ../../include/functions.php:3423
-#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146
+#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146
#: ../../operation/gis_maps/render_view.php:157
msgid "1 hour"
msgstr "1 hora"
@@ -20482,19 +20612,19 @@ msgid "3 hours"
msgstr "3 horas"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:238
-#: ../../include/ajax/module.php:222
+#: ../../include/ajax/module.php:245
msgid "6 hours"
msgstr "6 horas"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:239
-#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223
+#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246
msgid "12 hours"
msgstr "12 horas"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:240
-#: ../../enterprise/operation/log/log_viewer.php:676
+#: ../../enterprise/operation/log/log_viewer.php:674
#: ../../godmode/reporting/create_container.php:422
-#: ../../include/functions.php:2758 ../../include/ajax/module.php:224
+#: ../../include/functions.php:2758 ../../include/ajax/module.php:247
#: ../../include/ajax/graph.ajax.php:150
#: ../../include/class/AuditLog.class.php:211
msgid "1 day"
@@ -20515,9 +20645,9 @@ msgid "Last week"
msgstr "Última semana"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:244
-#: ../../enterprise/operation/log/log_viewer.php:680
+#: ../../enterprise/operation/log/log_viewer.php:678
#: ../../godmode/reporting/create_container.php:426
-#: ../../include/functions.php:2760 ../../include/ajax/module.php:226
+#: ../../include/functions.php:2760 ../../include/ajax/module.php:249
#: ../../include/ajax/graph.ajax.php:154
#: ../../include/class/AuditLog.class.php:213
msgid "15 days"
@@ -20533,12 +20663,12 @@ msgid "2 months"
msgstr "2 meses"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:247
-#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216
+#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216
msgid "6 months"
msgstr "6 meses"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:248
-#: ../../include/functions.php:2764 ../../include/ajax/module.php:230
+#: ../../include/functions.php:2764 ../../include/ajax/module.php:253
msgid "1 year"
msgstr "1 año"
@@ -20568,7 +20698,7 @@ msgstr "1 año"
#: ../../godmode/reporting/visual_console_builder.elements.php:123
#: ../../godmode/reporting/visual_console_builder.wizard.php:246
#: ../../godmode/reporting/graph_builder.main.php:189
-#: ../../include/functions_visual_map_editor.php:786
+#: ../../include/functions_visual_map_editor.php:826
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629
@@ -20601,7 +20731,7 @@ msgstr "Top N"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
#: ../../enterprise/include/functions_reporting_csv.php:950
#: ../../include/functions_reports.php:801
-#: ../../include/functions_reporting.php:3560
+#: ../../include/functions_reporting.php:3569
msgid "Exception"
msgstr "Excepción"
@@ -20650,7 +20780,7 @@ msgstr "Último valor"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074
#: ../../godmode/reporting/reporting_builder.item_editor.php:1419
-#: ../../godmode/reporting/reporting_builder.item_editor.php:7472
+#: ../../godmode/reporting/reporting_builder.item_editor.php:7477
msgid ""
"Warning: period 0 reports cannot be used to show information back in time. "
"Information contained in this kind of reports will be always reporting the "
@@ -20669,13 +20799,13 @@ msgstr "Si selecciona varios agentes, solo se mostrarán los módulos comunes"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:247
#: ../../enterprise/include/functions_reporting_csv.php:1080
-#: ../../include/functions_reporting_html.php:5009
+#: ../../include/functions_reporting_html.php:5037
msgid "Sum"
msgstr "Suma"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:259
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:389
-#: ../../include/functions_reporting.php:10584
+#: ../../include/functions_reporting.php:10593
msgid "Rate"
msgstr "Tasa"
@@ -20685,25 +20815,25 @@ msgstr "Tasa"
#: ../../enterprise/operation/services/services.list.php:764
#: ../../godmode/snmpconsole/snmp_alert.php:2159
#: ../../include/class/ModuleTemplates.class.php:943
-#: ../../operation/events/events.php:2548
+#: ../../operation/events/events.php:2602
msgid "Delete selected"
msgstr "Borrar seleccionado(s)"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:310
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2491
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2500
msgid "Group by agent"
msgstr "Agrupar por agente"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:322
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3196
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3205
msgid "Show in the same row"
msgstr "Mostrar en la misma fila"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:323
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3198
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3207
msgid "Show one module per row with all its operations"
msgstr "Mostrar un módulo por fila con todas sus operaciones"
@@ -20711,10 +20841,10 @@ msgstr "Mostrar un módulo por fila con todas sus operaciones"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015
-#: ../../enterprise/operation/log/log_viewer.php:570
+#: ../../enterprise/operation/log/log_viewer.php:568
#: ../../godmode/netflow/nf_item_list.php:173
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2505
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3219
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2514
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3228
#: ../../include/lib/Dashboard/Widgets/top_n.php:267
msgid "Order"
msgstr "Orden"
@@ -20724,9 +20854,9 @@ msgstr "Orden"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441
-#: ../../enterprise/operation/log/log_viewer.php:566
+#: ../../enterprise/operation/log/log_viewer.php:564
#: ../../godmode/reporting/reporting_builder.item_editor.php:64
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2508
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2517
#: ../../include/lib/Dashboard/Widgets/top_n.php:261
msgid "Ascending"
msgstr "Ascendente"
@@ -20736,9 +20866,9 @@ msgstr "Ascendente"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448
-#: ../../enterprise/operation/log/log_viewer.php:565
+#: ../../enterprise/operation/log/log_viewer.php:563
#: ../../godmode/reporting/reporting_builder.item_editor.php:65
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2515
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2524
#: ../../include/lib/Dashboard/Widgets/top_n.php:262
msgid "Descending"
msgstr "Descendente"
@@ -20746,30 +20876,30 @@ msgstr "Descendente"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:344
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2522
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2531
#: ../../include/lib/Dashboard/Widgets/top_n.php:263
msgid "By agent name"
msgstr "Por nombre de agente"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:352
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2534
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2543
#: ../../include/lib/Dashboard/Widgets/top_n.php:249
msgid "Quantity (n)"
msgstr "Cantidad (n)"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:364
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2564
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2573
#: ../../include/lib/Dashboard/Widgets/top_n.php:286
-#: ../../operation/agentes/ver_agente.php:1646
+#: ../../operation/agentes/ver_agente.php:1642
msgid "Display"
msgstr "Mostrar"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2727
-#: ../../include/functions_reporting.php:3582
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2736
+#: ../../include/functions_reporting.php:3591
msgid "Everything"
msgstr "Todo"
@@ -20785,22 +20915,22 @@ msgstr "<"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:427
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2735
-#: ../../include/functions_reporting_html.php:3582
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2744
+#: ../../include/functions_reporting_html.php:3610
msgid "Not OK"
msgstr "Mal"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:435
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2747
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2756
msgid "Show graph"
msgstr "Mostrar gráfico"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:447
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2857
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2866
msgid "Show resume"
msgstr "Mostrar resumen"
@@ -20817,7 +20947,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3641
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3650
msgid "Show item in landscape format (only PDF)"
msgstr "Mostrar elemento en formato apaisado (solo PDF)"
@@ -20825,7 +20955,7 @@ msgstr "Mostrar elemento en formato apaisado (solo PDF)"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3650
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3659
msgid "Page break at the end of the item (only PDF)"
msgstr "Salto de página después del elemento (solo PDF)"
@@ -20838,13 +20968,13 @@ msgid "Page orientation"
msgstr "Orientación de página"
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93
-#: ../../include/functions_visual_map_editor.php:841
+#: ../../include/functions_visual_map_editor.php:889
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386
msgid "Vertical"
msgstr "Vertical"
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100
-#: ../../include/functions_visual_map_editor.php:842
+#: ../../include/functions_visual_map_editor.php:890
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510
@@ -20880,20 +21010,20 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2837
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2846
msgid "Show address instead module name"
msgstr "Mostrar la dirección en lugar del nombre del módulo"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2838
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2847
msgid "Show the main address of agent."
msgstr "Mostrar la dirección principal del agente"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294
#: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2385
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2394
#: ../../include/functions_reports.php:821
msgid "SQL query"
msgstr "Consulta SQL"
@@ -20901,14 +21031,14 @@ msgstr "Consulta SQL"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3275
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3284
msgid "Failover mode"
msgstr "Modo conmutación"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3276
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3285
msgid ""
"SLA calculation must be performed taking into account the failover modules "
"assigned to the primary module"
@@ -20919,72 +21049,72 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3295
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3304
msgid "Failover type"
msgstr "Tipo de conmutación"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3300
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3309
msgid "Failover normal"
msgstr "Conmutación normal"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3312
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3321
msgid "Failover simple"
msgstr "Conmutación simple"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2595
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
msgid "Graph render"
msgstr "Representar en gráfica"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2601
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2610
msgid "Avg, max & min"
msgstr "Media, máx. y mín."
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2602
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2611
msgid "Max only"
msgstr "Solo máx."
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2603
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2612
msgid "Min only"
msgstr "Solo mín."
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2613
msgid "Avg only"
msgstr "Solo media"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2688
-#: ../../mobile/operation/module_graph.php:436
-#: ../../operation/agentes/stat_win.php:369
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2697
+#: ../../mobile/operation/module_graph.php:437
+#: ../../operation/agentes/stat_win.php:377
msgid "Time compare (Overlapped)"
msgstr "Comparación de tiempo (solapado)"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2651
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2660
msgid "Full resolution graph (TIP)"
msgstr "Gráfica a resolución completa (TIP)"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2652
-#: ../../operation/agentes/stat_win.php:397
-#: ../../operation/agentes/interface_traffic_graph_win.php:242
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2661
+#: ../../operation/agentes/stat_win.php:405
+#: ../../operation/agentes/interface_traffic_graph_win.php:258
msgid ""
"TIP mode charts do not support average - maximum - minimum series, you can "
"only enable TIP or average, maximum or minimum series"
@@ -20994,15 +21124,15 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2671
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2680
msgid "Show threshold"
msgstr "Mostrar umbral"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2703
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2712
#: ../../godmode/reporting/graph_builder.main.php:250
-#: ../../include/functions.php:4189 ../../include/functions.php:4197
+#: ../../include/functions.php:4215 ../../include/functions.php:4223
msgid "Percentil"
msgstr "Percentil"
@@ -21017,19 +21147,19 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2966
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2975
msgid "Show Summary group"
msgstr "Mostrar el resumen del grupo"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3052
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3061
msgid "Event Status"
msgstr "Estado del evento"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3113
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3122
#: ../../operation/agentes/tactical.php:276
msgid "Event graphs"
msgstr "Gráficos de eventos"
@@ -21068,37 +21198,37 @@ msgstr "Período de proyección"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2412
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2421
msgid "Serialized header"
msgstr "Cabecera serializada"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2413
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2422
msgid "The separator character is |"
msgstr "El carácter separador es |"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2449
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2458
msgid "Field separator"
msgstr "Separador de campo"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2450
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2459
msgid "Separator for different fields in the serialized text chain"
msgstr "Separador para diferentes campos en la cadena de texto serializada"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2470
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2479
msgid "Line separator"
msgstr "Separador de línea"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2471
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2480
msgid ""
"Separator in different lines (composed by fields) of the serialized text chain"
msgstr ""
@@ -21107,13 +21237,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3478
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3487
msgid "Uncompress module"
msgstr "Descomprimir módulo"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3479
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3488
msgid "Use uncompressed module data."
msgstr "Utilizar datos de módulos descomprimidos"
@@ -21193,7 +21323,7 @@ msgstr "SLA inverso"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3220
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3229
msgid "SLA items sorted by fulfillment value"
msgstr "Elementos de SLA ordenados por valor rellenado"
@@ -21205,11 +21335,11 @@ msgstr "Mostrar solo los SLA incorrectos"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3328
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3337
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1439
-#: ../../include/functions_reporting_html.php:4845
-#: ../../include/functions_reporting_html.php:5117
-#: ../../include/functions_reporting_html.php:5273
+#: ../../include/functions_reporting_html.php:4873
+#: ../../include/functions_reporting_html.php:5145
+#: ../../include/functions_reporting_html.php:5301
#: ../../include/functions_netflow.php:1202
#: ../../include/lib/Dashboard/Widgets/tactical.php:299
msgid "Summary"
@@ -21239,17 +21369,17 @@ msgstr "Editar plantilla"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:215
-#: ../../enterprise/include/functions_reporting.php:8044
-#: ../../enterprise/include/functions_reporting.php:8110
-#: ../../godmode/reporting/reporting_builder.php:3642
+#: ../../enterprise/include/functions_reporting.php:8053
+#: ../../enterprise/include/functions_reporting.php:8119
+#: ../../godmode/reporting/reporting_builder.php:3659
#: ../../operation/reporting/reporting_viewer.php:156
msgid "Item editor"
msgstr "Editor de elementos"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:159
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:202
-#: ../../godmode/reporting/reporting_builder.php:3638
-#: ../../include/functions_menu.php:587
+#: ../../godmode/reporting/reporting_builder.php:3655
+#: ../../include/functions_menu.php:591
#: ../../operation/reporting/reporting_viewer.php:147
msgid "List items"
msgstr "Listado de elementos"
@@ -21263,9 +21393,9 @@ msgstr "Lista de plantillas"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:334
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:361
#: ../../godmode/reporting/reporting_builder.php:561
-#: ../../godmode/reporting/reporting_builder.php:3601
-#: ../../godmode/reporting/reporting_builder.php:3699
-#: ../../godmode/reporting/reporting_builder.php:3727
+#: ../../godmode/reporting/reporting_builder.php:3618
+#: ../../godmode/reporting/reporting_builder.php:3716
+#: ../../godmode/reporting/reporting_builder.php:3744
#: ../../operation/reporting/reporting_viewer.php:222
msgid "Custom reports"
msgstr "Reportes personalizados"
@@ -21342,12 +21472,12 @@ msgid "Set start and end date"
msgstr "Fije la fecha de inicio y conclusión"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:768
-#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:198
+#: ../../include/ajax/module.php:293 ../../operation/agentes/datos_agente.php:200
msgid "Timestamp from:"
msgstr "Marca temporal desde:"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:786
-#: ../../include/ajax/module.php:290 ../../operation/agentes/datos_agente.php:204
+#: ../../include/ajax/module.php:313 ../../operation/agentes/datos_agente.php:206
msgid "Timestamp to:"
msgstr "Marca temporal hasta:"
@@ -21390,9 +21520,9 @@ msgstr "Editor de elementos de plantilla de gráfico"
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244
-#: ../../godmode/reporting/graph_builder.graph_editor.php:215
-#: ../../godmode/reporting/graph_builder.graph_editor.php:389
-#: ../../include/functions.php:4049
+#: ../../godmode/reporting/graph_builder.graph_editor.php:314
+#: ../../godmode/reporting/graph_builder.graph_editor.php:348
+#: ../../include/functions.php:4075
msgid "Weight"
msgstr "Peso"
@@ -21404,7 +21534,7 @@ msgstr "Peso"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464
-#: ../../enterprise/operation/log/log_viewer.php:540
+#: ../../enterprise/operation/log/log_viewer.php:538
msgid "Exact match"
msgstr "Coincidencia exacta"
@@ -21497,18 +21627,18 @@ msgstr "No se han hecho cambios"
#: ../../enterprise/godmode/reporting/mysql_builder.php:244
#: ../../enterprise/include/functions_reporting_csv.php:1134
-#: ../../include/functions_reporting.php:7540
+#: ../../include/functions_reporting.php:7549
msgid "SQL"
msgstr "SQL"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647
-#: ../../godmode/reporting/reporting_builder.php:3749
+#: ../../godmode/reporting/reporting_builder.php:3766
msgid "Successfull action"
msgstr "Acción completada"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648
-#: ../../godmode/servers/modificar_server.php:285
-#: ../../godmode/servers/modificar_server.php:296
+#: ../../godmode/servers/modificar_server.php:307
+#: ../../godmode/servers/modificar_server.php:318
msgid "Unsuccessfull action"
msgstr "No se pudo completar la acción"
@@ -21543,13 +21673,13 @@ msgstr "Seleccionar servidor"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016
-#: ../../godmode/reporting/reporting_builder.item_editor.php:204
+#: ../../godmode/reporting/reporting_builder.item_editor.php:205
#: ../../godmode/reporting/reporting_builder.item_editor.php:1264
msgid "Local metaconsole"
msgstr "Metaconsola local"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1169
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1171
#: ../../include/lib/Dashboard/Widgets/top_n.php:207
msgid ""
"Case insensitive regular expression for agent name. For example: Network.* "
@@ -21562,7 +21692,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1192
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1194
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 "
@@ -21614,31 +21744,31 @@ msgstr "Marcar si no quieres que muestre elementos sin datos"
#: ../../godmode/reporting/create_container.php:571
#: ../../godmode/reporting/create_container.php:600
#: ../../godmode/reporting/create_container.php:741
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2236
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2245
#: ../../godmode/reporting/visual_console_builder.elements.php:121
#: ../../godmode/reporting/visual_console_builder.elements.php:618
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_visual_map_editor.php:391
+#: ../../include/functions_visual_map_editor.php:394
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615
#: ../../include/functions_reports.php:573
#: ../../include/functions_reports.php:660
#: ../../include/functions_reports.php:666
-#: ../../include/functions_reporting.php:10655
+#: ../../include/functions_reporting.php:10664
msgid "Custom graph"
msgstr "Gráfica personalizada"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2400
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2409
msgid "Max items"
msgstr "Número máximo de elementos"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2365
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2374
msgid "Custom SQL template"
msgstr "Plantilla SQL personalizada"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2386
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2395
msgid ""
"The entities of the fields that contain them must be included. Also is "
"possible use macros like `_start_date_` or `_end_date_`."
@@ -21652,158 +21782,158 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:2473
#: ../../extensions/api_checker.php:365
#: ../../godmode/reporting/reporting_builder.item_editor.php:75
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2432
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2441
#: ../../godmode/events/event_responses.editor.php:229
#: ../../godmode/events/event_responses.editor.php:255
-#: ../../include/functions_reporting_html.php:1616
+#: ../../include/functions_reporting_html.php:1625
#: ../../operation/gis_maps/ajax.php:316
msgid "URL"
msgstr "URL"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2443
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2452
msgid "Protocol must be specified in URL (e.g.: \"https://\")"
msgstr ""
"El protocolo debe estar especificado en la URL (por ejemplo: \"https://\")"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3606
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3615
msgid "Group by"
msgstr "Agrupar por"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499
#: ../../enterprise/include/functions_reporting_csv.php:1080
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2581
-#: ../../include/functions_reporting_html.php:5006
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2590
+#: ../../include/functions_reporting_html.php:5034
#: ../../include/functions_reporting.php:1545
msgid "Avg"
msgstr "Media"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2761
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2770
msgid "Select fields to show"
msgstr "Seleccionar campos a mostrar"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649
#: ../../enterprise/include/functions_reporting_csv.php:501
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2769
-#: ../../include/functions_reporting_html.php:4145
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2778
+#: ../../include/functions_reporting_html.php:4173
msgid "Total time"
msgstr "Tiempo total"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657
#: ../../enterprise/include/functions_reporting_csv.php:505
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2777
-#: ../../include/functions_reporting_html.php:4151
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2786
+#: ../../include/functions_reporting_html.php:4179
msgid "Time failed"
msgstr "Tiempo en fallo"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665
#: ../../enterprise/include/functions_reporting_csv.php:509
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2785
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2794
msgid "Time in OK status"
msgstr "Tiempo en estado OK"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673
#: ../../enterprise/include/functions_reporting_csv.php:513
#: ../../enterprise/include/functions_reporting.php:4990
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2793
-#: ../../include/functions_reporting_html.php:4163
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2802
+#: ../../include/functions_reporting_html.php:4191
msgid "Time in warning status"
msgstr "Tiempo en estado de advertencia"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681
#: ../../enterprise/include/functions_reporting_csv.php:517
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2801
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2810
msgid "Time in unknown status"
msgstr "Tiempo en estado desconocido"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693
#: ../../enterprise/include/functions_reporting_csv.php:521
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2813
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2822
msgid "Time of not initialized module"
msgstr "Tiempo de módulo no inicializado"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705
#: ../../enterprise/include/functions_reporting_csv.php:525
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2825
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2834
msgid "Time of downtime"
msgstr "Tiempo de parada"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2877
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2886
msgid "
%s"
-#: ../../enterprise/include/class/SAP.app.php:805
+#: ../../enterprise/include/class/SAP.app.php:806
#: ../../godmode/agentes/planned_downtime.editor.php:1257
msgid "Available modules"
msgstr "Módulos disponibles"
-#: ../../enterprise/include/class/SAP.app.php:829
+#: ../../enterprise/include/class/SAP.app.php:830
msgid "Add monitors"
msgstr "Añadir monitores"
-#: ../../enterprise/include/class/SAP.app.php:842
+#: ../../enterprise/include/class/SAP.app.php:843
msgid "Remove monitors"
msgstr "Eliminar monitores"
-#: ../../enterprise/include/class/SAP.app.php:853
-#: ../../enterprise/operation/services/massive/services.create.php:1321
+#: ../../enterprise/include/class/SAP.app.php:854
+#: ../../enterprise/operation/services/massive/services.create.php:1333
#: ../../enterprise/operation/services/massive/service.delete.elements.php:278
#: ../../enterprise/operation/services/massive/service.create.elements.php:626
#: ../../enterprise/operation/services/massive/service.edit.elements.php:385
msgid "Selected modules"
msgstr "Módulos seleccionados"
-#: ../../enterprise/include/class/SAP.app.php:893
+#: ../../enterprise/include/class/SAP.app.php:894
msgid "Define your custom SAP modules."
msgstr "Defina sus módulos SAP personalizados."
-#: ../../enterprise/include/class/SAP.app.php:892
+#: ../../enterprise/include/class/SAP.app.php:893
msgid "Advanced module configuration"
msgstr "Configuración de módulos avanzada"
-#: ../../enterprise/include/class/SAP.app.php:902
+#: ../../enterprise/include/class/SAP.app.php:903
msgid "Custom module definitions"
msgstr "Definiciones de módulos personalizadas"
-#: ../../enterprise/include/class/SAP.app.php:903
+#: ../../enterprise/include/class/SAP.app.php:904
msgid ""
"Each line is a module definition using following format: module name ; "
"module_type ; SAP check definition."
@@ -28242,7 +28384,7 @@ msgid "Remove item"
msgstr "Eliminar elemento"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979
-#: ../../operation/agentes/estado_monitores.php:639
+#: ../../operation/agentes/estado_monitores.php:631
msgid "Reset"
msgstr "Reiniciar"
@@ -28377,9 +28519,10 @@ msgid "Fields used on execution when the alert is fired"
msgstr "Campos usados en la ejecución cuando la alerta es disparada"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802
+#: ../../godmode/users/configure_user.php:63
#: ../../godmode/users/user_management.php:42
#: ../../godmode/massive/massive_edit_users.php:278
-#: ../../operation/users/user_edit.php:473
+#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473
#: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194
msgid "Alert detail"
msgstr "Detalle de alertas"
@@ -28407,9 +28550,9 @@ msgstr "Coincidencias"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011
#: ../../godmode/alerts/alert_list.list.php:170
#: ../../mobile/operation/alerts.php:66
-#: ../../include/functions_reporting_html.php:2591
-#: ../../include/functions_reporting_html.php:3451
-#: ../../include/functions_reporting_html.php:3452
+#: ../../include/functions_reporting_html.php:2612
+#: ../../include/functions_reporting_html.php:3479
+#: ../../include/functions_reporting_html.php:3480
#: ../../operation/agentes/alerts_status.functions.php:99
msgid "Fired"
msgstr "Disparada"
@@ -28459,7 +28602,7 @@ msgstr "¿Está seguro de que quiere poner la alerta en suspensión?"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385
#: ../../enterprise/operation/agentes/policy_view.php:293
#: ../../godmode/alerts/alert_list.list.php:192
-#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274
+#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311
#: ../../operation/agentes/alerts_status.functions.php:104
msgid "Standby on"
msgstr "Modo standby activado"
@@ -28526,7 +28669,7 @@ msgstr ""
#: ../../enterprise/include/class/CommandCenter.class.php:171
#: ../../enterprise/include/functions_groups.php:49
-#: ../../include/ajax/module.php:1834
+#: ../../include/ajax/module.php:1862
msgid "Metaconsole"
msgstr "Metaconsola"
@@ -28576,7 +28719,7 @@ msgid "Please restore your backups"
msgstr "Restaure sus copias de seguridad"
#: ../../enterprise/include/class/CommandCenter.class.php:454
-#: ../../include/functions_ui.php:7102
+#: ../../include/functions_ui.php:7174
msgid "Query"
msgstr "Consulta"
@@ -28586,8 +28729,8 @@ msgid "Table"
msgstr "Tabla"
#: ../../enterprise/include/class/CommandCenter.class.php:456
-#: ../../include/class/Heatmap.class.php:1302
-#: ../../general/reporting_console_node.php:65
+#: ../../include/class/Heatmap.class.php:1358
+#: ../../general/reporting_console_node.php:70
msgid "Info"
msgstr "Información"
@@ -28618,8 +28761,8 @@ msgstr "El proceso se ha completado correctamente"
#: ../../enterprise/include/class/CommandCenter.class.php:463
#: ../../enterprise/include/functions_login.php:213
-#: ../../include/functions_menu.php:883
-#: ../../include/class/Diagnostics.class.php:1846
+#: ../../include/functions_menu.php:888
+#: ../../include/class/Diagnostics.class.php:1850
msgid "Successfully"
msgstr "Correcto"
@@ -28794,12 +28937,12 @@ msgstr ""
#: ../../extensions/files_repo/files_repo_list.php:57
#: ../../godmode/events/event_responses.editor.php:175
#: ../../include/functions_visual_map_editor.php:125
-#: ../../include/functions_visual_map_editor.php:178
-#: ../../include/functions_visual_map_editor.php:836
-#: ../../include/functions_visual_map_editor.php:931
+#: ../../include/functions_visual_map_editor.php:174
+#: ../../include/functions_visual_map_editor.php:884
+#: ../../include/functions_visual_map_editor.php:979
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
-#: ../../include/rest-api/models/VisualConsole/Item.php:1992
-#: ../../include/functions_filemanager.php:646
+#: ../../include/rest-api/models/VisualConsole/Item.php:1995
+#: ../../include/functions_filemanager.php:661
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266
msgid "Size"
@@ -28838,7 +28981,7 @@ msgid "Missed id parameter."
msgstr "Parámetro id omitido."
#: ../../enterprise/include/class/ManageBackups.class.php:433
-#: ../../include/class/AuditLog.class.php:412
+#: ../../include/class/AuditLog.class.php:424
msgid "There is no additional information to display"
msgstr "No hay información adicional que mostrar"
@@ -28854,11 +28997,11 @@ msgstr ""
msgid "Do you like perform a database restoration?"
msgstr "¿Desea realizar una restauración de base de datos?"
-#: ../../enterprise/include/functions_enterprise.php:451
+#: ../../enterprise/include/functions_enterprise.php:461
msgid "Tree view by tags"
msgstr "Vista de árbol por etiquetas"
-#: ../../enterprise/include/functions_enterprise.php:481
+#: ../../enterprise/include/functions_enterprise.php:491
msgid ""
"If the interval of days until events data purge is shorter than the events "
"data history storage interval, data will be lost. It is recommended that the "
@@ -28869,14 +29012,14 @@ msgstr ""
"datos. Se recomienda configurar una frecuencia de almacenamiento inferior a la "
"frecuencia de purga."
-#: ../../enterprise/include/functions_enterprise.php:483
+#: ../../enterprise/include/functions_enterprise.php:493
msgid ""
"Problems with event days purge and event days that pass data to history DB."
msgstr ""
"Problemas con la fecha de purga de eventos y la fecha de traspaso de "
"información a histórico."
-#: ../../enterprise/include/functions_enterprise.php:494
+#: ../../enterprise/include/functions_enterprise.php:504
msgid ""
"If days purge is less than history days pass to history db, you will have a "
"problems and you lost data. Recommended that days purge will more taller than "
@@ -28886,7 +29029,7 @@ msgstr ""
"perderán. Recomendamos poner una fecha de purga mayor a la del traspaso de "
"datos a histórico."
-#: ../../enterprise/include/functions_enterprise.php:496
+#: ../../enterprise/include/functions_enterprise.php:506
msgid "Problems with days purge and days that pass data to history DB"
msgstr ""
"Problemas con la fecha de purga y la fecha de traspaso de información al "
@@ -28939,7 +29082,7 @@ msgstr "Cumplimiento del SLA"
#: ../../enterprise/include/functions_reporting.php:4223
#: ../../enterprise/include/functions_reporting.php:4874
#: ../../include/functions_reporting_html.php:877
-#: ../../include/functions_reporting_html.php:4881
+#: ../../include/functions_reporting_html.php:4909
msgid "Not Init"
msgstr "No iniciado"
@@ -28985,7 +29128,7 @@ msgstr "Log"
#: ../../enterprise/include/functions_reporting.php:3458
#: ../../enterprise/include/functions_reporting.php:4434
#: ../../include/functions_reporting.php:1011
-#: ../../include/functions_reporting.php:9335
+#: ../../include/functions_reporting.php:9344
msgid "There are no SLAs defined"
msgstr "No hay SLA definidos"
@@ -28993,7 +29136,7 @@ msgstr "No hay SLA definidos"
#: ../../enterprise/include/functions_reporting.php:3511
#: ../../enterprise/include/functions_reporting.php:4487
#: ../../include/functions_reporting.php:1086
-#: ../../include/functions_reporting.php:9713
+#: ../../include/functions_reporting.php:9722
msgid "Inverse"
msgstr "Inverso"
@@ -29042,7 +29185,7 @@ msgstr "SLA %"
#: ../../enterprise/include/functions_reporting.php:6224
#: ../../enterprise/include/functions_services.php:1453
#: ../../include/functions_reporting_html.php:872
-#: ../../include/functions_reporting_html.php:4876
+#: ../../include/functions_reporting_html.php:4904
msgid "Unknow"
msgstr "Desconocido"
@@ -29050,7 +29193,7 @@ msgstr "Desconocido"
#: ../../enterprise/include/functions_reporting.php:4228
#: ../../enterprise/include/functions_reporting.php:6229
#: ../../include/functions_reporting_html.php:882
-#: ../../include/functions_reporting_html.php:4886
+#: ../../include/functions_reporting_html.php:4914
msgid "Downtimes"
msgstr "Paradas planificadas"
@@ -29084,8 +29227,8 @@ msgstr "% tiempo ok"
#: ../../include/functions_reporting_html.php:680
#: ../../include/functions_reporting_html.php:751
#: ../../include/functions_reporting_html.php:829
-#: ../../include/functions_reporting_html.php:4333
-#: ../../include/functions_reporting_html.php:4480
+#: ../../include/functions_reporting_html.php:4361
+#: ../../include/functions_reporting_html.php:4508
msgid "24 x 7"
msgstr "24/7"
@@ -29108,17 +29251,17 @@ msgid "Checks Critical"
msgstr "Comprobaciones Crítico"
#: ../../enterprise/include/functions_reporting.php:5085
-#: ../../include/functions_reporting_html.php:4257
+#: ../../include/functions_reporting_html.php:4285
msgid "Checks Warning"
msgstr "Comprobaciones Advertencia"
#: ../../enterprise/include/functions_reporting.php:5168
#: ../../include/functions_reporting_html.php:809
-#: ../../include/functions_reporting_html.php:4523
-#: ../../include/functions_reporting_html.php:5075
-#: ../../include/functions_reporting_html.php:5078
+#: ../../include/functions_reporting_html.php:4551
+#: ../../include/functions_reporting_html.php:5103
+#: ../../include/functions_reporting_html.php:5106
#: ../../include/functions_reporting.php:1656
-#: ../../include/functions_reporting.php:3735
+#: ../../include/functions_reporting.php:3744
msgid "There are no Agent/Modules defined"
msgstr "No hay Agentes/Módulos definidos"
@@ -29142,51 +29285,51 @@ msgid "Scheduled shutdow"
msgstr "Parada planeada"
#: ../../enterprise/include/functions_reporting.php:6600
-#: ../../enterprise/include/functions_reporting.php:7490
+#: ../../enterprise/include/functions_reporting.php:7499
#, php-format
msgid "Graph agents(%s) - %s"
msgstr "Gráficos de agentes (%s) - %s"
-#: ../../enterprise/include/functions_reporting.php:7398
+#: ../../enterprise/include/functions_reporting.php:7407
#, php-format
msgid "Graph agent(%s) - %s"
msgstr "Gráfico de agente(%s) - %s"
-#: ../../enterprise/include/functions_reporting.php:7845
+#: ../../enterprise/include/functions_reporting.php:7854
msgid "There is not data for the selected conditions"
msgstr "No hay datos para las condiciones seleccionadas"
-#: ../../enterprise/include/functions_reporting.php:8039
-#: ../../enterprise/include/functions_reporting.php:8105
+#: ../../enterprise/include/functions_reporting.php:8048
+#: ../../enterprise/include/functions_reporting.php:8114
msgid "Template editor"
msgstr "Editor de plantillas"
-#: ../../enterprise/include/functions_reporting.php:8171
+#: ../../enterprise/include/functions_reporting.php:8180
#: ../../enterprise/operation/reporting/custom_reporting.php:130
msgid "ID Report"
msgstr "ID Informe"
-#: ../../enterprise/include/functions_reporting.php:8239
+#: ../../enterprise/include/functions_reporting.php:8248
#: ../../enterprise/operation/reporting/custom_reporting.php:116
#: ../../enterprise/operation/reporting/custom_reporting.php:193
msgid "Send by email"
msgstr "Enviar por correo electrónico"
-#: ../../enterprise/include/functions_reporting.php:8327
+#: ../../enterprise/include/functions_reporting.php:8336
#: ../../enterprise/operation/reporting/custom_reporting.php:229
msgid "Send by email "
msgstr "Enviar por correo electrónico "
-#: ../../enterprise/include/functions_reporting.php:8368
+#: ../../enterprise/include/functions_reporting.php:8377
#: ../../include/functions_reports.php:655
msgid "Simple baseline graph"
msgstr "Gráfico simple de línea base"
-#: ../../enterprise/include/functions_reporting.php:8538
+#: ../../enterprise/include/functions_reporting.php:8547
msgid "Configuration changes"
msgstr "Cambios en la configuración"
-#: ../../enterprise/include/functions_reporting.php:8555
+#: ../../enterprise/include/functions_reporting.php:8564
msgid "No NCM capabilities detected"
msgstr "No se han detectado capacidades de NCM"
@@ -29351,40 +29494,52 @@ msgstr "Peso OK"
#: ../../enterprise/include/functions_services.php:1672
#: ../../enterprise/include/functions_services.php:1717
#: ../../enterprise/include/functions_services.php:1785
+#: ../../mobile/operation/services.php:231
+#: ../../mobile/operation/services.php:272
+#: ../../mobile/operation/services.php:338
msgid "Nonexistent. This element should be deleted"
msgstr "Inexistente. Este elemento debería eliminarse."
#: ../../enterprise/include/functions_services.php:1700
#: ../../enterprise/include/functions_services.php:1767
#: ../../enterprise/include/functions_services.php:1813
+#: ../../mobile/operation/services.php:255
+#: ../../mobile/operation/services.php:320
+#: ../../mobile/operation/services.php:363
msgid "This element does not affect service weigth because is disabled."
msgstr "El elemento no afecta al peso del servicio porque está deshabilitado."
#: ../../enterprise/include/functions_services.php:1828
+#: ../../mobile/operation/services.php:386
#, php-format
msgid "Dynamic element (%d) '%s' does not match any target"
msgstr "El elemento dinámico (%d) '%s' no coincide con ningún objetivo"
#: ../../enterprise/include/functions_services.php:1837
+#: ../../mobile/operation/services.php:395
#, php-format
msgid "Dynamic element (%d) '%s' causes an error: %s"
msgstr "El elemento dinámico (%d) '%s' provoca un error: %s"
#: ../../enterprise/include/functions_services.php:1849
+#: ../../mobile/operation/services.php:377
msgid "Dynamic element"
msgstr "Elemento dinámico"
#: ../../enterprise/include/functions_services.php:1855
+#: ../../mobile/operation/services.php:405
#, php-format
msgid "agents like \"%s\""
msgstr "agentes como \"%s\""
#: ../../enterprise/include/functions_services.php:1860
+#: ../../mobile/operation/services.php:410
#, php-format
msgid "modules like \"%s\""
msgstr "módulos como \"%s\""
#: ../../enterprise/include/functions_services.php:1995
+#: ../../mobile/operation/services.php:450
msgid "NOT INITIALIZED"
msgstr "NO INICIADO"
@@ -29480,46 +29635,46 @@ msgstr "La contraseña tiene que contener símbolos."
msgid "Invalid old password"
msgstr "Contraseña antigua no válida"
-#: ../../enterprise/include/functions_login.php:451
+#: ../../enterprise/include/functions_login.php:455
msgid "Password confirm does not match"
msgstr "Las contraseñas no coinciden."
-#: ../../enterprise/include/functions_login.php:458
+#: ../../enterprise/include/functions_login.php:462
msgid "Password empty"
msgstr "La contraseña está vacía."
-#: ../../enterprise/include/functions_login.php:577
-#: ../../godmode/users/configure_user.php:2065
-#: ../../godmode/users/configure_user.php:2134
-#: ../../godmode/users/configure_user.php:2205
+#: ../../enterprise/include/functions_login.php:581
+#: ../../godmode/users/configure_user.php:2117
+#: ../../godmode/users/configure_user.php:2186
+#: ../../godmode/users/configure_user.php:2257
#: ../../include/ajax/double_auth.ajax.php:267
#: ../../include/ajax/double_auth.ajax.php:365
#: ../../include/ajax/double_auth.ajax.php:411
#: ../../include/ajax/double_auth.ajax.php:527
-#: ../../operation/users/user_edit.php:1238
-#: ../../operation/users/user_edit.php:1304
-#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165
+#: ../../operation/users/user_edit.php:1235
+#: ../../operation/users/user_edit.php:1301
+#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165
#: ../../general/logon_failed.php:18
msgid "Authentication error"
msgstr "Error de autentificación"
-#: ../../enterprise/include/functions_login.php:584
-#: ../../godmode/users/configure_user.php:2071
-#: ../../godmode/users/configure_user.php:2140
+#: ../../enterprise/include/functions_login.php:588
+#: ../../godmode/users/configure_user.php:2123
+#: ../../godmode/users/configure_user.php:2192
#: ../../include/ajax/double_auth.ajax.php:274
#: ../../include/ajax/double_auth.ajax.php:372
#: ../../include/ajax/double_auth.ajax.php:418
#: ../../include/ajax/double_auth.ajax.php:535
-#: ../../operation/users/user_edit.php:1245
-#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172
+#: ../../operation/users/user_edit.php:1242
+#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172
msgid "There was an error loading the data"
msgstr "Error al cargar los datos"
-#: ../../enterprise/include/functions_login.php:593
-#: ../../godmode/users/configure_user.php:2148
-#: ../../godmode/users/configure_user.php:2224
-#: ../../operation/users/user_edit.php:1319
-#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181
+#: ../../enterprise/include/functions_login.php:597
+#: ../../godmode/users/configure_user.php:2200
+#: ../../godmode/users/configure_user.php:2276
+#: ../../operation/users/user_edit.php:1316
+#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181
msgid "Double authentication activation"
msgstr "Activación de doble autenticación"
@@ -29567,10 +29722,11 @@ msgid "Invalid plugin definition"
msgstr "Definición de plugin no válida"
#: ../../enterprise/include/lib/NetworkManager.php:82
-#: ../../godmode/setup/setup_ehorus.php:139
-#: ../../godmode/setup/setup_integria.php:652
-#: ../../operation/users/user_edit.php:872
-#: ../../operation/users/user_edit.php:925
+#: ../../godmode/setup/setup_ehorus.php:141
+#: ../../godmode/setup/setup_websocket_engine.php:91
+#: ../../godmode/setup/setup_integria.php:654
+#: ../../operation/users/user_edit.php:869
+#: ../../operation/users/user_edit.php:922
msgid "Test"
msgstr "Probar"
@@ -29662,7 +29818,7 @@ msgstr "Recursividad del grupo de eventos"
#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130
#: ../../include/functions_reporting_html.php:1057
#: ../../include/functions_reporting_html.php:1309
-#: ../../include/functions_reporting_html.php:2640
+#: ../../include/functions_reporting_html.php:2659
#: ../../include/class/SnmpConsole.class.php:276
msgid "Count"
msgstr "Número"
@@ -30392,22 +30548,22 @@ msgstr "La política ya se ha definido: \"%s\""
#: ../../enterprise/include/functions_events.php:40
#: ../../godmode/events/event_filter.php:147
-#: ../../godmode/events/event_edit_filter.php:391
+#: ../../godmode/events/event_edit_filter.php:393
#: ../../include/lib/Dashboard/Widgets/events_list.php:389
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305
-#: ../../operation/events/events.php:1763 ../../operation/events/events.php:2385
+#: ../../operation/events/events.php:1817 ../../operation/events/events.php:2439
msgid "Event status"
msgstr "Estado del evento"
#: ../../enterprise/include/functions_events.php:101
-#: ../../godmode/events/event_edit_filter.php:501
-#: ../../operation/events/events.php:2008
+#: ../../godmode/events/event_edit_filter.php:503
+#: ../../operation/events/events.php:2062
msgid "User ack."
msgstr "Validación del usuario"
#: ../../enterprise/include/functions_events.php:111
-#: ../../godmode/events/event_edit_filter.php:558
-#: ../../godmode/events/event_edit_filter.php:574
+#: ../../godmode/events/event_edit_filter.php:560
+#: ../../godmode/events/event_edit_filter.php:576
msgid "Date from"
msgstr "Fecha desde"
@@ -30416,15 +30572,15 @@ msgid "Date to"
msgstr "Fecha hasta"
#: ../../enterprise/include/functions_events.php:131
-#: ../../godmode/events/event_edit_filter.php:542
-#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4968
-#: ../../operation/events/events.php:1795
+#: ../../godmode/events/event_edit_filter.php:544
+#: ../../mobile/operation/events.php:845 ../../include/functions_events.php:4973
+#: ../../operation/events/events.php:1849
msgid "Repeated"
msgstr "Repetido"
#: ../../enterprise/include/functions_events.php:141
-#: ../../godmode/events/event_edit_filter.php:759
-#: ../../operation/events/events.php:2054
+#: ../../godmode/events/event_edit_filter.php:761
+#: ../../operation/events/events.php:2108
msgid "Alert events"
msgstr "Eventos de la alerta"
@@ -30433,15 +30589,15 @@ msgid "Id source events"
msgstr "Eventos fuente de ID"
#: ../../enterprise/include/functions_events.php:162
-#: ../../godmode/events/event_edit_filter.php:475
-#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401
+#: ../../godmode/events/event_edit_filter.php:477
+#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401
#: ../../include/class/SnmpConsole.class.php:407
#: ../../include/class/AuditLog.class.php:204
#: ../../include/lib/Dashboard/Widgets/events_list.php:347
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270
-#: ../../operation/events/events.php:1776 ../../operation/events/events.php:2415
+#: ../../operation/events/events.php:1830 ../../operation/events/events.php:2469
msgid "Max. hours old"
msgstr "Máx. horas de antiguedad"
@@ -30451,14 +30607,14 @@ msgid "More than 5 tags"
msgstr "Más de 5 etiquetas"
#: ../../enterprise/include/functions_events.php:184
-#: ../../godmode/events/event_edit_filter.php:629
-#: ../../operation/events/events.php:2255 ../../operation/events/events.php:2258
+#: ../../godmode/events/event_edit_filter.php:631
+#: ../../operation/events/events.php:2309 ../../operation/events/events.php:2312
msgid "Events with following tags"
msgstr "Eventos con las siguientes etiquetas"
#: ../../enterprise/include/functions_events.php:206
-#: ../../godmode/events/event_edit_filter.php:694
-#: ../../operation/events/events.php:2256 ../../operation/events/events.php:2259
+#: ../../godmode/events/event_edit_filter.php:696
+#: ../../operation/events/events.php:2310 ../../operation/events/events.php:2313
msgid "Events without following tags"
msgstr "Eventos sin las siguientes etiquetas"
@@ -30530,8 +30686,8 @@ msgid "Subscription"
msgstr "Suscripción"
#: ../../enterprise/include/functions_license.php:120
-#: ../../include/functions_menu.php:956
-#: ../../include/class/Diagnostics.class.php:1179
+#: ../../include/functions_menu.php:961
+#: ../../include/class/Diagnostics.class.php:1183
msgid "Support expires"
msgstr "El soporte caduca"
@@ -30553,7 +30709,7 @@ msgstr "Siguiente IP disponible"
#: ../../enterprise/include/functions_ipam.php:1343
#: ../../enterprise/tools/ipam/ipam_ajax.php:486
-#: ../../include/ajax/events.php:1753
+#: ../../include/ajax/events.php:1754
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394
msgid "Details"
@@ -30561,12 +30717,12 @@ msgstr "Detalles"
#: ../../enterprise/include/functions_ipam.php:1388
#: ../../enterprise/operation/services/services.list.php:677
-#: ../../godmode/agentes/inventory_manager.php:270
+#: ../../godmode/agentes/inventory_manager.php:271
#: ../../godmode/wizards/DiscoveryTaskList.class.php:589
#: ../../godmode/wizards/DiscoveryTaskList.class.php:679
-#: ../../operation/visual_console/view.php:424
-#: ../../operation/agentes/group_view.php:239
-#: ../../operation/agentes/group_view.php:302
+#: ../../operation/visual_console/view.php:426
+#: ../../operation/agentes/group_view.php:242
+#: ../../operation/agentes/group_view.php:305
msgid "Force"
msgstr "Forzar"
@@ -30973,7 +31129,7 @@ msgstr "Copia de"
#: ../../enterprise/operation/agentes/ux_console_view.php:297
#: ../../enterprise/operation/agentes/ux_console_view.php:384
#: ../../enterprise/operation/agentes/wux_console_view.php:337
-#: ../../include/functions_ui.php:6749
+#: ../../include/functions_ui.php:6824
msgid "Snapshot view"
msgstr "Vista de captura de pantalla"
@@ -30984,9 +31140,11 @@ msgstr "No se han podido obtener datos del módulo de inventario."
#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173
#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176
#: ../../godmode/reporting/visual_console_builder.wizard.php:589
-#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799
-#: ../../mobile/operation/module_graph.php:477
-#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239
+#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823
+#: ../../mobile/operation/module_graph.php:478
+#: ../../mobile/operation/events.php:1197
+#: ../../mobile/operation/server_status.php:389
+#: ../../mobile/operation/tactical.php:240
msgid "Loading..."
msgstr "Cargando…"
@@ -31038,8 +31196,8 @@ msgstr "Mostrar alertas"
#: ../../enterprise/operation/agentes/policy_view.php:346
#: ../../godmode/alerts/alert_list.list.php:645
#: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324
-#: ../../include/functions_ui.php:1417
-#: ../../include/class/AgentsAlerts.class.php:956
+#: ../../include/functions_ui.php:1460
+#: ../../include/class/AgentsAlerts.class.php:957
msgid "time(s)"
msgstr "Veces"
@@ -31047,10 +31205,10 @@ msgstr "Veces"
#: ../../godmode/alerts/alert_list.list.php:651
#: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330
#: ../../include/functions_agents.php:3000
-#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423
-#: ../../include/class/AgentsAlerts.class.php:962
-#: ../../include/class/SnmpConsole.class.php:843
-#: ../../include/functions_reporting.php:13066
+#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466
+#: ../../include/class/AgentsAlerts.class.php:963
+#: ../../include/class/SnmpConsole.class.php:845
+#: ../../include/functions_reporting.php:13139
msgid "Alert not fired"
msgstr "Alerta no disparada"
@@ -31084,7 +31242,7 @@ msgid "(Adopted) (Unlinked)"
msgstr "(Adoptados)(Desvinculados)"
#: ../../enterprise/operation/agentes/policy_view.php:458
-#: ../../godmode/agentes/module_manager.php:881
+#: ../../godmode/agentes/module_manager.php:895
msgid "Non initialized module"
msgstr "Módulo no iniciado"
@@ -31098,22 +31256,22 @@ msgstr "Módulo no iniciado"
#: ../../enterprise/operation/agentes/tag_view.php:1169
#: ../../enterprise/operation/agentes/tag_view.php:1175
#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
+#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661
#: ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:2919
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:142 ../../operation/search_modules.php:150
-#: ../../operation/search_modules.php:158
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:145 ../../operation/search_modules.php:153
+#: ../../operation/search_modules.php:161
msgid "Last status"
msgstr "Último estado"
@@ -31123,114 +31281,115 @@ msgid "Tag view"
msgstr "Visor de etiquetas"
#: ../../enterprise/operation/agentes/tag_view.php:54
-#: ../../extensions/agents_modules.php:556 ../../extensions/module_groups.php:264
+#: ../../extensions/agents_modules.php:564 ../../extensions/module_groups.php:264
#: ../../extensions/realtime_graphs.php:71
+#: ../../godmode/agentes/status_monitor_custom_fields.php:48
#: ../../include/class/AgentsAlerts.class.php:755 ../../operation/heatmap.php:144
#: ../../operation/agentes/alerts_status.php:202
#: ../../operation/agentes/estado_agente.php:250
#: ../../operation/agentes/interface_view.php:76
-#: ../../operation/agentes/status_monitor.php:340
+#: ../../operation/agentes/status_monitor.php:339
#: ../../operation/agentes/group_view.php:102
#: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165
msgid "Views"
msgstr "Vistas"
#: ../../enterprise/operation/agentes/tag_view.php:139
-#: ../../operation/agentes/status_monitor.php:884
+#: ../../operation/agentes/status_monitor.php:883
msgid "Monitor status"
msgstr "Estado del monitor"
#: ../../enterprise/operation/agentes/tag_view.php:241
-#: ../../operation/agentes/status_monitor.php:609
+#: ../../operation/agentes/status_monitor.php:608
#: ../../operation/agentes/alerts_status.functions.php:146
msgid "Only it is show tags in use."
msgstr "Mostrar solo etiquetas en uso"
#: ../../enterprise/operation/agentes/tag_view.php:288
#: ../../godmode/agentes/module_manager_editor_data.php:15
-#: ../../operation/agentes/status_monitor.php:655
+#: ../../operation/agentes/status_monitor.php:654
msgid "Data server module"
msgstr "Módulo del servidor de datos"
#: ../../enterprise/operation/agentes/tag_view.php:290
-#: ../../godmode/agentes/module_manager_editor_network.php:78
-#: ../../operation/agentes/status_monitor.php:657
+#: ../../godmode/agentes/module_manager_editor_network.php:79
+#: ../../operation/agentes/status_monitor.php:656
msgid "Network server module"
msgstr "Módulo del servidor de red"
#: ../../enterprise/operation/agentes/tag_view.php:294
#: ../../godmode/agentes/module_manager_editor_plugin.php:46
-#: ../../operation/agentes/status_monitor.php:661
+#: ../../operation/agentes/status_monitor.php:660
msgid "Plugin server module"
msgstr "Módulo del servidor de plugin"
#: ../../enterprise/operation/agentes/tag_view.php:298
#: ../../godmode/agentes/module_manager_editor_wmi.php:33
-#: ../../operation/agentes/status_monitor.php:665
+#: ../../operation/agentes/status_monitor.php:664
msgid "WMI server module"
msgstr "Módulo del servidor WMI"
#: ../../enterprise/operation/agentes/tag_view.php:302
#: ../../godmode/agentes/module_manager_editor_prediction.php:117
-#: ../../operation/agentes/status_monitor.php:669
+#: ../../operation/agentes/status_monitor.php:668
msgid "Prediction server module"
msgstr "Módulo del servidor de predicción"
#: ../../enterprise/operation/agentes/tag_view.php:306
#: ../../godmode/agentes/module_manager_editor_web.php:57
-#: ../../operation/agentes/status_monitor.php:673
+#: ../../operation/agentes/status_monitor.php:672
msgid "Web server module"
msgstr "Módulo del servidor web"
#: ../../enterprise/operation/agentes/tag_view.php:310
#: ../../enterprise/operation/agentes/tag_view.php:783
-#: ../../godmode/agentes/status_monitor_custom_fields.php:89
-#: ../../godmode/agentes/status_monitor_custom_fields.php:144
-#: ../../operation/agentes/status_monitor.php:935
-#: ../../operation/agentes/status_monitor.php:1553
+#: ../../godmode/agentes/status_monitor_custom_fields.php:109
+#: ../../godmode/agentes/status_monitor_custom_fields.php:164
+#: ../../operation/agentes/status_monitor.php:937
+#: ../../operation/agentes/status_monitor.php:1555
msgid "Server type"
msgstr "Tipo de servidor"
#: ../../enterprise/operation/agentes/tag_view.php:329
#: ../../godmode/agentes/modificar_agente.php:290
-#: ../../operation/agentes/status_monitor.php:681
+#: ../../operation/agentes/status_monitor.php:680
msgid "Only enabled"
msgstr "Solo habilitados"
#: ../../enterprise/operation/agentes/tag_view.php:330
#: ../../godmode/agentes/modificar_agente.php:289
#: ../../include/class/SatelliteAgent.class.php:153
-#: ../../operation/agentes/status_monitor.php:682
+#: ../../operation/agentes/status_monitor.php:681
msgid "Only disabled"
msgstr "Solo deshabilitados"
#: ../../enterprise/operation/agentes/tag_view.php:334
-#: ../../operation/agentes/status_monitor.php:953
+#: ../../operation/agentes/status_monitor.php:955
msgid "Show monitors..."
msgstr "Mostrar módulos..."
#: ../../enterprise/operation/agentes/tag_view.php:358
#: ../../enterprise/operation/agentes/tag_view.php:782
-#: ../../godmode/agentes/status_monitor_custom_fields.php:81
-#: ../../godmode/agentes/status_monitor_custom_fields.php:142
-#: ../../operation/agentes/status_monitor.php:976
+#: ../../godmode/agentes/status_monitor_custom_fields.php:101
+#: ../../godmode/agentes/status_monitor_custom_fields.php:162
+#: ../../operation/agentes/status_monitor.php:978
msgid "Data type"
msgstr "Tipo de dato"
#: ../../enterprise/operation/agentes/tag_view.php:503
#: ../../operation/agentes/estado_agente.php:431
#: ../../operation/agentes/agent_fields.php:37
-#: ../../operation/agentes/status_monitor.php:1007
+#: ../../operation/agentes/status_monitor.php:1009
msgid "Agent custom fields"
msgstr "Campos personalizados de agente"
#: ../../enterprise/operation/agentes/tag_view.php:672
-#: ../../operation/agentes/status_monitor.php:2280
+#: ../../operation/agentes/status_monitor.php:2282
msgid "Sorry no search parameters"
msgstr "No hay parámetros de búsqueda"
#: ../../enterprise/operation/agentes/tag_view.php:748
-#: ../../operation/agentes/estado_agente.php:1206
+#: ../../operation/agentes/estado_agente.php:1215
msgid "Remote config"
msgstr "Configuración remota"
@@ -31238,67 +31397,68 @@ msgstr "Configuración remota"
#: ../../enterprise/operation/services/services.service.php:121
#: ../../enterprise/operation/services/services.list.php:547
#: ../../extensions/realtime_graphs.php:112
-#: ../../godmode/agentes/status_monitor_custom_fields.php:105
-#: ../../godmode/agentes/status_monitor_custom_fields.php:148
+#: ../../godmode/agentes/status_monitor_custom_fields.php:125
+#: ../../godmode/agentes/status_monitor_custom_fields.php:168
+#: ../../mobile/operation/modules.php:856
#: ../../include/functions_visual_map_editor.php:58
-#: ../../include/class/NetworkMap.class.php:3065
+#: ../../include/class/NetworkMap.class.php:3071
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:340
-#: ../../include/functions_events.php:4508
+#: ../../include/functions_events.php:4513
#: ../../operation/agentes/interface_view.functions.php:558
-#: ../../operation/agentes/status_monitor.php:1579
-#: ../../operation/search_modules.php:37
+#: ../../operation/agentes/status_monitor.php:1581
+#: ../../operation/search_modules.php:40
msgid "Graph"
msgstr "Gráfico"
#: ../../enterprise/operation/agentes/tag_view.php:786
-#: ../../godmode/agentes/status_monitor_custom_fields.php:109
-#: ../../godmode/agentes/status_monitor_custom_fields.php:149
+#: ../../godmode/agentes/status_monitor_custom_fields.php:129
+#: ../../godmode/agentes/status_monitor_custom_fields.php:169
#: ../../godmode/agentes/module_manager.php:646
msgid "Warn"
msgstr "Advertencia"
#: ../../enterprise/operation/agentes/tag_view.php:1083
-#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605
+#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:616
#: ../../include/functions_modules.php:2896
#: ../../include/functions_modules.php:4251 ../../include/functions_events.php:70
-#: ../../operation/agentes/status_monitor.php:1784
-#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746
+#: ../../operation/agentes/status_monitor.php:1786
+#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751
msgid "NOT INIT"
msgstr "No iniciado"
#: ../../enterprise/operation/agentes/tag_view.php:1223
-#: ../../include/functions_reporting.php:13188
-#: ../../include/functions_reporting.php:13197
+#: ../../include/functions_reporting.php:13261
+#: ../../include/functions_reporting.php:13270
#, php-format
msgid "%d Total modules"
msgstr "%d módulos totales"
#: ../../enterprise/operation/agentes/tag_view.php:1224
-#: ../../include/functions_reporting.php:13189
+#: ../../include/functions_reporting.php:13262
#, php-format
msgid "%d Modules in normal status"
msgstr "%d módulos en estado normal"
#: ../../enterprise/operation/agentes/tag_view.php:1225
-#: ../../include/functions_reporting.php:13190
+#: ../../include/functions_reporting.php:13263
#, php-format
msgid "%d Modules in critical status"
msgstr "%d módulos en estado crítico"
#: ../../enterprise/operation/agentes/tag_view.php:1226
-#: ../../include/functions_reporting.php:13191
+#: ../../include/functions_reporting.php:13264
#, php-format
msgid "%d Modules in warning status"
msgstr "%d módulos en estado de advertencia"
#: ../../enterprise/operation/agentes/tag_view.php:1227
-#: ../../include/functions_reporting.php:13192
+#: ../../include/functions_reporting.php:13265
#, php-format
msgid "%d Modules in unknown status"
msgstr "%d módulos en estado desconocido"
#: ../../enterprise/operation/agentes/tag_view.php:1228
-#: ../../include/functions_reporting.php:13193
+#: ../../include/functions_reporting.php:13266
#, php-format
msgid "%d Modules in not init status"
msgstr "%d módulos en estado no iniciado"
@@ -31309,7 +31469,7 @@ msgid "Main IP"
msgstr "IP principal"
#: ../../enterprise/operation/agentes/ver_agente.php:96
-#: ../../include/functions_events.php:4435
+#: ../../godmode/groups/tactical.php:182 ../../include/functions_events.php:4440
#: ../../operation/agentes/ver_agente.php:1047
msgid "Last remote contact"
msgstr "Último contacto remoto"
@@ -31320,24 +31480,24 @@ msgid "Monitors down"
msgstr "Monitores caídos"
#: ../../enterprise/operation/agentes/ver_agente.php:182
-#: ../../mobile/operation/groups.php:174
+#: ../../mobile/operation/groups.php:213
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:600
#: ../../operation/agentes/ver_agente.php:1133
msgid "Alerts fired"
msgstr "Alertas disparadas"
#: ../../enterprise/operation/agentes/ver_agente.php:297
-#: ../../operation/agentes/ver_agente.php:1877
+#: ../../operation/agentes/ver_agente.php:1873
msgid "URL Route Analyzer"
msgstr "Analizador de ruta de URL"
#: ../../enterprise/operation/agentes/ver_agente.php:316
-#: ../../operation/agentes/ver_agente.php:1868
+#: ../../operation/agentes/ver_agente.php:1864
msgid "UX Console"
msgstr "Consola UX"
#: ../../enterprise/operation/agentes/ver_agente.php:335
-#: ../../operation/agentes/ver_agente.php:1872
+#: ../../operation/agentes/ver_agente.php:1868
msgid "WUX Console"
msgstr "Consola WUX"
@@ -31437,10 +31597,10 @@ msgid "View all stats"
msgstr "Ver todas las estadísticas"
#: ../../enterprise/operation/agentes/wux_console_view.php:570
-#: ../../include/class/SnmpConsole.class.php:893
-#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379
-#: ../../operation/menu.php:381 ../../operation/events/events.php:590
-#: ../../operation/events/events.php:855
+#: ../../include/class/SnmpConsole.class.php:895
+#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379
+#: ../../operation/menu.php:381 ../../operation/events/events.php:595
+#: ../../operation/events/events.php:860
msgid "Show more"
msgstr "Mostrar más"
@@ -31450,7 +31610,7 @@ msgstr "Transacción no válida"
#: ../../enterprise/operation/log/elasticsearch_interface.php:37
#: ../../enterprise/operation/log/elasticsearch_interface.php:50
-#: ../../enterprise/operation/log/log_viewer.php:413
+#: ../../enterprise/operation/log/log_viewer.php:411
#: ../../enterprise/operation/menu.php:192
msgid "Elasticsearch Interface"
msgstr "Interfaz de ElasticSearch"
@@ -31469,50 +31629,50 @@ msgstr ""
"está haciendo con exactitud. \n"
"Esta vista esta destinada a aquellos usuarios que conocen bien ElasticSearch"
-#: ../../enterprise/operation/log/log_viewer.php:427
-#: ../../enterprise/operation/log/log_viewer.php:445
-#: ../../enterprise/operation/log/log_viewer.php:455
+#: ../../enterprise/operation/log/log_viewer.php:425
+#: ../../enterprise/operation/log/log_viewer.php:443
+#: ../../enterprise/operation/log/log_viewer.php:453
msgid "Log sources"
msgstr "Fuentes de log"
-#: ../../enterprise/operation/log/log_viewer.php:519
+#: ../../enterprise/operation/log/log_viewer.php:517
#: ../../godmode/modules/manage_inventory_modules.php:83
#: ../../godmode/modules/manage_inventory_modules_form.php:57
#: ../../godmode/netflow/nf_edit.php:70
-#: ../../operation/netflow/nf_live_view.php:150
+#: ../../operation/netflow/nf_live_view.php:155
msgid "Not supported in Windows systems"
msgstr "No compatible con sistemas Windows"
-#: ../../enterprise/operation/log/log_viewer.php:541
+#: ../../enterprise/operation/log/log_viewer.php:539
msgid "All words"
msgstr "Todas las palabras"
-#: ../../enterprise/operation/log/log_viewer.php:542
+#: ../../enterprise/operation/log/log_viewer.php:540
msgid "Any word"
msgstr "Cualquier palabra"
-#: ../../enterprise/operation/log/log_viewer.php:547
+#: ../../enterprise/operation/log/log_viewer.php:545
msgid "Search mode"
msgstr "Modo de búsqueda"
-#: ../../enterprise/operation/log/log_viewer.php:607
+#: ../../enterprise/operation/log/log_viewer.php:605
#: ../../godmode/reporting/reporting_builder.item_editor.php:1325
msgid "Full context"
msgstr "Contexto completo"
-#: ../../enterprise/operation/log/log_viewer.php:660
+#: ../../enterprise/operation/log/log_viewer.php:658
msgid "Select dates by range"
msgstr "Seleccionar fechas por rango"
-#: ../../enterprise/operation/log/log_viewer.php:671
+#: ../../enterprise/operation/log/log_viewer.php:669
#: ../../godmode/reporting/create_container.php:417
#: ../../include/functions.php:2744
msgid "custom"
msgstr "personalizado"
+#: ../../enterprise/operation/log/log_viewer.php:671
+#: ../../enterprise/operation/log/log_viewer.php:672
#: ../../enterprise/operation/log/log_viewer.php:673
-#: ../../enterprise/operation/log/log_viewer.php:674
-#: ../../enterprise/operation/log/log_viewer.php:675
#: ../../godmode/reporting/create_container.php:419
#: ../../godmode/reporting/create_container.php:420
#: ../../godmode/reporting/create_container.php:421
@@ -31523,8 +31683,8 @@ msgstr "personalizado"
msgid "%s hours"
msgstr "%s horas"
-#: ../../enterprise/operation/log/log_viewer.php:677
-#: ../../enterprise/operation/log/log_viewer.php:678
+#: ../../enterprise/operation/log/log_viewer.php:675
+#: ../../enterprise/operation/log/log_viewer.php:676
#: ../../godmode/reporting/create_container.php:423
#: ../../godmode/reporting/create_container.php:424
#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
@@ -31532,81 +31692,81 @@ msgstr "%s horas"
msgid "%s days"
msgstr "%s días"
-#: ../../enterprise/operation/log/log_viewer.php:679
+#: ../../enterprise/operation/log/log_viewer.php:677
#: ../../godmode/reporting/create_container.php:425
-#: ../../include/functions.php:2759 ../../include/ajax/module.php:225
+#: ../../include/functions.php:2759 ../../include/ajax/module.php:248
#: ../../include/ajax/graph.ajax.php:153
msgid "1 week"
msgstr "1 semana"
-#: ../../enterprise/operation/log/log_viewer.php:681
+#: ../../enterprise/operation/log/log_viewer.php:679
#: ../../godmode/reporting/create_container.php:427
-#: ../../include/functions.php:2761 ../../include/ajax/module.php:227
+#: ../../include/functions.php:2761 ../../include/ajax/module.php:250
#: ../../include/ajax/graph.ajax.php:155
#: ../../include/class/AuditLog.class.php:214
msgid "1 month"
msgstr "1 mes"
-#: ../../enterprise/operation/log/log_viewer.php:684
-#: ../../enterprise/operation/log/log_viewer.php:704
+#: ../../enterprise/operation/log/log_viewer.php:682
+#: ../../enterprise/operation/log/log_viewer.php:702
#: ../../operation/network/network_report.php:114
#: ../../operation/network/network_usage_map.php:128
-#: ../../operation/netflow/nf_live_view.php:403
+#: ../../operation/netflow/nf_live_view.php:476
msgid "Start date"
msgstr "Fecha de inicio"
-#: ../../enterprise/operation/log/log_viewer.php:736
+#: ../../enterprise/operation/log/log_viewer.php:734
#: ../../operation/agentes/exportdata.php:427
#: ../../operation/network/network_report.php:157
#: ../../operation/network/network_usage_map.php:161
-#: ../../operation/netflow/nf_live_view.php:436
+#: ../../operation/netflow/nf_live_view.php:509
msgid "End date"
msgstr "Fecha final"
-#: ../../enterprise/operation/log/log_viewer.php:806
-#: ../../enterprise/operation/log/log_viewer.php:807
+#: ../../enterprise/operation/log/log_viewer.php:804
+#: ../../enterprise/operation/log/log_viewer.php:805
msgid "Edit sources"
msgstr "Editar fuentes"
-#: ../../enterprise/operation/log/log_viewer.php:853
+#: ../../enterprise/operation/log/log_viewer.php:851
msgid "Show log entries"
msgstr "Mostrar entradas de log"
-#: ../../enterprise/operation/log/log_viewer.php:854
+#: ../../enterprise/operation/log/log_viewer.php:852
msgid "Graph log results"
msgstr "Resultados de logs de gráficas"
-#: ../../enterprise/operation/log/log_viewer.php:857
+#: ../../enterprise/operation/log/log_viewer.php:855
msgid "Display mode"
msgstr "Modo de visualización"
-#: ../../enterprise/operation/log/log_viewer.php:875
+#: ../../enterprise/operation/log/log_viewer.php:873
msgid "Use capture model"
msgstr "Usar modelo de captura"
-#: ../../enterprise/operation/log/log_viewer.php:910
+#: ../../enterprise/operation/log/log_viewer.php:908
msgid "Create new model"
msgstr "Crear nuevo modelo"
-#: ../../enterprise/operation/log/log_viewer.php:918
+#: ../../enterprise/operation/log/log_viewer.php:916
#: ../../godmode/reporting/graph_builder.main.php:214
msgid "Horizontal bars"
msgstr "Barras horizontales"
-#: ../../enterprise/operation/log/log_viewer.php:919
+#: ../../enterprise/operation/log/log_viewer.php:917
#: ../../godmode/reporting/graph_builder.main.php:215
msgid "Vertical bars"
msgstr "Barras verticales"
-#: ../../enterprise/operation/log/log_viewer.php:922
+#: ../../enterprise/operation/log/log_viewer.php:920
msgid "Graph type"
msgstr "Tipo de gráfica"
-#: ../../enterprise/operation/log/log_viewer.php:942
+#: ../../enterprise/operation/log/log_viewer.php:940
msgid "Advanced options "
msgstr "Opciones avanzadas "
-#: ../../enterprise/operation/log/log_viewer.php:1101
+#: ../../enterprise/operation/log/log_viewer.php:1099
msgid ""
"The maximum limit of rows has been exceeded. Please enter an email to send the "
"csv file"
@@ -31614,11 +31774,11 @@ msgstr ""
"El límite máximo de filas se ha superado. Añada un correo electrónico para "
"enviar el archivo CSV"
-#: ../../enterprise/operation/log/log_viewer.php:1103
+#: ../../enterprise/operation/log/log_viewer.php:1101
msgid "e-mail address"
msgstr "dirección de correo electrónico"
-#: ../../enterprise/operation/log/log_viewer.php:1106
+#: ../../enterprise/operation/log/log_viewer.php:1104
msgid ""
"WARNING: If your email size exceeds your mail attachment size limit, the file "
"will be saved in the local attachment folder."
@@ -31626,27 +31786,27 @@ msgstr ""
"ADVERTENCIA: Si el tamaño del correo electrónico supera el límite de tamaño de "
"archivo adjunto, el archivo se guardará en la carpeta de adjuntos local."
-#: ../../enterprise/operation/log/log_viewer.php:1239
+#: ../../enterprise/operation/log/log_viewer.php:1237
msgid "The start date cannot be greater than the end date"
msgstr "La fecha de inicio no puede ser posterior a la fecha de finalización."
-#: ../../enterprise/operation/log/log_viewer.php:1676
+#: ../../enterprise/operation/log/log_viewer.php:1674
msgid "Add new capture model"
msgstr "Añadir nuevo modelo de captura"
-#: ../../enterprise/operation/log/log_viewer.php:1679
+#: ../../enterprise/operation/log/log_viewer.php:1677
msgid "Edit capture model"
msgstr "Editar modelo de captura"
-#: ../../enterprise/operation/log/log_viewer.php:1762
+#: ../../enterprise/operation/log/log_viewer.php:1760
msgid "Error create new model"
msgstr "Error al crear nuevo modelo"
-#: ../../enterprise/operation/log/log_viewer.php:1789
+#: ../../enterprise/operation/log/log_viewer.php:1787
msgid "Error delete model"
msgstr "Error al borrar modelo"
-#: ../../enterprise/operation/log/log_viewer.php:1835
+#: ../../enterprise/operation/log/log_viewer.php:1833
msgid "Error update model"
msgstr "Error al actualizar modelo"
@@ -31659,8 +31819,8 @@ msgid "AWS view"
msgstr "Vista AWS"
#: ../../enterprise/operation/menu.php:48
-#: ../../operation/agentes/ver_agente.php:1698
-#: ../../operation/agentes/ver_agente.php:1905
+#: ../../operation/agentes/ver_agente.php:1694
+#: ../../operation/agentes/ver_agente.php:1901
msgid "SAP view"
msgstr "Vista SAP"
@@ -31797,7 +31957,7 @@ msgstr "Definición de elemento(s)"
msgid "Add selected"
msgstr "Añadir seleccionado"
-#: ../../enterprise/operation/services/massive/services.create.php:1170
+#: ../../enterprise/operation/services/massive/services.create.php:1182
msgid ""
"Weights configured are common for every item added to the service, if you want "
"to customize them, please edit the service."
@@ -31805,49 +31965,49 @@ msgstr ""
"Los pesos configurados son comunes a todos los elementos añadidos al servicio. "
"Si desea personalizarlos, edite el servicio."
-#: ../../enterprise/operation/services/massive/services.create.php:1174
+#: ../../enterprise/operation/services/massive/services.create.php:1186
#: ../../enterprise/operation/services/massive/service.delete.elements.php:209
#: ../../enterprise/operation/services/massive/service.create.elements.php:532
#: ../../enterprise/operation/services/massive/service.edit.elements.php:290
msgid "Service items summary"
msgstr "Resumen de elementos de servicio"
-#: ../../enterprise/operation/services/massive/services.create.php:1181
+#: ../../enterprise/operation/services/massive/services.create.php:1193
#: ../../enterprise/operation/services/massive/service.create.elements.php:539
#: ../../enterprise/operation/services/massive/service.edit.elements.php:298
-#: ../../include/functions_visual_map_editor.php:1146
-#: ../../include/rest-api/models/VisualConsole/Item.php:2528
+#: ../../include/functions_visual_map_editor.php:1198
+#: ../../include/rest-api/models/VisualConsole/Item.php:2531
msgid "Critical weight"
msgstr "Peso crítico"
-#: ../../enterprise/operation/services/massive/services.create.php:1193
+#: ../../enterprise/operation/services/massive/services.create.php:1205
#: ../../enterprise/operation/services/massive/service.create.elements.php:552
#: ../../enterprise/operation/services/massive/service.edit.elements.php:311
-#: ../../include/functions_visual_map_editor.php:1172
-#: ../../include/rest-api/models/VisualConsole/Item.php:2542
+#: ../../include/functions_visual_map_editor.php:1224
+#: ../../include/rest-api/models/VisualConsole/Item.php:2545
msgid "Warning weight"
msgstr "Peso de advertencia"
-#: ../../enterprise/operation/services/massive/services.create.php:1205
+#: ../../enterprise/operation/services/massive/services.create.php:1217
#: ../../enterprise/operation/services/massive/service.create.elements.php:565
#: ../../enterprise/operation/services/massive/service.edit.elements.php:324
msgid "Unknown weight"
msgstr "Peso desconocido"
-#: ../../enterprise/operation/services/massive/services.create.php:1217
+#: ../../enterprise/operation/services/massive/services.create.php:1229
#: ../../enterprise/operation/services/massive/service.create.elements.php:578
#: ../../enterprise/operation/services/massive/service.edit.elements.php:337
msgid "Normal weight"
msgstr "Peso normal"
-#: ../../enterprise/operation/services/massive/services.create.php:1289
+#: ../../enterprise/operation/services/massive/services.create.php:1301
#: ../../enterprise/operation/services/massive/service.delete.elements.php:246
#: ../../enterprise/operation/services/massive/service.create.elements.php:594
#: ../../enterprise/operation/services/massive/service.edit.elements.php:353
msgid "Selected services"
msgstr "Servicios seleccionados"
-#: ../../enterprise/operation/services/massive/services.create.php:1370
+#: ../../enterprise/operation/services/massive/services.create.php:1382
msgid "Create service"
msgstr "Crear servicio"
@@ -31969,10 +32129,10 @@ msgid "Show sunburst"
msgstr "Mostrar sunburst"
#: ../../enterprise/operation/services/services.service_map.php:129
-#: ../../extensions/agents_modules.php:1043
+#: ../../extensions/agents_modules.php:1067
#: ../../extensions/module_groups.php:464
#: ../../godmode/snmpconsole/snmp_alert.php:2203
-#: ../../include/functions_reporting_html.php:2281
+#: ../../include/functions_reporting_html.php:2302
#: ../../include/class/SnmpConsole.class.php:522
msgid "Legend"
msgstr "Leyenda"
@@ -32011,23 +32171,24 @@ msgstr "Crear servicio"
#: ../../enterprise/operation/services/services.treeview_services.php:281
#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89
-#: ../../godmode/groups/group_list.php:1074
-#: ../../include/functions_inventory.php:301
-#: ../../include/class/Heatmap.class.php:1234
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:694
-#: ../../operation/tree.php:463 ../../operation/tree.php:493
+#: ../../godmode/groups/group_list.php:1086
+#: ../../include/functions_inventory.php:310
+#: ../../include/class/Heatmap.class.php:1272
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:687
+#: ../../operation/tree.php:465 ../../operation/tree.php:495
#: ../../operation/network/network_report.php:391
msgid "No data found"
msgstr "No se encontraron datos"
#: ../../enterprise/operation/services/services.treeview_services.php:282
-#: ../../godmode/groups/group_list.php:1075
+#: ../../godmode/groups/group_list.php:1087
msgid "Found groups"
msgstr "Grupos encontrados"
#: ../../enterprise/operation/services/services.treeview_services.php:376
-#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419
-#: ../../operation/agentes/estado_monitores.php:430
+#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421
+#: ../../operation/agentes/estado_monitores.php:427
+#: ../../operation/search_modules.php:302
msgid "Module: "
msgstr "Módulo: "
@@ -32060,7 +32221,7 @@ msgstr "Error al forzar el servicio"
#: ../../enterprise/operation/services/services.list.php:309
#: ../../enterprise/operation/services/services.table_services.php:277
msgid "Show only root services"
-msgstr "Mostrar solo los servicios root"
+msgstr "Mostrar solo los servicios raíz"
#: ../../enterprise/operation/services/services.list.php:628
msgid "Status graph"
@@ -32431,8 +32592,8 @@ msgstr "Borrar superred"
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:990
-#: ../../include/functions_visual_map_editor.php:791
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564
+#: ../../include/functions_visual_map_editor.php:831
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727
msgid "Show statistics"
msgstr "Mostrar estadísticas"
@@ -32496,7 +32657,7 @@ msgstr "Eliminar red"
#: ../../operation/agentes/interface_view.functions.php:97
#: ../../operation/agentes/interface_view.functions.php:150
#: ../../operation/agentes/ver_agente.php:1419
-#: ../../operation/agentes/ver_agente.php:1844
+#: ../../operation/agentes/ver_agente.php:1840
msgid "Interfaces"
msgstr "Interfaces"
@@ -32521,7 +32682,7 @@ msgid "Please enter adress, for search vlans"
msgstr "Añada una dirección para buscar vlans"
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435
-#: ../../godmode/wizards/HostDevices.class.php:1287
+#: ../../godmode/wizards/HostDevices.class.php:1283
msgid "Context"
msgstr "Contexto"
@@ -32564,13 +32725,13 @@ msgid "Network name already exists in supernet %s (%s)"
msgstr "El nombre de red ya existe en la superred %s (%s)"
#: ../../enterprise/tools/ipam/ipam_action.php:445
-#: ../../operation/agentes/pandora_networkmap.view.php:1689
+#: ../../operation/agentes/pandora_networkmap.view.php:1690
msgid "Could not be updated."
msgstr "No se pudo actualizar"
#: ../../enterprise/tools/ipam/ipam_action.php:451
#: ../../update_manager_client/views/offline.php:78
-#: ../../update_manager_client/views/online.php:94
+#: ../../update_manager_client/views/online.php:96
msgid "Successfully updated."
msgstr "Actualizado correctamente"
@@ -32586,8 +32747,8 @@ msgstr "No pudo ser creado. Nombre en blanco"
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72
#: ../../godmode/modules/manage_nc_groups.php:143
-#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125
-#: ../../godmode/events/event_edit_filter.php:243
+#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125
+#: ../../godmode/events/event_edit_filter.php:245
msgid "Not updated. Error updating data"
msgstr "No se ha podido actualizar. Error al actualizar los datos."
@@ -32657,7 +32818,7 @@ msgid "leased expiration"
msgstr "Concesión caducada"
#: ../../enterprise/tools/ipam/ipam_ajax.php:476
-#: ../../include/class/NetworkMap.class.php:3067
+#: ../../include/class/NetworkMap.class.php:3073
msgid "MAC"
msgstr "MAC"
@@ -32679,7 +32840,7 @@ msgid "Executing command: %s"
msgstr "Ejecutar comando: %s"
#: ../../enterprise/tools/ipam/ipam_ajax.php:554
-#: ../../include/functions_events.php:5965
+#: ../../include/functions_events.php:5970
msgid "Execute again"
msgstr "Ejecutar de nuevo"
@@ -32927,8 +33088,8 @@ msgid "Click on the file below to begin."
msgstr "Haz clic en el archivo de abajo para comenzar."
#: ../../update_manager_client/views/offline.php:70
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/online.php:125
+#: ../../update_manager_client/views/online.php:166
msgid "This action will upgrade this console to version "
msgstr "Esta acción actualizará esta consola a la versión "
@@ -32937,27 +33098,27 @@ msgid "This action will upgrade all servers to version "
msgstr "Esta acción actualizará todos los servidores a la versión "
#: ../../update_manager_client/views/offline.php:73
-#: ../../update_manager_client/views/online.php:89
+#: ../../update_manager_client/views/online.php:91
msgid "Updating to"
msgstr "Actualizando"
#: ../../update_manager_client/views/offline.php:74
-#: ../../update_manager_client/views/online.php:90
+#: ../../update_manager_client/views/online.php:92
msgid "Do you really want to leave our brilliant application?"
msgstr "¿Estás seguro de que quieres realizar esta acción?"
#: ../../update_manager_client/views/offline.php:75
-#: ../../update_manager_client/views/online.php:91
+#: ../../update_manager_client/views/online.php:93
msgid "There are no updates available"
msgstr "No hay actualizaciones disponibles"
#: ../../update_manager_client/views/offline.php:76
-#: ../../update_manager_client/views/online.php:92
+#: ../../update_manager_client/views/online.php:94
msgid "Searching for updates..."
msgstr "Buscando actualizaciones..."
#: ../../update_manager_client/views/offline.php:77
-#: ../../update_manager_client/views/online.php:93
+#: ../../update_manager_client/views/online.php:95
msgid "Package"
msgstr "Paquete"
@@ -33036,16 +33197,16 @@ msgstr ""
"a instalar a menos que se permitan parches. Habilite los parches en la "
"configuración del administrador de actualizaciones."
-#: ../../update_manager_client/views/register.php:47
+#: ../../update_manager_client/views/register.php:48
msgid "Register to Warp Update"
msgstr "Regístrese para Warp Update"
-#: ../../update_manager_client/views/register.php:54
+#: ../../update_manager_client/views/register.php:55
#, php-format
msgid "Keep this %s console up to date with latest updates."
msgstr "Mantener la consola %s actualizada con las últimas actualizaciones."
-#: ../../update_manager_client/views/register.php:61
+#: ../../update_manager_client/views/register.php:62
#, php-format
msgid ""
"When you subscribe to the Warp update service for %s, you accept that we\n"
@@ -33063,24 +33224,24 @@ msgstr ""
" base de datos en cualquier momento desde las opciones de Warp "
"update."
-#: ../../update_manager_client/views/register.php:74
+#: ../../update_manager_client/views/register.php:75
msgid "Visit our privacy policy for more information"
msgstr "Visite nuestra política de privacidad para obtener más información"
-#: ../../update_manager_client/views/register.php:78
-#: ../../include/class/Diagnostics.class.php:1938
+#: ../../update_manager_client/views/register.php:79
+#: ../../include/class/Diagnostics.class.php:1942
msgid "Your email"
msgstr "Su email"
-#: ../../update_manager_client/views/register.php:97
+#: ../../update_manager_client/views/register.php:98
msgid "OK!"
msgstr "¡OK!"
-#: ../../update_manager_client/views/register.php:112
+#: ../../update_manager_client/views/register.php:113
msgid "Are you sure you don't want to use Warp update?"
msgstr "¿Está seguro de que no quiere usar Warp update?"
-#: ../../update_manager_client/views/register.php:116
+#: ../../update_manager_client/views/register.php:117
msgid ""
"You will need to update your system manually, through source code or RPM\n"
" packages to be up to date with latest updates."
@@ -33088,11 +33249,11 @@ msgstr ""
"Deberá actualizar su sistema manualmente a través del código fuente o de los "
"paquetes RPM para estar al día con las últimas actualizaciones."
-#: ../../update_manager_client/views/register.php:208
+#: ../../update_manager_client/views/register.php:209
msgid "Unsuccessful subscription"
msgstr "Suscripción incorrecta"
-#: ../../update_manager_client/views/register.php:213
+#: ../../update_manager_client/views/register.php:214
msgid "Pandora successfully subscribed with UID: "
msgstr "Pandora FMS se suscribió correctamente con UID: "
@@ -33100,25 +33261,25 @@ msgstr "Pandora FMS se suscribió correctamente con UID: "
msgid "The latest version of package installed is"
msgstr "La última versión instalada del paquete es:"
-#: ../../update_manager_client/views/online.php:64
+#: ../../update_manager_client/views/online.php:65
msgid "Update to next version"
msgstr "Actualizar a la siguiente versión"
-#: ../../update_manager_client/views/online.php:65
+#: ../../update_manager_client/views/online.php:66
msgid "Update to latest version"
msgstr "Actualizar a la última versión"
-#: ../../update_manager_client/views/online.php:124
-#: ../../update_manager_client/views/online.php:165
+#: ../../update_manager_client/views/online.php:126
+#: ../../update_manager_client/views/online.php:167
msgid "Update to"
msgstr "Actualización para"
-#: ../../update_manager_client/views/online.php:145
-#: ../../update_manager_client/views/online.php:149
+#: ../../update_manager_client/views/online.php:147
+#: ../../update_manager_client/views/online.php:151
msgid "Failed to update to "
msgstr "Error al actualizar a "
-#: ../../update_manager_client/views/online.php:188
+#: ../../update_manager_client/views/online.php:190
msgid "Failed to update:"
msgstr "Error al actualizar"
@@ -33147,25 +33308,25 @@ msgstr "Error al crear un directorio temporal."
msgid "Failed storing uploaded file."
msgstr "Error al almacenar el archivo cargado."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648
#, php-format
msgid "Invalid extension. The package needs to be in `%s` or `%s` format."
msgstr "Extensión no válida. El paquete debe estar en formato \"%s\" o \"%s\"."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657
msgid "Failed uploading file."
msgstr "Error al cargar el archivo."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692
msgid "Signatures does not match."
msgstr "Las firmas no coinciden."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751
#, php-format
msgid "Update %s successfully installed."
msgstr "La actualización %s instalado correctamente."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754
#, php-format
msgid "Failed while updating: %s"
msgstr "Error al actualizar: %s"
@@ -33237,6 +33398,7 @@ msgid "Matrix events"
msgstr "Eventos matriz"
#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251
+#: ../../godmode/setup/setup_websocket_engine.php:162
msgid "WebService engine has not been started, please check documentation."
msgstr "El motor WebService aún no se ha iniciado, consulte la documentación."
@@ -33473,7 +33635,7 @@ msgstr "Registro de recursos"
#: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132
#: ../../godmode/category/category.php:81
#: ../../godmode/category/edit_category.php:92
-#: ../../operation/agentes/ver_agente.php:1934
+#: ../../operation/agentes/ver_agente.php:1930
msgid "Resources"
msgstr "Recursos"
@@ -33529,8 +33691,8 @@ msgid "%s Console URL"
msgstr "%s URL de la consola"
#: ../../extensions/api_checker.php:243
-#: ../../godmode/users/configure_user.php:1006
-#: ../../godmode/users/configure_user.php:1029
+#: ../../godmode/users/configure_user.php:1054
+#: ../../godmode/users/configure_user.php:1077
#: ../../operation/users/user_edit.php:299
#: ../../operation/users/user_edit.php:338
msgid "API Token"
@@ -33589,7 +33751,7 @@ msgid "Show URL"
msgstr "Mostrar URL"
#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520
-#: ../../godmode/menu.php:478
+#: ../../godmode/menu.php:476
msgid "DB Schema check"
msgstr "Comprobación del esquema de la BD"
@@ -33774,84 +33936,84 @@ msgstr "Ejecutar SQL"
msgid "Error querying database node"
msgstr "Error al consultar el nodo de la base de datos"
-#: ../../extensions/agents_modules.php:396
+#: ../../extensions/agents_modules.php:404
#: ../../godmode/reporting/reporting_builder.item_editor.php:2000
#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
msgid "Show module status"
msgstr "Mostrar el estado del módulo"
-#: ../../extensions/agents_modules.php:397
+#: ../../extensions/agents_modules.php:405
#: ../../godmode/reporting/reporting_builder.item_editor.php:2001
#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
msgid "Show module data"
msgstr "Mostrar datos del módulo"
-#: ../../extensions/agents_modules.php:401
+#: ../../extensions/agents_modules.php:409
#: ../../godmode/reporting/reporting_builder.item_editor.php:1996
#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
msgid "Information to be shown"
msgstr "Información que debe mostrarse"
-#: ../../extensions/agents_modules.php:543
+#: ../../extensions/agents_modules.php:551
#: ../../include/functions_reports.php:807
msgid "Agents/Modules"
msgstr "Agentes/Módulos"
-#: ../../extensions/agents_modules.php:636
+#: ../../extensions/agents_modules.php:644
msgid "Agent/module view"
msgstr "Vista de agente/módulo"
-#: ../../extensions/agents_modules.php:681
+#: ../../extensions/agents_modules.php:690
msgid "Filters "
msgstr "Filtros "
-#: ../../extensions/agents_modules.php:681
+#: ../../extensions/agents_modules.php:690
msgid "Secondary groups and agent subgroups will be taken into account."
msgstr "Los grupos secundarios y los subgrupos de agentes se tendrán en cuenta."
-#: ../../extensions/agents_modules.php:833
-#: ../../include/functions_reporting.php:3376
+#: ../../extensions/agents_modules.php:857
+#: ../../include/functions_reporting.php:3385
msgid "There are no agents with modules"
msgstr "No hay agentes con módulos"
-#: ../../extensions/agents_modules.php:848
+#: ../../extensions/agents_modules.php:872
msgid "Previous modules"
msgstr "Módulos anteriores"
-#: ../../extensions/agents_modules.php:874
+#: ../../extensions/agents_modules.php:898
msgid "More modules"
msgstr "Más módulos"
-#: ../../extensions/agents_modules.php:1030
-#: ../../include/functions_reporting_html.php:2282
+#: ../../extensions/agents_modules.php:1054
+#: ../../include/functions_reporting_html.php:2303
msgid "Orange cell when the module has fired alerts"
msgstr "Cuadro naranja cuando el módulo ha disparado alertas"
-#: ../../extensions/agents_modules.php:1032
-#: ../../include/functions_reporting_html.php:2283
+#: ../../extensions/agents_modules.php:1056
+#: ../../include/functions_reporting_html.php:2304
msgid "Red cell when the module has a critical status"
msgstr "Celda roja cuando el módulo está en estado crítico"
-#: ../../extensions/agents_modules.php:1035
-#: ../../include/functions_reporting_html.php:2284
+#: ../../extensions/agents_modules.php:1059
+#: ../../include/functions_reporting_html.php:2305
msgid "Yellow cell when the module has a warning status"
msgstr "Cuadro amarillo cuando el módulo está en estado advertencia"
-#: ../../extensions/agents_modules.php:1037
-#: ../../include/functions_reporting_html.php:2285
+#: ../../extensions/agents_modules.php:1061
+#: ../../include/functions_reporting_html.php:2306
msgid "Green cell when the module has a normal status"
msgstr "Cuadro verde cuando el módulo está en estado normal"
-#: ../../extensions/agents_modules.php:1039
-#: ../../include/functions_reporting_html.php:2286
+#: ../../extensions/agents_modules.php:1063
+#: ../../include/functions_reporting_html.php:2307
msgid "Grey cell when the module has an unknown status"
msgstr "Cuadro gris cuando el módulo está en estado desconocido"
-#: ../../extensions/agents_modules.php:1041
+#: ../../extensions/agents_modules.php:1065
msgid "Cell turns blue when the module is in 'not initialize' status"
msgstr "Celda azul cuando el módulo está en estado \"no iniciado\""
-#: ../../extensions/agents_modules.php:1055
+#: ../../extensions/agents_modules.php:1079
msgid "Agents/Modules view"
msgstr "Vista de Agentes/Módulos"
@@ -33948,7 +34110,7 @@ msgid "Public link"
msgstr "Enlace público"
#: ../../extensions/files_repo/files_repo_list.php:58
-#: ../../include/functions_filemanager.php:645
+#: ../../include/functions_filemanager.php:660
msgid "Last modification"
msgstr "Última modificación"
@@ -33957,8 +34119,8 @@ msgid "Copy to clipboard"
msgstr "Copiar al portapapeles"
#: ../../extensions/files_repo/files_repo_list.php:167
-#: ../../include/functions_reporting_html.php:2314
-#: ../../include/functions_reporting_html.php:2318
+#: ../../include/functions_reporting_html.php:2335
+#: ../../include/functions_reporting_html.php:2339
msgid "No items"
msgstr "No hay elementos"
@@ -34077,7 +34239,7 @@ msgid "Save agent (%s), module (%s) data xml."
msgstr "Guardar agente (%s), módulo (%s) datos XML"
#: ../../extensions/realtime_graphs.php:58
-#: ../../extensions/realtime_graphs.php:295
+#: ../../extensions/realtime_graphs.php:301
msgid "Realtime graphs"
msgstr "Gráficas en tiempo real"
@@ -34124,12 +34286,12 @@ msgstr "Intervalo de actualización"
msgid "Incremental"
msgstr "Incremental"
-#: ../../extensions/realtime_graphs.php:203
+#: ../../extensions/realtime_graphs.php:199
msgid "Clear graph"
msgstr "Limpiar gráfica"
-#: ../../extensions/realtime_graphs.php:276
-#: ../../godmode/agentes/module_manager_editor_network.php:44
+#: ../../extensions/realtime_graphs.php:282
+#: ../../godmode/agentes/module_manager_editor_network.php:45
msgid "Use this OID"
msgstr "Usar esta OID"
@@ -34218,8 +34380,8 @@ msgid "No modules for this profile"
msgstr "No existen módulos para este perfil"
#: ../../godmode/modules/manage_network_templates_form.php:260
-#: ../../operation/snmpconsole/snmp_browser.php:155
-#: ../../operation/snmpconsole/snmp_browser.php:175
+#: ../../operation/snmpconsole/snmp_browser.php:160
+#: ../../operation/snmpconsole/snmp_browser.php:180
msgid "Add modules"
msgstr "Añadir módulos"
@@ -34297,15 +34459,15 @@ msgid "You can find more information at:"
msgstr "Encontrará más información en:"
#: ../../godmode/modules/manage_network_components_form_common.php:723
-#: ../../godmode/agentes/module_manager_editor_common.php:2270
+#: ../../godmode/agentes/module_manager_editor_common.php:2280
msgid "Please introduce a positive percentage value"
msgstr "Introduzca un valor porcentual positivo"
-#: ../../godmode/modules/manage_network_components_form_network.php:72
+#: ../../godmode/modules/manage_network_components_form_network.php:98
msgid "SNMP Enterprise String"
msgstr "Cadena SNMP Enterprise"
-#: ../../godmode/modules/manage_network_components_form_network.php:191
+#: ../../godmode/modules/manage_network_components_form_network.php:193
#: ../../godmode/modules/manage_network_components_form_wizard.php:315
msgid "Name OID"
msgstr "Nombre del OID"
@@ -34313,23 +34475,23 @@ msgstr "Nombre del OID"
#: ../../godmode/modules/manage_network_components_form_wmi.php:41
#: ../../godmode/agentes/module_manager_editor_wmi.php:106
#: ../../include/class/CredentialStore.class.php:1009
-#: ../../include/class/CredentialStore.class.php:1347
+#: ../../include/class/CredentialStore.class.php:1353
msgid "Namespace"
msgstr "Espacio de nombres"
-#: ../../godmode/modules/manage_network_components_form.php:358
+#: ../../godmode/modules/manage_network_components_form.php:361
msgid "Update Network Component"
msgstr "Actualización de componente de red"
-#: ../../godmode/modules/manage_network_components_form.php:360
+#: ../../godmode/modules/manage_network_components_form.php:363
msgid "Create Network Component"
msgstr "Crear componente de red"
-#: ../../godmode/modules/manage_network_components.php:289
+#: ../../godmode/modules/manage_network_components.php:290
msgid "Remote component management"
msgstr "Gestión remota de componentes"
-#: ../../godmode/modules/manage_network_components.php:321
+#: ../../godmode/modules/manage_network_components.php:322
#, php-format
msgid ""
"This node is configured with centralized mode. All remote components are read "
@@ -34338,36 +34500,36 @@ msgstr ""
"Este nodo esta configurado con el modo centralizado. Toda la información de "
"las políticas está en modo lectura. Vaya a %s para administrarlo."
-#: ../../godmode/modules/manage_network_components.php:433
+#: ../../godmode/modules/manage_network_components.php:435
msgid "Could not be created because the component exists"
msgstr "No se ha podido crear porque el componente existe"
-#: ../../godmode/modules/manage_network_components.php:686
+#: ../../godmode/modules/manage_network_components.php:689
msgid "Search by name, description, tcp send or tcp rcv, list matches."
msgstr ""
"Búsqueda por nombre, descripción, envío TCP o TCP RCV, lista las coincidencias."
-#: ../../godmode/modules/manage_network_components.php:779
+#: ../../godmode/modules/manage_network_components.php:782
msgid "Max/Min"
msgstr "Máx/Mín"
-#: ../../godmode/modules/manage_network_components.php:888
+#: ../../godmode/modules/manage_network_components.php:891
msgid "There are no defined network components"
msgstr "No hay componentes de red definidos"
-#: ../../godmode/modules/manage_network_components.php:921
+#: ../../godmode/modules/manage_network_components.php:924
msgid "Create a new network component"
msgstr "Crear un componente de red nuevo"
-#: ../../godmode/modules/manage_network_components.php:922
+#: ../../godmode/modules/manage_network_components.php:925
msgid "Create a new plugin component"
msgstr "Crear un componente de plugin nuevo"
-#: ../../godmode/modules/manage_network_components.php:923
+#: ../../godmode/modules/manage_network_components.php:926
msgid "Create a new WMI component"
msgstr "Crear un componente WMI nuevo"
-#: ../../godmode/modules/manage_network_components.php:924
+#: ../../godmode/modules/manage_network_components.php:927
msgid "Create a new wizard component"
msgstr "Crear un nuevo componente de wizard"
@@ -34482,6 +34644,7 @@ msgstr "Dejar en blanco para los módulos de inventario LOCALES"
#: ../../godmode/massive/massive_enable_disable_alerts.php:196
#: ../../godmode/massive/massive_enable_disable_alerts.php:231
#: ../../include/class/ModuleTemplates.class.php:1184
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491
msgid "Format"
msgstr "Formato"
@@ -34565,7 +34728,7 @@ msgid "Database size stats"
msgstr "Tamaño de estadísticas de la base de datos"
#: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:603
-#: ../../include/functions_reporting.php:14740
+#: ../../include/functions_reporting.php:14813
msgid "Total events"
msgstr "Total de eventos"
@@ -34622,7 +34785,7 @@ msgid "Update group"
msgstr "Actualizar grupo"
#: ../../godmode/groups/configure_group.php:95
-#: ../../godmode/groups/group_list.php:1006
+#: ../../godmode/groups/group_list.php:1018
msgid "Create group"
msgstr "Crear grupo"
@@ -34631,46 +34794,46 @@ msgstr "Crear grupo"
msgid "Manage agents group"
msgstr "Administrar grupo de agentes"
-#: ../../godmode/groups/configure_group.php:160
+#: ../../godmode/groups/configure_group.php:179
msgid "You have not access to the parent."
msgstr "No tienes acceso al padre"
-#: ../../godmode/groups/configure_group.php:218
+#: ../../godmode/groups/configure_group.php:237
msgid "Group Password"
msgstr "Contraseña del grupo"
-#: ../../godmode/groups/configure_group.php:224
+#: ../../godmode/groups/configure_group.php:243
msgid "Enable alert use in this group."
msgstr "Habilitar el uso de alertas en este grupo."
-#: ../../godmode/groups/configure_group.php:229
+#: ../../godmode/groups/configure_group.php:248
msgid "Propagate ACL"
msgstr "Propagar ACL"
-#: ../../godmode/groups/configure_group.php:229
+#: ../../godmode/groups/configure_group.php:248
msgid "Propagate the same ACL security into the child subgroups."
msgstr ""
"Propaga la misma seguridad ACL del padre a todos los grupos hijos que dependen "
"de él."
-#: ../../godmode/groups/configure_group.php:244
-#: ../../include/functions_events.php:5068
+#: ../../godmode/groups/configure_group.php:263
+#: ../../include/functions_events.php:5073
msgid "Contact"
msgstr "Contacto"
-#: ../../godmode/groups/configure_group.php:244
+#: ../../godmode/groups/configure_group.php:263
msgid "Contact information accessible through the _groupcontact_ macro"
msgstr "Información de contacto accesible a través de _groupcontact_ macro"
-#: ../../godmode/groups/configure_group.php:249
+#: ../../godmode/groups/configure_group.php:268
msgid "Information accessible through the _group_other_ macro"
msgstr "Información accesible a través de _group_other_ macro"
-#: ../../godmode/groups/configure_group.php:254
+#: ../../godmode/groups/configure_group.php:273
msgid "Max agents allowed"
msgstr "Máximo de agentes permitidos"
-#: ../../godmode/groups/configure_group.php:254
+#: ../../godmode/groups/configure_group.php:273
msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
msgstr ""
"Establezca el máximo de agentes permitidos en este grupo. 0 es ilimitado."
@@ -34689,8 +34852,8 @@ msgid "Groups defined in %s"
msgstr "Grupos definidos en %s"
#: ../../godmode/groups/group_list.php:352
-#: ../../godmode/agentes/module_manager_editor_network.php:172
-#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723
+#: ../../godmode/agentes/module_manager_editor_network.php:173
+#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723
#: ../../include/class/AgentWizard.class.php:779
msgid "Credential store"
msgstr "Almacén de credenciales"
@@ -34715,32 +34878,32 @@ msgid "There was a problem creating group"
msgstr "Ha habido un problema al crear el grupo."
#: ../../godmode/groups/group_list.php:470
-#: ../../godmode/groups/group_list.php:542
+#: ../../godmode/groups/group_list.php:543
msgid "Each group must have a different name"
msgstr "Cada grupo debe tener un nombre diferente"
#: ../../godmode/groups/group_list.php:473
-#: ../../godmode/groups/group_list.php:545
+#: ../../godmode/groups/group_list.php:546
msgid "Group must have a name"
msgstr "El grupo debe tener un nombre"
-#: ../../godmode/groups/group_list.php:537
+#: ../../godmode/groups/group_list.php:538
#: ../../godmode/groups/modu_group_list.php:165
msgid "Group successfully updated"
msgstr "Grupo actualizado correctamente"
-#: ../../godmode/groups/group_list.php:539
+#: ../../godmode/groups/group_list.php:540
#: ../../godmode/groups/modu_group_list.php:168
msgid "There was a problem modifying group"
msgstr "Ha habido un problema al modificar el grupo"
-#: ../../godmode/groups/group_list.php:602
+#: ../../godmode/groups/group_list.php:603
#, php-format
msgid "The group %s could not be deleted because it is not empty in the nodes"
msgstr ""
"El grupo %s no puede ser borrado porque en el nodo se está usando en este grupo"
-#: ../../godmode/groups/group_list.php:676
+#: ../../godmode/groups/group_list.php:677
msgid ""
"The group has not been deleted in the metaconsole due to an error in the node "
"database"
@@ -34748,40 +34911,40 @@ msgstr ""
"El grupo no se ha eliminado de la Metaconsola por un error en la base de datos "
"de los nodos"
-#: ../../godmode/groups/group_list.php:685
+#: ../../godmode/groups/group_list.php:686
#, php-format
msgid "The group %s has been deleted in the nodes"
msgstr "El grupo %s se ha borrado de los nodos"
-#: ../../godmode/groups/group_list.php:725
+#: ../../godmode/groups/group_list.php:726
#: ../../godmode/groups/modu_group_list.php:238
msgid "Group successfully deleted"
msgstr "Grupo eliminado correctamente"
-#: ../../godmode/groups/group_list.php:728
+#: ../../godmode/groups/group_list.php:729
#: ../../godmode/groups/modu_group_list.php:239
msgid "There was a problem deleting group"
msgstr "Ha habido un problema al borrar el grupo."
-#: ../../godmode/groups/group_list.php:735
+#: ../../godmode/groups/group_list.php:736
#, php-format
msgid "The group is not empty. It is use in %s."
msgstr "El grupo no está vacío. Está en uso en %s."
-#: ../../godmode/groups/group_list.php:774
-#: ../../godmode/groups/group_list.php:994
+#: ../../godmode/groups/group_list.php:775
+#: ../../godmode/groups/group_list.php:1006
msgid "There are no defined groups"
msgstr "No hay grupos definidos"
-#: ../../godmode/groups/group_list.php:832
+#: ../../godmode/groups/group_list.php:833
msgid "Edit or delete groups can cause problems with synchronization"
msgstr "Editar o borrar grupos puede causar problemas con la sincronización."
-#: ../../godmode/groups/group_list.php:958
+#: ../../godmode/groups/group_list.php:970
msgid "Are you sure? This group will also be deleted in all the nodes."
msgstr "¿Está seguro? Este grupo también se borrará de todos los nodos."
-#: ../../godmode/groups/group_list.php:964
+#: ../../godmode/groups/group_list.php:976
msgid ""
"The child groups will be updated to use the parent id of the deleted group"
msgstr "Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado"
@@ -34829,24 +34992,20 @@ msgstr "Crear grupo de módulos"
msgid "Tactical group view"
msgstr "Vista táctica de grupo"
-#: ../../godmode/groups/tactical.php:115
+#: ../../godmode/groups/tactical.php:114
msgid "Distribution by os"
msgstr "Distribución por sistema operativo"
-#: ../../godmode/groups/tactical.php:146
+#: ../../godmode/groups/tactical.php:145
#: ../../include/functions_reporting_html.php:1204
-#: ../../include/functions_reporting_html.php:1419
+#: ../../include/functions_reporting_html.php:1428
msgid "Events by agent"
msgstr "Eventos por agente"
-#: ../../godmode/groups/tactical.php:155
+#: ../../godmode/groups/tactical.php:154
msgid "Alerts and events"
msgstr "Alertas y eventos"
-#: ../../godmode/groups/tactical.php:182
-msgid "Ultimo contacto remoto"
-msgstr "Ultimo contacto remoto"
-
#: ../../godmode/extensions.php:46
msgid "Defined extensions"
msgstr "Extensiones definidas"
@@ -34991,7 +35150,7 @@ msgstr "Gestión de perfiles de usuario"
#: ../../godmode/users/configure_profile.php:90
#: ../../godmode/users/configure_profile.php:389
#: ../../godmode/users/user_list.php:301
-#: ../../godmode/users/configure_user.php:280
+#: ../../godmode/users/configure_user.php:218
msgid "Manage users"
msgstr "Gestionar usuarios"
@@ -35144,7 +35303,7 @@ msgid "Create Profile"
msgstr "Crear perfil"
#: ../../godmode/users/configure_profile.php:283
-#: ../../operation/agentes/ver_agente.php:1938
+#: ../../operation/agentes/ver_agente.php:1934
msgid "View agents"
msgstr "Ver agentes"
@@ -35165,7 +35324,7 @@ msgid "Edit events"
msgstr "Editar eventos"
#: ../../godmode/users/configure_profile.php:317
-#: ../../operation/events/events.php:1545
+#: ../../operation/events/events.php:1599
msgid "Manage events"
msgstr "Gestionar eventos"
@@ -35194,7 +35353,7 @@ msgid "Manage network maps"
msgstr "Gestionar mapas de red"
#: ../../godmode/users/configure_profile.php:354
-#: ../../include/functions_menu.php:571
+#: ../../include/functions_menu.php:573
msgid "View visual console"
msgstr "Ver consola visual"
@@ -35224,36 +35383,36 @@ msgid "Profile name already on use, please, change the name before save"
msgstr "Nombre de perfil en uso, por favor, cambie el nombre antes de guardar"
#: ../../godmode/users/user_list.php:351
-#: ../../godmode/users/configure_user.php:115
+#: ../../godmode/users/configure_user.php:885
#, php-format
msgid "Deleted user %s"
msgstr "Usuario eliminado %s"
#: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400
-#: ../../godmode/users/configure_user.php:122
+#: ../../godmode/users/configure_user.php:892
msgid "There was a problem deleting the user"
msgstr "Error al borrar el usuario"
#: ../../godmode/users/user_list.php:376
-#: ../../godmode/users/configure_user.php:137
+#: ../../godmode/users/configure_user.php:907
#, php-format
msgid "Deleted user %s from metaconsole"
msgstr "Usuario %s eliminado de la Metaconsola"
#: ../../godmode/users/user_list.php:388
-#: ../../godmode/users/configure_user.php:149
+#: ../../godmode/users/configure_user.php:919
#, php-format
msgid "Deleted user %s from %s"
msgstr "Usuario %s eliminado de %s"
#: ../../godmode/users/user_list.php:394
-#: ../../godmode/users/configure_user.php:158
+#: ../../godmode/users/configure_user.php:928
#, php-format
msgid "Successfully deleted from %s"
msgstr "Eliminado correctamente de %s"
#: ../../godmode/users/user_list.php:395
-#: ../../godmode/users/configure_user.php:159
+#: ../../godmode/users/configure_user.php:929
#, php-format
msgid "There was a problem deleting the user from %s"
msgstr "Error al eliminar al usuario de %s"
@@ -35262,15 +35421,15 @@ msgstr "Error al eliminar al usuario de %s"
msgid "ID user cannot be empty"
msgstr "El ID de usuario no puede estar vacío"
-#: ../../godmode/users/user_list.php:443
+#: ../../godmode/users/user_list.php:444
msgid "There was a problem disabling user"
msgstr "Error al deshabilitar el usuario"
-#: ../../godmode/users/user_list.php:449
+#: ../../godmode/users/user_list.php:450
msgid "There was a problem enabling user"
msgstr "Error al habilitar el usuario"
-#: ../../godmode/users/user_list.php:544 ../../operation/users/user_edit.php:284
+#: ../../godmode/users/user_list.php:545 ../../operation/users/user_edit.php:284
#, php-format
msgid ""
"This node is configured with centralized mode. All users information is read "
@@ -35279,23 +35438,23 @@ msgstr ""
"Este nodo esta configurado con el modo centralizado. Toda la información de "
"las políticas está en modo lectura. Vaya a%s para administrarlo."
-#: ../../godmode/users/user_list.php:580
+#: ../../godmode/users/user_list.php:581
msgid "Profile / Group"
msgstr "Perfil/Grupo"
-#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63
+#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63
msgid "Administrator"
msgstr "Administrador"
-#: ../../godmode/users/user_list.php:794
+#: ../../godmode/users/user_list.php:795
msgid "Show profiles"
msgstr "Mostrar perfiles"
-#: ../../godmode/users/user_list.php:812
+#: ../../godmode/users/user_list.php:813
msgid "Other profiles are also assigned."
msgstr "Otros perfiles también han sido asignados"
-#: ../../godmode/users/user_list.php:814
+#: ../../godmode/users/user_list.php:815
msgid ""
"Other profiles you cannot manage are also assigned. These profiles are not "
"shown. You cannot enable/disable or delete this user."
@@ -35303,62 +35462,79 @@ msgstr ""
"Otros perfiles que no puede gestionar también han sido asignados. Estos "
"perfiles no se muestran. No puede habilitar/deshabilitar o borrar este usuario."
-#: ../../godmode/users/user_list.php:823
-#: ../../include/functions_reporting.php:5140
-#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87
+#: ../../godmode/users/user_list.php:824
+#: ../../include/functions_reporting.php:5149
+#: ../../include/functions_reporting.php:5196 ../../operation/search_users.php:87
msgid "The user doesn't have any assigned profile/group"
msgstr "El usuario no tiene ningún perfil asignado."
-#: ../../godmode/users/user_list.php:935
+#: ../../godmode/users/user_list.php:936
#: ../../operation/users/user_edit_header.php:129
msgid "Edit user"
msgstr "Editar usuario"
-#: ../../godmode/users/user_list.php:1032
+#: ../../godmode/users/user_list.php:1034
msgid "Create user"
msgstr "Crear usuario"
-#: ../../godmode/users/user_list.php:1046
-#: ../../godmode/users/configure_user.php:357
+#: ../../godmode/users/user_list.php:1048
+#: ../../godmode/users/configure_user.php:295
#, php-format
msgid "The current authentication scheme doesn't support creating users on %s"
msgstr "El sistema de autenticación no permite crear usuarios en %s."
-#: ../../godmode/users/configure_user.php:267
+#: ../../godmode/users/configure_user.php:60
+#: ../../godmode/users/user_management.php:39
+#: ../../godmode/massive/massive_edit_users.php:275
+#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808
+#: ../../operation/users/user_edit.php:470 ../../operation/events/events.php:1525
+msgid "Event list"
+msgstr "Lista de eventos"
+
+#: ../../godmode/users/configure_user.php:64
+#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812
+msgid "External link"
+msgstr "Enlace externo"
+
+#: ../../godmode/users/configure_user.php:205
msgid "Update User"
msgstr "Actualizar usuario"
-#: ../../godmode/users/configure_user.php:267
+#: ../../godmode/users/configure_user.php:205
msgid "Create User"
msgstr "Crear usuario"
-#: ../../godmode/users/configure_user.php:284
+#: ../../godmode/users/configure_user.php:222
msgid "User Detail Editor"
msgstr "Editor de detalles de usuario"
-#: ../../godmode/users/configure_user.php:449
+#: ../../godmode/users/configure_user.php:391
msgid "User ID cannot be empty"
msgstr "El ID de usuario no puede estar vacío."
-#: ../../godmode/users/configure_user.php:456
+#: ../../godmode/users/configure_user.php:399
+msgid "User ID already exists"
+msgstr "La ID de este usuario ya existe."
+
+#: ../../godmode/users/configure_user.php:405
msgid "Invalid user ID: leading or trailing blank spaces not allowed"
msgstr ""
"ID de usuario no válido: no están permitidos los espacios en blanco al "
"principio o al final"
-#: ../../godmode/users/configure_user.php:464
+#: ../../godmode/users/configure_user.php:413
msgid "Passwords cannot be empty"
msgstr "Las contraseñas no pueden estar vacías."
-#: ../../godmode/users/configure_user.php:471
+#: ../../godmode/users/configure_user.php:420
msgid "Passwords didn't match"
msgstr "Las contraseñas no coinciden."
-#: ../../godmode/users/configure_user.php:478
+#: ../../godmode/users/configure_user.php:427
msgid "The password provided is not valid. Please set another one."
msgstr "La contraseña proporcionada no es válida. Por favor, introduzca otra."
-#: ../../godmode/users/configure_user.php:540
+#: ../../godmode/users/configure_user.php:489
msgid ""
"Strict ACL is not recommended for admin users because performance could be "
"affected."
@@ -35366,59 +35542,59 @@ msgstr ""
"ACL estricto no está recomendado para usuarios administradores porque el "
"rendimiento podría verse afectado."
-#: ../../godmode/users/configure_user.php:624
-#: ../../godmode/users/configure_user.php:963
+#: ../../godmode/users/configure_user.php:573
+#: ../../godmode/users/configure_user.php:1011
msgid "Profile added successfully"
msgstr "Perfil añadido correctamente"
-#: ../../godmode/users/configure_user.php:625
-#: ../../godmode/users/configure_user.php:964
+#: ../../godmode/users/configure_user.php:574
+#: ../../godmode/users/configure_user.php:1012
msgid "Profile cannot be added"
msgstr "El perfil no se puede añadir."
-#: ../../godmode/users/configure_user.php:754
-#: ../../godmode/users/configure_user.php:778
-#: ../../godmode/users/configure_user.php:852
-#: ../../godmode/users/configure_user.php:859
-#: ../../godmode/users/configure_user.php:891
+#: ../../godmode/users/configure_user.php:715
+#: ../../godmode/users/configure_user.php:743
+#: ../../godmode/users/configure_user.php:817
+#: ../../godmode/users/configure_user.php:824
+#: ../../godmode/users/configure_user.php:939
#: ../../operation/users/user_edit.php:216
#: ../../operation/users/user_edit.php:262
msgid "User info successfully updated"
msgstr "Información del usuario actualizada correctamente"
-#: ../../godmode/users/configure_user.php:755
-#: ../../godmode/users/configure_user.php:779
-#: ../../godmode/users/configure_user.php:853
-#: ../../godmode/users/configure_user.php:860
-#: ../../godmode/users/configure_user.php:892
+#: ../../godmode/users/configure_user.php:716
+#: ../../godmode/users/configure_user.php:744
+#: ../../godmode/users/configure_user.php:818
+#: ../../godmode/users/configure_user.php:825
+#: ../../godmode/users/configure_user.php:940
msgid "Error updating user info (no change?)"
msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)"
-#: ../../godmode/users/configure_user.php:784
+#: ../../godmode/users/configure_user.php:749
msgid "Password of the active user is required to perform password change"
msgstr "Se necesita la contraseña del usuario activo para cambiar la contraseña"
-#: ../../godmode/users/configure_user.php:786
+#: ../../godmode/users/configure_user.php:751
msgid "Password of active user is not correct"
msgstr "La contraseña del usuario activo no es correcta"
-#: ../../godmode/users/configure_user.php:802
+#: ../../godmode/users/configure_user.php:767
msgid "Passwords does not match"
msgstr "Las contraseñas no coinciden."
-#: ../../godmode/users/configure_user.php:852
+#: ../../godmode/users/configure_user.php:817
#: ../../operation/users/user_edit.php:214
msgid "You have generated a new API Token."
msgstr "Ha generado un nuevo token de API."
-#: ../../godmode/users/configure_user.php:881
+#: ../../godmode/users/configure_user.php:846
msgid ""
"Strict ACL is not recommended for this user. Performance could be affected."
msgstr ""
"ACL estricto no está recomendado para este usuario. El rendimiento podría "
"verse afectado."
-#: ../../godmode/users/configure_user.php:1014
+#: ../../godmode/users/configure_user.php:1062
#: ../../operation/users/user_edit.php:306
msgid ""
"The API token will be renewed. After this action, the last token you were "
@@ -35427,67 +35603,67 @@ msgstr ""
"Se renovará el token de la API. Después de esta acción, el último token que "
"estabs usando no funcionará. ¿Está seguro?"
-#: ../../godmode/users/configure_user.php:1030
+#: ../../godmode/users/configure_user.php:1078
#: ../../operation/users/user_edit.php:339
msgid "Your API Token is:"
msgstr "Su token de API es:"
-#: ../../godmode/users/configure_user.php:1030
+#: ../../godmode/users/configure_user.php:1078
#: ../../operation/users/user_edit.php:339
msgid "Please, avoid share this string with others."
msgstr "Por favor, evite compartir esta cadena con otros."
-#: ../../godmode/users/configure_user.php:1091
+#: ../../godmode/users/configure_user.php:1155
#: ../../godmode/users/user_management.php:178
#: ../../operation/users/user_edit.php:384
msgid "Full (display) name"
msgstr "Nombre completo"
-#: ../../godmode/users/configure_user.php:1109
-#: ../../godmode/users/user_management.php:664
+#: ../../godmode/users/configure_user.php:1173
+#: ../../godmode/users/user_management.php:690
#: ../../godmode/massive/massive_edit_users.php:469
-#: ../../operation/users/user_edit.php:537
+#: ../../operation/users/user_edit.php:530
msgid "The timezone must be that of the associated server."
msgstr "La zona horaria debe ser la del servidor asociado."
-#: ../../godmode/users/configure_user.php:1142
+#: ../../godmode/users/configure_user.php:1206
#: ../../godmode/users/user_management.php:299
#: ../../operation/users/user_edit.php:411
msgid "Password confirmation"
msgstr "Confirmar contraseña"
-#: ../../godmode/users/configure_user.php:1160
+#: ../../godmode/users/configure_user.php:1224
#: ../../godmode/users/user_management.php:319
msgid "Own password confirmation"
msgstr "Confirmación de contraseña propia"
-#: ../../godmode/users/configure_user.php:1170
+#: ../../godmode/users/configure_user.php:1234
#: ../../godmode/users/user_management.php:233
msgid "Administrator user"
msgstr "Usuario administrador"
-#: ../../godmode/users/configure_user.php:1197
+#: ../../godmode/users/configure_user.php:1261
#: ../../godmode/users/user_management.php:198
#: ../../operation/users/user_edit.php:404
msgid "E-mail"
msgstr "Correo electrónico"
-#: ../../godmode/users/configure_user.php:1213
+#: ../../godmode/users/configure_user.php:1277
#: ../../godmode/users/user_management.php:206
#: ../../godmode/users/user_management.php:218
#: ../../operation/users/user_edit.php:406
msgid "Phone number"
msgstr "Número de teléfono"
-#: ../../godmode/users/configure_user.php:1229
-#: ../../godmode/users/user_management.php:695
-#: ../../operation/users/user_edit.php:755
+#: ../../godmode/users/configure_user.php:1293
+#: ../../godmode/users/user_management.php:721
+#: ../../operation/users/user_edit.php:752
msgid "Login allowed IP list"
msgstr "Lista de IP permitidas para iniciar sesión"
-#: ../../godmode/users/configure_user.php:1230
-#: ../../godmode/users/user_management.php:712
-#: ../../operation/users/user_edit.php:756
+#: ../../godmode/users/configure_user.php:1294
+#: ../../godmode/users/user_management.php:738
+#: ../../operation/users/user_edit.php:753
msgid ""
"Add the source IPs that will allow console access. Each IP must be separated "
"only by comma. * allows all."
@@ -35495,31 +35671,31 @@ msgstr ""
"Agregue las direcciones IP de origen que permitirán el acceso a la consola. "
"Cada IP debe estar separada solo por comas. * permite todo."
-#: ../../godmode/users/configure_user.php:1269
+#: ../../godmode/users/configure_user.php:1333
msgid "Skin"
msgstr "Apariencia"
-#: ../../godmode/users/configure_user.php:1280
+#: ../../godmode/users/configure_user.php:1344
msgid "Search custom field view"
msgstr "Buscar vista de campo personalizado"
-#: ../../godmode/users/configure_user.php:1294
+#: ../../godmode/users/configure_user.php:1358
msgid "Load by default the selected view in custom field view"
msgstr ""
"Cargar por defecto la vista seleccionada en la vista de campo personalizado"
-#: ../../godmode/users/configure_user.php:1300
+#: ../../godmode/users/configure_user.php:1364
msgid "Use global conf"
msgstr "Usar configuración global"
-#: ../../godmode/users/configure_user.php:1305
-#: ../../godmode/users/user_management.php:614
+#: ../../godmode/users/configure_user.php:1369
+#: ../../godmode/users/user_management.php:629
#: ../../godmode/massive/massive_edit_users.php:270
#: ../../operation/users/user_edit.php:466
msgid "Home screen"
msgstr "Pantalla de inicio"
-#: ../../godmode/users/configure_user.php:1306
+#: ../../godmode/users/configure_user.php:1370
#: ../../godmode/massive/massive_edit_users.php:270
#: ../../operation/users/user_edit.php:466
msgid ""
@@ -35532,73 +35708,73 @@ msgstr ""
"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para mostrar la vista "
"de detalle de agente"
-#: ../../godmode/users/configure_user.php:1410
+#: ../../godmode/users/configure_user.php:1459
msgid "Metaconsole access"
msgstr "Acceso a la Metaconsola"
-#: ../../godmode/users/configure_user.php:1442
+#: ../../godmode/users/configure_user.php:1495
msgid "Default event filter"
msgstr "Filtro de evento por defecto"
-#: ../../godmode/users/configure_user.php:1456
+#: ../../godmode/users/configure_user.php:1509
msgid "eHorus user access enabled"
msgstr "Acceso de usuario eHorus habilitado"
-#: ../../godmode/users/configure_user.php:1464
-#: ../../include/functions_config.php:1820
+#: ../../godmode/users/configure_user.php:1517
+#: ../../include/functions_config.php:1832
msgid "eHorus user"
msgstr "Usuario de eHorus"
-#: ../../godmode/users/configure_user.php:1473
-#: ../../include/functions_config.php:1824
+#: ../../godmode/users/configure_user.php:1526
+#: ../../include/functions_config.php:1836
msgid "eHorus password"
msgstr "Contraseña de eHorus"
-#: ../../godmode/users/configure_user.php:1502
+#: ../../godmode/users/configure_user.php:1555
msgid "User must be created before activating double authentication."
msgstr "El usuario debe estar creado antes de activar la doble autenticación."
-#: ../../godmode/users/configure_user.php:1529
-#: ../../operation/users/user_edit.php:559
+#: ../../godmode/users/configure_user.php:1582
+#: ../../operation/users/user_edit.php:552
msgid "Show information"
msgstr "Mostrar información"
-#: ../../godmode/users/configure_user.php:1608
+#: ../../godmode/users/configure_user.php:1662
msgid "Enable agents managment"
msgstr "Habilitar gestión de agentes"
-#: ../../godmode/users/configure_user.php:1616
+#: ../../godmode/users/configure_user.php:1670
msgid "Enable node access"
msgstr "Habilitar el acceso al nodo"
-#: ../../godmode/users/configure_user.php:1617
+#: ../../godmode/users/configure_user.php:1671
msgid "With this option enabled, the user will can access to nodes console"
msgstr ""
"Con esta opción habilitada, el usuario podrá tener acceso a los nodos de la "
"consola."
-#: ../../godmode/users/configure_user.php:1849
+#: ../../godmode/users/configure_user.php:1901
msgid "yes"
msgstr "sí"
-#: ../../godmode/users/configure_user.php:1852
+#: ../../godmode/users/configure_user.php:1904
msgid "no"
msgstr "no"
-#: ../../godmode/users/configure_user.php:1856
+#: ../../godmode/users/configure_user.php:1908
msgid "Please select profile and group"
msgstr "Seleccione un perfil y grupo"
-#: ../../godmode/users/configure_user.php:1870
-#: ../../godmode/users/configure_user.php:1921
+#: ../../godmode/users/configure_user.php:1922
+#: ../../godmode/users/configure_user.php:1973
msgid "This profile is already defined"
msgstr "Este perfil ya está definido"
-#: ../../godmode/users/configure_user.php:1935
+#: ../../godmode/users/configure_user.php:1987
msgid "Deleting last profile will delete this user"
msgstr "Eliminar el último perfil eliminará este usuario"
-#: ../../godmode/users/configure_user.php:1975
+#: ../../godmode/users/configure_user.php:2027
msgid ""
"User will be created without profiles assigned and won't be able to log in, "
"are you sure?"
@@ -35606,44 +35782,33 @@ msgstr ""
"El usuario se creará sin perfiles asignados y no podrá identificarse, ¿está "
"seguro?"
-#: ../../godmode/users/configure_user.php:2082
-#: ../../operation/users/user_edit.php:1256
+#: ../../godmode/users/configure_user.php:2134
+#: ../../operation/users/user_edit.php:1253
msgid "Double autentication information"
msgstr "Información sobre la doble autentificación"
-#: ../../godmode/users/configure_user.php:2171
-#: ../../operation/users/user_edit.php:1345
+#: ../../godmode/users/configure_user.php:2223
+#: ../../operation/users/user_edit.php:1342
msgid "The double authentication will be deactivated"
msgstr "La doble autentificación se desactivará"
-#: ../../godmode/users/configure_user.php:2172
-#: ../../operation/users/user_edit.php:1346
+#: ../../godmode/users/configure_user.php:2224
+#: ../../operation/users/user_edit.php:1343
msgid "Deactivate"
msgstr "Desactivado"
-#: ../../godmode/users/configure_user.php:2207
-#: ../../operation/users/user_edit.php:1378
+#: ../../godmode/users/configure_user.php:2259
+#: ../../operation/users/user_edit.php:1375
msgid "The double autentication was deactivated successfully"
msgstr "La doble autentificación fue desactivada correctamente"
-#: ../../godmode/users/configure_user.php:2210
-#: ../../godmode/users/configure_user.php:2214
-#: ../../operation/users/user_edit.php:1381
-#: ../../operation/users/user_edit.php:1385
+#: ../../godmode/users/configure_user.php:2262
+#: ../../godmode/users/configure_user.php:2266
+#: ../../operation/users/user_edit.php:1378
+#: ../../operation/users/user_edit.php:1382
msgid "There was an error deactivating the double autentication"
msgstr "Error al desactivar la doble autentificación"
-#: ../../godmode/users/user_management.php:39
-#: ../../godmode/massive/massive_edit_users.php:275
-#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470
-#: ../../operation/events/events.php:1471
-msgid "Event list"
-msgstr "Lista de eventos"
-
-#: ../../godmode/users/user_management.php:43
-msgid "External link"
-msgstr "Enlace externo"
-
#: ../../godmode/users/user_management.php:136
msgid "Profile information"
msgstr "Información de perfil"
@@ -35685,11 +35850,11 @@ msgstr ""
"El usuario con la autenticación local habilitada siempre utilizará la "
"autenticación local."
-#: ../../godmode/users/user_management.php:384
+#: ../../godmode/users/user_management.php:390
msgid "Session time"
msgstr "TIempo de sesión"
-#: ../../godmode/users/user_management.php:394
+#: ../../godmode/users/user_management.php:400
msgid ""
"This is defined in minutes, If you wish a permanent session should putting -1 "
"in this field."
@@ -35697,53 +35862,53 @@ msgstr ""
"Esto está definido en minutos; si quieres una sesión permanente, pon -1 en "
"este campo."
-#: ../../godmode/users/user_management.php:399
+#: ../../godmode/users/user_management.php:405
#: ../../godmode/massive/massive_edit_users.php:378
-#: ../../operation/users/user_edit.php:645
+#: ../../operation/users/user_edit.php:642
msgid "Autorefresh"
msgstr "Actualización automática"
-#: ../../godmode/users/user_management.php:434
+#: ../../godmode/users/user_management.php:440
#: ../../godmode/massive/massive_edit_users.php:418
-#: ../../operation/users/user_edit.php:681
+#: ../../operation/users/user_edit.php:678
msgid "Full list of pages"
msgstr "Lista completa de páginas"
-#: ../../godmode/users/user_management.php:445
+#: ../../godmode/users/user_management.php:451
msgid "Pages with autorefresh"
msgstr "Páginas con auto-refresco"
-#: ../../godmode/users/user_management.php:466
-#: ../../godmode/users/user_management.php:467
+#: ../../godmode/users/user_management.php:472
+#: ../../godmode/users/user_management.php:473
#: ../../godmode/massive/massive_edit_users.php:427
#: ../../godmode/massive/massive_edit_users.php:428
-#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382
-#: ../../operation/users/user_edit.php:690
-#: ../../operation/users/user_edit.php:691
+#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387
+#: ../../operation/users/user_edit.php:687
+#: ../../operation/users/user_edit.php:688
msgid "Push selected pages into autorefresh list"
msgstr "Añadir las páginas seleccionadas a la lista de actualización automática"
-#: ../../godmode/users/user_management.php:483
-#: ../../godmode/users/user_management.php:484
+#: ../../godmode/users/user_management.php:489
+#: ../../godmode/users/user_management.php:490
#: ../../godmode/massive/massive_edit_users.php:437
#: ../../godmode/massive/massive_edit_users.php:438
-#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394
-#: ../../operation/users/user_edit.php:699
-#: ../../operation/users/user_edit.php:700
+#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399
+#: ../../operation/users/user_edit.php:696
+#: ../../operation/users/user_edit.php:697
msgid "Pop selected pages out of autorefresh list"
msgstr "Quitar las páginas seleccionadas de la lista de actualización automática"
-#: ../../godmode/users/user_management.php:530
+#: ../../godmode/users/user_management.php:536
msgid "Autorefresh pages"
msgstr "Auto-refrescar páginas"
-#: ../../godmode/users/user_management.php:536
+#: ../../godmode/users/user_management.php:542
msgid "Time for autorefresh"
msgstr "Tiempo de auto-refresco"
-#: ../../godmode/users/user_management.php:549
+#: ../../godmode/users/user_management.php:555
#: ../../godmode/massive/massive_edit_users.php:454
-#: ../../operation/users/user_edit.php:716
+#: ../../operation/users/user_edit.php:713
msgid ""
"Interval of autorefresh of the elements, by default they are 30 seconds, "
"needing to enable the autorefresh first"
@@ -35751,41 +35916,36 @@ msgstr ""
"Intervalo de auto refresco de los elementos, 30 segundos por defecto, pero "
"debe habilitar primero el auto refresco."
-#: ../../godmode/users/user_management.php:554
+#: ../../godmode/users/user_management.php:560
msgid "Language and Appearance"
msgstr "Idioma y aspecto"
-#: ../../godmode/users/user_management.php:576
+#: ../../godmode/users/user_management.php:582
msgid "User color scheme"
msgstr "Combinación de colores del usuario"
-#: ../../godmode/users/user_management.php:593
+#: ../../godmode/users/user_management.php:603
#: ../../godmode/massive/massive_edit_users.php:340
-#: ../../operation/users/user_edit.php:574
+#: ../../operation/users/user_edit.php:571
msgid "Event filter"
msgstr "Filtro de eventos"
-#: ../../godmode/users/user_management.php:661
-#: ../../include/functions_visual_map_editor.php:313
+#: ../../godmode/users/user_management.php:687
+#: ../../include/functions_visual_map_editor.php:309
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302
msgid "Time zone"
msgstr "Zona horaria"
-#: ../../godmode/users/user_management.php:678
+#: ../../godmode/users/user_management.php:704
msgid "Additional settings"
msgstr "Ajustes adicionales"
-#: ../../godmode/users/user_management.php:717
+#: ../../godmode/users/user_management.php:743
msgid "Allow all IPs"
msgstr "Permitir todas las direcciones IP"
-#: ../../godmode/users/user_management.php:749
-msgid "Generated automatically with the information provided for the user"
-msgstr ""
-"Generado automáticamente con la información proporcionada para el usuario"
-
#: ../../godmode/agentes/agent_template.php:83
-#: ../../include/functions_api.php:15092
+#: ../../include/functions_api.php:15103
msgid "Created by template "
msgstr "Creado mediante la plantilla "
@@ -35798,14 +35958,14 @@ msgid "Error adding modules. The following errors already exists: "
msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: "
#: ../../godmode/agentes/agent_template.php:179
-#: ../../include/functions_api.php:15186
+#: ../../include/functions_api.php:15197
msgid "Modules successfully added"
msgstr "Módulos añadidos correctamente"
#: ../../godmode/agentes/agent_template.php:204
#: ../../godmode/agentes/configurar_agente.php:456
#: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177
-#: ../../godmode/wizards/HostDevices.class.php:1098
+#: ../../godmode/wizards/HostDevices.class.php:1094
msgid "Module templates"
msgstr "Plantillas de módulos"
@@ -35816,7 +35976,7 @@ msgid "Assign"
msgstr "Asignar"
#: ../../godmode/agentes/agent_template.php:317
-#: ../../mobile/operation/modules.php:772
+#: ../../mobile/operation/modules.php:804
msgid "No modules"
msgstr "Sin módulos"
@@ -35837,70 +35997,75 @@ msgid "Column number to retrieve from the WQL query result (starting from zero).
msgstr ""
"Número de columna a obtener del resultado de la consulta WQL (a partir de 0)."
-#: ../../godmode/agentes/module_manager_editor_web.php:161
+#: ../../godmode/agentes/module_manager_editor_web.php:164
msgid "Debug remotely this module"
msgstr "Depurar este módulo en remoto"
-#: ../../godmode/agentes/module_manager_editor_web.php:164
+#: ../../godmode/agentes/module_manager_editor_web.php:167
msgid "Debug this module once it has been initialized"
msgstr "Depurar este módulo una vez iniciado"
-#: ../../godmode/agentes/module_manager_editor_web.php:190
+#: ../../godmode/agentes/module_manager_editor_web.php:193
#: ../../include/class/WebServerModuleDebug.class.php:325
msgid "Debug"
msgstr "Depurar"
-#: ../../godmode/agentes/module_manager_editor_web.php:219
+#: ../../godmode/agentes/module_manager_editor_web.php:222
msgid "Requests"
msgstr "Peticiones"
-#: ../../godmode/agentes/module_manager_editor_web.php:222
+#: ../../godmode/agentes/module_manager_editor_web.php:225
msgid "Agent browser id"
msgstr "ID del navegador (Agent Browser)"
-#: ../../godmode/agentes/module_manager_editor_web.php:228
+#: ../../godmode/agentes/module_manager_editor_web.php:231
msgid "HTTP auth (login)"
msgstr "Autentificación HTTP (inicio de sesión)"
-#: ../../godmode/agentes/module_manager_editor_web.php:231
+#: ../../godmode/agentes/module_manager_editor_web.php:234
msgid "HTTP auth (password)"
msgstr "Autentificación HTTP (contraseña)"
-#: ../../godmode/agentes/module_manager_editor_web.php:245
+#: ../../godmode/agentes/module_manager_editor_web.php:248
msgid "Proxy auth (login)"
msgstr "Autentificación Proxy (inicio de sesión)"
-#: ../../godmode/agentes/module_manager_editor_web.php:249
+#: ../../godmode/agentes/module_manager_editor_web.php:252
msgid "Proxy auth (pass)"
msgstr "Autentificación proxy (contraseña)"
-#: ../../godmode/agentes/module_manager_editor_web.php:256
+#: ../../godmode/agentes/module_manager_editor_web.php:259
msgid "Proxy auth (server)"
msgstr "Autentificación proxy (servidor)"
-#: ../../godmode/agentes/module_manager_editor_web.php:260
+#: ../../godmode/agentes/module_manager_editor_web.php:263
msgid "Proxy auth (realm)"
msgstr "Autentificación proxy (área)"
-#: ../../godmode/agentes/module_manager_editor_web.php:272
+#: ../../godmode/agentes/module_manager_editor_web.php:275
msgid "There isn't get or post"
msgstr "No se puede obtener o publicar."
-#: ../../godmode/agentes/status_monitor_custom_fields.php:101
-#: ../../godmode/agentes/status_monitor_custom_fields.php:147
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4011
-#: ../../include/functions_reporting_html.php:1784
+#: ../../godmode/agentes/status_monitor_custom_fields.php:35
+#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186
+msgid "Monitor detail"
+msgstr "Detalle del monitor"
+
+#: ../../godmode/agentes/status_monitor_custom_fields.php:121
+#: ../../godmode/agentes/status_monitor_custom_fields.php:167
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4020
+#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426
+#: ../../include/functions_reporting_html.php:1793
#: ../../include/functions_treeview.php:310
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560
-#: ../../operation/agentes/status_monitor.php:1572
-#: ../../operation/agentes/estado_generalagente.php:529
-#: ../../operation/inventory/inventory.php:1008
-#: ../../operation/inventory/inventory.php:1302
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561
+#: ../../operation/agentes/status_monitor.php:1574
+#: ../../operation/agentes/estado_generalagente.php:500
+#: ../../operation/inventory/inventory.php:1254
msgid "Last status change"
msgstr "Último cambio de estado"
-#: ../../godmode/agentes/status_monitor_custom_fields.php:165
+#: ../../godmode/agentes/status_monitor_custom_fields.php:185
msgid "Show monitor detail fields"
msgstr "Mostrar campo de detalle de monitor"
@@ -35924,15 +36089,15 @@ msgid "Could not be created, because IP already exists"
msgstr "No se ha podido crear porque la IP ya existe"
#: ../../godmode/agentes/configurar_agente.php:536
-#: ../../operation/agentes/ver_agente.php:1523
-#: ../../operation/agentes/ver_agente.php:1827
+#: ../../operation/agentes/ver_agente.php:1519
+#: ../../operation/agentes/ver_agente.php:1823
msgid "GIS data"
msgstr "Datos GIS"
#: ../../godmode/agentes/configurar_agente.php:605
#: ../../godmode/agentes/configurar_agente.php:758
-#: ../../operation/agentes/ver_agente.php:1538
-#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657
+#: ../../operation/agentes/ver_agente.php:1534
+#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657
#: ../../general/first_task/incidents.php:28
msgid "Incidents"
msgstr "Incidentes"
@@ -35962,12 +36127,12 @@ msgid "Manage agents"
msgstr "Gestionar agentes"
#: ../../godmode/agentes/configurar_agente.php:874
-#: ../../godmode/servers/modificar_server.php:350
+#: ../../godmode/servers/modificar_server.php:372
msgid "Conf file deleted successfully"
msgstr "Archivo de configuración borrado correctamente"
#: ../../godmode/agentes/configurar_agente.php:875
-#: ../../godmode/servers/modificar_server.php:351
+#: ../../godmode/servers/modificar_server.php:373
msgid "Could not delete conf file"
msgstr "No se puede borrar el archivo de configuración"
@@ -36010,11 +36175,11 @@ msgstr "Duplicar la dirección IP principal"
msgid "There was a problem updating the agent"
msgstr "Hubo un problema al actualizar el agente"
-#: ../../godmode/agentes/configurar_agente.php:1227
+#: ../../godmode/agentes/configurar_agente.php:1243
msgid "There was a problem loading the agent"
msgstr "Hubo un problema al cargar el agente"
-#: ../../godmode/agentes/configurar_agente.php:1736
+#: ../../godmode/agentes/configurar_agente.php:1797
msgid ""
"There was a problem updating module. Another module already exists with the "
"same name."
@@ -36022,26 +36187,26 @@ msgstr ""
"Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo "
"nombre."
-#: ../../godmode/agentes/configurar_agente.php:1740
+#: ../../godmode/agentes/configurar_agente.php:1801
msgid ""
"There was a problem updating module. Some required fields are missed: (name)"
msgstr ""
"Hubo un problema al actualizar el módulo. Faltan algunos campos requeridos: "
"(nombre)"
-#: ../../godmode/agentes/configurar_agente.php:1744
+#: ../../godmode/agentes/configurar_agente.php:1805
msgid "There was a problem updating module. \"No change\""
msgstr "Hubo un problema al actualizar el módulo. \"Sin cambios\"."
-#: ../../godmode/agentes/configurar_agente.php:1750
+#: ../../godmode/agentes/configurar_agente.php:1811
msgid "There was a problem updating module. Processing error"
msgstr "Hubo un problema al actualizar el módulo. Error de procesamiento."
-#: ../../godmode/agentes/configurar_agente.php:1779
+#: ../../godmode/agentes/configurar_agente.php:1840
msgid "Module successfully updated"
msgstr "Módulo actualizado correctamente"
-#: ../../godmode/agentes/configurar_agente.php:1913
+#: ../../godmode/agentes/configurar_agente.php:1974
msgid ""
"There was a problem adding module. Another module already exists with the same "
"name."
@@ -36049,50 +36214,50 @@ msgstr ""
"Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo "
"nombre."
-#: ../../godmode/agentes/configurar_agente.php:1917
+#: ../../godmode/agentes/configurar_agente.php:1978
msgid ""
"There was a problem adding module. Some required fields are missed : (name)"
msgstr ""
"Hubo un problema al añadir el módulo. Faltan algunos campos requeridos: "
"(nombre)"
-#: ../../godmode/agentes/configurar_agente.php:1923
+#: ../../godmode/agentes/configurar_agente.php:1984
msgid "There was a problem adding module. Processing error"
msgstr "Hubo un problema al añadir el módulo. Error de procesamiento."
-#: ../../godmode/agentes/configurar_agente.php:1952
+#: ../../godmode/agentes/configurar_agente.php:2013
#: ../../godmode/reporting/graph_builder.php:392
msgid "Module added successfully"
msgstr "Módulo añadido correctamente"
-#: ../../godmode/agentes/configurar_agente.php:2106
+#: ../../godmode/agentes/configurar_agente.php:2169
msgid "There was a problem deleting the module"
msgstr "Hubo un problema al borrar el módulo"
-#: ../../godmode/agentes/configurar_agente.php:2110
+#: ../../godmode/agentes/configurar_agente.php:2173
msgid "Module deleted succesfully"
msgstr "Módulo borrado correctamente"
-#: ../../godmode/agentes/configurar_agente.php:2249
-#: ../../include/functions_api.php:11217
+#: ../../godmode/agentes/configurar_agente.php:2312
+#: ../../include/functions_api.php:11220
#, php-format
msgid "Save by %s Console"
msgstr "Guardar por consola de %s"
-#: ../../godmode/agentes/configurar_agente.php:2267
-#: ../../include/functions_api.php:11218
+#: ../../godmode/agentes/configurar_agente.php:2330
+#: ../../include/functions_api.php:11221
#, php-format
msgid "Update by %s Console"
msgstr "Actualizar por consola de %s"
-#: ../../godmode/agentes/configurar_agente.php:2283
-#: ../../include/functions_api.php:11219
+#: ../../godmode/agentes/configurar_agente.php:2346
+#: ../../include/functions_api.php:11222
#, php-format
msgid "Insert by %s Console"
msgstr "Insertar por consola de %s"
-#: ../../godmode/agentes/configurar_agente.php:2356
-#: ../../godmode/agentes/configurar_agente.php:2372
+#: ../../godmode/agentes/configurar_agente.php:2419
+#: ../../godmode/agentes/configurar_agente.php:2435
msgid "Invalid tab specified"
msgstr "La pestaña no es válida"
@@ -36180,7 +36345,7 @@ msgid "Error forcing inventory module"
msgstr "Error al forzar un módulo del inventario"
#: ../../godmode/agentes/inventory_manager.php:235
-#: ../../include/functions_ui.php:7438
+#: ../../include/functions_ui.php:7515
msgid "Target"
msgstr "Destino"
@@ -36233,50 +36398,55 @@ msgstr ""
"Buscar filtro por alias, nombre, descripción, dirección IP o contenido de "
"campos personalizados."
-#: ../../godmode/agentes/modificar_agente.php:692
+#: ../../godmode/agentes/modificar_agente.php:702
msgid "Remote agent configuration"
msgstr "Configuración remota del agente"
-#: ../../godmode/agentes/modificar_agente.php:692
+#: ../../godmode/agentes/modificar_agente.php:702
msgid "R"
msgstr "R"
-#: ../../godmode/agentes/modificar_agente.php:772
-#: ../../godmode/agentes/module_manager.php:788
+#: ../../godmode/agentes/modificar_agente.php:784
+#: ../../godmode/agentes/module_manager.php:798
msgid "Module in scheduled downtime"
msgstr "Módulo en tiempo de inactividad programado"
-#: ../../godmode/agentes/modificar_agente.php:858
+#: ../../godmode/agentes/modificar_agente.php:870
msgid "Edit remote config"
msgstr "Editar configuración remota"
-#: ../../godmode/agentes/modificar_agente.php:905
+#: ../../godmode/agentes/modificar_agente.php:917
msgid "Enable agent"
msgstr "Habilitar agente"
-#: ../../godmode/agentes/modificar_agente.php:907
+#: ../../godmode/agentes/modificar_agente.php:919
msgid "You are going to enable a cluster agent. Are you sure?"
msgstr "¿Esta seguro de que desea habilitar el cluster de agentes?"
-#: ../../godmode/agentes/modificar_agente.php:910
+#: ../../godmode/agentes/modificar_agente.php:922
msgid "Disable agent"
msgstr "Deshabilitar agente"
-#: ../../godmode/agentes/modificar_agente.php:912
+#: ../../godmode/agentes/modificar_agente.php:924
msgid "You are going to disable a cluster agent. Are you sure?"
msgstr "¿Esta seguro de que desea deshabilitar el cluster de agentes?"
-#: ../../godmode/agentes/modificar_agente.php:943
+#: ../../godmode/agentes/modificar_agente.php:955
msgid "WARNING! - You are going to delete a cluster agent. Are you sure?"
msgstr ""
"¡ADVERTENCIA! - ¿Esta seguro de que desea eliminar el cluster de agentes?"
-#: ../../godmode/agentes/modificar_agente.php:965
-#: ../../godmode/agentes/agent_manager.php:1067
-#: ../../godmode/agentes/agent_manager.php:1120
+#: ../../godmode/agentes/modificar_agente.php:977
+#: ../../godmode/agentes/agent_manager.php:1073
+#: ../../godmode/agentes/agent_manager.php:1126
msgid "Delete agent"
msgstr "Borrar agente"
+#: ../../godmode/agentes/modificar_agente.php:1046
+#: ../../include/class/AgentDeployWizard.class.php:706
+msgid "Deploy agent"
+msgstr "Desplegar agente"
+
#: ../../godmode/agentes/agent_conf_gis.php:38
#: ../../operation/agentes/gis_view.php:59
msgid "There is no default map. Please go to the setup for to set a default map."
@@ -36331,7 +36501,7 @@ msgstr "Todos los módulos"
#: ../../godmode/agentes/planned_downtime.editor.php:66
#: ../../godmode/agentes/planned_downtime.editor.php:79
#: ../../include/functions_reporting_html.php:887
-#: ../../include/functions_reporting_html.php:4891
+#: ../../include/functions_reporting_html.php:4919
msgid "Scheduled Downtime"
msgstr "Parada planificada"
@@ -36428,7 +36598,7 @@ msgstr "¿Quiere migrar automáticamente los elementos mal formados?"
#: ../../godmode/agentes/planned_downtime.editor.php:229
#: ../../godmode/agentes/planned_downtime.editor.php:1574
-#: ../../godmode/agentes/planned_downtime.editor.php:1777
+#: ../../godmode/agentes/planned_downtime.editor.php:1775
msgid "This elements cannot be modified while the downtime is being executed"
msgstr ""
"Estos elementos no se pueden modificar mientras se está ejecutando el tiempo "
@@ -36583,12 +36753,12 @@ msgid "Type Periodicity"
msgstr "Tipo de periodicidad"
#: ../../godmode/agentes/planned_downtime.editor.php:1069
-#: ../../include/functions_reporting.php:14923
+#: ../../include/functions_reporting.php:14996
msgid "From day"
msgstr "Desde el día"
#: ../../godmode/agentes/planned_downtime.editor.php:1085
-#: ../../include/functions_reporting.php:14924
+#: ../../include/functions_reporting.php:14997
msgid "To day"
msgstr "Hasta el día"
@@ -36605,14 +36775,14 @@ msgid "To hour"
msgstr "Hasta la hora:"
#: ../../godmode/agentes/planned_downtime.editor.php:1152
-#: ../../godmode/agentes/module_manager_editor_common.php:1085
-#: ../../godmode/agentes/module_manager_editor_common.php:1091
+#: ../../godmode/agentes/module_manager_editor_common.php:1095
+#: ../../godmode/agentes/module_manager_editor_common.php:1101
msgid "Cron from"
msgstr "Cron desde"
#: ../../godmode/agentes/planned_downtime.editor.php:1155
-#: ../../godmode/agentes/module_manager_editor_common.php:1088
-#: ../../godmode/agentes/module_manager_editor_common.php:1094
+#: ../../godmode/agentes/module_manager_editor_common.php:1098
+#: ../../godmode/agentes/module_manager_editor_common.php:1104
msgid "Cron to"
msgstr "Cron hasta"
@@ -36656,12 +36826,12 @@ msgstr "Algunos módulos"
msgid "Add Module:"
msgstr "Añadir módulo:"
-#: ../../godmode/agentes/planned_downtime.editor.php:1907
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4939
+#: ../../godmode/agentes/planned_downtime.editor.php:1903
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4948
msgid "Please select a module."
msgstr "Por favor, seleccione un módulo."
-#: ../../godmode/agentes/planned_downtime.editor.php:2046
+#: ../../godmode/agentes/planned_downtime.editor.php:2042
msgid ""
"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
"may be altered"
@@ -36722,12 +36892,12 @@ msgstr ""
msgid "Create field"
msgstr "Crear campo"
-#: ../../godmode/agentes/module_manager_editor_network.php:310
+#: ../../godmode/agentes/module_manager_editor_network.php:311
#: ../../include/class/AgentWizard.class.php:584
msgid "SNMP Walk"
msgstr "Exploración SNMP"
-#: ../../godmode/agentes/module_manager_editor_network.php:477
+#: ../../godmode/agentes/module_manager_editor_network.php:482
msgid ""
"Please use single quotation marks when necessary. \n"
"\n"
@@ -36739,13 +36909,13 @@ msgstr ""
"Si se necesitan comillas dobles, escápase de ellas con una barra diagonal "
"inversa (\\")"
-#: ../../godmode/agentes/module_manager_editor_network.php:536
+#: ../../godmode/agentes/module_manager_editor_network.php:541
msgid "Windows remote"
msgstr "Windows remoto"
#: ../../godmode/agentes/agent_manager.php:329
-#: ../../godmode/agentes/agent_manager.php:744
-#: ../../godmode/massive/massive_edit_agents.php:1014
+#: ../../godmode/agentes/agent_manager.php:748
+#: ../../godmode/massive/massive_edit_agents.php:1031
msgid "Agent icon"
msgstr "Icono de agente"
@@ -36755,7 +36925,7 @@ msgstr "Usar el alias como nombre"
#: ../../godmode/agentes/agent_manager.php:407
#: ../../godmode/setup/setup_general.php:649
-#: ../../include/functions_config.php:390
+#: ../../include/functions_config.php:398
msgid "Unique IP"
msgstr "IP única"
@@ -36782,64 +36952,64 @@ msgstr "Lista de direcciones IP"
msgid "Primary group"
msgstr "Grupo primario"
-#: ../../godmode/agentes/agent_manager.php:673
+#: ../../godmode/agentes/agent_manager.php:677
msgid "Cascade protection modules"
msgstr "Módulos de protección en cascada"
-#: ../../godmode/agentes/agent_manager.php:689
-#: ../../godmode/massive/massive_edit_agents.php:891
+#: ../../godmode/agentes/agent_manager.php:693
+#: ../../godmode/massive/massive_edit_agents.php:908
msgid "Learning mode"
msgstr "Modo de aprendizaje"
-#: ../../godmode/agentes/agent_manager.php:699
-#: ../../godmode/massive/massive_edit_agents.php:902
+#: ../../godmode/agentes/agent_manager.php:703
+#: ../../godmode/massive/massive_edit_agents.php:919
msgid "Normal mode"
msgstr "Modo normal"
-#: ../../godmode/agentes/agent_manager.php:709
-#: ../../godmode/massive/massive_edit_agents.php:913
+#: ../../godmode/agentes/agent_manager.php:713
+#: ../../godmode/massive/massive_edit_agents.php:930
msgid "Autodisable mode"
msgstr "Modo autodeshabilitado"
-#: ../../godmode/agentes/agent_manager.php:718
-#: ../../godmode/massive/massive_edit_agents.php:879
+#: ../../godmode/agentes/agent_manager.php:722
+#: ../../godmode/massive/massive_edit_agents.php:896
msgid "Module definition"
msgstr "Definición de módulos"
-#: ../../godmode/agentes/agent_manager.php:730
+#: ../../godmode/agentes/agent_manager.php:734
msgid "Cascade protection services"
msgstr "Servicios de protección en cascada"
-#: ../../godmode/agentes/agent_manager.php:737
+#: ../../godmode/agentes/agent_manager.php:741
msgid "Update new GIS data"
msgstr "Actualizar nuevos datos GIS"
-#: ../../godmode/agentes/agent_manager.php:809
+#: ../../godmode/agentes/agent_manager.php:817
msgid "URL Address"
msgstr "Dirección URL"
-#: ../../godmode/agentes/agent_manager.php:815
+#: ../../godmode/agentes/agent_manager.php:823
msgid "Disabled mode"
msgstr "Modo deshabilitado"
-#: ../../godmode/agentes/agent_manager.php:892
-#: ../../godmode/massive/massive_edit_agents.php:1128
+#: ../../godmode/agentes/agent_manager.php:900
+#: ../../godmode/massive/massive_edit_agents.php:1144
msgid "Safe operation mode"
msgstr "Modo seguro de operación"
-#: ../../godmode/agentes/agent_manager.php:969
+#: ../../godmode/agentes/agent_manager.php:975
msgid "Link text:"
msgstr "Texto del enlace:"
-#: ../../godmode/agentes/agent_manager.php:980
+#: ../../godmode/agentes/agent_manager.php:986
msgid "Link URL:"
msgstr "URL del enlace:"
-#: ../../godmode/agentes/agent_manager.php:1121
+#: ../../godmode/agentes/agent_manager.php:1127
msgid "This action is not reversible. Are you sure"
msgstr "Esta acción no es reversible. ¿Está seguro?"
-#: ../../godmode/agentes/agent_manager.php:1182
+#: ../../godmode/agentes/agent_manager.php:1188
msgid "Secondary group cannot be primary too."
msgstr "Un grupo secundario no puede ser también primario."
@@ -36942,86 +37112,86 @@ msgid "Warning threshold"
msgstr "Umbral de advertencia"
#: ../../godmode/agentes/module_manager_editor_common.php:448
-#: ../../godmode/agentes/module_manager_editor_common.php:531
+#: ../../godmode/agentes/module_manager_editor_common.php:536
msgid "Min / Max"
msgstr "Mín / Máx"
-#: ../../godmode/agentes/module_manager_editor_common.php:530
+#: ../../godmode/agentes/module_manager_editor_common.php:535
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435
msgid "Critical threshold"
msgstr "Umbral crítico"
-#: ../../godmode/agentes/module_manager_editor_common.php:741
+#: ../../godmode/agentes/module_manager_editor_common.php:751
msgid "Identification and Categorization"
msgstr "Identificación y categorización"
-#: ../../godmode/agentes/module_manager_editor_common.php:944
+#: ../../godmode/agentes/module_manager_editor_common.php:954
msgid "Module parent"
msgstr "Padre del módulo"
-#: ../../godmode/agentes/module_manager_editor_common.php:994
+#: ../../godmode/agentes/module_manager_editor_common.php:1004
msgid "Tags from policy"
msgstr "Etiquetas desde política"
-#: ../../godmode/agentes/module_manager_editor_common.php:1065
+#: ../../godmode/agentes/module_manager_editor_common.php:1075
msgid "Execution interval"
msgstr "Intervalo de ejecución"
-#: ../../godmode/agentes/module_manager_editor_common.php:1101
+#: ../../godmode/agentes/module_manager_editor_common.php:1111
msgid "Thresholds and state changes"
msgstr "Umbrales y cambios de estado"
-#: ../../godmode/agentes/module_manager_editor_common.php:1119
+#: ../../godmode/agentes/module_manager_editor_common.php:1129
msgid "Dynamic Threshold Interval"
msgstr "Intervalo de rango dinámico"
-#: ../../godmode/agentes/module_manager_editor_common.php:1172
+#: ../../godmode/agentes/module_manager_editor_common.php:1182
msgid "Two Tailed"
msgstr "Dos colas"
-#: ../../godmode/agentes/module_manager_editor_common.php:1323
+#: ../../godmode/agentes/module_manager_editor_common.php:1333
msgid "Data and their processing"
msgstr "Datos y su tratamiento"
-#: ../../godmode/agentes/module_manager_editor_common.php:1353
+#: ../../godmode/agentes/module_manager_editor_common.php:1363
msgid "Notifications and alerts"
msgstr "Notificaciones y alertas"
-#: ../../godmode/agentes/module_manager_editor_common.php:1357
+#: ../../godmode/agentes/module_manager_editor_common.php:1367
msgid "Not needed"
msgstr "No necesario"
-#: ../../godmode/agentes/module_manager_editor_common.php:1403
+#: ../../godmode/agentes/module_manager_editor_common.php:1413
msgid "Cascade Protection Services"
msgstr "Servicios de protección en cascada"
-#: ../../godmode/agentes/module_manager_editor_common.php:1486
-#: ../../godmode/agentes/module_manager_editor_common.php:1620
+#: ../../godmode/agentes/module_manager_editor_common.php:1496
+#: ../../godmode/agentes/module_manager_editor_common.php:1630
msgid "Direct"
msgstr "Directo"
-#: ../../godmode/agentes/module_manager_editor_common.php:1487
-#: ../../godmode/agentes/module_manager_editor_common.php:1620
-#: ../../include/functions_reporting_html.php:4132
-#: ../../include/functions_reporting_html.php:4226
-#: ../../include/functions_reporting_html.php:4306
-#: ../../include/functions_reporting_html.php:4315
-#: ../../include/functions_reporting_html.php:4453
-#: ../../include/functions_reporting_html.php:4462
-#: ../../include/functions_reporting_html.php:4788
-#: ../../include/functions_reporting_html.php:4794
+#: ../../godmode/agentes/module_manager_editor_common.php:1497
+#: ../../godmode/agentes/module_manager_editor_common.php:1630
+#: ../../include/functions_reporting_html.php:4160
+#: ../../include/functions_reporting_html.php:4254
+#: ../../include/functions_reporting_html.php:4334
+#: ../../include/functions_reporting_html.php:4343
+#: ../../include/functions_reporting_html.php:4481
+#: ../../include/functions_reporting_html.php:4490
+#: ../../include/functions_reporting_html.php:4816
+#: ../../include/functions_reporting_html.php:4822
msgid "Failover"
msgstr "Conmutación"
-#: ../../godmode/agentes/module_manager_editor_common.php:1489
+#: ../../godmode/agentes/module_manager_editor_common.php:1499
msgid "Rel. type"
msgstr "Rel. tipo"
-#: ../../godmode/agentes/module_manager_editor_common.php:1511
+#: ../../godmode/agentes/module_manager_editor_common.php:1521
msgid "Add relationship"
msgstr "Añadir relación"
-#: ../../godmode/agentes/module_manager_editor_common.php:1537
+#: ../../godmode/agentes/module_manager_editor_common.php:1547
msgid "Changes"
msgstr "Cambios"
@@ -37051,7 +37221,8 @@ msgid "There was a problem completing the operation. Applied to %d/%d modules."
msgstr ""
"Ha habido un problema al completar la operación. Aplicado a los módulos %d/%d."
-#: ../../godmode/agentes/module_manager.php:619 ../../include/ajax/module.php:999
+#: ../../godmode/agentes/module_manager.php:619
+#: ../../include/ajax/module.php:1022
msgid "P"
msgstr "P"
@@ -37059,42 +37230,42 @@ msgstr "P"
msgid "S"
msgstr "S"
-#: ../../godmode/agentes/module_manager.php:836
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072
+#: ../../godmode/agentes/module_manager.php:846
+#: ../../godmode/agentes/module_manager.php:854
+#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095
msgid "Adopted"
msgstr "Adoptado"
-#: ../../godmode/agentes/module_manager.php:972
+#: ../../godmode/agentes/module_manager.php:986
msgid "Normalize"
msgstr "Normalizar"
-#: ../../godmode/agentes/module_manager.php:985
+#: ../../godmode/agentes/module_manager.php:999
#: ../../include/functions_snmp_browser.php:638
msgid "Create network component"
msgstr "Crear componentes de red"
-#: ../../godmode/agentes/module_manager.php:1020
+#: ../../godmode/agentes/module_manager.php:1034
#: ../../godmode/reporting/map_builder.php:485
-#: ../../godmode/reporting/map_builder.php:502
-#: ../../operation/agentes/datos_agente.php:295
+#: ../../godmode/reporting/map_builder.php:502 ../../include/ajax/module.php:609
+#: ../../operation/agentes/datos_agente.php:297
msgid "No available data to show"
msgstr "No hay datos disponibles para mostrar"
-#: ../../godmode/agentes/module_manager.php:1037
+#: ../../godmode/agentes/module_manager.php:1051
#: ../../include/class/SatelliteAgent.class.php:233
msgid "Execute action"
msgstr "Ejecutar acción"
-#: ../../godmode/agentes/module_manager.php:1081
+#: ../../godmode/agentes/module_manager.php:1095
msgid "Select module type"
msgstr "Seleccionar el tipo de módulo"
-#: ../../godmode/agentes/module_manager.php:1104
+#: ../../godmode/agentes/module_manager.php:1119
msgid "Get more modules on Monitoring Library"
msgstr "Añadir más módulos de la Librería de módulos"
-#: ../../godmode/agentes/module_manager.php:1239
+#: ../../godmode/agentes/module_manager.php:1260
msgid ""
"This module has children modules.The following modules will also be deleted: "
msgstr ""
@@ -37124,7 +37295,7 @@ msgid "Item list"
msgstr "Lista de elementos"
#: ../../godmode/netflow/nf_item_list.php:176
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2549
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2558
msgid "Max. values"
msgstr "Valores máximos"
@@ -37150,49 +37321,49 @@ msgstr "Filtros Netflow"
msgid "There are no defined filters"
msgstr "No hay filtros definidos"
-#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69
+#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69
msgid "Filter list"
msgstr "Lista de filtros"
-#: ../../godmode/netflow/nf_edit_form.php:67
+#: ../../godmode/netflow/nf_edit_form.php:78
msgid "Add filter"
msgstr "Añadir filtro"
-#: ../../godmode/netflow/nf_edit_form.php:181
-#: ../../operation/netflow/nf_live_view.php:261
+#: ../../godmode/netflow/nf_edit_form.php:224
+#: ../../operation/netflow/nf_live_view.php:270
msgid "Src Ip Address"
msgstr "Dirección IP origen"
-#: ../../godmode/netflow/nf_edit_form.php:182
-#: ../../operation/netflow/nf_live_view.php:262
+#: ../../godmode/netflow/nf_edit_form.php:225
+#: ../../operation/netflow/nf_live_view.php:271
msgid "Dst Ip Address"
msgstr "Dirección IP destino"
-#: ../../godmode/netflow/nf_edit_form.php:183
-#: ../../godmode/netflow/nf_edit_form.php:314
-#: ../../operation/netflow/nf_live_view.php:263
-#: ../../operation/netflow/nf_live_view.php:321
+#: ../../godmode/netflow/nf_edit_form.php:226
+#: ../../godmode/netflow/nf_edit_form.php:359
+#: ../../operation/netflow/nf_live_view.php:272
+#: ../../operation/netflow/nf_live_view.php:330
msgid "Src Port"
msgstr "Puerto origen"
-#: ../../godmode/netflow/nf_edit_form.php:184
-#: ../../godmode/netflow/nf_edit_form.php:302
-#: ../../operation/netflow/nf_live_view.php:264
-#: ../../operation/netflow/nf_live_view.php:313
+#: ../../godmode/netflow/nf_edit_form.php:227
+#: ../../godmode/netflow/nf_edit_form.php:347
+#: ../../operation/netflow/nf_live_view.php:273
+#: ../../operation/netflow/nf_live_view.php:322
msgid "Dst Port"
msgstr "Puerto destino"
-#: ../../godmode/netflow/nf_edit_form.php:261
+#: ../../godmode/netflow/nf_edit_form.php:306
msgid "Aggregate by"
msgstr "Agregado por"
-#: ../../godmode/netflow/nf_edit_form.php:278
-#: ../../operation/netflow/nf_live_view.php:294
+#: ../../godmode/netflow/nf_edit_form.php:323
+#: ../../operation/netflow/nf_live_view.php:303
msgid "Dst Ip"
msgstr "Dst IP"
-#: ../../godmode/netflow/nf_edit_form.php:286
-#: ../../operation/netflow/nf_live_view.php:294
+#: ../../godmode/netflow/nf_edit_form.php:331
+#: ../../operation/netflow/nf_live_view.php:303
msgid ""
"Destination IP. A comma separated list of destination ip. If we leave the "
"field blank, will show all ip. Example filter by ip:"
@@ -37202,13 +37373,13 @@ msgstr ""
"campo mostrará todas las IPs. Ejemplo de filtro por IP: "
"25.46.157.214,160.253.135.249"
-#: ../../godmode/netflow/nf_edit_form.php:290
-#: ../../operation/netflow/nf_live_view.php:302
+#: ../../godmode/netflow/nf_edit_form.php:335
+#: ../../operation/netflow/nf_live_view.php:311
msgid "Src Ip"
msgstr "IP Origen"
-#: ../../godmode/netflow/nf_edit_form.php:298
-#: ../../operation/netflow/nf_live_view.php:302
+#: ../../godmode/netflow/nf_edit_form.php:343
+#: ../../operation/netflow/nf_live_view.php:311
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"
@@ -37217,8 +37388,8 @@ msgstr ""
"campo mostrará todas las IPs. Ejemplo de filtro por IP: "
"25.46.157.214,160.253.135.249"
-#: ../../godmode/netflow/nf_edit_form.php:310
-#: ../../operation/netflow/nf_live_view.php:313
+#: ../../godmode/netflow/nf_edit_form.php:355
+#: ../../operation/netflow/nf_live_view.php:322
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"
@@ -37227,8 +37398,8 @@ msgstr ""
"este campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por "
"puertos: 80,22"
-#: ../../godmode/netflow/nf_edit_form.php:322
-#: ../../operation/netflow/nf_live_view.php:321
+#: ../../godmode/netflow/nf_edit_form.php:367
+#: ../../operation/netflow/nf_live_view.php:330
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"
@@ -37237,21 +37408,88 @@ msgstr ""
"campo en blanco se mostrarán todos los puertos. Ejemplo de filtrado por "
"puertos: 80,22"
-#: ../../godmode/netflow/nf_edit_form.php:327
+#: ../../godmode/netflow/nf_edit_form.php:372
msgid "Advanced filters"
msgstr "Filtros avanzados"
+#: ../../godmode/netflow/nf_edit_form.php:380
+#: ../../operation/netflow/nf_live_view.php:377
+msgid "Enable Netflow monitoring"
+msgstr "Activar monitorización de Netflow"
+
+#: ../../godmode/netflow/nf_edit_form.php:389
+#: ../../operation/netflow/nf_live_view.php:377
+msgid ""
+"Allows you to create an agent that monitors the traffic volume of this filter. "
+"It also creates a module that measures if the traffic of any IP of this filter "
+"exceeds a certain threshold. A text type module will be created with the "
+"traffic rate for each IP within this filter every five minutes (the 10 IP's "
+"with the most traffic). Only available for Enterprise version."
+msgstr ""
+"Le permite crear un agente que monitor ice el volumen del tráfico de este "
+"filtro. También crea un módulo que mide si el tráfico de cualquier IP de este "
+"filtro sobrepasa un cierto umbral. Se creará un módulo de tipo texto con la "
+"tasa de tráfico de cada IP dentro de este filtro cada cinco minutos (las 10 "
+"IPs con más tráfico). Solo disponible en la versión Enterprise."
+
+#: ../../godmode/netflow/nf_edit_form.php:395
+#: ../../operation/netflow/nf_live_view.php:391
+msgid "Netflow monitoring interval"
+msgstr "Intérvalo de monitorización de Netflow"
+
+#: ../../godmode/netflow/nf_edit_form.php:403
+#: ../../operation/netflow/nf_live_view.php:391
+msgid "Netflow monitoring interval in secs."
+msgstr "Intérvalo de monitorización Netflow en segundos"
+
+#: ../../godmode/netflow/nf_edit_form.php:407
+#: ../../operation/netflow/nf_live_view.php:401
+msgid "Maximum traffic value of the filter"
+msgstr "Valor máximo de tráfico del filtro"
+
+#: ../../godmode/netflow/nf_edit_form.php:415
+#: ../../operation/netflow/nf_live_view.php:401
+#, php-format
+msgid ""
+"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is then "
+"used to calculate the % of maximum traffic per IP."
+msgstr ""
+"Especifica la tasa máxima (en bytes/seg) del tráfico del filtro. "
+"Posteriormente se utiliza para calcular el % del tráfico máximo por IP."
+
+#: ../../godmode/netflow/nf_edit_form.php:421
+#: ../../operation/netflow/nf_live_view.php:415
+#, php-format
+msgid "CRITICAL threshold for the maximum % of traffic for an IP."
+msgstr "Umbral CRÍTICO para el máximo % de tráfico para una IP."
+
+#: ../../godmode/netflow/nf_edit_form.php:431
+#: ../../operation/netflow/nf_live_view.php:415
+msgid ""
+"If this % is exceeded by any IP within the filter, a CRITICAL status will be "
+"generated."
+msgstr ""
+"Si cualquier IP dentro del filtro sobrepasa el %, se generará el estado "
+"CRÍTICO."
+
+#: ../../godmode/netflow/nf_edit_form.php:435
+#, php-format
+msgid "WARNING threshold for the maximum % of traffic for an IP."
+msgstr "Umbral de ADVERTENCIA para el máximo % de tráfico para una IP."
+
+#: ../../godmode/netflow/nf_edit_form.php:445
+#: ../../operation/netflow/nf_live_view.php:425
+msgid ""
+"If this % is exceeded by any IP within the filter, a WARNING status will be "
+"generated."
+msgstr ""
+"Si cualquier IP dentro del filtro sobrepasa el %, se generará el estado de "
+"ADVERTENCIA."
+
#: ../../godmode/snmpconsole/snmp_trap_generator.php:38
msgid "SNMP Trap generator"
msgstr "Generador de traps SNMP"
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
-#: ../../godmode/snmpconsole/snmp_filters.php:59
-#: ../../operation/snmpconsole/snmp_browser.php:90
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
-msgid "SMNP"
-msgstr "SMNP"
-
#: ../../godmode/snmpconsole/snmp_trap_generator.php:68
msgid "Empty parameters"
msgstr "Parámetros vacíos"
@@ -37370,9 +37608,9 @@ msgid "Custom Value/Enterprise String"
msgstr "Valor personalizado/Cadena Enterprise"
#: ../../godmode/snmpconsole/snmp_alert.php:1908
-#: ../../include/functions_reporting_html.php:5373
-#: ../../include/functions_reporting_html.php:5495
-#: ../../include/functions_treeview.php:441
+#: ../../include/functions_reporting_html.php:5401
+#: ../../include/functions_reporting_html.php:5523
+#: ../../include/functions_treeview.php:445
msgid "Times fired"
msgstr "Nº de veces disparada"
@@ -37392,7 +37630,7 @@ msgstr "¿Desea eliminar esta alerta?"
msgid "Do you want delete the selected alerts?"
msgstr "¿Desea eliminar las alertas seleccionadas?"
-#: ../../godmode/snmpconsole/snmp_alert.php:2355
+#: ../../godmode/snmpconsole/snmp_alert.php:2343
msgid "Add action "
msgstr "Añadir acción "
@@ -37481,147 +37719,147 @@ msgstr "Configuración de grupos de agentes"
msgid "Private Enterprise Numbers"
msgstr "Números privados de empresa"
-#: ../../godmode/menu.php:183
+#: ../../godmode/menu.php:182
msgid "Remote components"
msgstr "Componentes remotos"
-#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246
+#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246
msgid "Agents operations"
msgstr "Operaciones sobre agentes"
-#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258
+#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258
msgid "Modules operations"
msgstr "Operaciones sobre módulos"
-#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270
+#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270
msgid "Plugins operations"
msgstr "Operaciones de plugins"
-#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234
+#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234
msgid "Users operations"
msgstr "Operaciones sobre usuarios"
-#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222
+#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222
msgid "Alerts operations"
msgstr "Operaciones sobre alertas"
-#: ../../godmode/menu.php:234
+#: ../../godmode/menu.php:233
msgid "Event filters"
msgstr "Filtro de eventos"
-#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95
+#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95
#: ../../godmode/events/events.php:110
msgid "Custom columns"
msgstr "Columnas personalizadas"
-#: ../../godmode/menu.php:270
+#: ../../godmode/menu.php:268
msgid "List of Alerts"
msgstr "Lista de alertas"
-#: ../../godmode/menu.php:285
+#: ../../godmode/menu.php:283
msgid "Special days list"
msgstr "Lista de días especiales"
-#: ../../godmode/menu.php:290
+#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267
msgid "SNMP alerts"
msgstr "Alertas SNMP"
-#: ../../godmode/menu.php:307
+#: ../../godmode/menu.php:305
msgid "Manage servers"
msgstr "Gestionar servidores"
-#: ../../godmode/menu.php:314
+#: ../../godmode/menu.php:312
msgid "Manage consoles"
msgstr "Gestionar consolas"
-#: ../../godmode/menu.php:325
+#: ../../godmode/menu.php:323
msgid "Register Plugin"
msgstr "Registrar Plugin"
-#: ../../godmode/menu.php:351 ../../include/class/OrderInterpreter.class.php:141
+#: ../../godmode/menu.php:349 ../../include/class/OrderInterpreter.class.php:141
msgid "General Setup"
msgstr "Configuración general"
-#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165
+#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165
#: ../../godmode/setup/setup.php:296
msgid "Sflow"
msgstr "Sflow"
-#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191
-#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1623
-#: ../../operation/agentes/ver_agente.php:1897
+#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191
+#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1619
+#: ../../operation/agentes/ver_agente.php:1893
msgid "eHorus"
msgstr "eHorus"
-#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179
+#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179
#: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681
msgid "Integria IMS"
msgstr "Integria IMS"
-#: ../../godmode/menu.php:392
+#: ../../godmode/menu.php:390
msgid "Websocket Engine"
msgstr "Websocket Engine"
-#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238
-#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1713
-#: ../../operation/agentes/ver_agente.php:1914
+#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238
+#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1709
+#: ../../operation/agentes/ver_agente.php:1910
msgid "External Tools"
msgstr "Herramientas externas"
-#: ../../godmode/menu.php:398
+#: ../../godmode/menu.php:396
msgid "Welcome Tips"
msgstr "Tips de bienvenida"
-#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320
+#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320
msgid "Map conections GIS"
msgstr "Conexión de mapa GIS"
-#: ../../godmode/menu.php:430
+#: ../../godmode/menu.php:428
msgid "Diagnostic info"
msgstr "Información de diagnóstico"
-#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43
+#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43
msgid "Site news"
msgstr "Noticias del sistema"
-#: ../../godmode/menu.php:444
+#: ../../godmode/menu.php:442
msgid "DB Schema Check"
msgstr "Comprobación del esquema de la BD"
-#: ../../godmode/menu.php:447
+#: ../../godmode/menu.php:445
msgid "DB Interface"
msgstr "Interfaz de la BBDD"
-#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230
-msgid "Accoustic console setup"
+#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230
+msgid "Acoustic console setup"
msgstr "Configuración de la consola acústica"
-#: ../../godmode/menu.php:533
+#: ../../godmode/menu.php:531
msgid "Extension manager view"
msgstr "Vista del gestor de extensiones"
-#: ../../godmode/menu.php:569 ../../include/class/OrderInterpreter.class.php:339
+#: ../../godmode/menu.php:567 ../../include/class/OrderInterpreter.class.php:339
msgid "Warp Update"
msgstr "Actualización de Warp"
-#: ../../godmode/menu.php:574
+#: ../../godmode/menu.php:572
msgid "Update offline"
msgstr "Actualizar sin conexión"
-#: ../../godmode/menu.php:577
+#: ../../godmode/menu.php:575
msgid "Update online"
msgstr "Actualizar en línea"
-#: ../../godmode/menu.php:583
+#: ../../godmode/menu.php:581
msgid "Warp journal"
msgstr "Diario Warp"
-#: ../../godmode/menu.php:592
+#: ../../godmode/menu.php:590
#: ../../godmode/module_library/module_library_view.php:81
msgid "Module library"
msgstr "Librería de módulos"
-#: ../../godmode/menu.php:599
+#: ../../godmode/menu.php:597
#: ../../godmode/module_library/module_library_view.php:54
#: ../../godmode/module_library/module_library_view.php:68
#: ../../godmode/module_library/module_library_view.php:104
@@ -37923,10 +38161,10 @@ msgstr "Agentes con plantillas"
#: ../../godmode/massive/massive_delete_action_alerts.php:240
#: ../../godmode/massive/massive_add_action_alerts.php:219
-#: ../../godmode/alerts/alert_templates.php:139
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
+#: ../../godmode/alerts/alert_templates.php:142
+#: ../../godmode/alerts/alert_templates.php:192
+#: ../../godmode/alerts/alert_templates.php:215
+#: ../../godmode/alerts/alert_templates.php:236
msgid "Alert templates"
msgstr "Plantillas de alertas"
@@ -37948,7 +38186,7 @@ msgstr "No se seleccionó ningún módulo"
#: ../../godmode/massive/massive_delete_alerts.php:113
#: ../../godmode/massive/massive_add_action_alerts.php:75
#: ../../include/functions_visual_map.php:2568
-#: ../../include/functions_visual_map.php:2914
+#: ../../include/functions_visual_map.php:2917
msgid "No agents selected"
msgstr "No se seleccionó ningún agente"
@@ -38037,29 +38275,29 @@ msgstr "Los usuarios no se pueden actualizar (%s)"
#: ../../godmode/massive/massive_edit_users.php:209
#: ../../godmode/massive/massive_delete_profiles.php:154
#: ../../godmode/massive/massive_add_profiles.php:204
-#: ../../include/functions_reporting.php:12397
+#: ../../include/functions_reporting.php:12470
#: ../../operation/search_results.php:94
msgid "Users"
msgstr "Usuarios"
#: ../../godmode/massive/massive_edit_users.php:379
-#: ../../operation/users/user_edit.php:646
+#: ../../operation/users/user_edit.php:643
msgid "This will activate autorefresh in selected pages"
msgstr "Esto activará la actualización automática en las páginas seleccionadas."
#: ../../godmode/massive/massive_edit_users.php:443
-#: ../../operation/users/user_edit.php:705
+#: ../../operation/users/user_edit.php:702
msgid "List of pages with autorefresh"
msgstr "Lista de páginas con actualización automática"
#: ../../godmode/massive/massive_edit_users.php:452
-#: ../../operation/users/user_edit.php:714
+#: ../../operation/users/user_edit.php:711
msgid "Time autorefresh"
msgstr "Tiempo de actualización automática"
#: ../../godmode/massive/massive_add_alerts.php:105
#: ../../godmode/massive/massive_delete_alerts.php:108
-#: ../../operation/agentes/alerts_status.php:566
+#: ../../operation/agentes/alerts_status.php:576
#: ../../operation/agentes/alerts_status.functions.php:54
msgid "No alert selected"
msgstr "No se seleccionó ninguna alerta"
@@ -38178,31 +38416,31 @@ msgstr "Los archivos de configuración se borraron correctamente."
msgid "Configuration files cannot be deleted"
msgstr "Los archivos de configuración no se pudieron borrar."
-#: ../../godmode/massive/massive_edit_agents.php:382
+#: ../../godmode/massive/massive_edit_agents.php:399
#, php-format
msgid "Agents updated successfully (%d)"
msgstr "Agentes actualizados correctamente (%d)"
-#: ../../godmode/massive/massive_edit_agents.php:397
+#: ../../godmode/massive/massive_edit_agents.php:414
#, php-format
msgid "Agents cannot be updated (%d), ids (%s)"
msgstr "Los agentes no se pueden actualizar (%d), identificadores (%s)"
-#: ../../godmode/massive/massive_edit_agents.php:412
+#: ../../godmode/massive/massive_edit_agents.php:429
#, php-format
msgid "Agent ID: %s cannot be updated custom fields (%s)"
msgstr "ID del agente: %s no se pueden actualizar los campos personalizados (%s)"
-#: ../../godmode/massive/massive_edit_agents.php:432
+#: ../../godmode/massive/massive_edit_agents.php:449
#, php-format
msgid "Agent ID: %s cannot be updated %s secondary groups (%s)"
msgstr "ID de agente: %s no se puede actualizar %s grupos secundarios (%s)"
-#: ../../godmode/massive/massive_edit_agents.php:668
+#: ../../godmode/massive/massive_edit_agents.php:685
msgid "Cascade protection"
msgstr "Protección en cascada"
-#: ../../godmode/massive/massive_edit_agents.php:940
+#: ../../godmode/massive/massive_edit_agents.php:957
msgid ""
"If the remote configuration is enabled, it will also go into standby mode when "
"disabling it."
@@ -38210,33 +38448,33 @@ msgstr ""
"Si la configuración remota está habilitada, también entrará en modo de espera "
"cuando se deshabilite."
-#: ../../godmode/massive/massive_edit_agents.php:953
+#: ../../godmode/massive/massive_edit_agents.php:970
#: ../../include/class/EventSound.class.php:344
msgid "Active"
msgstr "Activo"
-#: ../../godmode/massive/massive_edit_agents.php:969
+#: ../../godmode/massive/massive_edit_agents.php:986
msgid "Delete available remote configurations"
msgstr "Borrar las configuraciones remotas disponibles"
-#: ../../godmode/massive/massive_edit_agents.php:1025
+#: ../../godmode/massive/massive_edit_agents.php:1042
msgid "Without status"
msgstr "Sin estado"
-#: ../../godmode/massive/massive_edit_agents.php:1052
+#: ../../godmode/massive/massive_edit_agents.php:1069
#: ../../include/lib/Dashboard/Widgets/maps_status.php:371
msgid "Bad"
msgstr "Mal"
-#: ../../godmode/massive/massive_edit_agents.php:1072
+#: ../../godmode/massive/massive_edit_agents.php:1089
msgid "Ignore new GIS data:"
msgstr "Ignorar nuevos datos GIS:"
-#: ../../godmode/massive/massive_edit_agents.php:1110
+#: ../../godmode/massive/massive_edit_agents.php:1127
msgid "The agent still runs but the alerts and events will be stop"
msgstr "El agente seguirá ejecutándose, pero las alertas y eventos se detendrán."
-#: ../../godmode/massive/massive_edit_agents.php:1130
+#: ../../godmode/massive/massive_edit_agents.php:1146
#, php-format
msgid ""
"This mode allow %s to disable all modules of this agent while the selected "
@@ -38288,15 +38526,11 @@ msgstr ""
"actualizar)"
#: ../../godmode/massive/massive_edit_modules.php:506
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:419
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:423
msgid "Filter agents"
msgstr "Filtrar agentes"
-#: ../../godmode/massive/massive_edit_modules.php:811
-msgid "SMNP community"
-msgstr "Comunidad SMNP"
-
-#: ../../godmode/consoles/consoles.php:59
+#: ../../godmode/consoles/consoles.php:67
msgid ""
"If you want to have your consoles registered, you must define them by editing "
"config.php in each individual console and wait for cron to run in order to be "
@@ -38338,7 +38572,7 @@ msgid "Hide"
msgstr "Ocultar"
#: ../../godmode/alerts/alert_actions.php:79
-#: ../../include/functions_reporting.php:3226
+#: ../../include/functions_reporting.php:3235
msgid "Alert actions"
msgstr "Acciones de alerta"
@@ -38401,12 +38635,12 @@ msgstr ""
"Las acciones por defecto se ejecutarán cada vez que la alerta se dispare y "
"ninguna otra acción sea ejecutada."
-#: ../../godmode/alerts/alert_list.list.php:1061
+#: ../../godmode/alerts/alert_list.list.php:1060
msgid "View alert advanced details"
msgstr "Ver detalles avanzados de la alerta"
-#: ../../godmode/alerts/alert_list.list.php:1081
-#: ../../include/functions_reporting_html.php:3441
+#: ../../godmode/alerts/alert_list.list.php:1080
+#: ../../include/functions_reporting_html.php:3469
msgid "No alerts defined"
msgstr "No hay alertas definidas"
@@ -38450,12 +38684,12 @@ msgid "Alert commands"
msgstr "Comandos de alerta"
#: ../../godmode/alerts/alert_commands.php:657
-#: ../../include/functions_alerts.php:2659
+#: ../../include/functions_alerts.php:2660
msgid "No name specified"
msgstr "Ningún nombre especificado"
#: ../../godmode/alerts/alert_commands.php:661
-#: ../../include/functions_alerts.php:2654
+#: ../../include/functions_alerts.php:2655
msgid "No command specified"
msgstr "Ningún comando especificado"
@@ -38467,7 +38701,7 @@ msgstr " (copia)"
msgid "No alert commands configured"
msgstr "Comandos de alertas no configurados"
-#: ../../godmode/alerts/alert_templates.php:273
+#: ../../godmode/alerts/alert_templates.php:277
#, php-format
msgid ""
"This node is configured with centralized mode. All alert templates information "
@@ -38476,7 +38710,7 @@ msgstr ""
"Este nodo se configura en modo centralizado. Toda la información de plantillas "
"de alertas es solo de lectura. Vaya a %s para gestionarlo."
-#: ../../godmode/alerts/alert_templates.php:438
+#: ../../godmode/alerts/alert_templates.php:442
msgid ""
"You cannot edit this alert template, You don't have the permission to edit All "
"group."
@@ -38484,7 +38718,7 @@ msgstr ""
"No puede edit esta plantilla de alerta. No tiene los permisos para editar el "
"grupo All (todos)."
-#: ../../godmode/alerts/alert_templates.php:505
+#: ../../godmode/alerts/alert_templates.php:509
msgid "No alert templates defined"
msgstr "No hay plantillas de alerta definidas"
@@ -38501,6 +38735,14 @@ msgstr "Esta acción podría dejar de funcionar si cambia el nombre."
msgid "Create Command"
msgstr "Crear comando"
+#: ../../godmode/alerts/configure_alert_action.php:287
+msgid ""
+"An alert action is executed only once within this time interval, regardless of "
+"how many times the alert is triggered."
+msgstr ""
+"La acción de alerta solo se ejecuta una vez dentro de este intervalo de "
+"tiempo, sin importar cuántas veces se active la alerta."
+
#: ../../godmode/alerts/configure_alert_action.php:320
msgid "Triggering"
msgstr "Activación"
@@ -38530,7 +38772,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:104
#: ../../godmode/alerts/configure_alert_template.php:135
#: ../../godmode/alerts/configure_alert_template.php:174
-#: ../../include/functions_menu.php:569
+#: ../../include/functions_menu.php:571
msgid "Configure alert template"
msgstr "Configurar plantilla de alerta"
@@ -38557,6 +38799,14 @@ msgstr ""
msgid "No template name specified"
msgstr "Ningún nombre de plantilla especificado"
+#: ../../godmode/alerts/configure_alert_template.php:691
+msgid ""
+"Reset the alert counter within the configured period if there is no manual "
+"recovery or validation of the alert."
+msgstr ""
+"Resetear el contador de alerta dentro del periodo configurado si la alerta no "
+"se recupera o valida manualmente."
+
#: ../../godmode/alerts/configure_alert_template.php:722
msgid ""
"Unless they're left blank, the fields from the action will override those set "
@@ -38602,7 +38852,7 @@ msgid "No wizard"
msgstr "No hay asistente"
#: ../../godmode/alerts/configure_alert_template.php:1266
-#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504
+#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547
msgid "The alert would fire when the value matches "
msgstr ""
"La alerta se disparará cuando el valor coincida con ."
@@ -38613,18 +38863,18 @@ msgid "The alert would fire when the value doesn\\'t match %s"
msgstr "La alerta se disparará cuando el valor no coincida con %s"
#: ../../godmode/alerts/configure_alert_template.php:1268
-#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493
+#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1536
msgid "The alert would fire when the value is "
msgstr "La alerta se disparará cuando el valor sea ."
#: ../../godmode/alerts/configure_alert_template.php:1269
-#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498
+#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541
msgid "The alert would fire when the value is not "
msgstr ""
"La alerta se disparará cuando el valor no sea ."
#: ../../godmode/alerts/configure_alert_template.php:1270
-#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516
+#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559
msgid ""
"The alert would fire when the value is between and "
""
@@ -38654,12 +38904,12 @@ msgstr ""
"La alerta se disparará cuando el valor sea superior a ."
#: ../../godmode/alerts/configure_alert_template.php:1274
-#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535
+#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578
msgid "The alert would fire when the module is in warning status"
msgstr "La alerta se disparará cuando el módulo esté en estado advertencia."
#: ../../godmode/alerts/configure_alert_template.php:1275
-#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540
+#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583
msgid "The alert would fire when the module is in critical status"
msgstr "La alerta se disparará cuando el módulo esté en estado crítico."
@@ -38708,14 +38958,14 @@ msgstr "Lista de alertas"
msgid "Stand by"
msgstr "En espera"
-#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507
+#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550
msgid ""
"The alert would fire when the value doesn't match "
msgstr ""
"La alerta se disparará cuando el valor no coincida con "
"span>."
-#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519
+#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562
msgid ""
"The alert would fire when the value is not between "
"and "
@@ -38802,6 +39052,10 @@ msgstr "Crear acción"
msgid "Create Template"
msgstr "Crear plantilla"
+#: ../../godmode/alerts/alert_list.builder.php:169
+msgid "It takes precedence over the action's threshold configuration."
+msgstr "Tiene prioridad sobre la configuración del umbral de la acción."
+
#: ../../godmode/alerts/alert_list.builder.php:199
msgid "Finish and view cluster"
msgstr "Finalizar y ver cluster"
@@ -38835,12 +39089,12 @@ msgid "Licence"
msgstr "Licencia"
#: ../../godmode/setup/license.php:158
-#: ../../include/class/Diagnostics.class.php:1175
+#: ../../include/class/Diagnostics.class.php:1179
msgid "Customer key"
msgstr "Clave del cliente"
#: ../../godmode/setup/license.php:183
-#: ../../include/class/Diagnostics.class.php:1183
+#: ../../include/class/Diagnostics.class.php:1187
msgid "Platform Limit"
msgstr "Límite de la plataforma"
@@ -38856,22 +39110,22 @@ msgid "modules"
msgstr "módulos"
#: ../../godmode/setup/license.php:196
-#: ../../include/class/Diagnostics.class.php:1187
+#: ../../include/class/Diagnostics.class.php:1191
msgid "Current Platform Count"
msgstr "Cómputo de la plataforma actual"
#: ../../godmode/setup/license.php:209
-#: ../../include/class/Diagnostics.class.php:1191
+#: ../../include/class/Diagnostics.class.php:1195
msgid "Current Platform Count (enabled: items)"
msgstr "Cómputo de la plataforma actual (activado: elementos)"
#: ../../godmode/setup/license.php:222
-#: ../../include/class/Diagnostics.class.php:1195
+#: ../../include/class/Diagnostics.class.php:1199
msgid "Current Platform Count (disabled: items)"
msgstr "Cómputo de la plataforma actual (desactivado: elementos)"
#: ../../godmode/setup/license.php:235
-#: ../../include/class/Diagnostics.class.php:1199
+#: ../../include/class/Diagnostics.class.php:1203
msgid "License Mode"
msgstr "Modalidad de licencia"
@@ -38880,7 +39134,7 @@ msgid "NMS"
msgstr "NMS"
#: ../../godmode/setup/license.php:274
-#: ../../include/class/Diagnostics.class.php:1211
+#: ../../include/class/Diagnostics.class.php:1215
msgid "Licensed to"
msgstr "Con licencia para"
@@ -38936,40 +39190,44 @@ msgstr ""
msgid "Site news management"
msgstr "Gestionar noticias del sitio"
-#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105
+#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105
msgid "Name error"
msgstr "Error de nombre"
-#: ../../godmode/setup/news.php:234
+#: ../../godmode/setup/news.php:238
msgid "Modal screen"
msgstr "Pantalla modal"
-#: ../../godmode/setup/news.php:247
+#: ../../godmode/setup/news.php:251
msgid "Expire"
msgstr "Caduca"
-#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353
+#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357
msgid "Expiration"
msgstr "Vencimiento"
-#: ../../godmode/setup/news.php:344
+#: ../../godmode/setup/news.php:348
msgid "There are no defined news"
msgstr "No hay noticias definidas"
-#: ../../godmode/setup/news.php:351
-#: ../../operation/agentes/estado_generalagente.php:749
+#: ../../godmode/setup/news.php:355
+#: ../../operation/agentes/estado_generalagente.php:718
msgid "Author"
msgstr "Autor"
-#: ../../godmode/setup/news.php:371
+#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216
+msgid "Welcome to Pandora FMS Console"
+msgstr "Bienvenido/a a la Consola de Pandora FMS"
+
+#: ../../godmode/setup/news.php:370
msgid "Modal"
msgstr "Modal"
-#: ../../godmode/setup/news.php:373
+#: ../../godmode/setup/news.php:372
msgid "Board"
msgstr "Tablero"
-#: ../../godmode/setup/news.php:384
+#: ../../godmode/setup/news.php:383
msgid "Expired"
msgstr "Caducado"
@@ -38997,7 +39255,7 @@ msgstr "Conexión mapa GIS"
msgid "Pandora Websocket Engine"
msgstr "Motor Websocket Pandora"
-#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:493
+#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:505
msgid "Create tip"
msgstr "Crear Tip"
@@ -39014,7 +39272,7 @@ msgid "Correct update the setup options"
msgstr "Actualización correcta de las opciones de configuración"
#: ../../godmode/setup/setup_ehorus.php:67
-#: ../../include/functions_config.php:1812
+#: ../../include/functions_config.php:1824
msgid "Enable eHorus"
msgstr "Activar eHorus"
@@ -39035,6 +39293,17 @@ msgstr "Puerto de la API"
msgid "Request timeout"
msgstr "Tiempo de espera excedido para la petición"
+#: ../../godmode/setup/setup_ehorus.php:135
+#: ../../godmode/setup/setup_integria.php:665
+msgid "Connection its OK"
+msgstr "La conexión es correcta"
+
+#: ../../godmode/setup/setup_ehorus.php:139
+#: ../../godmode/setup/setup_websocket_engine.php:89
+#: ../../godmode/setup/setup_integria.php:652
+msgid "Test connection"
+msgstr "Comprobar conexión"
+
#: ../../godmode/setup/setup_ehorus.php:175
msgid "Remote Management System"
msgstr "Sistema de gestión remota"
@@ -39076,24 +39345,24 @@ msgstr "La sesión ha caducado."
#: ../../godmode/setup/setup_ehorus.php:297
#: ../../godmode/setup/setup_integria.php:825
#: ../../godmode/setup/setup_integria.php:906
-#: ../../operation/users/user_edit.php:1420
-#: ../../operation/users/user_edit.php:1498
+#: ../../operation/users/user_edit.php:1417
+#: ../../operation/users/user_edit.php:1495
msgid "Empty user or password"
msgstr "Usuario o contraseña vacío"
#: ../../godmode/setup/setup_ehorus.php:298
#: ../../godmode/setup/setup_integria.php:826
#: ../../godmode/setup/setup_integria.php:907
-#: ../../operation/users/user_edit.php:1421
-#: ../../operation/users/user_edit.php:1499
+#: ../../operation/users/user_edit.php:1418
+#: ../../operation/users/user_edit.php:1496
msgid "User not found"
msgstr "Usuario no encontrado"
#: ../../godmode/setup/setup_ehorus.php:299
#: ../../godmode/setup/setup_integria.php:827
#: ../../godmode/setup/setup_integria.php:908
-#: ../../operation/users/user_edit.php:1422
-#: ../../operation/users/user_edit.php:1500
+#: ../../operation/users/user_edit.php:1419
+#: ../../operation/users/user_edit.php:1497
msgid "Invalid password"
msgstr "Contraseña incorrecta"
@@ -39102,55 +39371,52 @@ msgstr "Contraseña incorrecta"
msgid "Data storage path"
msgstr "Ruta de almacenamiento de datos"
-#: ../../godmode/setup/setup_sflow.php:50
-#: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1540
-#: ../../include/functions_config.php:1583
+#: ../../godmode/setup/setup_sflow.php:50 ../../include/functions_config.php:1595
msgid "Daemon interval"
msgstr "Intervalo del demonio"
#: ../../godmode/setup/setup_sflow.php:55
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../include/functions_config.php:1544
-#: ../../include/functions_config.php:1587
+#: ../../godmode/setup/setup_netflow.php:51
+#: ../../include/functions_config.php:1556
+#: ../../include/functions_config.php:1599
msgid "Daemon binary path"
msgstr "Ruta de demonio binario"
#: ../../godmode/setup/setup_sflow.php:60
-#: ../../godmode/setup/setup_netflow.php:60
-#: ../../include/functions_config.php:1548
-#: ../../include/functions_config.php:1591
+#: ../../godmode/setup/setup_netflow.php:56
+#: ../../include/functions_config.php:1560
+#: ../../include/functions_config.php:1603
msgid "Nfdump binary path"
msgstr "Ruta binaria Nfdump"
#: ../../godmode/setup/setup_sflow.php:65
-#: ../../godmode/setup/setup_netflow.php:65
-#: ../../include/functions_config.php:1552
-#: ../../include/functions_config.php:1595
+#: ../../godmode/setup/setup_netflow.php:61
+#: ../../include/functions_config.php:1564
+#: ../../include/functions_config.php:1607
msgid "Nfexpire binary path"
msgstr "Ruta binaria Nfexpire"
#: ../../godmode/setup/setup_sflow.php:70
-#: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1556
-#: ../../include/functions_config.php:1599
+#: ../../godmode/setup/setup_netflow.php:66
+#: ../../include/functions_config.php:1568
+#: ../../include/functions_config.php:1611
msgid "Maximum chart resolution"
msgstr "Máxima resolución del gráfico"
-#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1607
+#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1619
msgid "Sflow max lifetime"
msgstr "Vida útil máxima de Sflow"
#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
-#: ../../operation/netflow/nf_live_view.php:339
+#: ../../godmode/setup/setup_netflow.php:80
+#: ../../operation/netflow/nf_live_view.php:348
msgid "IP address resolution can take a lot of time"
msgstr "La resolución de direcciones IP puede tardar mucho tiempo."
#: ../../godmode/setup/setup_sflow.php:86
-#: ../../godmode/setup/setup_netflow.php:86
-#: ../../include/functions_config.php:1568
-#: ../../include/functions_config.php:1611
+#: ../../godmode/setup/setup_netflow.php:82
+#: ../../include/functions_config.php:1580
+#: ../../include/functions_config.php:1623
msgid "Name resolution for IP address"
msgstr "Habilitar la resolución de nombre con IP"
@@ -39167,7 +39433,7 @@ msgid "Bind port"
msgstr "Puerto de enlace"
#: ../../godmode/setup/setup_websocket_engine.php:71
-#: ../../include/functions_config.php:1964
+#: ../../include/functions_config.php:1976
msgid "WebSocket proxy url"
msgstr "URL del proxy de WebSocket"
@@ -39180,11 +39446,11 @@ msgstr ""
"Este nodo esta configurado con el modo centralizado. Toda la información de "
"las políticas está en modo lectura. Vaya a %s para administrarlo."
-#: ../../godmode/setup/os.list.php:163
+#: ../../godmode/setup/os.list.php:162
msgid "There are no defined operating systems"
msgstr "No hay sistemas operativos definidos"
-#: ../../godmode/setup/os.list.php:170
+#: ../../godmode/setup/os.list.php:169
msgid "Create OS"
msgstr "Crear SO"
@@ -39270,9 +39536,9 @@ msgstr "Google Maps"
#: ../../godmode/setup/gis_step_2.php:254
#: ../../godmode/reporting/visual_console_builder.elements.php:199
-#: ../../include/functions_visual_map_editor.php:1385
-#: ../../include/functions_visual_map.php:4200
-#: ../../operation/visual_console/view.php:316
+#: ../../include/functions_visual_map_editor.php:1443
+#: ../../include/functions_visual_map.php:4209
+#: ../../operation/visual_console/view.php:318
msgid "Static Image"
msgstr "Imagen estática"
@@ -39321,24 +39587,24 @@ msgid "Corners of the area of the image"
msgstr "Esquinas del área de la imagen"
#: ../../godmode/setup/gis_step_2.php:364
-#: ../../include/rest-api/models/VisualConsole/Item.php:1961
+#: ../../include/rest-api/models/VisualConsole/Item.php:1964
msgid "Left"
msgstr "Izquierda"
#: ../../godmode/setup/gis_step_2.php:371
-#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../include/rest-api/models/VisualConsole/Item.php:1961
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
msgid "Bottom"
msgstr "Inferior"
#: ../../godmode/setup/gis_step_2.php:378
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../include/rest-api/models/VisualConsole/Item.php:1963
msgid "Right"
msgstr "Derecha"
#: ../../godmode/setup/gis_step_2.php:385
-#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../include/rest-api/models/VisualConsole/Item.php:1962
msgid "Top"
msgstr "Superior"
@@ -39434,7 +39700,7 @@ msgid "Integria IMS API is not reachable"
msgstr "API de Integria IMS no accesible"
#: ../../godmode/setup/setup_integria.php:262
-#: ../../include/functions_config.php:1850
+#: ../../include/functions_config.php:1862
msgid "Enable Integria IMS"
msgstr "Habilitar Integria IMS"
@@ -39507,183 +39773,183 @@ msgstr "No se pudo guardar la traducción de SNMP"
msgid "Unsucessful save the snmp translation."
msgstr "No se pudo guardar la traducción de SNMP"
-#: ../../godmode/setup/setup_netflow.php:80
-#: ../../include/functions_config.php:1564
+#: ../../godmode/setup/setup_netflow.php:76
+#: ../../include/functions_config.php:1576
msgid "Netflow max lifetime"
msgstr "Tiempo máximo del Netflow"
-#: ../../godmode/setup/setup_visuals.php:108
+#: ../../godmode/setup/setup_visuals.php:112
msgid "Click to display lateral menus"
msgstr "Haz clic para mostrar el menú lateral"
-#: ../../godmode/setup/setup_visuals.php:120
+#: ../../godmode/setup/setup_visuals.php:124
msgid "Paginated module view"
msgstr "Vista del módulo paginada"
-#: ../../godmode/setup/setup_visuals.php:152
-#: ../../include/functions_config.php:1347
+#: ../../godmode/setup/setup_visuals.php:156
+#: ../../include/functions_config.php:1363
msgid "Service label font size"
msgstr "Tamaño de fuente para el mapa de servicios"
-#: ../../godmode/setup/setup_visuals.php:156
+#: ../../godmode/setup/setup_visuals.php:160
msgid "Space between items in Service maps"
msgstr "Espacio entre nodos para el mapa de servicios"
-#: ../../godmode/setup/setup_visuals.php:235
+#: ../../godmode/setup/setup_visuals.php:239
msgid "Colors"
msgstr "Colores"
-#: ../../godmode/setup/setup_visuals.php:236
+#: ../../godmode/setup/setup_visuals.php:240
msgid "Faces"
msgstr "Caras"
-#: ../../godmode/setup/setup_visuals.php:237
+#: ../../godmode/setup/setup_visuals.php:241
msgid "Colors and text"
msgstr "Colores y texto"
-#: ../../godmode/setup/setup_visuals.php:339
-#: ../../include/functions_config.php:1038
+#: ../../godmode/setup/setup_visuals.php:343
+#: ../../include/functions_config.php:1050
msgid "Style template"
msgstr "Plantilla de estilo"
-#: ../../godmode/setup/setup_visuals.php:357
-#: ../../include/functions_config.php:1058
+#: ../../godmode/setup/setup_visuals.php:361
+#: ../../include/functions_config.php:1070
msgid "Status icon set"
msgstr "Icono de estado en"
-#: ../../godmode/setup/setup_visuals.php:602
-#: ../../include/functions_config.php:1094
+#: ../../godmode/setup/setup_visuals.php:606
+#: ../../include/functions_config.php:1106
msgid "Custom documentation logo"
msgstr "Logo de documentación personalizado"
-#: ../../godmode/setup/setup_visuals.php:642
-#: ../../include/functions_config.php:1098
+#: ../../godmode/setup/setup_visuals.php:646
+#: ../../include/functions_config.php:1110
msgid "Custom support logo"
msgstr "Logo de soporte personalizado"
-#: ../../godmode/setup/setup_visuals.php:680
-#: ../../include/functions_config.php:1102
-#: ../../include/functions_config.php:1106
+#: ../../godmode/setup/setup_visuals.php:684
+#: ../../include/functions_config.php:1114
+#: ../../include/functions_config.php:1118
msgid "Custom networkmap center logo"
msgstr "Logo central del mapa de red personalizado"
-#: ../../godmode/setup/setup_visuals.php:720
+#: ../../godmode/setup/setup_visuals.php:724
msgid "Custom mobile console icon"
msgstr "Icono de la consola móvil personalizada"
-#: ../../godmode/setup/setup_visuals.php:814
+#: ../../godmode/setup/setup_visuals.php:818
msgid "Disable logo in graphs"
msgstr "Deshabilitar el logo en los gráficos"
-#: ../../godmode/setup/setup_visuals.php:832
+#: ../../godmode/setup/setup_visuals.php:836
msgid "Disable helps"
msgstr "Deshabilitar ayudas"
-#: ../../godmode/setup/setup_visuals.php:842
-#: ../../include/functions_config.php:1286
+#: ../../godmode/setup/setup_visuals.php:846
+#: ../../include/functions_config.php:1302
msgid "Fixed header"
msgstr "Cabecera fija"
-#: ../../godmode/setup/setup_visuals.php:854
+#: ../../godmode/setup/setup_visuals.php:858
msgid "Automatically hide submenu"
msgstr "Ocultar submenú automáticamente"
-#: ../../godmode/setup/setup_visuals.php:901
-#: ../../include/functions_config.php:1250
+#: ../../godmode/setup/setup_visuals.php:905
+#: ../../include/functions_config.php:1266
msgid "GIS Labels"
msgstr "Etiquetas GIS"
-#: ../../godmode/setup/setup_visuals.php:911
-#: ../../include/functions_config.php:1258
+#: ../../godmode/setup/setup_visuals.php:915
+#: ../../include/functions_config.php:1274
msgid "Default icon in GIS"
msgstr "Icono GIS por defecto"
-#: ../../godmode/setup/setup_visuals.php:920
+#: ../../godmode/setup/setup_visuals.php:924
msgid "Agent icon group"
msgstr "Grupo de iconos de agente"
-#: ../../godmode/setup/setup_visuals.php:970
+#: ../../godmode/setup/setup_visuals.php:974
msgid "Graphs font size"
msgstr "Tamaño de fuente de las gráficas"
-#: ../../godmode/setup/setup_visuals.php:989
+#: ../../godmode/setup/setup_visuals.php:993
msgid "Show unit along with value in reports"
msgstr "Mostrar la unidad junto con el valor en los informes"
-#: ../../godmode/setup/setup_visuals.php:1000
-#: ../../include/functions_config.php:1226
-#: ../../include/functions_config.php:1230
+#: ../../godmode/setup/setup_visuals.php:1004
+#: ../../include/functions_config.php:1242
+#: ../../include/functions_config.php:1246
msgid "Agent size text"
msgstr "Tamaño del texto del agente"
-#: ../../godmode/setup/setup_visuals.php:1007
-#: ../../godmode/setup/setup_visuals.php:1029
+#: ../../godmode/setup/setup_visuals.php:1011
+#: ../../godmode/setup/setup_visuals.php:1033
msgid "Small"
msgstr "Pequeño"
-#: ../../godmode/setup/setup_visuals.php:1022
-#: ../../include/functions_config.php:1234
+#: ../../godmode/setup/setup_visuals.php:1026
+#: ../../include/functions_config.php:1250
msgid "Module size text"
msgstr "Tamaño del nombre del módulo"
-#: ../../godmode/setup/setup_visuals.php:1046
-#: ../../include/functions_config.php:1238
-#: ../../include/functions_config.php:1242
+#: ../../godmode/setup/setup_visuals.php:1050
+#: ../../include/functions_config.php:1254
+#: ../../include/functions_config.php:1258
msgid "Description size text"
msgstr "Tamaño del texto de la descripción"
-#: ../../godmode/setup/setup_visuals.php:1057
-#: ../../include/functions_config.php:1246
+#: ../../godmode/setup/setup_visuals.php:1061
+#: ../../include/functions_config.php:1262
msgid "Item title size text"
msgstr "Tamaño del texto de los títulos de elementos"
-#: ../../godmode/setup/setup_visuals.php:1109
+#: ../../godmode/setup/setup_visuals.php:1113
msgid "Graph color #"
msgstr "Color del gráfico #"
-#: ../../godmode/setup/setup_visuals.php:1123
+#: ../../godmode/setup/setup_visuals.php:1127
msgid "Data precision"
msgstr "Precisión de datos"
-#: ../../godmode/setup/setup_visuals.php:1141
+#: ../../godmode/setup/setup_visuals.php:1145
msgid "Data precision in graphs"
msgstr "Precisión de datos en los gráficos"
-#: ../../godmode/setup/setup_visuals.php:1172
-#: ../../include/functions_config.php:1314
+#: ../../godmode/setup/setup_visuals.php:1176
+#: ../../include/functions_config.php:1330
msgid "Default line thickness for the Custom Graph."
msgstr "Espesor de la línea predeterminada para el gráfico personalizado"
-#: ../../godmode/setup/setup_visuals.php:1299
+#: ../../godmode/setup/setup_visuals.php:1303
msgid "Zoom graphs"
msgstr "Ampliar gráficas"
-#: ../../godmode/setup/setup_visuals.php:1328
+#: ../../godmode/setup/setup_visuals.php:1332
msgid "Classic view"
msgstr "Vista clásica"
-#: ../../godmode/setup/setup_visuals.php:1329
+#: ../../godmode/setup/setup_visuals.php:1333
msgid "View of favorites"
msgstr "Vista de favoritos"
-#: ../../godmode/setup/setup_visuals.php:1384
+#: ../../godmode/setup/setup_visuals.php:1388
msgid "Type of view of visual consoles"
msgstr "Tipo de vista de las consolas visuales"
-#: ../../godmode/setup/setup_visuals.php:1398
+#: ../../godmode/setup/setup_visuals.php:1402
msgid "Number of favorite visual consoles to show in the menu"
msgstr "Nº de consolas visuales favoritas mostradas en el menú"
-#: ../../godmode/setup/setup_visuals.php:1403
-#: ../../include/functions_config.php:1214
+#: ../../godmode/setup/setup_visuals.php:1407
+#: ../../include/functions_config.php:1226
msgid "Default line thickness for the Visual Console"
msgstr "Grosor de línea por defecto en las consolas visuales"
-#: ../../godmode/setup/setup_visuals.php:1437
+#: ../../godmode/setup/setup_visuals.php:1452
msgid "Number of favorite services to show in the menu"
msgstr "Número de servicios favoritos a mostrar en el menú"
-#: ../../godmode/setup/setup_visuals.php:1535
+#: ../../godmode/setup/setup_visuals.php:1550
msgid ""
"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
@@ -39692,90 +39958,90 @@ msgstr ""
"custom_logo'. Puede añadir más archivos (SOLO JPEG AND PNG) en la herramienta "
"de actualización de la consola."
-#: ../../godmode/setup/setup_visuals.php:1724
-#: ../../include/functions_config.php:1298
+#: ../../godmode/setup/setup_visuals.php:1739
+#: ../../include/functions_config.php:1314
msgid "Networkmap max width"
msgstr "Máximo ancho de Networkmap"
-#: ../../godmode/setup/setup_visuals.php:1747
+#: ../../godmode/setup/setup_visuals.php:1762
msgid "Show empty groups in group view"
msgstr "Mostrar grupos vacíos en la vista de grupo"
-#: ../../godmode/setup/setup_visuals.php:1773
-#: ../../include/functions_config.php:1520
+#: ../../godmode/setup/setup_visuals.php:1788
+#: ../../include/functions_config.php:1536
msgid "Decimal separator"
msgstr "Separador decimal"
-#: ../../godmode/setup/setup_visuals.php:1788
+#: ../../godmode/setup/setup_visuals.php:1803
msgid "Visible time of successful notifiations"
msgstr "Tiempo visible de notificaciones exitosas"
-#: ../../godmode/setup/setup_visuals.php:1816
+#: ../../godmode/setup/setup_visuals.php:1831
msgid "Custom values post process"
msgstr "Valores personalizados para postprocesado"
-#: ../../godmode/setup/setup_visuals.php:1856
-#: ../../godmode/setup/setup_visuals.php:2023
+#: ../../godmode/setup/setup_visuals.php:1871
+#: ../../godmode/setup/setup_visuals.php:2038
msgid "Delete custom values"
msgstr "Eliminar valores personalizados"
-#: ../../godmode/setup/setup_visuals.php:1906
+#: ../../godmode/setup/setup_visuals.php:1921
msgid "Interval values"
msgstr "Valores del intervalo"
-#: ../../godmode/setup/setup_visuals.php:1945
+#: ../../godmode/setup/setup_visuals.php:1960
msgid "Delete interval values"
msgstr "Eliminar valores de intervalo"
-#: ../../godmode/setup/setup_visuals.php:1988
+#: ../../godmode/setup/setup_visuals.php:2003
msgid "Module units"
msgstr "Unidades de módulo"
-#: ../../godmode/setup/setup_visuals.php:2084
+#: ../../godmode/setup/setup_visuals.php:2099
msgid "Behaviour configuration"
msgstr "Configuración del comportamiento"
-#: ../../godmode/setup/setup_visuals.php:2089
+#: ../../godmode/setup/setup_visuals.php:2104
msgid "GIS configuration"
msgstr "Configuración GIS"
-#: ../../godmode/setup/setup_visuals.php:2094
+#: ../../godmode/setup/setup_visuals.php:2109
msgid "Style configuration"
msgstr "Configuración de estilo"
-#: ../../godmode/setup/setup_visuals.php:2099
+#: ../../godmode/setup/setup_visuals.php:2114
msgid "Charts configuration"
msgstr "Configuración de gráficos"
-#: ../../godmode/setup/setup_visuals.php:2104
+#: ../../godmode/setup/setup_visuals.php:2119
msgid "Font and Text configuration"
msgstr "Configuración de fuente y texto"
-#: ../../godmode/setup/setup_visuals.php:2109
+#: ../../godmode/setup/setup_visuals.php:2124
msgid "Visual consoles configuration"
msgstr "Configuración de las consolas visuales"
-#: ../../godmode/setup/setup_visuals.php:2114
+#: ../../godmode/setup/setup_visuals.php:2129
msgid "Reports configuration "
msgstr "Configuración de informes "
-#: ../../godmode/setup/setup_visuals.php:2119
+#: ../../godmode/setup/setup_visuals.php:2134
msgid "Services configuration"
msgstr "Configuración de servicios"
-#: ../../godmode/setup/setup_visuals.php:2124
+#: ../../godmode/setup/setup_visuals.php:2139
msgid "Other configuration"
msgstr "Otra configuración"
-#: ../../godmode/setup/setup_visuals.php:2405
+#: ../../godmode/setup/setup_visuals.php:2425
msgid "Mobile console logo preview"
msgstr "Vista previa del logo de la consola móvil"
-#: ../../godmode/setup/setup_visuals.php:2441
+#: ../../godmode/setup/setup_visuals.php:2461
msgid "Gis icons preview"
msgstr "Vista previa de los iconos GIS"
-#: ../../godmode/setup/setup_visuals.php:2507
+#: ../../godmode/setup/setup_visuals.php:2527
msgid "Status set preview"
msgstr "Vista previa del estado"
@@ -39858,8 +40124,12 @@ msgstr "Habilitar Sflow"
msgid "General network path"
msgstr "Ruta de red general"
+#: ../../godmode/setup/setup_general.php:434
+msgid "Server timezone setup"
+msgstr "Configuración de zona horaria del servidor"
+
#: ../../godmode/setup/setup_general.php:515
-#: ../../include/functions_config.php:423
+#: ../../include/functions_config.php:431
msgid "Inventory changes blacklist"
msgstr "Lista negra ante cambios de inventario"
@@ -39923,11 +40193,11 @@ msgstr "Útil para integraciones"
msgid "Log location"
msgstr "Localización de logs"
-#: ../../godmode/setup/setup_general.php:710
+#: ../../godmode/setup/setup_general.php:736
msgid "General options"
msgstr "Opciones generales"
-#: ../../godmode/setup/setup_general.php:729
+#: ../../godmode/setup/setup_general.php:755
msgid ""
"Please notice that some providers like Gmail or Office365 need to setup/enable "
"manually external connections using SMTP and you need to use STARTTLS on port "
@@ -39940,29 +40210,29 @@ msgstr ""
"las conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS "
"en el puerto 587."
-#: ../../godmode/setup/setup_general.php:744
+#: ../../godmode/setup/setup_general.php:770
msgid "From address"
msgstr "De"
-#: ../../godmode/setup/setup_general.php:768
+#: ../../godmode/setup/setup_general.php:794
msgid "SMTP Server"
msgstr "Servidor SMTP"
-#: ../../godmode/setup/setup_general.php:780
+#: ../../godmode/setup/setup_general.php:806
msgid "SMTP Port"
msgstr "Puerto SMTP"
-#: ../../godmode/setup/setup_general.php:847
+#: ../../godmode/setup/setup_general.php:873
msgid "Email test"
msgstr "Prueba de email"
-#: ../../godmode/setup/setup_general.php:896
-#: ../../include/class/TipsWindow.class.php:767
-#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833
+#: ../../godmode/setup/setup_general.php:922
+#: ../../include/class/TipsWindow.class.php:787
+#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833
msgid "Send"
msgstr "Enviar"
-#: ../../godmode/setup/setup_general.php:910
+#: ../../godmode/setup/setup_general.php:936
msgid "Check mail configuration"
msgstr "Revisar configuración de correo"
@@ -39974,29 +40244,29 @@ msgstr "Pandora_db en ejecución en la base de datos histórica."
msgid "not executed"
msgstr "No ejecutado"
-#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:834
+#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:846
msgid "Max. days before delete traps"
msgstr "Nº max. de días antes de borrar traps SNMP"
#: ../../godmode/setup/performance.php:308
-#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838
+#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:850
msgid "Max. days before delete string data"
msgstr "Nº max. de días antes de borrar datos de tipo texto"
-#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:846
+#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:858
msgid "Max. days before delete GIS data"
msgstr "Nº max. de días antes de borrar información GIS"
#: ../../godmode/setup/performance.php:353
-#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862
+#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:874
msgid "Max. days before compact data"
msgstr "Máx. días antes de comprimir datos"
-#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:854
+#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:866
msgid "Max. days before delete unknown modules"
msgstr "Máximo de días antes de borrar módulos desconocidos"
-#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:858
+#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:870
msgid "Max. days before delete not initialized modules"
msgstr "Máx. días antes de eliminar módulos no inicializados"
@@ -40005,24 +40275,24 @@ msgid "Max. days before delete autodisabled agents"
msgstr ""
"Nº máximo de días antes de la eliminación de los agentes autodeshabilitados"
-#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:914
+#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:926
msgid "Retention period of past special days"
msgstr "Período de retención de días especiales pasados"
#: ../../godmode/setup/performance.php:494
-#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878
+#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:890
msgid "Compact interpolation in hours (1 Fine-20 bad)"
msgstr "Interpolación de la compactación en horas (1 bueno - 20 malo)"
-#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:928
+#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:940
msgid "Max. days before delete old messages"
msgstr "Núm. máx. de días antes de borrar mensajes antiguos"
-#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:932
+#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:944
msgid "Max. days before delete old network matrix data"
msgstr "Núm. máx. de días antes de borrar datos de matriz antiguos"
-#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:923
+#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:935
msgid "Max. days before delete inventory data"
msgstr "Nº de días máximo antes del borrado de datos de inventario"
@@ -40042,19 +40312,19 @@ msgstr "10 días"
msgid "2 weeks"
msgstr "2 semanas"
-#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:886
+#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:898
msgid "Use realtime statistics"
msgstr "Usar estadísticas en tiempo real"
-#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:890
+#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:902
msgid "Batch statistics period (secs)"
msgstr "Período de las estadísticas programadas (seg.)"
-#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:898
+#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:910
msgid "Max. recommended number of files in attachment directory"
msgstr "Max. número de archivos recomendado para el directorio de adjuntos"
-#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:902
+#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:914
msgid "Delete not init modules"
msgstr "Borrar módulos no iniciados"
@@ -40062,11 +40332,11 @@ msgstr "Borrar módulos no iniciados"
msgid "Big Operation Step to purge old data"
msgstr "Gran operación para la purga de datos antiguos"
-#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:910
+#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:922
msgid "Small Operation Step to purge old data"
msgstr "Operación menor para la purga de datos antiguos"
-#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:936
+#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:948
msgid "Graph container - Max. Items"
msgstr "Contenedor de gráficas - Máx. elementos"
@@ -40109,7 +40379,7 @@ msgstr "Opciones de mantenimiento de la base de datos histórica"
#: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404
#: ../../include/functions_netflow.php:2097
-#: ../../include/functions_reporting.php:4063
+#: ../../include/functions_reporting.php:4072
msgid "Others"
msgstr "Otros"
@@ -40118,7 +40388,7 @@ msgid "Agent SNMP Interface Wizard defaults"
msgstr "Valores predeterminados del Asistente de interfaz SNMP del agente"
#: ../../godmode/setup/file_manager.php:83
-#: ../../include/functions_filemanager.php:630
+#: ../../include/functions_filemanager.php:645
#, php-format
msgid "Index of %s"
msgstr "Índice de %s"
@@ -40129,7 +40399,7 @@ msgstr "El idioma está vacío"
#: ../../godmode/setup/welcome_tips.php:65
msgid "Title is empty"
-msgstr "El titulo esta vacio"
+msgstr "El título está vacío"
#: ../../godmode/setup/welcome_tips.php:69
msgid "Text is empty"
@@ -40158,8 +40428,8 @@ msgstr "Crear consola visual"
#: ../../godmode/reporting/visual_console_builder.data.php:182
#: ../../godmode/reporting/visual_console_builder.elements.php:167
#: ../../include/functions_visual_map_editor.php:55
-#: ../../include/functions_visual_map_editor.php:632
-#: ../../include/lib/Dashboard/Widget.php:575
+#: ../../include/functions_visual_map_editor.php:626
+#: ../../include/lib/Dashboard/Widget.php:576
msgid "Background"
msgstr "Imagen de fondo"
@@ -40168,10 +40438,10 @@ msgid "Background image"
msgstr "Imagen de fondo"
#: ../../godmode/reporting/visual_console_builder.data.php:227
-#: ../../include/functions_visual_map_editor.php:347
+#: ../../include/functions_visual_map_editor.php:343
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247
msgid "Background color"
msgstr "Color de fondo"
@@ -40220,107 +40490,107 @@ msgstr "El archivo no tiene una extensión válida."
msgid "Problems with move file to target."
msgstr "Error al mover el archivo al objetivo"
-#: ../../godmode/reporting/visual_console_builder.php:303
+#: ../../godmode/reporting/visual_console_builder.php:304
msgid "Successfully update."
msgstr "Actualizado correctamente"
-#: ../../godmode/reporting/visual_console_builder.php:322
+#: ../../godmode/reporting/visual_console_builder.php:323
msgid "Could not be update."
msgstr "No se puede actualizar"
-#: ../../godmode/reporting/visual_console_builder.php:342
+#: ../../godmode/reporting/visual_console_builder.php:343
msgid "Successfully created."
msgstr "Creado correctamente"
-#: ../../godmode/reporting/visual_console_builder.php:361
+#: ../../godmode/reporting/visual_console_builder.php:362
msgid "Could not be created."
msgstr "No se pudo crear"
-#: ../../godmode/reporting/visual_console_builder.php:409
+#: ../../godmode/reporting/visual_console_builder.php:410
msgid "Successfully multiple delete."
msgstr "Supresión múltiple realizada correctamente"
-#: ../../godmode/reporting/visual_console_builder.php:410
+#: ../../godmode/reporting/visual_console_builder.php:411
msgid "Unsuccessful multiple delete."
msgstr "Error de supresión múltiple"
-#: ../../godmode/reporting/visual_console_builder.php:530
+#: ../../godmode/reporting/visual_console_builder.php:531
msgid "Successfully delete."
msgstr "Borrado satisfactoriamente"
-#: ../../godmode/reporting/visual_console_builder.php:801
-#: ../../operation/visual_console/view.php:130
+#: ../../godmode/reporting/visual_console_builder.php:809
+#: ../../operation/visual_console/view.php:132
#: ../../operation/visual_console/legacy_view.php:117
msgid "Visual consoles list"
msgstr "Lista de consolas visuales"
-#: ../../godmode/reporting/visual_console_builder.php:810
-#: ../../operation/visual_console/view.php:164
+#: ../../godmode/reporting/visual_console_builder.php:818
+#: ../../operation/visual_console/view.php:166
#: ../../operation/visual_console/legacy_view.php:133
msgid "Show link to public Visual Console"
msgstr "Mostrar enlace a la Consola Visual pública"
-#: ../../godmode/reporting/visual_console_builder.php:814
+#: ../../godmode/reporting/visual_console_builder.php:822
#: ../../godmode/reporting/graph_builder.php:304
-#: ../../godmode/reporting/reporting_builder.php:3634
-#: ../../operation/visual_console/view.php:174
+#: ../../godmode/reporting/reporting_builder.php:3651
+#: ../../operation/visual_console/view.php:176
#: ../../operation/visual_console/legacy_view.php:143
#: ../../operation/reporting/reporting_viewer.php:138
#: ../../operation/reporting/graph_viewer.php:193
msgid "Main data"
msgstr "Datos principales"
-#: ../../godmode/reporting/visual_console_builder.php:818
-#: ../../operation/visual_console/view.php:182
+#: ../../godmode/reporting/visual_console_builder.php:826
+#: ../../operation/visual_console/view.php:184
#: ../../operation/visual_console/legacy_view.php:151
msgid "List elements"
msgstr "Lista de elementos"
-#: ../../godmode/reporting/visual_console_builder.php:824
-#: ../../operation/visual_console/view.php:192
+#: ../../godmode/reporting/visual_console_builder.php:832
+#: ../../operation/visual_console/view.php:194
#: ../../operation/visual_console/legacy_view.php:161
msgid "Services wizard"
msgstr "Asistente de servicios"
-#: ../../godmode/reporting/visual_console_builder.php:849
+#: ../../godmode/reporting/visual_console_builder.php:857
msgid "New visual console"
msgstr "Nueva consola visual"
-#: ../../godmode/reporting/reporting_builder.list_items.php:701
+#: ../../godmode/reporting/reporting_builder.list_items.php:702
msgid "Sort selected items from position: "
msgstr "Ordenar elementos desde posición: "
-#: ../../godmode/reporting/reporting_builder.list_items.php:704
+#: ../../godmode/reporting/reporting_builder.list_items.php:705
msgid "Move before to"
msgstr "Mover antes de"
-#: ../../godmode/reporting/reporting_builder.list_items.php:705
+#: ../../godmode/reporting/reporting_builder.list_items.php:706
msgid "Move after to"
msgstr "Mover después de"
-#: ../../godmode/reporting/reporting_builder.list_items.php:754
-#: ../../godmode/reporting/graph_builder.graph_editor.php:301
-#: ../../godmode/reporting/graph_builder.graph_editor.php:369
+#: ../../godmode/reporting/reporting_builder.list_items.php:755
+#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/graph_builder.graph_editor.php:284
msgid "Sort items"
msgstr "Ordenar elementos"
-#: ../../godmode/reporting/reporting_builder.list_items.php:763
+#: ../../godmode/reporting/reporting_builder.list_items.php:764
msgid "Delete selected items from position: "
msgstr "Borrar los elementos seleccionados desde la posición: "
-#: ../../godmode/reporting/reporting_builder.list_items.php:766
+#: ../../godmode/reporting/reporting_builder.list_items.php:767
msgid "Delete above to"
msgstr "Borrar lo que está encima de"
-#: ../../godmode/reporting/reporting_builder.list_items.php:767
+#: ../../godmode/reporting/reporting_builder.list_items.php:768
msgid "Delete below to"
msgstr "Borrar lo que está debajo de"
-#: ../../godmode/reporting/reporting_builder.list_items.php:779
+#: ../../godmode/reporting/reporting_builder.list_items.php:780
msgid "Poisition"
msgstr "Posición"
-#: ../../godmode/reporting/reporting_builder.list_items.php:845
+#: ../../godmode/reporting/reporting_builder.list_items.php:846
msgid ""
"Are you sure to sort the items into the report?\\n. This action change the "
"sorting of items into data base."
@@ -40328,16 +40598,16 @@ msgstr ""
"¿Está seguro de que quiere clasificar los elementos en el informe?\\n. Esta "
"acción podría cambiar la clasificación de los elementos en la base de datos."
-#: ../../godmode/reporting/reporting_builder.list_items.php:867
-#: ../../godmode/reporting/graph_builder.graph_editor.php:463
+#: ../../godmode/reporting/reporting_builder.list_items.php:868
+#: ../../godmode/reporting/graph_builder.graph_editor.php:478
msgid "Please select any item to order"
msgstr "Por favor, selecciona cualquier elemento para ordenar."
-#: ../../godmode/reporting/reporting_builder.list_items.php:897
+#: ../../godmode/reporting/reporting_builder.list_items.php:898
msgid "Are you sure to delete the items into the report?\\n"
msgstr "¿Estás seguro de que quieres borrar los elementos en el informe?\\n"
-#: ../../godmode/reporting/reporting_builder.list_items.php:925
+#: ../../godmode/reporting/reporting_builder.list_items.php:926
msgid "Please select any item to delete"
msgstr "Por favor, selecciona cualquier elemento para borrarlo."
@@ -40389,7 +40659,7 @@ msgstr ""
#: ../../godmode/reporting/create_container.php:498
#: ../../godmode/reporting/create_container.php:686
#: ../../godmode/reporting/graph_builder.main.php:219
-#: ../../include/functions_visual_map_editor.php:554
+#: ../../include/functions_visual_map_editor.php:548
msgid "Type of graph"
msgstr "Tipo de gráfica"
@@ -40397,8 +40667,8 @@ msgstr "Tipo de gráfica"
#: ../../godmode/reporting/create_container.php:576
#: ../../godmode/reporting/create_container.php:691
#: ../../godmode/reporting/graph_builder.main.php:290
-#: ../../operation/agentes/stat_win.php:395
-#: ../../operation/agentes/interface_traffic_graph_win.php:240
+#: ../../operation/agentes/stat_win.php:403
+#: ../../operation/agentes/interface_traffic_graph_win.php:256
msgid "Show full scale graph (TIP)"
msgstr "Mostrar gráfica a escala completa (TIP)"
@@ -40456,7 +40726,7 @@ msgid "Graph editor"
msgstr "Editor de gráficas"
#: ../../godmode/reporting/graph_builder.php:326
-#: ../../include/functions_events.php:4542
+#: ../../include/functions_events.php:4547
#: ../../operation/reporting/graph_viewer.php:223
msgid "View graph"
msgstr "Ver gráfica"
@@ -40543,23 +40813,23 @@ msgstr ""
"El número máximo de elementos en una tabla es %d. Tiene %d elementos, solo se "
"mostrarán los primeros %d."
-#: ../../godmode/reporting/graph_builder.graph_editor.php:315
+#: ../../godmode/reporting/graph_builder.graph_editor.php:228
msgid "Sort selected items"
msgstr "Ordenar elementos seleccionados"
-#: ../../godmode/reporting/graph_builder.graph_editor.php:318
+#: ../../godmode/reporting/graph_builder.graph_editor.php:231
msgid "before to"
msgstr "antes de"
-#: ../../godmode/reporting/graph_builder.graph_editor.php:319
+#: ../../godmode/reporting/graph_builder.graph_editor.php:232
msgid "after to"
msgstr "después de"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1067
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1069
msgid "Not valid"
msgstr "No válido"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1075
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1077
msgid ""
"This type of report brings a lot of data loading, it is recommended to use it "
"for scheduled reports and not for real-time view."
@@ -40592,55 +40862,55 @@ msgstr ""
msgid "Show modules"
msgstr "Mostrar módulos"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2221
-#: ../../include/functions_ui.php:2494
-#: ../../operation/inventory/inventory.php:687
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2230
+#: ../../include/functions_ui.php:2537
+#: ../../operation/inventory/inventory.php:688
msgid "Last"
msgstr "Último"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2300
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2309
msgid "Target server"
msgstr "Servidor Target"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2618
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2627
msgid "Macros definition"
msgstr "Definición de macros"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2629
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2638
msgid "Render definition"
msgstr "Definición de renderizado"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2630
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2639
msgid "Please note that not all CSS styles are supported by PDF reports."
msgstr ""
"Tenga en cuenta que no todos los estilos CSS son compatibles con los informes "
"PDF."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2728
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2737
msgid "Greater or equal (>=)"
msgstr "Mayor o igual (>=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2729
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2738
msgid "Less or equal (<=)"
msgstr "Menor o igual (<=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2730
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2739
msgid "Less (<)"
msgstr "Menor a (<)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2731
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2740
msgid "Greater (>)"
msgstr "Mayor a (>)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2741
msgid "Equal (=)"
msgstr "Igual a (=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2733
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2742
msgid "Not equal (!=)"
msgstr "No igual a (!=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2858
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2867
msgid ""
"Show a summary chart with max, min and average number of total modules at the "
"end of the report and Checks."
@@ -40648,39 +40918,39 @@ msgstr ""
"Mostrar una gráfica de sumario con el máximo, mínimo y la media del total de "
"módulos al final del informe y las comprobaciones."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2913
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2922
msgid "Checks in Warning status"
msgstr "Chequeos en estado Warning"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2983
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2992
msgid "Only data"
msgstr "Sólo datos"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3081
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3090
msgid "Include extended events"
msgstr "Incluir eventos ampliados"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3098
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3107
msgid "Show custom data"
msgstr "Mostrar datos personalizados"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3117
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3126
msgid "By agent "
msgstr "Por agente "
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3127
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3136
msgid "By user validator "
msgstr "Por validador de usuario "
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3137
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3146
msgid "By criticity "
msgstr "Por prioridad "
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3156
msgid "Validated vs unvalidated "
msgstr "Validado vs invalidado "
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3162
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3171
msgid ""
"With the token enabled the query will affect the Historical Database, which "
"may mean a small drop in performance."
@@ -40688,20 +40958,20 @@ msgstr ""
"Con el token habilitado, la consulta afectará a la base de datos histórica, "
"que puede acarrear una bajada del rendimiento."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3347
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3356
msgid "Include filter"
msgstr "Incluir filtro"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3351
#: ../../godmode/reporting/reporting_builder.item_editor.php:3360
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3369
msgid "Free text string search on event description"
msgstr "Búsqueda de cadena de texto libre en descripción del evento"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3356
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3365
msgid "Exclude filter"
msgstr "Excluir filtro"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3464
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3473
msgid ""
"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise "
"full value will be displayed (example: 20.742 bytes/sec)"
@@ -40710,87 +40980,87 @@ msgstr ""
"Kbytes/seg), de lo contrario se mostrará el valor completo (ejemplo: 20,742 "
"bytes/seg)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3502
-#: ../../include/functions_reporting.php:5163
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3511
+#: ../../include/functions_reporting.php:5172
msgid "Unassigned group"
msgstr "Grupo no asignado"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3548
-#: ../../include/functions_reporting.php:5157
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3557
+#: ../../include/functions_reporting.php:5166
msgid "Unnasigned group"
msgstr "Grupo no asignado"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3571
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3580
msgid "Select by group"
msgstr "Seleccionar por grupo"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3659
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3668
msgid "Display options"
msgstr "Mostrar opciones"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3717
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3726
msgid "Agent group filter"
msgstr "Filtro de grupo de agentes"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3752
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3761
msgid "Agent OS filter"
msgstr "Filtro del so del agente"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3778
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3787
msgid "Agent custom field"
msgstr "Campo personalizado de agente"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3800
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3809
msgid "Agent custom field filter"
msgstr "Filtro de campo personalizado de agente"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3824
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3833
msgid "Agent status filter"
msgstr "Filtro de estado del agente"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3862
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3871
msgid "Agent version filter"
msgstr "Filtro de versión del agente"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3886
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3895
msgid "Agent has remote configuration"
msgstr "El agente tiene configuración remota"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3887
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3896
msgid "Filter agents by remote configuration enabled."
msgstr "Filtrar agentes por configuración remota habilitada."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3898
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3907
msgid "Agent module filter"
msgstr "Filtro del módulo del agente"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3922
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3931
msgid "Module group filter"
msgstr "Filtro de grupo de módulos"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3952
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3961
msgid "Search module name"
msgstr "Buscar nombre de módulo"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4105
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4114
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
msgid "Agent Failover"
msgstr "Conmutación de agente"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4110
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4623
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4119
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4632
msgid "Module Failover"
msgstr "Conmutación de módulo"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4150
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4159
msgid "Please save the item before adding entries to this list."
msgstr "Guarde el elemento antes de agregar entradas a esta lista."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4596
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4605
msgid "rate"
msgstr "tasa"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4644
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4653
msgid ""
"Please be careful, when the module have diferent intervals in their life, the "
"summatory maybe get bad result."
@@ -40798,46 +41068,46 @@ msgstr ""
"Por favor, ten en cuenta que cuando el módulo tiene diferentes intervalos a lo "
"largo de su historia, el sumatorio puede obtener resultados incorrectos."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4664
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4673
msgid "Please save the report to start adding items into the list."
msgstr "Por favor, guarda el informe para empezar a añadir elementos a la lista."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4930
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4934
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4938
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4942
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4946
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4950
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4954
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4958
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4939
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4943
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4947
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4951
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4955
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4959
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4963
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4967
msgid "Item Editor Information"
msgstr "Información de editor de elemento"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4931
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4940
msgid "Please select a name."
msgstr "Seleccione un nombre."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4935
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4944
msgid "Please select an agent."
msgstr "Seleccione un agente."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4943
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4952
msgid "Please insert a SQL query."
msgstr "Inserte una consulta SQL."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4947
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4956
msgid "Please insert a URL."
msgstr "Inserte una URL."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4951
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4960
msgid "Please checked a custom interval option."
msgstr "Compruebe la opción de intervalo personalizado"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4955
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4964
msgid "Please select a user."
msgstr "Seleccione un usuario."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4959
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4968
msgid "Please select a group."
msgstr "Seleccione un grupo"
@@ -40858,26 +41128,26 @@ msgid "Percentile Bubble"
msgstr "Burbuja percentil"
#: ../../godmode/reporting/visual_console_builder.elements.php:244
-#: ../../mobile/operation/events.php:837
-#: ../../include/functions_visual_map_editor.php:1387
+#: ../../mobile/operation/events.php:866
+#: ../../include/functions_visual_map_editor.php:1445
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545
-#: ../../operation/visual_console/view.php:326
+#: ../../operation/visual_console/view.php:328
msgid "Module Graph"
msgstr "Gráfico de módulo"
#: ../../godmode/reporting/visual_console_builder.elements.php:255
#: ../../include/functions_visual_map_editor.php:59
-#: ../../include/functions_visual_map_editor.php:1390
-#: ../../include/functions_visual_map.php:4180
-#: ../../operation/visual_console/view.php:346
+#: ../../include/functions_visual_map_editor.php:1448
+#: ../../include/functions_visual_map.php:4189
+#: ../../operation/visual_console/view.php:348
msgid "Event history graph"
msgstr "Gráfica de histórico de eventos"
#: ../../godmode/reporting/visual_console_builder.elements.php:266
-#: ../../include/functions_visual_map_editor.php:1391
-#: ../../include/functions_visual_map.php:4205
-#: ../../include/rest-api/models/VisualConsole/Item.php:2132
-#: ../../operation/visual_console/view.php:351
+#: ../../include/functions_visual_map_editor.php:1449
+#: ../../include/functions_visual_map.php:4214
+#: ../../include/rest-api/models/VisualConsole/Item.php:2135
+#: ../../operation/visual_console/view.php:353
msgid "Simple Value"
msgstr "Valor simple"
@@ -40895,52 +41165,54 @@ msgstr "Valor simple (media)"
#: ../../godmode/reporting/visual_console_builder.elements.php:332
#: ../../include/functions_visual_map_editor.php:71
-#: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/functions_visual_map.php:4160
-#: ../../operation/visual_console/view.php:376
+#: ../../include/functions_visual_map_editor.php:1454
+#: ../../include/functions_visual_map.php:4169
+#: ../../operation/visual_console/view.php:378
msgid "Box"
msgstr "Caja"
#: ../../godmode/reporting/visual_console_builder.elements.php:354
-#: ../../include/functions_visual_map_editor.php:1403
-#: ../../operation/visual_console/view.php:391
+#: ../../include/functions_visual_map_editor.php:1461
+#: ../../operation/visual_console/view.php:393
msgid "Network link"
msgstr "Link de red"
#: ../../godmode/reporting/visual_console_builder.elements.php:376
#: ../../include/functions_visual_map_editor.php:73
-#: ../../include/functions_visual_map_editor.php:1398
-#: ../../include/functions_visual_map.php:4220
-#: ../../include/rest-api/models/VisualConsole/Item.php:2144
-#: ../../operation/visual_console/view.php:386
+#: ../../include/functions_visual_map_editor.php:1456
+#: ../../include/functions_visual_map.php:4229
+#: ../../include/rest-api/models/VisualConsole/Item.php:2147
+#: ../../operation/visual_console/view.php:388
msgid "Color cloud"
msgstr "Nube de color"
#: ../../godmode/reporting/visual_console_builder.elements.php:387
-#: ../../include/rest-api/models/VisualConsole/Item.php:2156
-#: ../../operation/visual_console/view.php:331
+#: ../../include/rest-api/models/VisualConsole/Item.php:2159
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653
+#: ../../operation/visual_console/view.php:333
msgid "Basic chart"
msgstr "Gráfico básico"
#: ../../godmode/reporting/visual_console_builder.elements.php:398
-#: ../../include/rest-api/models/VisualConsole/Item.php:2152
-#: ../../operation/visual_console/view.php:396
+#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../operation/visual_console/view.php:398
msgid "Odometer"
msgstr "Odómetro #1"
#: ../../godmode/reporting/visual_console_builder.elements.php:409
#: ../../include/functions_visual_map_editor.php:69
-#: ../../include/functions_visual_map_editor.php:1394
-#: ../../include/functions_visual_map.php:4170
-#: ../../include/rest-api/models/VisualConsole/Item.php:2104
+#: ../../include/functions_visual_map_editor.php:1452
+#: ../../include/functions_visual_map.php:4179
+#: ../../include/rest-api/models/VisualConsole/Item.php:2107
#: ../../include/lib/Dashboard/Widgets/clock.php:158
#: ../../include/lib/Dashboard/Widgets/clock.php:310
-#: ../../operation/visual_console/view.php:366
+#: ../../operation/visual_console/view.php:368
msgid "Clock"
msgstr "Reloj"
#: ../../godmode/reporting/visual_console_builder.elements.php:438
-#: ../../godmode/reporting/visual_console_builder.elements.php:910
+#: ../../godmode/reporting/visual_console_builder.elements.php:895
msgid "Edit label"
msgstr "Editar etiqueta"
@@ -40983,14 +41255,14 @@ msgid "An error has ocurred"
msgstr "Ha ocurrido un error"
#: ../../godmode/reporting/reporting_builder.php:515
-#: ../../godmode/reporting/reporting_builder.php:3560
-#: ../../godmode/reporting/reporting_builder.php:3627
-#: ../../godmode/reporting/reporting_builder.php:3675
+#: ../../godmode/reporting/reporting_builder.php:3577
+#: ../../godmode/reporting/reporting_builder.php:3644
+#: ../../godmode/reporting/reporting_builder.php:3692
msgid "Reports list"
msgstr "Lista de informes"
#: ../../godmode/reporting/reporting_builder.php:531
-#: ../../godmode/reporting/reporting_builder.php:3571
+#: ../../godmode/reporting/reporting_builder.php:3588
#: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23
msgid "Custom reporting"
msgstr "Informes personalizados"
@@ -41012,16 +41284,16 @@ msgstr ""
msgid "Create report"
msgstr "Crear informe"
-#: ../../godmode/reporting/reporting_builder.php:3659
+#: ../../godmode/reporting/reporting_builder.php:3676
#: ../../operation/reporting/reporting_viewer.php:172
msgid "View report"
msgstr "Ver informe"
-#: ../../godmode/reporting/reporting_builder.php:3678
+#: ../../godmode/reporting/reporting_builder.php:3695
msgid "Create Custom Report"
msgstr "Crear informa personalizado"
-#: ../../godmode/reporting/reporting_builder.php:3750
+#: ../../godmode/reporting/reporting_builder.php:3767
msgid "Unsuccessful action
"
msgstr "Acción fallida
"
@@ -41032,16 +41304,16 @@ msgstr "Gráfico estático"
#: ../../godmode/reporting/visual_console_builder.wizard.php:124
#: ../../include/functions_visual_map_editor.php:57
-#: ../../include/functions_visual_map_editor.php:1386
-#: ../../operation/visual_console/view.php:321
+#: ../../include/functions_visual_map_editor.php:1444
+#: ../../operation/visual_console/view.php:323
msgid "Percentile Item"
msgstr "Elemento percentil"
#: ../../godmode/reporting/visual_console_builder.wizard.php:125
-#: ../../mobile/operation/home.php:102
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map.php:4165
-#: ../../include/rest-api/models/VisualConsole/Item.php:2100
+#: ../../mobile/operation/home.php:118
+#: ../../include/functions_visual_map_editor.php:391
+#: ../../include/functions_visual_map.php:4174
+#: ../../include/rest-api/models/VisualConsole/Item.php:2103
msgid "Module graph"
msgstr "Gráfico de módulo"
@@ -41059,30 +41331,30 @@ msgid "Size (px)"
msgstr "Tamaño (px)"
#: ../../godmode/reporting/visual_console_builder.wizard.php:232
-#: ../../include/functions_config.php:1066
+#: ../../include/functions_config.php:1078
msgid "Font size"
msgstr "Tamaño de fuente"
#: ../../godmode/reporting/visual_console_builder.wizard.php:260
-#: ../../include/functions_visual_map_editor.php:612
+#: ../../include/functions_visual_map_editor.php:606
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371
msgid "Process"
msgstr "Procesar"
#: ../../godmode/reporting/visual_console_builder.wizard.php:263
-#: ../../include/functions_visual_map_editor.php:615
+#: ../../include/functions_visual_map_editor.php:609
msgid "Min value"
msgstr "Valor mínimo"
#: ../../godmode/reporting/visual_console_builder.wizard.php:264
#: ../../godmode/reporting/visual_console_builder.wizard.php:284
-#: ../../include/functions_visual_map_editor.php:616
-#: ../../include/functions_visual_map_editor.php:680
+#: ../../include/functions_visual_map_editor.php:610
+#: ../../include/functions_visual_map_editor.php:730
msgid "Max value"
msgstr "Valor máx."
#: ../../godmode/reporting/visual_console_builder.wizard.php:265
-#: ../../include/functions_visual_map_editor.php:617
+#: ../../include/functions_visual_map_editor.php:611
msgid "Avg value"
msgstr "Valor medio"
@@ -41091,20 +41363,20 @@ msgid "Width (px)"
msgstr "Ancho (px)"
#: ../../godmode/reporting/visual_console_builder.wizard.php:300
-#: ../../include/functions_visual_map_editor.php:685
+#: ../../include/functions_visual_map_editor.php:735
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459
msgid "Bubble"
msgstr "Burbuja"
#: ../../godmode/reporting/visual_console_builder.wizard.php:319
-#: ../../include/functions_visual_map_editor.php:690
+#: ../../include/functions_visual_map_editor.php:740
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504
msgid "Percent"
msgstr "Porcentaje"
#: ../../godmode/reporting/visual_console_builder.wizard.php:345
-#: ../../include/functions_visual_map_editor.php:709
-#: ../../include/functions_visual_map_editor.php:727
+#: ../../include/functions_visual_map_editor.php:759
+#: ../../include/functions_visual_map_editor.php:777
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509
msgid "Value to show"
msgstr "Valor para mostrar"
@@ -41160,7 +41432,7 @@ msgstr "El tamaño mínimo permitido es 1024x768"
#: ../../godmode/reporting/visual_console_builder.editor.php:177
#: ../../godmode/reporting/visual_console_builder.editor.php:179
#: ../../godmode/reporting/visual_console_builder.editor.php:181
-#: ../../operation/snmpconsole/snmp_browser.php:225
+#: ../../operation/snmpconsole/snmp_browser.php:230
msgid "Action in progress"
msgstr "Acción en curso"
@@ -41307,88 +41579,88 @@ msgstr ""
"Si está habilitado, el comando se mostrará a cualquier usuario que pueda "
"ejecutar esta respuesta de evento"
-#: ../../godmode/events/event_edit_filter.php:304
+#: ../../godmode/events/event_edit_filter.php:306
msgid "Save in group"
msgstr "Guardar en grupo"
-#: ../../godmode/events/event_edit_filter.php:304
+#: ../../godmode/events/event_edit_filter.php:306
msgid ""
"This group will be use to restrict the visibility of this filter with ACLs"
msgstr ""
"Este grupo se usará para restringir la visibilidad de este filtro con ACLs."
-#: ../../godmode/events/event_edit_filter.php:502
+#: ../../godmode/events/event_edit_filter.php:504
msgid "Choose between the users who have validated an event. "
msgstr "Escoge entre los usuarios que tienen validado un evento. "
-#: ../../godmode/events/event_edit_filter.php:520
+#: ../../godmode/events/event_edit_filter.php:522
msgid "Owner."
msgstr "Propietario."
-#: ../../godmode/events/event_edit_filter.php:535
-#: ../../operation/events/events.php:1783
+#: ../../godmode/events/event_edit_filter.php:537
+#: ../../operation/events/events.php:1837
msgid "All events"
msgstr "Todos los eventos"
-#: ../../godmode/events/event_edit_filter.php:536
-#: ../../operation/events/events.php:1784 ../../operation/events/events.php:2435
+#: ../../godmode/events/event_edit_filter.php:538
+#: ../../operation/events/events.php:1838 ../../operation/events/events.php:2489
msgid "Group events"
msgstr "Eventos agrupados"
-#: ../../godmode/events/event_edit_filter.php:537
-#: ../../include/ajax/heatmap.ajax.php:80
+#: ../../godmode/events/event_edit_filter.php:539
+#: ../../include/ajax/heatmap.ajax.php:99
#: ../../include/lib/Dashboard/Widgets/heatmap.php:252
-#: ../../operation/events/events.php:1785
+#: ../../operation/events/events.php:1839
msgid "Group agents"
msgstr "Grupos de agente"
-#: ../../godmode/events/event_edit_filter.php:538
-#: ../../operation/events/events.php:1786
+#: ../../godmode/events/event_edit_filter.php:540
+#: ../../operation/events/events.php:1840
msgid "Group extra id"
msgstr "ID adicional de grupo"
-#: ../../godmode/events/event_edit_filter.php:763
-#: ../../operation/events/events.php:2033
+#: ../../godmode/events/event_edit_filter.php:765
+#: ../../operation/events/events.php:2087
msgid "Filter alert events"
msgstr "Filtrar eventos de alertas"
-#: ../../godmode/events/event_edit_filter.php:764
-#: ../../operation/events/events.php:2034
+#: ../../godmode/events/event_edit_filter.php:766
+#: ../../operation/events/events.php:2088
msgid "Only alert events"
msgstr "Solo eventos de alertas"
-#: ../../godmode/events/event_edit_filter.php:813
-#: ../../operation/events/events.php:1893
+#: ../../godmode/events/event_edit_filter.php:815
+#: ../../operation/events/events.php:1947
msgid "Extra ID"
msgstr "ID extra"
-#: ../../godmode/events/event_edit_filter.php:845
+#: ../../godmode/events/event_edit_filter.php:847
msgid "Custom data filter type"
msgstr "Tipo de filtro de datos personalizado"
-#: ../../godmode/events/event_edit_filter.php:848
+#: ../../godmode/events/event_edit_filter.php:850
msgid "Filter custom data by name field"
msgstr "Filtrar datos personalizados por campo de nombre"
-#: ../../godmode/events/event_edit_filter.php:849
+#: ../../godmode/events/event_edit_filter.php:851
msgid "Filter custom data by value field"
msgstr "Filtrar datos personalizados por campo de valor"
-#: ../../godmode/events/event_edit_filter.php:864
+#: ../../godmode/events/event_edit_filter.php:866
#: ../../godmode/events/custom_events.php:117
#: ../../include/functions_reporting_html.php:1074
#: ../../include/functions_reporting_html.php:1322
-#: ../../include/functions_reporting_html.php:2648
-#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221
+#: ../../include/functions_reporting_html.php:2667
+#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221
#: ../../include/functions_events.php:323
msgid "Custom data"
msgstr "Datos personalizados"
-#: ../../godmode/events/event_edit_filter.php:881
+#: ../../godmode/events/event_edit_filter.php:883
msgid "Id souce event"
msgstr "Evento de origen de ID"
-#: ../../godmode/events/event_edit_filter.php:911
+#: ../../godmode/events/event_edit_filter.php:913
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358
#: ../../operation/events/events.php:265
@@ -41460,7 +41732,7 @@ msgid "Severity mini"
msgstr "Prioridad baja"
#: ../../godmode/events/custom_events.php:116
-#: ../../include/functions_events.php:307 ../../include/functions_events.php:5103
+#: ../../include/functions_events.php:307 ../../include/functions_events.php:5108
msgid "Module custom ID"
msgstr "ID personalizada de módulo"
@@ -41550,24 +41822,19 @@ msgstr "Error interno, vuelva a ejecutar el asistente."
msgid "Manual interval means that it will be executed only On-demand"
msgstr "Intervalo manual significa que será ejecutado solo bajo demanda."
-#: ../../godmode/wizards/HostDevices.class.php:814
-#: ../../include/class/CustomNetScan.class.php:551
-msgid "The minimum recomended interval for Recon Task is 5 minutes"
-msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos."
-
-#: ../../godmode/wizards/HostDevices.class.php:869
+#: ../../godmode/wizards/HostDevices.class.php:865
msgid "Use CSV file definition"
msgstr "Usar definición del archivo CSV"
-#: ../../godmode/wizards/HostDevices.class.php:870
+#: ../../godmode/wizards/HostDevices.class.php:866
msgid "Define targets using csv o network definition."
msgstr "Definir objetivos utilizando la definición de CSV o red."
-#: ../../godmode/wizards/HostDevices.class.php:888
+#: ../../godmode/wizards/HostDevices.class.php:884
msgid "Networks (csv)"
msgstr "Redes (CSV)"
-#: ../../godmode/wizards/HostDevices.class.php:889
+#: ../../godmode/wizards/HostDevices.class.php:885
msgid ""
"You can upload a CSV file. Each line must contain a network in IP/MASK format. "
"For instance: 192.168.1.1/32"
@@ -41575,15 +41842,15 @@ msgstr ""
"Puede subir un archivo CSV. Cada línea debe contener una red en formato IP/"
"MASK. Por ejemplo: 192.168.1.1/32"
-#: ../../godmode/wizards/HostDevices.class.php:901
+#: ../../godmode/wizards/HostDevices.class.php:897
msgid "Networks (current)"
msgstr "Redes (actual)"
-#: ../../godmode/wizards/HostDevices.class.php:902
+#: ../../godmode/wizards/HostDevices.class.php:898
msgid "Please upload a new file to overwrite this content."
msgstr "Sube un nuevo archivo para sobrescribir este contenido."
-#: ../../godmode/wizards/HostDevices.class.php:918
+#: ../../godmode/wizards/HostDevices.class.php:914
msgid ""
"You can specify networks or fully qualified domain names of a specific host, "
"separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname."
@@ -41593,11 +41860,11 @@ msgstr ""
"separados por comas, por ejemplo: 192.168.50.0/24,192.168.60.0/24, hostname."
"artica.es"
-#: ../../godmode/wizards/HostDevices.class.php:1068
+#: ../../godmode/wizards/HostDevices.class.php:1064
msgid "Filter by opened ports"
msgstr "Filtrar por puertos abiertos"
-#: ../../godmode/wizards/HostDevices.class.php:1070
+#: ../../godmode/wizards/HostDevices.class.php:1066
msgid ""
"Targets will be scanned if at least one of defined ports (comma separated) is "
"open."
@@ -41605,11 +41872,11 @@ msgstr ""
"Los objetivos se escanearán si al menos uno de los puertos definidos "
"(separados por comas) está abierto."
-#: ../../godmode/wizards/HostDevices.class.php:1083
+#: ../../godmode/wizards/HostDevices.class.php:1079
msgid "Auto discover known hardware"
msgstr "Auto descubrir el hardware conocido"
-#: ../../godmode/wizards/HostDevices.class.php:1085
+#: ../../godmode/wizards/HostDevices.class.php:1081
msgid ""
"Targets will be monitorized based on its Private Enterprise Number. "
"Requires SNMP."
@@ -41617,12 +41884,12 @@ msgstr ""
"Los objetivos se monitorizarán en base a su Número de empresa privado. "
"Precisa de SNMP."
-#: ../../godmode/wizards/HostDevices.class.php:1100
+#: ../../godmode/wizards/HostDevices.class.php:1096
msgid "Module Host Alive will be added to discovered agents by default."
msgstr ""
"El módulo Host Alive se añadirá a los agentes descubiertos por defecto."
-#: ../../godmode/wizards/HostDevices.class.php:1148
+#: ../../godmode/wizards/HostDevices.class.php:1144
#, php-format
msgid ""
"Configured networks could generate %d agents, your license only allows %d, "
@@ -41631,20 +41898,20 @@ msgstr ""
"Las redes configuradas pueden generar %d agentes, su licencia solo permite %d, "
"'revisar resultados' es obligatorio."
-#: ../../godmode/wizards/HostDevices.class.php:1156
+#: ../../godmode/wizards/HostDevices.class.php:1152
#: ../../godmode/wizards/DiscoveryTaskList.class.php:917
msgid "Review results"
msgstr "Revisar resultados"
-#: ../../godmode/wizards/HostDevices.class.php:1158
+#: ../../godmode/wizards/HostDevices.class.php:1154
msgid "Targets must be validated by user before create agents."
msgstr "El usuario debe validar los objetivos antes de crear agentes"
-#: ../../godmode/wizards/HostDevices.class.php:1184
+#: ../../godmode/wizards/HostDevices.class.php:1180
msgid "Apply autoconfiguration rules"
msgstr "Aplicar normas de autoconfiguración"
-#: ../../godmode/wizards/HostDevices.class.php:1186
+#: ../../godmode/wizards/HostDevices.class.php:1182
msgid ""
"System is able to auto configure detected host & devices by applying your "
"defined configuration rules."
@@ -41652,19 +41919,19 @@ msgstr ""
"El sistema puede auto configurar el host y los dispositivos detectados "
"aplicando las normas de configuración."
-#: ../../godmode/wizards/HostDevices.class.php:1202
+#: ../../godmode/wizards/HostDevices.class.php:1198
msgid "SNMP enabled"
msgstr "SNMP activado"
-#: ../../godmode/wizards/HostDevices.class.php:1243
+#: ../../godmode/wizards/HostDevices.class.php:1239
msgid "Skip non-enabled interfaces"
msgstr "Omitir interfaces no habilitadas"
-#: ../../godmode/wizards/HostDevices.class.php:1262
+#: ../../godmode/wizards/HostDevices.class.php:1258
msgid "SNMP communities to try with"
msgstr "Comunidades SNMP con las que probar"
-#: ../../godmode/wizards/HostDevices.class.php:1264
+#: ../../godmode/wizards/HostDevices.class.php:1260
msgid ""
"You can specify several values, separated by commas, for example: public,"
"mysecret,1234"
@@ -41672,30 +41939,35 @@ msgstr ""
"Puede especificar varios valores, separados por coma, por ejemplo: public,"
"mysecret,1234"
-#: ../../godmode/wizards/HostDevices.class.php:1391
+#: ../../godmode/wizards/HostDevices.class.php:1387
msgid "OS detection"
msgstr "Detección de SO"
-#: ../../godmode/wizards/HostDevices.class.php:1403
+#: ../../godmode/wizards/HostDevices.class.php:1399
msgid "Name resolution"
msgstr "Resolución de nombres"
-#: ../../godmode/wizards/HostDevices.class.php:1414
+#: ../../godmode/wizards/HostDevices.class.php:1410
msgid "Parent detection"
msgstr "Detección de padres"
-#: ../../godmode/wizards/HostDevices.class.php:1425
+#: ../../godmode/wizards/HostDevices.class.php:1421
msgid "Parent recursion"
msgstr "Recursión del padre"
-#: ../../godmode/wizards/HostDevices.class.php:1436
+#: ../../godmode/wizards/HostDevices.class.php:1432
msgid "VLAN enabled"
msgstr "VLAN habilitada"
-#: ../../godmode/wizards/HostDevices.class.php:1447
+#: ../../godmode/wizards/HostDevices.class.php:1443
msgid "WMI enabled"
msgstr "WMI habilitado"
+#: ../../godmode/wizards/HostDevices.class.php:1590
+#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387
+msgid "Please select..."
+msgstr "Seleccione..."
+
#: ../../godmode/wizards/DiscoveryTaskList.class.php:259
msgid "Task successfully deleted"
msgstr "Tarea eliminada"
@@ -42008,6 +42280,7 @@ msgstr ""
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1865
#: ../../include/help/clippy/operation_agentes_ver_agente.php:40
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119
+#: ../../include/class/AgentDeployWizard.class.php:558
msgid "Done"
msgstr "Hecho"
@@ -42020,47 +42293,42 @@ msgstr "No iniciado"
msgid "Searching"
msgstr "Buscando"
-#: ../../godmode/servers/servers.build_table.php:122
+#: ../../godmode/servers/servers.build_table.php:124
+#: ../../mobile/operation/server_status.php:269
+#: ../../mobile/operation/server_status.php:307
+#: ../../mobile/operation/server_status.php:337
msgid "Server has crashed."
msgstr "El servidor se ha caído."
-#: ../../godmode/servers/servers.build_table.php:130
+#: ../../godmode/servers/servers.build_table.php:132
+#: ../../mobile/operation/server_status.php:275
+#: ../../mobile/operation/server_status.php:313
+#: ../../mobile/operation/server_status.php:343
msgid "Server is stopped."
msgstr "El servidor se ha parado."
-#: ../../godmode/servers/servers.build_table.php:142
+#: ../../godmode/servers/servers.build_table.php:144
msgid "Exec server enabled"
msgstr "Servidor de ejecución habilitado"
-#: ../../godmode/servers/servers.build_table.php:200
+#: ../../godmode/servers/servers.build_table.php:213
msgid "Manage Discovery tasks"
msgstr "Gestionar las tareas de Discovery"
-#: ../../godmode/servers/servers.build_table.php:214
+#: ../../godmode/servers/servers.build_table.php:227
msgid "Reset module status and fired alert counts"
msgstr "Reiniciar el estado de los módulos y el conteo de las alertas disparadas"
-#: ../../godmode/servers/servers.build_table.php:225
+#: ../../godmode/servers/servers.build_table.php:238
msgid "Claim back SNMP modules"
msgstr "Recuperar módulos SNMP"
-#: ../../godmode/servers/servers.build_table.php:249
-msgid "Manage satellite hosts"
-msgstr "Administrar hosts satélite"
-
#: ../../godmode/servers/modificar_server.php:50
msgid "Update Server"
msgstr "Actualizar el servidor"
-#: ../../godmode/servers/modificar_server.php:63
-#: ../../godmode/servers/modificar_server.php:222
-#: ../../godmode/servers/modificar_server.php:262
-#, php-format
-msgid "%s servers"
-msgstr "Servidores de %s"
-
#: ../../godmode/servers/modificar_server.php:73
-#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080
+#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072
#: ../../include/ajax/consoles.ajax.php:61
msgid "Standard"
msgstr "Estándar"
@@ -42089,34 +42357,35 @@ msgstr "Editor estándar"
msgid "Advanced editor"
msgstr "Editor avanzado"
-#: ../../godmode/servers/modificar_server.php:209
+#: ../../godmode/servers/modificar_server.php:210
+#: ../../godmode/servers/modificar_server.php:229
msgid "Remote Configuration"
msgstr "Configuración remota"
-#: ../../godmode/servers/modificar_server.php:235
+#: ../../godmode/servers/modificar_server.php:257
msgid "Dynamic search"
msgstr "Búsqueda dinámica"
-#: ../../godmode/servers/modificar_server.php:275
+#: ../../godmode/servers/modificar_server.php:297
#: ../../include/class/OrderInterpreter.class.php:247
msgid "Manage Servers"
msgstr "Gestionar servidores"
-#: ../../godmode/servers/modificar_server.php:287
-#: ../../godmode/servers/modificar_server.php:298
+#: ../../godmode/servers/modificar_server.php:309
+#: ../../godmode/servers/modificar_server.php:320
msgid "Successfully action"
msgstr "Acción procesada satisfactoriamente"
-#: ../../godmode/servers/modificar_server.php:329
+#: ../../godmode/servers/modificar_server.php:351
msgid "Server updated successfully"
msgstr "Servidor actualizado correctamente"
-#: ../../godmode/servers/modificar_server.php:331
+#: ../../godmode/servers/modificar_server.php:353
msgid "There was a problem updating the server"
msgstr "Hubo un problema al actualizar el servidor"
#: ../../godmode/servers/plugin_registration.php:58
-#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751
+#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743
msgid "To manage plugin you must activate centralized management"
msgstr "Active la gestión centralizada para gestionar el plugin"
@@ -42126,7 +42395,7 @@ msgstr "REGISTRO DE PLUGINS"
#: ../../godmode/servers/plugin_registration.php:77
msgid "Register plugin"
-msgstr "Registrar Plugin"
+msgstr "Registrar plugin"
#: ../../godmode/servers/plugin_registration.php:86
#, php-format
@@ -42137,55 +42406,66 @@ msgstr ""
"La consola no administra este entorno, gestione esta funcionalidad desde la "
"funcionalidad desde %s."
-#: ../../godmode/servers/plugin_registration.php:105
+#: ../../godmode/servers/plugin_registration.php:101
msgid "Plugin Registration"
msgstr "Registro de puglins"
-#: ../../godmode/servers/plugin_registration.php:113
+#: ../../godmode/servers/plugin_registration.php:107
+msgid ""
+"This extension makes registering server plugins an easier task. Here you can "
+"upload a server plugin in .pspz zipped format. Please refer to the official "
+"documentation on how to obtain and use Server Plugins."
+msgstr ""
+"Esta extensión facilita el registro de los plugins de servidor. Aquí puede "
+"subir un plugin de servidor en formato .pspz comprimido. Consulte la "
+"documentación oficial para saber como obtener y utilizar los plugins de "
+"servidor."
+
+#: ../../godmode/servers/plugin_registration.php:109
msgid "You can get more plugins in our"
msgstr "Puede encontrar más plugins en nuestra"
-#: ../../godmode/servers/plugin_registration.php:115
+#: ../../godmode/servers/plugin_registration.php:111
msgid "Public Resource Library"
msgstr "Biblioteca de Recursos Públicos"
-#: ../../godmode/servers/plugin_registration.php:143
+#: ../../godmode/servers/plugin_registration.php:139
msgid "Failed to create temporary directory"
msgstr "Error al crear un directorio temporal"
-#: ../../godmode/servers/plugin_registration.php:162
+#: ../../godmode/servers/plugin_registration.php:158
msgid "Cannot load INI file"
msgstr "No se puede abrir el archivo .INI"
-#: ../../godmode/servers/plugin_registration.php:187
+#: ../../godmode/servers/plugin_registration.php:183
msgid "Plugin exec not found. Aborting!"
msgstr "Plugin de ejecución no encontrado. ¡Deteniendo el proceso!"
-#: ../../godmode/servers/plugin_registration.php:198
+#: ../../godmode/servers/plugin_registration.php:194
msgid "Plugin already registered. Aborting!"
msgstr "El plugin ya está registrado. ¡Deteniendo el proceso!"
-#: ../../godmode/servers/plugin_registration.php:365
+#: ../../godmode/servers/plugin_registration.php:361
msgid "Plug-in Remote Registered unsuccessfull"
msgstr "Error al registrar el plugin remoto"
-#: ../../godmode/servers/plugin_registration.php:368
+#: ../../godmode/servers/plugin_registration.php:364
msgid "Please check the syntax of file \"plugin_definition.ini\""
msgstr "Por favor, comprueba la sintaxis del archivo \"plugin_definition.ini\"."
-#: ../../godmode/servers/plugin_registration.php:508
+#: ../../godmode/servers/plugin_registration.php:504
msgid "Module plugin registered"
msgstr "Plugin de módulo registrado"
-#: ../../godmode/servers/plugin_registration.php:513
+#: ../../godmode/servers/plugin_registration.php:509
msgid "Registered successfully"
msgstr "Registrado correctamente"
-#: ../../godmode/servers/plugin_registration.php:526
+#: ../../godmode/servers/plugin_registration.php:522
msgid "Unable to uncompress uploaded file"
msgstr "No se puede descomprimir el archivo cargado"
-#: ../../godmode/servers/plugin_registration.php:544
+#: ../../godmode/servers/plugin_registration.php:540
#, php-format
msgid "Cannot move uploaded file to %s."
msgstr "No se puede mover el archivo cargado a %s."
@@ -42194,15 +42474,15 @@ msgstr "No se puede mover el archivo cargado a %s."
msgid "Network Components"
msgstr "Componentes de red"
-#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775
+#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767
msgid "Attachments"
msgstr "Archivos adjuntos"
-#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785
+#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777
msgid "Index of attachment/plugin"
msgstr "Índice de archivo adjunto/plugin"
-#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788
+#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780
#, php-format
msgid "Plug-ins registered on %s"
msgstr "Plugins registrados en %s"
@@ -42211,7 +42491,7 @@ msgstr "Plugins registrados en %s"
msgid "Plugin update"
msgstr "Actualización de plugin"
-#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815
+#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807
msgid ""
"This console is not manager of this environment,\n"
" \t\tplease manage this feature from centralized manager console "
@@ -42221,7 +42501,7 @@ msgstr ""
" \t\tadministre esta funcionalidad desde el administrador centralizado "
"de la consola (Metaconsola)."
-#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080
+#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072
msgid "Nagios"
msgstr "Nagios"
@@ -42266,74 +42546,78 @@ msgstr ""
msgid "Plug-in parameters"
msgstr "Parámetros del plugin"
-#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689
+#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681
msgid "Parameters macros"
msgstr "Macros de los parámetros"
#: ../../godmode/servers/plugin.php:585
-#: ../../include/class/ManageNetScanScripts.class.php:675
+#: ../../include/class/ManageNetScanScripts.class.php:671
msgid "Hide value"
msgstr "Ocultar valor"
#: ../../godmode/servers/plugin.php:596
-#: ../../include/class/ManageNetScanScripts.class.php:677
+#: ../../include/class/ManageNetScanScripts.class.php:673
msgid "This field will show up as dots like a password"
msgstr "En este campo aparecerán puntos como en un campo de tipo contraseña."
-#: ../../godmode/servers/plugin.php:824
+#: ../../godmode/servers/plugin.php:655
+msgid "Remove macro"
+msgstr "Eliminar macro"
+
+#: ../../godmode/servers/plugin.php:816
msgid "You need to create your own plugins with Windows compatibility"
msgstr "Necesitas crear tus propios plugins compatibles con Windows."
-#: ../../godmode/servers/plugin.php:890
+#: ../../godmode/servers/plugin.php:882
msgid "Problem updating plugin"
msgstr "Problema al actualizar el plugin"
-#: ../../godmode/servers/plugin.php:892
+#: ../../godmode/servers/plugin.php:884
msgid "Plugin updated successfully"
msgstr "Plugin actualizado correctamente"
-#: ../../godmode/servers/plugin.php:950
+#: ../../godmode/servers/plugin.php:942
msgid "Problem creating plugin"
msgstr "Error al crear plugin"
-#: ../../godmode/servers/plugin.php:952
+#: ../../godmode/servers/plugin.php:944
msgid "Plugin created successfully"
msgstr "Plugin creado correctamente"
-#: ../../godmode/servers/plugin.php:964
+#: ../../godmode/servers/plugin.php:956
msgid "Problem deleting plugin"
msgstr "Error al borrar plugin"
-#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978
+#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970
msgid "Plugin deleted successfully"
msgstr "Plugin borrado correctamente"
-#: ../../godmode/servers/plugin.php:1034
+#: ../../godmode/servers/plugin.php:1026
msgid "Lock"
msgstr "Bloqueo"
-#: ../../godmode/servers/plugin.php:1062
+#: ../../godmode/servers/plugin.php:1054
msgid "All the modules that are using this plugin will be deleted"
msgstr "Todos los módulos que estén utilizando este plugin se borrarán."
-#: ../../godmode/servers/plugin.php:1096
+#: ../../godmode/servers/plugin.php:1088
msgid "There are no plugins in the system"
msgstr "No hay plugins en el sistema"
-#: ../../godmode/servers/plugin.php:1104
+#: ../../godmode/servers/plugin.php:1096
msgid "Add plugin"
msgstr "Añadir plugin"
-#: ../../godmode/servers/plugin.php:1117
+#: ../../godmode/servers/plugin.php:1109
#, php-format
msgid "List of modules and components created by \"%s\" "
msgstr "Lista de los módulos y componentes creados por '%s' "
-#: ../../godmode/servers/plugin.php:1221
+#: ../../godmode/servers/plugin.php:1213
msgid "Some modules or components are using the plugin"
msgstr "Algunos módulos o componentes están usando el plugin."
-#: ../../godmode/servers/plugin.php:1222
+#: ../../godmode/servers/plugin.php:1214
msgid ""
"The modules or components should be updated manually or using the bulk "
"operations for plugins after this change"
@@ -42341,11 +42625,11 @@ msgstr ""
"Los módulos o componentes deberían ser actualizados manualmente o usando las "
"operaciones masivas para los plugins después de este cambio."
-#: ../../godmode/servers/plugin.php:1224
+#: ../../godmode/servers/plugin.php:1216
msgid "Are you sure you want to perform this action?"
msgstr "¿Estás seguro de que quieres realizar esta acción?"
-#: ../../godmode/servers/plugin.php:1233
+#: ../../godmode/servers/plugin.php:1225
msgid ""
"The plugin macros cannot be updated because some modules or components are "
"using the plugin"
@@ -42390,37 +42674,37 @@ msgstr ""
"Este nodo esta configurado con el modo centralizado. Toda la información de "
"las políticas está en modo lectura. Vaya a %s para administrarlo."
-#: ../../godmode/tag/tag.php:302
+#: ../../godmode/tag/tag.php:303
msgid "Tag name"
msgstr "Nombre de etiqueta"
-#: ../../godmode/tag/tag.php:304
+#: ../../godmode/tag/tag.php:305
msgid "Detail information"
msgstr "Información de los detalles"
-#: ../../godmode/tag/tag.php:305
+#: ../../godmode/tag/tag.php:306
msgid "Number of modules affected"
msgstr "Número de módulos afectados"
-#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233
+#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237
msgid "Phone"
msgstr "Teléfono"
-#: ../../godmode/tag/tag.php:336
+#: ../../godmode/tag/tag.php:337
msgid "Tag details"
msgstr "Detalles de la etiqueta"
-#: ../../godmode/tag/tag.php:369
+#: ../../godmode/tag/tag.php:370
#, php-format
msgid "Emails for the tag: %s"
msgstr "Correos para la etiqueta: %s"
-#: ../../godmode/tag/tag.php:392
+#: ../../godmode/tag/tag.php:393
#, php-format
msgid "Phones for the tag: %s"
msgstr "Teléfonos par la etiqueta: %s"
-#: ../../godmode/tag/tag.php:455
+#: ../../godmode/tag/tag.php:456
msgid "Create tag"
msgstr "Crear etiqueta"
@@ -42436,25 +42720,25 @@ msgstr "Etiqueta actualizada correctamente"
msgid "Error updating tag"
msgstr "Error al actualizar la etiqueta"
-#: ../../godmode/tag/edit_tag.php:160
+#: ../../godmode/tag/edit_tag.php:163
msgid "Successfully created tag"
msgstr "Etiqueta creada correctamente"
-#: ../../godmode/tag/edit_tag.php:161
+#: ../../godmode/tag/edit_tag.php:164
msgid "Error creating tag"
msgstr "Error al crear etiqueta"
-#: ../../godmode/tag/edit_tag.php:213
+#: ../../godmode/tag/edit_tag.php:217
msgid "Hyperlink to help information that has to exist previously."
msgstr "Hipervínculo a la información de ayuda que debe existir previamente"
-#: ../../godmode/tag/edit_tag.php:225
+#: ../../godmode/tag/edit_tag.php:229
msgid "Associated Email direction to use later in alerts associated to Tags."
msgstr ""
"Direccion de email asociada para utilizarla después en alertas asociadas a "
"etiquetas"
-#: ../../godmode/tag/edit_tag.php:234
+#: ../../godmode/tag/edit_tag.php:238
msgid "Associated phone number to use later in alerts associated to Tags."
msgstr ""
"Número de teléfono asociado para usar posteriormente en alertas asociadas a "
@@ -42569,7 +42853,7 @@ msgstr "Error al cargar los resultados"
msgid "Pandora FMS %s - Build %s"
msgstr "Pandora FMS %s - Revisión %s"
-#: ../../mobile/include/system.class.php:156
+#: ../../mobile/include/system.class.php:175
msgid ""
"Access to this page is restricted to authorized users only, please contact "
"your system administrator if you should need help."
@@ -42578,7 +42862,8 @@ msgstr ""
"autorizados. Póngase en contacto con el administrador de sistemas si necesita "
"ayuda."
-#: ../../mobile/include/system.class.php:156
+#: ../../mobile/include/system.class.php:175
+#: ../../mobile/include/system.class.php:181
#, php-format
msgid ""
"Please remember that any attempts to access this page will be recorded on the "
@@ -42587,6 +42872,14 @@ msgstr ""
"Recuerde que cualquier intento de acceso a esta página quedara grabado en la "
"base de datos del sistema de %s."
+#: ../../mobile/include/system.class.php:181
+msgid ""
+"Invalid license, please contact your system administrator if you should need "
+"help."
+msgstr ""
+"Licencia no válida, póngase en contacto con el administrador de sistemas si "
+"necesita ayuda."
+
#: ../../mobile/include/ui.class.php:120
#, php-format
msgid "%s mobile"
@@ -42597,7 +42890,7 @@ msgstr "%s móvil"
msgid "%s : Mobile"
msgstr "%s : Móvil"
-#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161
+#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180
msgid "Home"
msgstr "Inicio"
@@ -42606,27 +42899,27 @@ msgstr "Inicio"
msgid "%s %s - Build %s"
msgstr "%s %s - Desarrollo %s"
-#: ../../mobile/include/ui.class.php:773
+#: ../../mobile/include/ui.class.php:803
msgid "Not found header."
msgstr "Encabezado no encontrado"
-#: ../../mobile/include/ui.class.php:775
+#: ../../mobile/include/ui.class.php:805
msgid "Not found content."
msgstr "Contenido no encontrado."
-#: ../../mobile/include/ui.class.php:777
+#: ../../mobile/include/ui.class.php:807
msgid "Not found footer."
msgstr "Pie de página no encontrado"
-#: ../../mobile/include/ui.class.php:779
+#: ../../mobile/include/ui.class.php:809
msgid "Incorrect form."
msgstr "Forma incorrecta"
-#: ../../mobile/include/ui.class.php:781
+#: ../../mobile/include/ui.class.php:811
msgid "Incorrect grid."
msgstr "Matriz incorrecta"
-#: ../../mobile/include/ui.class.php:783
+#: ../../mobile/include/ui.class.php:813
msgid "Incorrect collapsible."
msgstr "Plegable incorrecto"
@@ -42668,52 +42961,62 @@ msgstr "Usuario no encontrado en la base de datos o contraseña incorrecta"
msgid "Login out"
msgstr "Cerrar sesión"
-#: ../../mobile/include/user.class.php:391
+#: ../../mobile/include/user.class.php:445
msgid "user"
msgstr "Usuario"
-#: ../../mobile/include/user.class.php:398
+#: ../../mobile/include/user.class.php:453
msgid "password"
msgstr "contraseña"
-#: ../../mobile/include/user.class.php:488
-#: ../../mobile/include/user.class.php:489
+#: ../../mobile/include/user.class.php:589
msgid "Authenticator code"
msgstr "Código de autentificación"
-#: ../../mobile/operation/agents.php:218
+#: ../../mobile/operation/agents.php:219
#, php-format
msgid "Filter Agents by %s"
msgstr "Filtros de agentes por %s"
-#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325
-#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009
+#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325
+#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053
msgid "Apply Filter"
msgstr "Aplicar el filtro"
-#: ../../mobile/operation/agents.php:454
+#: ../../mobile/operation/agents.php:459
msgid "No agents"
msgstr "Sin agentes"
-#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885
-#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450
+#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981
+#: ../../mobile/operation/alerts.php:388
+#: ../../mobile/operation/module_data.php:299
+#: ../../mobile/operation/events.php:1575
+#: ../../mobile/operation/server_status.php:501
msgid "(Default)"
msgstr "(Por defecto)"
-#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891
-#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483
+#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987
+#: ../../mobile/operation/alerts.php:401
+#: ../../mobile/operation/module_data.php:305
+#: ../../mobile/operation/events.php:1608
+#: ../../mobile/operation/server_status.php:507
#, php-format
msgid "Group: %s"
msgstr "Grupo: %s"
-#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913
-#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503
+#: ../../mobile/operation/agents.php:574 ../../mobile/operation/modules.php:1009
+#: ../../mobile/operation/alerts.php:408
+#: ../../mobile/operation/module_data.php:327
+#: ../../mobile/operation/events.php:1628
+#: ../../mobile/operation/server_status.php:529
#, php-format
msgid "Status: %s"
msgstr "Estado: %s"
-#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920
-#: ../../mobile/operation/alerts.php:406
+#: ../../mobile/operation/agents.php:581 ../../mobile/operation/modules.php:1016
+#: ../../mobile/operation/alerts.php:415
+#: ../../mobile/operation/module_data.php:334
+#: ../../mobile/operation/server_status.php:536
#, php-format
msgid "Free Search: %s"
msgstr "Búsqueda libre: %s"
@@ -42723,20 +43026,28 @@ msgstr "Búsqueda libre: %s"
msgid "Filter Modules by %s"
msgstr "Filtrar módulos por %s"
-#: ../../mobile/operation/modules.php:659
+#: ../../mobile/operation/modules.php:670
msgid "Interval."
msgstr "Intervalo"
-#: ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/modules.php:672
msgid "Last update."
msgstr "Última actualización"
-#: ../../mobile/operation/modules.php:906
+#: ../../mobile/operation/modules.php:850
+msgid "Choose option"
+msgstr "Seleccionar opción"
+
+#: ../../mobile/operation/modules.php:1002
+#: ../../mobile/operation/module_data.php:320
+#: ../../mobile/operation/server_status.php:522
#, php-format
msgid "Module group: %s"
msgstr "Grupos de módulos: %s"
-#: ../../mobile/operation/modules.php:928
+#: ../../mobile/operation/modules.php:1024
+#: ../../mobile/operation/module_data.php:342
+#: ../../mobile/operation/server_status.php:544
#, php-format
msgid "Tag: %s"
msgstr "Etiqueta: %s"
@@ -42746,20 +43057,29 @@ msgstr "Etiqueta: %s"
msgid "Visual consoles"
msgstr "Consola visual"
-#: ../../mobile/operation/agent.php:162
+#: ../../mobile/operation/home.php:95
+#: ../../mobile/operation/server_status.php:227
+msgid "Server status"
+msgstr "Estado del servidor"
+
+#: ../../mobile/operation/services.php:139
+msgid "No services found"
+msgstr "No se han encontrado servicios"
+
+#: ../../mobile/operation/agent.php:168
msgid "No agent found"
msgstr "No se han encontrado agentes"
-#: ../../mobile/operation/agent.php:238
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588
+#: ../../mobile/operation/agent.php:241
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589
msgid "Modules by status"
msgstr "Módulos por estado"
-#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:724
+#: ../../mobile/operation/agent.php:271 ../../include/functions_treeview.php:728
msgid "Events (24h)"
msgstr "Eventos (24h)"
-#: ../../mobile/operation/agent.php:369
+#: ../../mobile/operation/agent.php:372
#, php-format
msgid "Last %s Events"
msgstr "Últimos %s eventos"
@@ -42769,15 +43089,22 @@ msgstr "Últimos %s eventos"
msgid "Filter Alerts by %s"
msgstr "Filtros de alertas por %s"
-#: ../../mobile/operation/alerts.php:346
+#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337
+#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344
+#: ../../mobile/operation/alerts.php:347
+msgid "Module/Agent"
+msgstr "Agente/módulo"
+
+#: ../../mobile/operation/alerts.php:353
msgid "Last Fired"
msgstr "Última vez que se disparó"
-#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508
+#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509
+#: ../../operation/events/sound_events.php:394
msgid "No alerts"
msgstr "Sin alertas"
-#: ../../mobile/operation/alerts.php:385
+#: ../../mobile/operation/alerts.php:394
#, php-format
msgid "Standby: %s"
msgstr "Standby: %s"
@@ -42790,128 +43117,155 @@ msgstr "Todas las consolas visuales"
msgid "Favourite visual consoles"
msgstr "Consolas visuales favoritas"
-#: ../../mobile/operation/visualmaps.php:263
-msgid "No maps defined"
-msgstr "No hay mapas definidos"
+#: ../../mobile/operation/visualmaps.php:265
+msgid "There are no favorite maps to show"
+msgstr "No hay mapas famritos que mostrar"
-#: ../../mobile/operation/module_graph.php:359
-#: ../../mobile/operation/module_graph.php:372
+#: ../../mobile/operation/module_data.php:125
+msgid "Module data"
+msgstr "Datos del módulo"
+
+#: ../../mobile/operation/module_data.php:184
+#: ../../include/graphs/functions_flot.php:515
+#: ../../include/functions_reporting_html.php:663
+#: ../../include/functions_reporting_html.php:4709
+#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832
+#: ../../include/functions_treeview.php:299
+msgid "No data"
+msgstr "Sin datos"
+
+#: ../../mobile/operation/module_graph.php:360
+#: ../../mobile/operation/module_graph.php:373
#, php-format
msgid "%s: %s"
msgstr "%s: %s"
-#: ../../mobile/operation/module_graph.php:405
+#: ../../mobile/operation/module_graph.php:406
#, php-format
msgid "Options for %s : %s"
msgstr "Opciones para %s: %s"
-#: ../../mobile/operation/module_graph.php:412
+#: ../../mobile/operation/module_graph.php:413
msgid "Show Alerts"
msgstr "Mostrar alertas"
-#: ../../mobile/operation/module_graph.php:420
+#: ../../mobile/operation/module_graph.php:421
msgid "Show Events"
msgstr "Mostrar eventos"
-#: ../../mobile/operation/module_graph.php:428
-#: ../../operation/agentes/stat_win.php:377
-#: ../../operation/agentes/stat_win.php:439
+#: ../../mobile/operation/module_graph.php:429
+#: ../../operation/agentes/stat_win.php:385
+#: ../../operation/agentes/stat_win.php:455
msgid "Time compare (Separated)"
msgstr "Comparación de tiempo (por separado)"
-#: ../../mobile/operation/module_graph.php:444
-#: ../../operation/agentes/stat_win.php:317
+#: ../../mobile/operation/module_graph.php:445
+#: ../../operation/agentes/stat_win.php:325
msgid "Show unknown graph"
msgstr "Mostrar gráficos desconocidos"
-#: ../../mobile/operation/module_graph.php:449
+#: ../../mobile/operation/module_graph.php:450
msgid "Time range (hours)"
msgstr "Rango de tiempo (horas)"
-#: ../../mobile/operation/module_graph.php:461
+#: ../../mobile/operation/module_graph.php:462
#: ../../operation/agentes/stat_win.php:289
-#: ../../operation/agentes/stat_win.php:408
+#: ../../operation/agentes/stat_win.php:416
#: ../../operation/agentes/interface_traffic_graph_win.php:183
#: ../../operation/agentes/graphs.php:222
#: ../../operation/agentes/exportdata.php:393
msgid "Begin date"
msgstr "Fecha de inicio"
-#: ../../mobile/operation/module_graph.php:468
+#: ../../mobile/operation/module_graph.php:469
msgid "Update graph"
msgstr "Actualizar gráfico"
-#: ../../mobile/operation/module_graph.php:478
+#: ../../mobile/operation/module_graph.php:479
msgid "Error get the graph"
msgstr "Error al obtener el gráfico"
-#: ../../mobile/operation/events.php:450
+#: ../../mobile/operation/events.php:442
#: ../../include/functions_reporting_html.php:1095
#: ../../include/functions_reporting_html.php:1337
-#: ../../include/functions_reporting_html.php:2658
+#: ../../include/functions_reporting_html.php:2677
#: ../../include/functions_events.php:2571
-#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779
+#: ../../include/functions_events.php:4747 ../../operation/events/events.php:784
msgid "New event"
msgstr "Nuevo evento"
-#: ../../mobile/operation/events.php:455
+#: ../../mobile/operation/events.php:447
#: ../../include/functions_reporting_html.php:1084
#: ../../include/functions_reporting_html.php:1342
-#: ../../include/functions_reporting_html.php:2663
+#: ../../include/functions_reporting_html.php:2682
#: ../../include/functions_events.php:2576
-#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792
+#: ../../include/functions_events.php:4753 ../../operation/events/events.php:797
msgid "Event validated"
msgstr "Evento validado"
-#: ../../mobile/operation/events.php:460
+#: ../../mobile/operation/events.php:452
#: ../../include/functions_reporting_html.php:1089
#: ../../include/functions_reporting_html.php:1347
-#: ../../include/functions_reporting_html.php:2668
+#: ../../include/functions_reporting_html.php:2687
#: ../../include/functions_events.php:2581
-#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804
+#: ../../include/functions_events.php:4759 ../../operation/events/events.php:809
msgid "Event in process"
msgstr "Evento en proceso"
-#: ../../mobile/operation/events.php:768
+#: ../../mobile/operation/events.php:797
msgid "ERROR: Event detail"
msgstr "ERROR: detalles del evento"
-#: ../../mobile/operation/events.php:769
+#: ../../mobile/operation/events.php:798
msgid "Error connecting to DB."
msgstr "Error al conectar con la base de datos"
-#: ../../mobile/operation/events.php:789
+#: ../../mobile/operation/events.php:818
msgid "Event detail"
msgstr "Detalles del evento"
-#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4895
+#: ../../mobile/operation/events.php:829 ../../include/functions_events.php:4900
msgid "Event ID"
msgstr "ID del evento"
-#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:5013
+#: ../../mobile/operation/events.php:857 ../../include/functions_events.php:5018
msgid "Acknowledged by"
msgstr "Admitido por"
-#: ../../mobile/operation/events.php:878
+#: ../../mobile/operation/events.php:894 ../../include/functions_events.php:3275
+#: ../../include/functions_events.php:3548
+#: ../../include/functions_events.php:3557
+msgid "In process"
+msgstr "En proceso"
+
+#: ../../mobile/operation/events.php:915
msgid "Sucessful validate"
msgstr "Validación correcta"
-#: ../../mobile/operation/events.php:880
+#: ../../mobile/operation/events.php:917
msgid "Fail validate"
msgstr "Validación fallida"
+#: ../../mobile/operation/events.php:922
+msgid "Sucessful in process"
+msgstr "Proceso correcto"
+
#: ../../mobile/operation/events.php:924
+msgid "Fail in process"
+msgstr "Error en proceso"
+
+#: ../../mobile/operation/events.php:968
#, php-format
msgid "Filter Events by %s"
msgstr "Filtrar eventos por %s"
-#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935
+#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979
msgid "Preset Filters"
msgstr "Fijar los filtros"
-#: ../../mobile/operation/events.php:1144
-#: ../../include/functions_reporting_html.php:6176
-#: ../../include/functions_reporting_html.php:6335
+#: ../../mobile/operation/events.php:1191
+#: ../../include/functions_reporting_html.php:6210
+#: ../../include/functions_reporting_html.php:6369
#: ../../include/functions_reporting.php:2189
#: ../../include/functions_reporting.php:2564
#: ../../include/functions_events.php:2497
@@ -42919,31 +43273,35 @@ msgstr "Fijar los filtros"
msgid "No events"
msgstr "No hay eventos"
-#: ../../mobile/operation/events.php:1455
+#: ../../mobile/operation/events.php:1580
#, php-format
msgid "Filter: %s"
msgstr "Filtro: %s"
-#: ../../mobile/operation/events.php:1467
+#: ../../mobile/operation/events.php:1592
#, php-format
msgid "Severity: %s"
msgstr "Gravedad: %s"
-#: ../../mobile/operation/events.php:1496
+#: ../../mobile/operation/events.php:1621
#, php-format
msgid "Type: %s"
msgstr "Tipo: %s"
-#: ../../mobile/operation/events.php:1510
+#: ../../mobile/operation/events.php:1635
#, php-format
msgid "Free search: %s"
msgstr "Búsqueda libre: %s"
-#: ../../mobile/operation/events.php:1517
+#: ../../mobile/operation/events.php:1642
#, php-format
msgid "Hours: %s"
msgstr "Horas: %s"
+#: ../../mobile/operation/server_status.php:371
+msgid "No servers"
+msgstr "No hay servidores"
+
#: ../../mobile/operation/tactical.php:216
msgid "Last activity"
msgstr "Última actividad"
@@ -42972,167 +43330,163 @@ msgstr ""
msgid "Border color"
msgstr "Color del borde"
-#: ../../include/functions_visual_map_editor.php:151
+#: ../../include/functions_visual_map_editor.php:149
msgid "Border width"
msgstr "Ancho del borde"
-#: ../../include/functions_visual_map_editor.php:160
+#: ../../include/functions_visual_map_editor.php:158
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364
msgid "Fill color"
msgstr "Color de relleno"
-#: ../../include/functions_visual_map_editor.php:239
+#: ../../include/functions_visual_map_editor.php:235
msgid ""
"Scroll the mouse wheel over the label editor to change the background color"
msgstr ""
"Desliza la rueda del ratón sobre el editor de etiquetas para cambiar el color "
"de fondo."
-#: ../../include/functions_visual_map_editor.php:255
+#: ../../include/functions_visual_map_editor.php:251
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333
msgid "Clock animation"
msgstr "Animación de reloj"
-#: ../../include/functions_visual_map_editor.php:258
+#: ../../include/functions_visual_map_editor.php:254
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328
msgid "Simple analogic"
msgstr "Analógico"
-#: ../../include/functions_visual_map_editor.php:259
+#: ../../include/functions_visual_map_editor.php:255
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329
msgid "Simple digital"
msgstr "Digital"
-#: ../../include/functions_visual_map_editor.php:273
+#: ../../include/functions_visual_map_editor.php:269
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351
msgid "Time format"
msgstr "Formato de hora"
-#: ../../include/functions_visual_map_editor.php:276
+#: ../../include/functions_visual_map_editor.php:272
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346
msgid "Only time"
msgstr "Solo la hora"
-#: ../../include/functions_visual_map_editor.php:277
+#: ../../include/functions_visual_map_editor.php:273
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347
msgid "Time and date"
msgstr "Hora y fecha"
-#: ../../include/functions_visual_map_editor.php:329
+#: ../../include/functions_visual_map_editor.php:325
msgid "Enable link"
msgstr "Activar enlace"
-#: ../../include/functions_visual_map_editor.php:350
+#: ../../include/functions_visual_map_editor.php:346
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508
msgid "White"
msgstr "Blanco"
-#: ../../include/functions_visual_map_editor.php:351
+#: ../../include/functions_visual_map_editor.php:347
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509
msgid "Black"
msgstr "Negro"
-#: ../../include/functions_visual_map_editor.php:352
+#: ../../include/functions_visual_map_editor.php:348
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510
msgid "Transparent"
msgstr "Transparente"
-#: ../../include/functions_visual_map_editor.php:378
+#: ../../include/functions_visual_map_editor.php:374
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402
msgid "Grid color"
msgstr "Color de cuadrícula"
-#: ../../include/functions_visual_map_editor.php:498
+#: ../../include/functions_visual_map_editor.php:492
msgid "Data image"
msgstr "Datos en imagen"
-#: ../../include/functions_visual_map_editor.php:503
+#: ../../include/functions_visual_map_editor.php:498
msgid "Resume data color"
msgstr "Color de la leyenda"
-#: ../../include/functions_visual_map_editor.php:517
+#: ../../include/functions_visual_map_editor.php:511
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274
msgid "24h"
msgstr "24h"
-#: ../../include/functions_visual_map_editor.php:518
+#: ../../include/functions_visual_map_editor.php:512
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276
msgid "8h"
msgstr "8h"
-#: ../../include/functions_visual_map_editor.php:519
+#: ../../include/functions_visual_map_editor.php:513
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
msgid "2h"
msgstr "2h"
-#: ../../include/functions_visual_map_editor.php:520
+#: ../../include/functions_visual_map_editor.php:514
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278
msgid "1h"
msgstr "1h"
-#: ../../include/functions_visual_map_editor.php:524
+#: ../../include/functions_visual_map_editor.php:518
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282
msgid "Max. Time"
msgstr "Tiempo máximo"
-#: ../../include/functions_visual_map_editor.php:640
+#: ../../include/functions_visual_map_editor.php:634
msgid "Original Size"
msgstr "Tamaño original"
-#: ../../include/functions_visual_map_editor.php:648
+#: ../../include/functions_visual_map_editor.php:654
msgid "Aspect ratio"
msgstr "Relación de aspecto"
-#: ../../include/functions_visual_map_editor.php:649
+#: ../../include/functions_visual_map_editor.php:657
msgid "Proportional Width"
msgstr "Ancho proporcional"
-#: ../../include/functions_visual_map_editor.php:657
+#: ../../include/functions_visual_map_editor.php:677
msgid "Height proportional"
msgstr "Altura proporcional"
-#: ../../include/functions_visual_map_editor.php:668
-msgid "Widtzzzzh"
-msgstr "Ancho"
-
-#: ../../include/functions_visual_map_editor.php:686
-#: ../../include/functions_visual_map.php:4190
+#: ../../include/functions_visual_map_editor.php:736
+#: ../../include/functions_visual_map.php:4199
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
-#: ../../include/rest-api/models/VisualConsole/Item.php:2124
+#: ../../include/rest-api/models/VisualConsole/Item.php:2127
msgid "Circular progress bar"
msgstr "Barra de progreso circular"
-#: ../../include/functions_visual_map_editor.php:687
-#: ../../include/functions_visual_map.php:4195
+#: ../../include/functions_visual_map_editor.php:737
+#: ../../include/functions_visual_map.php:4204
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-#: ../../include/rest-api/models/VisualConsole/Item.php:2128
+#: ../../include/rest-api/models/VisualConsole/Item.php:2131
msgid "Circular progress bar (interior)"
msgstr "Barra de progreso circular (interior)"
-#: ../../include/functions_visual_map_editor.php:737
+#: ../../include/functions_visual_map_editor.php:787
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522
msgid "Element color"
msgstr "Color del elemento"
-#: ../../include/functions_visual_map_editor.php:757
+#: ../../include/functions_visual_map_editor.php:802
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534
msgid "Value color"
msgstr "Color del valor"
-#: ../../include/functions_visual_map_editor.php:799
+#: ../../include/functions_visual_map_editor.php:839
msgid "Diameter"
msgstr "Diámetro"
-#: ../../include/functions_visual_map_editor.php:806
+#: ../../include/functions_visual_map_editor.php:846
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426
msgid "Default color"
msgstr "Color predeterminado"
-#: ../../include/functions_visual_map_editor.php:810
+#: ../../include/functions_visual_map_editor.php:850
msgid ""
"The color of the element will be the one selected in the first range created "
"in which the value of the module is found (with the initial and final values "
@@ -43142,32 +43496,32 @@ msgstr ""
"el que se encuentra el valor del módulo (con los valores iniciales y finales "
"del intervalo incluidos)"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "Ranges"
msgstr "Intervalos"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "From value"
msgstr "Desde el valor"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "To value"
msgstr "Hasta el valor"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
#: ../../include/rest-api/index.php:379
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942
msgid "Color"
msgstr "Color"
-#: ../../include/functions_visual_map_editor.php:818
+#: ../../include/functions_visual_map_editor.php:859
msgid "Always show on top"
msgstr "Mostrar siempre arriba"
-#: ../../include/functions_visual_map_editor.php:819
+#: ../../include/functions_visual_map_editor.php:861
msgid ""
"It allows the element to be superimposed to the rest of items of the visual "
"console"
@@ -43175,61 +43529,61 @@ msgstr ""
"Permite que el elemento se superponga al resto de los elementos de la consola "
"visual"
-#: ../../include/functions_visual_map_editor.php:822
+#: ../../include/functions_visual_map_editor.php:870
#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404
msgid "Hide last value on boolean modules"
msgstr "Ocultar el último valor en módulos boleanos"
-#: ../../include/functions_visual_map_editor.php:828
+#: ../../include/functions_visual_map_editor.php:876
msgid "Show last value"
msgstr "Mostrar último valor"
-#: ../../include/functions_visual_map_editor.php:932
+#: ../../include/functions_visual_map_editor.php:980
msgid "For use the original image file size, set 0 width and 0 height."
msgstr ""
"Para usar el tamaño original de la imagen, configura en 0 el ancho y en 0 el "
"alto."
-#: ../../include/functions_visual_map_editor.php:972
-#: ../../include/rest-api/models/VisualConsole/Item.php:2439
+#: ../../include/functions_visual_map_editor.php:1020
+#: ../../include/rest-api/models/VisualConsole/Item.php:2442
msgid "Linked visual console"
msgstr "Consola visual enlazada"
-#: ../../include/functions_visual_map_editor.php:1079
-#: ../../include/rest-api/models/VisualConsole/Item.php:2490
+#: ../../include/functions_visual_map_editor.php:1131
+#: ../../include/rest-api/models/VisualConsole/Item.php:2493
msgid "By status weight"
msgstr "Por peso de estadp"
-#: ../../include/functions_visual_map_editor.php:1080
-#: ../../include/rest-api/models/VisualConsole/Item.php:2491
+#: ../../include/functions_visual_map_editor.php:1132
+#: ../../include/rest-api/models/VisualConsole/Item.php:2494
msgid "By critical elements"
msgstr "Por elementos críticos"
-#: ../../include/functions_visual_map_editor.php:1095
-#: ../../include/rest-api/models/VisualConsole/Item.php:2498
+#: ../../include/functions_visual_map_editor.php:1147
+#: ../../include/rest-api/models/VisualConsole/Item.php:2501
msgid "Type of the status calculation of the linked visual console"
msgstr "Tipo de cálculo de estado de la consola visual enlazada"
-#: ../../include/functions_visual_map_editor.php:1100
-#: ../../include/rest-api/models/VisualConsole/Item.php:2489
+#: ../../include/functions_visual_map_editor.php:1152
+#: ../../include/rest-api/models/VisualConsole/Item.php:2492
msgid "By default"
msgstr "Por defecto"
-#: ../../include/functions_visual_map_editor.php:1120
-#: ../../include/rest-api/models/VisualConsole/Item.php:2514
+#: ../../include/functions_visual_map_editor.php:1172
+#: ../../include/rest-api/models/VisualConsole/Item.php:2517
msgid "Linked visual console weight"
msgstr "Peso de la consola visual enlazada"
-#: ../../include/functions_visual_map_editor.php:1187
+#: ../../include/functions_visual_map_editor.php:1239
msgid "Lines haven't advanced options"
msgstr "Las líneas no tienen opciones avanzadas."
-#: ../../include/functions_visual_map_editor.php:1204
-#: ../../include/rest-api/models/VisualConsole/Item.php:2189
+#: ../../include/functions_visual_map_editor.php:1257
+#: ../../include/rest-api/models/VisualConsole/Item.php:2192
msgid "Restrict access to group"
msgstr "Restringir acceso al grupo"
-#: ../../include/functions_visual_map_editor.php:1215
+#: ../../include/functions_visual_map_editor.php:1259
msgid ""
"If selected, restrict visualization of this item in the visual console to "
"users who have access to selected group. This is also used on calculating "
@@ -43239,133 +43593,133 @@ msgstr ""
"consola visual a los usuarios que tengan acceso al grupo seleccionado. También "
"se utiliza para calcular consolas visuales de los hijos."
-#: ../../include/functions_visual_map_editor.php:1246
-#: ../../include/rest-api/models/VisualConsole/Item.php:2202
+#: ../../include/functions_visual_map_editor.php:1304
+#: ../../include/rest-api/models/VisualConsole/Item.php:2205
msgid "Cache expiration"
msgstr "Caducidad del caché"
-#: ../../include/functions_visual_map_editor.php:1285
+#: ../../include/functions_visual_map_editor.php:1343
msgid "Click start point
of the line"
msgstr "Haz clic en el punto de inicio
de la línea"
-#: ../../include/functions_visual_map_editor.php:1288
+#: ../../include/functions_visual_map_editor.php:1346
msgid "Click end point
of the line"
msgstr "Haz clic en el punto final
de la línea"
-#: ../../include/functions_visual_map_editor.php:1388
-#: ../../operation/visual_console/view.php:336
+#: ../../include/functions_visual_map_editor.php:1446
+#: ../../operation/visual_console/view.php:338
msgid "Serialized pie graph"
msgstr "Gráfico circular serializado"
-#: ../../include/functions_visual_map_editor.php:1389
-#: ../../operation/visual_console/view.php:341
+#: ../../include/functions_visual_map_editor.php:1447
+#: ../../operation/visual_console/view.php:343
msgid "Bars Graph"
msgstr "Gráfico de barras"
-#: ../../include/functions_visual_map_editor.php:1418
+#: ../../include/functions_visual_map_editor.php:1476
msgid "Show grid"
msgstr "Mostrar cuadrícula"
-#: ../../include/functions_visual_map_editor.php:1420
+#: ../../include/functions_visual_map_editor.php:1478
msgid "Delete item"
msgstr "Borrar elemento"
-#: ../../include/functions_visual_map_editor.php:1421
+#: ../../include/functions_visual_map_editor.php:1479
msgid "Copy item"
msgstr "Copiar elemento"
-#: ../../include/functions_visual_map_editor.php:1458
-#: ../../include/functions_visual_map_editor.php:1462
-#: ../../include/functions_visual_map_editor.php:1466
-#: ../../include/functions_visual_map_editor.php:1470
-#: ../../include/functions_visual_map_editor.php:1474
-#: ../../include/functions_visual_map_editor.php:1478
-#: ../../include/functions_visual_map_editor.php:1482
-#: ../../include/functions_visual_map_editor.php:1486
-#: ../../include/functions_visual_map_editor.php:1490
-#: ../../include/functions_visual_map_editor.php:1494
-#: ../../include/functions_visual_map_editor.php:1498
-#: ../../include/functions_visual_map_editor.php:1502
-#: ../../include/functions_visual_map_editor.php:1506
-#: ../../include/functions_visual_map_editor.php:1510
-#: ../../include/functions_visual_map_editor.php:1514
-#: ../../include/functions_visual_map_editor.php:1518
-#: ../../include/functions_visual_map_editor.php:1522
-#: ../../include/functions_visual_map_editor.php:1526
-#: ../../include/functions_visual_map_editor.php:1530
+#: ../../include/functions_visual_map_editor.php:1516
+#: ../../include/functions_visual_map_editor.php:1520
+#: ../../include/functions_visual_map_editor.php:1524
+#: ../../include/functions_visual_map_editor.php:1528
+#: ../../include/functions_visual_map_editor.php:1532
+#: ../../include/functions_visual_map_editor.php:1536
+#: ../../include/functions_visual_map_editor.php:1540
+#: ../../include/functions_visual_map_editor.php:1544
+#: ../../include/functions_visual_map_editor.php:1548
+#: ../../include/functions_visual_map_editor.php:1552
+#: ../../include/functions_visual_map_editor.php:1556
+#: ../../include/functions_visual_map_editor.php:1560
+#: ../../include/functions_visual_map_editor.php:1564
+#: ../../include/functions_visual_map_editor.php:1568
+#: ../../include/functions_visual_map_editor.php:1572
+#: ../../include/functions_visual_map_editor.php:1576
+#: ../../include/functions_visual_map_editor.php:1580
+#: ../../include/functions_visual_map_editor.php:1584
+#: ../../include/functions_visual_map_editor.php:1588
msgid "Visual Console Builder Information"
msgstr "Información del desarrollador de la consola visual"
-#: ../../include/functions_visual_map_editor.php:1459
+#: ../../include/functions_visual_map_editor.php:1517
msgid "Min allowed size is 1024x768."
msgstr "El tamaño mín. permitido es 1024x768."
-#: ../../include/functions_visual_map_editor.php:1463
-#: ../../include/functions_visual_map_editor.php:1531
+#: ../../include/functions_visual_map_editor.php:1521
+#: ../../include/functions_visual_map_editor.php:1589
msgid "No custom graph defined."
msgstr "No hay gráfica personalizada definida."
-#: ../../include/functions_visual_map_editor.php:1467
+#: ../../include/functions_visual_map_editor.php:1525
msgid "No image or name defined."
msgstr "No se ha definido ningún nombre o imagen."
-#: ../../include/functions_visual_map_editor.php:1471
+#: ../../include/functions_visual_map_editor.php:1529
msgid "No label defined."
msgstr "No se ha definido ninguna etiqueta."
-#: ../../include/functions_visual_map_editor.php:1475
+#: ../../include/functions_visual_map_editor.php:1533
msgid "No service defined."
msgstr "No hay servicio definido."
-#: ../../include/functions_visual_map_editor.php:1479
+#: ../../include/functions_visual_map_editor.php:1537
msgid "No image defined."
msgstr "No se ha definido ninguna imagen."
-#: ../../include/functions_visual_map_editor.php:1483
+#: ../../include/functions_visual_map_editor.php:1541
msgid "No process defined."
msgstr "No hay ningún proceso definido."
-#: ../../include/functions_visual_map_editor.php:1487
+#: ../../include/functions_visual_map_editor.php:1545
msgid "No Max value defined."
msgstr "No hay ningún valor máximo definido."
-#: ../../include/functions_visual_map_editor.php:1491
+#: ../../include/functions_visual_map_editor.php:1549
msgid "No width defined."
msgstr "No hay margen definido."
-#: ../../include/functions_visual_map_editor.php:1495
+#: ../../include/functions_visual_map_editor.php:1553
msgid "No height defined."
msgstr "Altura sin definir"
-#: ../../include/functions_visual_map_editor.php:1499
+#: ../../include/functions_visual_map_editor.php:1557
msgid "The width must not exceed the size of the visual console container."
msgstr "El ancho no debe exceder el tamaño del contenedor de la consola visual."
-#: ../../include/functions_visual_map_editor.php:1503
+#: ../../include/functions_visual_map_editor.php:1561
msgid "The height must not exceed the size of the visual console container."
msgstr "La altura no debe exceder el tamaño del contenedor de la consola visual."
-#: ../../include/functions_visual_map_editor.php:1507
+#: ../../include/functions_visual_map_editor.php:1565
msgid "No period defined."
msgstr "No hay ningún período definido."
-#: ../../include/functions_visual_map_editor.php:1511
+#: ../../include/functions_visual_map_editor.php:1569
msgid "No agent defined."
msgstr "No hay ningún agente definido."
-#: ../../include/functions_visual_map_editor.php:1515
+#: ../../include/functions_visual_map_editor.php:1573
msgid "No module defined."
msgstr "No hay ningún módulo definido."
-#: ../../include/functions_visual_map_editor.php:1519
+#: ../../include/functions_visual_map_editor.php:1577
msgid "No module defined. This module must be string type."
msgstr "No hay módulo definido. Este módulo debe ser del tipo cadena."
-#: ../../include/functions_visual_map_editor.php:1523
+#: ../../include/functions_visual_map_editor.php:1581
msgid "Successfully save the changes."
msgstr "Cambios guardados con éxito"
-#: ../../include/functions_visual_map_editor.php:1527
+#: ../../include/functions_visual_map_editor.php:1585
msgid "Could not be save."
msgstr "No se ha podido guardar."
@@ -43379,100 +43733,96 @@ msgid "Selected"
msgstr "Seleccionado"
#: ../../include/graphs/functions_gd.php:183
-#: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822
+#: ../../include/graphs/functions_gd.php:470
+#: ../../include/functions_graph.php:2784 ../../include/functions_graph.php:2832
msgid "Out of limits"
msgstr "Fuera de límites"
-#: ../../include/graphs/functions_flot.php:370
+#: ../../include/graphs/functions_flot.php:371
msgid "Cancel zoom"
msgstr "Cancelar el zoom"
-#: ../../include/graphs/functions_flot.php:372
+#: ../../include/graphs/functions_flot.php:373
msgid "Warning and Critical thresholds"
msgstr "Umbrales de advertencia y crítico"
-#: ../../include/graphs/functions_flot.php:377
+#: ../../include/graphs/functions_flot.php:378
msgid "Overview graph"
msgstr "Gráfico de vista general"
-#: ../../include/graphs/functions_flot.php:514
-#: ../../include/functions_reporting_html.php:663
-#: ../../include/functions_reporting_html.php:4681
-#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822
-#: ../../include/functions_treeview.php:299
-msgid "No data"
-msgstr "Sin datos"
-
-#: ../../include/functions_servers.php:582
+#: ../../include/functions_servers.php:590
msgid "SNMP Trap server"
msgstr "Servidor de traps SNMP"
-#: ../../include/functions_servers.php:699
+#: ../../include/functions_servers.php:707
msgid "Correlation server"
msgstr "Servidor de correlación"
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1230
+#: ../../include/functions_servers.php:720
+#: ../../include/functions_servers.php:1253
msgid "Enterprise ICMP server"
msgstr "Servidor ICMP Enterprise"
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1233
+#: ../../include/functions_servers.php:733
+#: ../../include/functions_servers.php:1256
msgid "Enterprise SNMP server"
msgstr "Servidor SNMP Enterprise"
-#: ../../include/functions_servers.php:738
+#: ../../include/functions_servers.php:746
#: ../../include/class/AgentWizard.class.php:1353
msgid "Enterprise Satellite server"
msgstr "Servidor Enterprise Satélite"
-#: ../../include/functions_servers.php:751
+#: ../../include/functions_servers.php:759
msgid "Enterprise Transactional server"
msgstr "Servidor transaccional Enterprise"
-#: ../../include/functions_servers.php:764
+#: ../../include/functions_servers.php:772
msgid "Mainframe server"
msgstr "Servidor mainframe"
-#: ../../include/functions_servers.php:777
+#: ../../include/functions_servers.php:785
msgid "Sync server"
msgstr "Servidor sync"
-#: ../../include/functions_servers.php:790
+#: ../../include/functions_servers.php:798
msgid "Wux server"
msgstr "Servidor WUX"
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1260
+#: ../../include/functions_servers.php:811
+#: ../../include/functions_servers.php:1283
msgid "Log server"
msgstr "Servidor de registros"
-#: ../../include/functions_servers.php:829
+#: ../../include/functions_servers.php:837
msgid "Autoprovision server"
msgstr "Servidor de auto aprovisionamiento"
-#: ../../include/functions_servers.php:842
+#: ../../include/functions_servers.php:850
msgid "Migration server"
msgstr "Servidor de migración"
-#: ../../include/functions_servers.php:1239
+#: ../../include/functions_servers.php:876
+msgid "Netflow server"
+msgstr "Servidor Netflow"
+
+#: ../../include/functions_servers.php:1262
msgid "Prediction Server"
msgstr "Servidor de predicción"
-#: ../../include/functions_servers.php:1266
+#: ../../include/functions_servers.php:1289
#: ../../operation/agentes/estado_generalagente.php:329
msgid "Satellite server"
msgstr "Servidor Satélite"
#: ../../include/functions_reporting_html.php:87
-#: ../../include/functions_reporting_html.php:5823
+#: ../../include/functions_reporting_html.php:5851
#: ../../include/ajax/alert_list.ajax.php:592
msgid "From:"
msgstr "Desde:"
#: ../../include/functions_reporting_html.php:87
-#: ../../include/functions_reporting_html.php:5823
+#: ../../include/functions_reporting_html.php:5851
#: ../../include/ajax/alert_list.ajax.php:606
msgid "To:"
msgstr "Hasta:"
@@ -43499,31 +43849,31 @@ msgid "Downtime"
msgstr "Parada planificada"
#: ../../include/functions_reporting_html.php:1003
-#: ../../include/functions_reporting_html.php:2514
-#: ../../include/functions_reporting_html.php:4563
-#: ../../include/functions_reporting_html.php:5102
+#: ../../include/functions_reporting_html.php:2535
+#: ../../include/functions_reporting_html.php:4591
+#: ../../include/functions_reporting_html.php:5130
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367
msgid "Min Value"
msgstr "Valor mínimo"
#: ../../include/functions_reporting_html.php:1004
-#: ../../include/functions_reporting_html.php:2515
-#: ../../include/functions_reporting_html.php:4564
-#: ../../include/functions_reporting_html.php:5103
+#: ../../include/functions_reporting_html.php:2536
+#: ../../include/functions_reporting_html.php:4592
+#: ../../include/functions_reporting_html.php:5131
msgid "Average Value"
msgstr "Valor medio"
#: ../../include/functions_reporting_html.php:1005
-#: ../../include/functions_reporting_html.php:2516
-#: ../../include/functions_reporting_html.php:4561
-#: ../../include/functions_reporting_html.php:5105
+#: ../../include/functions_reporting_html.php:2537
+#: ../../include/functions_reporting_html.php:4589
+#: ../../include/functions_reporting_html.php:5133
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366
msgid "Max Value"
msgstr "Valor máximo"
#: ../../include/functions_reporting_html.php:1061
#: ../../include/functions_reporting_html.php:1069
-#: ../../include/functions_reporting_html.php:2645
+#: ../../include/functions_reporting_html.php:2664
msgid "Val. by"
msgstr "Val. por"
@@ -43533,190 +43883,195 @@ msgid "%s System"
msgstr "Sistema %s"
#: ../../include/functions_reporting_html.php:1221
-#: ../../include/functions_reporting_html.php:1436
+#: ../../include/functions_reporting_html.php:1445
msgid "Events by user validator"
msgstr "Eventos por usuario validador"
#: ../../include/functions_reporting_html.php:1238
-#: ../../include/functions_reporting_html.php:1453
+#: ../../include/functions_reporting_html.php:1462
msgid "Events by Severity"
msgstr "Eventos por gravedad"
#: ../../include/functions_reporting_html.php:1255
-#: ../../include/functions_reporting_html.php:1470
+#: ../../include/functions_reporting_html.php:1479
msgid "Events validated vs unvalidated"
msgstr "Eventos validados vs no validados"
-#: ../../include/functions_reporting_html.php:1612
+#: ../../include/functions_reporting_html.php:1621
msgid "Sec. groups"
msgstr "Sec. grupos"
-#: ../../include/functions_reporting_html.php:1632
+#: ../../include/functions_reporting_html.php:1641
msgid "Remote conf."
msgstr "Configuración remota"
-#: ../../include/functions_reporting_html.php:1919
-#: ../../include/functions_inventory.php:1068
-#: ../../include/functions_inventory.php:1131
+#: ../../include/functions_reporting_html.php:1928
+#: ../../include/functions_inventory.php:1178
+#: ../../include/functions_inventory.php:1241
msgid "Added"
msgstr "Añadido"
-#: ../../include/functions_reporting_html.php:1930
-#: ../../include/functions_inventory.php:1074
-#: ../../include/functions_inventory.php:1139
+#: ../../include/functions_reporting_html.php:1939
+#: ../../include/functions_inventory.php:1184
+#: ../../include/functions_inventory.php:1249
#: ../../include/functions_filemanager.php:343
#: ../../include/functions_filemanager.php:360
msgid "Deleted"
msgstr "Eliminado(s)"
-#: ../../include/functions_reporting_html.php:2287
+#: ../../include/functions_reporting_html.php:2308
msgid "Cell turns grey when the module is in 'not initialize' status"
msgstr "Celda gris cuando el módulo está en estado \"no iniciado\""
-#: ../../include/functions_reporting_html.php:2580
-#: ../../include/functions_reporting_html.php:5691
+#: ../../include/functions_reporting_html.php:2601
+#: ../../include/functions_reporting_html.php:5719
msgid "Monitors"
msgstr "Monitores"
-#: ../../include/functions_reporting_html.php:2599
+#: ../../include/functions_reporting_html.php:2620
msgid "Events (not validated)"
msgstr "Eventos (no validados)"
-#: ../../include/functions_reporting_html.php:2755
+#: ../../include/functions_reporting_html.php:2783
msgid "Events validated by user"
msgstr "Eventos validados por el usuario"
-#: ../../include/functions_reporting_html.php:2772
-#: ../../include/functions_reporting_html.php:5980
+#: ../../include/functions_reporting_html.php:2800
+#: ../../include/functions_reporting_html.php:6008
msgid "Events by severity"
msgstr "Eventos por gravedad"
-#: ../../include/functions_reporting_html.php:2789
+#: ../../include/functions_reporting_html.php:2817
msgid "Amount events validated"
msgstr "Cantidad de eventos validados"
-#: ../../include/functions_reporting_html.php:3219
+#: ../../include/functions_reporting_html.php:3247
msgid "Total summary"
msgstr "Resumen total"
-#: ../../include/functions_reporting_html.php:3226
+#: ../../include/functions_reporting_html.php:3254
msgid "No alerts fired"
msgstr "No hay alertas disparadas"
-#: ../../include/functions_reporting_html.php:3326
+#: ../../include/functions_reporting_html.php:3354
#, php-format
msgid "Interface '%s' throughput graph"
msgstr "Interfaz '%s' gráfico de rendimiento"
-#: ../../include/functions_reporting_html.php:3330
+#: ../../include/functions_reporting_html.php:3358
msgid "Mac"
msgstr "Mac"
-#: ../../include/functions_reporting_html.php:3331
+#: ../../include/functions_reporting_html.php:3359
msgid "Actual status"
msgstr "Estado actual"
-#: ../../include/functions_reporting_html.php:3702
-#: ../../include/functions_reporting_html.php:3704
+#: ../../include/functions_reporting_html.php:3730
+#: ../../include/functions_reporting_html.php:3732
msgid "Empty modules"
msgstr "Módulos vacíos"
-#: ../../include/functions_reporting_html.php:4175
+#: ../../include/functions_reporting_html.php:4203
msgid "Time Not Init Module"
msgstr "Tiempo en módulo no iniciado"
-#: ../../include/functions_reporting_html.php:4186
+#: ../../include/functions_reporting_html.php:4214
msgid "% Ok"
msgstr "% OK"
-#: ../../include/functions_reporting_html.php:4263
+#: ../../include/functions_reporting_html.php:4291
msgid "Checks Uknown"
msgstr "Comprobaciones en desconocido"
-#: ../../include/functions_reporting_html.php:4302
-#: ../../include/functions_reporting_html.php:4449
-#: ../../include/functions_reporting_html.php:4776
-#: ../../include/functions_reporting_html.php:4782
+#: ../../include/functions_reporting_html.php:4330
+#: ../../include/functions_reporting_html.php:4477
+#: ../../include/functions_reporting_html.php:4804
+#: ../../include/functions_reporting_html.php:4810
msgid "Primary"
msgstr "Primario"
-#: ../../include/functions_reporting_html.php:5217
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:12115
+#: ../../include/functions_reporting_html.php:5245
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12124
+#: ../../include/functions_reporting.php:12169
msgid "Alert level"
msgstr "Nivel de alerta"
-#: ../../include/functions_reporting_html.php:5465
+#: ../../include/functions_reporting_html.php:5493
#, php-format
msgid "Agents in group: %s"
msgstr "Agentes en el grupo: %s"
-#: ../../include/functions_reporting_html.php:5567
+#: ../../include/functions_reporting_html.php:5595
msgid "Last failure"
msgstr "Último fallo"
-#: ../../include/functions_reporting_html.php:5657
+#: ../../include/functions_reporting_html.php:5685
msgid "N/A(*)"
msgstr "N/A(*)"
-#: ../../include/functions_reporting_html.php:5905
-#: ../../include/functions_reporting.php:12322
-#: ../../include/functions_groups.php:2650
+#: ../../include/functions_reporting_html.php:5933
+#: ../../include/functions_reporting.php:12395
+#: ../../include/functions_groups.php:2675
msgid "Monitor checks"
msgstr "Comprobaciones de monitores"
-#: ../../include/functions_reporting_html.php:5912
-#: ../../include/functions_reporting.php:12341
-#: ../../include/functions_groups.php:2669
+#: ../../include/functions_reporting_html.php:5940
+#: ../../include/functions_reporting.php:12414
+#: ../../include/functions_groups.php:2694
msgid "Total agents and monitors"
msgstr "Total de agentes y monitores"
-#: ../../include/functions_reporting_html.php:5931
-#: ../../include/functions_reporting_html.php:5936
+#: ../../include/functions_reporting_html.php:5959
+#: ../../include/functions_reporting_html.php:5964
msgid "Node overview"
msgstr "Resumen de nodos"
-#: ../../include/functions_reporting_html.php:5956
-#: ../../include/functions_reporting_html.php:5968
+#: ../../include/functions_reporting_html.php:5984
+#: ../../include/functions_reporting_html.php:5996
msgid "Critical events"
msgstr "Eventos en estado crítico"
-#: ../../include/functions_reporting_html.php:5959
-#: ../../include/functions_reporting_html.php:5970
+#: ../../include/functions_reporting_html.php:5987
+#: ../../include/functions_reporting_html.php:5998
msgid "Warning events"
msgstr "Eventos en estado de advertencia"
-#: ../../include/functions_reporting_html.php:5962
-#: ../../include/functions_reporting_html.php:5972
+#: ../../include/functions_reporting_html.php:5990
+#: ../../include/functions_reporting_html.php:6000
msgid "OK events"
msgstr "Eventos OK"
-#: ../../include/functions_reporting_html.php:5965
-#: ../../include/functions_reporting_html.php:5974
+#: ../../include/functions_reporting_html.php:5993
+#: ../../include/functions_reporting_html.php:6002
msgid "Unknown events"
msgstr "Eventos desconocidos"
-#: ../../include/functions_reporting_html.php:5990
+#: ../../include/functions_reporting_html.php:6019
+msgid "Event count corresponds to events within the last hour"
+msgstr "El conteo de eventos corresponde a los eventos en la última hora"
+
+#: ../../include/functions_reporting_html.php:6024
msgid "Important Events by Criticity"
msgstr "Eventos importantes por gravedad"
-#: ../../include/functions_reporting_html.php:6017
+#: ../../include/functions_reporting_html.php:6051
#, php-format
msgid "Last activity in %s console"
msgstr "Última actividad en la consola %s"
-#: ../../include/functions_reporting_html.php:6066
-#: ../../include/functions_reporting_html.php:6208
+#: ../../include/functions_reporting_html.php:6100
+#: ../../include/functions_reporting_html.php:6242
msgid "Events info (1hr.)"
msgstr "Información de eventos (1h)"
-#: ../../include/functions_reporting_html.php:6365
+#: ../../include/functions_reporting_html.php:6399
msgid "This SLA has been affected by the following scheduled downtimes"
msgstr ""
"Este SLA se ha visto afectado por los siguientes tiempos de inactividad "
"programados"
-#: ../../include/functions_reporting_html.php:6366
+#: ../../include/functions_reporting_html.php:6400
msgid ""
"If the duration of the scheduled downtime is less than 5 minutes it will not "
"be represented in the graph"
@@ -43724,16 +44079,16 @@ msgstr ""
"Si la duración de la parada planificada es de menos de 5 minutos, no se "
"representará en el gráfico"
-#: ../../include/functions_reporting_html.php:6373
+#: ../../include/functions_reporting_html.php:6407
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396
msgid "Dates"
msgstr "Fechas"
-#: ../../include/functions_reporting_html.php:6404
+#: ../../include/functions_reporting_html.php:6438
msgid "This item is affected by a malformed scheduled downtime"
msgstr "A este elemento le afecta una parada planificada mal formada."
-#: ../../include/functions_reporting_html.php:6404
+#: ../../include/functions_reporting_html.php:6438
msgid "Go to the scheduled downtimes section to solve this"
msgstr "Ir a la sección de paradas planificadas para solucionar este problema"
@@ -43751,7 +44106,7 @@ msgstr "M"
#: ../../include/functions.php:501 ../../include/functions.php:653
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-#: ../../include/rest-api/models/VisualConsole/Item.php:2037
+#: ../../include/rest-api/models/VisualConsole/Item.php:2040
msgid "Y"
msgstr "Y"
@@ -43768,47 +44123,47 @@ msgid "N"
msgstr "N"
#: ../../include/functions.php:1079 ../../include/functions.php:1325
-#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317
-#: ../../include/functions_graph.php:3319 ../../include/functions_graph.php:4834
+#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327
+#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:4844
#: ../../include/functions_incidents.php:34
#: ../../include/functions_incidents.php:75
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547
-#: ../../include/functions_events.php:3210
-#: ../../operation/visual_console/view.php:451
+#: ../../include/functions_events.php:3215
+#: ../../operation/visual_console/view.php:453
msgid "Maintenance"
msgstr "Mantenimiento"
#: ../../include/functions.php:1083 ../../include/functions.php:1326
-#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323
-#: ../../include/functions_graph.php:3325 ../../include/functions_graph.php:4838
+#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333
+#: ../../include/functions_graph.php:3335 ../../include/functions_graph.php:4848
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552
-#: ../../include/functions_events.php:3214
+#: ../../include/functions_events.php:3219
msgid "Informational"
msgstr "Informativo"
#: ../../include/functions.php:1099 ../../include/functions.php:1328
-#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335
-#: ../../include/functions_graph.php:3337 ../../include/functions_graph.php:4854
+#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345
+#: ../../include/functions_graph.php:3347 ../../include/functions_graph.php:4864
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572
msgid "Minor"
msgstr "Menor"
#: ../../include/functions.php:1103 ../../include/functions.php:1330
-#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347
-#: ../../include/functions_graph.php:3349 ../../include/functions_graph.php:4858
+#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357
+#: ../../include/functions_graph.php:3359 ../../include/functions_graph.php:4868
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577
msgid "Major"
msgstr "Principal"
-#: ../../include/functions.php:1278 ../../include/functions_events.php:3130
+#: ../../include/functions.php:1278 ../../include/functions_events.php:3135
msgid "Monitor Critical"
msgstr "Monitor en estado crítico"
-#: ../../include/functions.php:1279 ../../include/functions_events.php:3134
+#: ../../include/functions.php:1279 ../../include/functions_events.php:3139
msgid "Monitor Warning"
msgstr "Monitor en estado de advertencia"
-#: ../../include/functions.php:1280 ../../include/functions_events.php:3138
+#: ../../include/functions.php:1280 ../../include/functions_events.php:3143
msgid "Monitor Normal"
msgstr "Monitor en estado normal"
@@ -43816,17 +44171,17 @@ msgstr "Monitor en estado normal"
msgid "Monitor Unknown"
msgstr "Monitor en estado desconocido"
-#: ../../include/functions.php:1285 ../../include/functions_events.php:2914
-#: ../../include/functions_events.php:3146
+#: ../../include/functions.php:1285 ../../include/functions_events.php:2919
+#: ../../include/functions_events.php:3151
msgid "Alert recovered"
msgstr "Alerta recuperada"
-#: ../../include/functions.php:1286 ../../include/functions_events.php:2962
-#: ../../include/functions_events.php:3150
+#: ../../include/functions.php:1286 ../../include/functions_events.php:2967
+#: ../../include/functions_events.php:3155
msgid "Alert ceased"
msgstr "Alerta finalizada"
-#: ../../include/functions.php:1287 ../../include/functions_events.php:3154
+#: ../../include/functions.php:1287 ../../include/functions_events.php:3159
msgid "Alert manual validation"
msgstr "Validación manual de alerta"
@@ -43834,12 +44189,12 @@ msgstr "Validación manual de alerta"
msgid "Agent created"
msgstr "Agente creado"
-#: ../../include/functions.php:1290 ../../include/functions_events.php:3158
+#: ../../include/functions.php:1290 ../../include/functions_events.php:3163
msgid "Recon host detected"
msgstr "Equipo de red detectado con recon"
-#: ../../include/functions.php:1293 ../../include/functions_events.php:2958
-#: ../../include/functions_events.php:3170
+#: ../../include/functions.php:1293 ../../include/functions_events.php:2963
+#: ../../include/functions_events.php:3175
msgid "Configuration change"
msgstr "Cambio de configuración"
@@ -43849,9 +44204,9 @@ msgstr "ALERTA DISPARADA"
#: ../../include/functions.php:1413 ../../include/functions.php:1450
#: ../../include/functions_modules.php:4263
-#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598
-#: ../../operation/agentes/status_monitor.php:1868
-#: ../../operation/agentes/status_monitor.php:1881
+#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598
+#: ../../operation/agentes/status_monitor.php:1870
+#: ../../operation/agentes/status_monitor.php:1883
msgid "NO DATA"
msgstr "SIN DATOS"
@@ -43946,7 +44301,7 @@ msgid "2 minutes"
msgstr "2 minutos"
#: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55
-#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181
+#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181
#: ../../operation/gis_maps/render_view.php:155
msgid "5 minutes"
msgstr "5 minutos"
@@ -43955,49 +44310,54 @@ msgstr "5 minutos"
msgid "15 minutes"
msgstr "15 minutos"
-#: ../../include/functions.php:3422 ../../include/ajax/module.php:220
+#: ../../include/functions.php:3422 ../../include/ajax/module.php:243
msgid "30 minutes"
msgstr "30 minutos"
-#: ../../include/functions.php:3949
+#: ../../include/functions.php:3975
msgid "Summatory series"
msgstr "Series sumatorias"
-#: ../../include/functions.php:3953
+#: ../../include/functions.php:3979
msgid "Average series"
msgstr "Series de media"
-#: ../../include/functions.php:3981 ../../include/functions.php:4000
-#: ../../include/functions.php:4014 ../../include/functions.php:4036
-#: ../../include/functions.php:4117 ../../include/functions.php:4194
+#: ../../include/functions.php:4007 ../../include/functions.php:4026
+#: ../../include/functions.php:4040 ../../include/functions.php:4062
+#: ../../include/functions.php:4143 ../../include/functions.php:4220
msgid "Unit "
msgstr "Unidad "
-#: ../../include/functions.php:4062 ../../include/functions.php:4127
+#: ../../include/functions.php:4102
+#: ../../include/lib/Dashboard/Widgets/top_n.php:280
+msgid "Avg."
+msgstr "Media"
+
+#: ../../include/functions.php:4153
msgid "Min:"
msgstr "Mín.:"
-#: ../../include/functions.php:4069 ../../include/functions.php:4136
+#: ../../include/functions.php:4162
msgid "Max:"
msgstr "Máx.:"
-#: ../../include/functions.php:4076 ../../include/functions.php:4145
+#: ../../include/functions.php:4171
msgid "Avg:"
msgstr "Media:"
-#: ../../include/functions.php:4191 ../../include/functions.php:4199
+#: ../../include/functions.php:4217 ../../include/functions.php:4225
msgid "of module"
msgstr "de módulo"
-#: ../../include/functions.php:4218
+#: ../../include/functions.php:4244
msgid "Projection"
msgstr "Proyección"
-#: ../../include/functions.php:6064
+#: ../../include/functions.php:6094
msgid "Testing Pandora FMS email"
msgstr "Probando el email de Pandora FMS"
-#: ../../include/functions.php:6077
+#: ../../include/functions.php:6107
msgid ""
"This is an email test sent from Pandora FMS. If you can read this, your "
"configuration works."
@@ -44005,7 +44365,7 @@ msgstr ""
"Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido "
"significa que la configuración funciona."
-#: ../../include/functions.php:6311
+#: ../../include/functions.php:6341
#: ../../include/class/ConsoleSupervisor.php:1645
#: ../../include/class/ConsoleSupervisor.php:1669
#: ../../include/class/ConsoleSupervisor.php:1698
@@ -44014,11 +44374,11 @@ msgstr ""
msgid "Not recommended '%s' value in PHP configuration"
msgstr "Valor '%s' no recomendado en la configuración de PHP"
-#: ../../include/functions.php:6312
+#: ../../include/functions.php:6342
msgid "Recommended value is: -1"
msgstr "El valor recomendado es: -1"
-#: ../../include/functions.php:6313
+#: ../../include/functions.php:6343
#: ../../include/class/ConsoleSupervisor.php:1704
#: ../../include/class/ConsoleSupervisor.php:1785
msgid ""
@@ -44028,7 +44388,7 @@ msgstr ""
"Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o contacta "
"con un administrador."
-#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96
+#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96
#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41
msgid "Documentation"
msgstr "Documentación"
@@ -44160,9 +44520,9 @@ msgstr "Error al eliminar la plantilla de alerta. Id_template no existe."
msgid "Successful delete of alert template."
msgstr "Plantilla de alerta borrada correctamente."
-#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016
-#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363
-#: ../../include/functions_api.php:12443
+#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019
+#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366
+#: ../../include/functions_api.php:12446
#, php-format
msgid "%d agents affected"
msgstr "%d agentes afectados"
@@ -44260,168 +44620,168 @@ msgstr "Módulo SNMP de la política actualizado"
msgid "Successful deletion"
msgstr "Eliminado correctamente."
-#: ../../include/functions_api.php:9624
+#: ../../include/functions_api.php:9625
msgid "User created."
msgstr "Usuario creado."
-#: ../../include/functions_api.php:9717
+#: ../../include/functions_api.php:9720
msgid "User updated."
msgstr "Usuario actualizado."
-#: ../../include/functions_api.php:9794
+#: ../../include/functions_api.php:9797
msgid "Enabled user."
msgstr "Usuario habilitado"
-#: ../../include/functions_api.php:9802
+#: ../../include/functions_api.php:9805
msgid "Disabled user."
msgstr "Usuario deshabilitado"
-#: ../../include/functions_api.php:10097
+#: ../../include/functions_api.php:10100
#, php-format
msgid "Template have been inserted in %d agents."
msgstr "Las plantillas se han insertado en %d agentes."
-#: ../../include/functions_api.php:10273
+#: ../../include/functions_api.php:10276
msgid "XML file was generated successfully in path: "
msgstr "El archivo XML se ha creado correctamente en la ruta: "
-#: ../../include/functions_api.php:10413
+#: ../../include/functions_api.php:10416
#, php-format
msgid "Module has been created in %d agents."
msgstr "El módulo se ha cread en %d agentes."
-#: ../../include/functions_api.php:10541
+#: ../../include/functions_api.php:10544
#, php-format
msgid "Action has been set for %d agents."
msgstr "La acción se ha asignado a %d agentes."
-#: ../../include/functions_api.php:11616
+#: ../../include/functions_api.php:11619
msgid "User deleted."
msgstr "Usuario borrado."
-#: ../../include/functions_api.php:11675
+#: ../../include/functions_api.php:11678
msgid "User profile added."
msgstr "Perfil de usuario añadido."
-#: ../../include/functions_api.php:11740
+#: ../../include/functions_api.php:11743
msgid "User profile deleted."
msgstr "Perfil de usuario eliminado."
-#: ../../include/functions_api.php:12023
+#: ../../include/functions_api.php:12026
msgid "Module disabled successfully."
msgstr "Módulo deshabilitado correctamente."
-#: ../../include/functions_api.php:12025
+#: ../../include/functions_api.php:12028
msgid "The module could not be disabled."
msgstr "No se ha podido deshabilitar el módulo."
-#: ../../include/functions_api.php:12089
+#: ../../include/functions_api.php:12092
msgid "Module enabled successfully."
msgstr "Módulo habilitado correctamente."
-#: ../../include/functions_api.php:12091
+#: ../../include/functions_api.php:12094
msgid "The module could not be enabled."
msgstr "El módulo no se ha podido habilitar."
-#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192
+#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195
msgid "The alert could not be disabled."
msgstr "La alerta no se ha podido deshabilitar."
-#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292
+#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295
msgid "The alert could not be enabled."
msgstr "La alerta no se ha podido habilitar."
-#: ../../include/functions_api.php:13586
+#: ../../include/functions_api.php:13597
msgid "Enabled agent."
msgstr "Agente habilitado"
-#: ../../include/functions_api.php:13594
+#: ../../include/functions_api.php:13605
msgid "Disabled agent."
msgstr "Agente deshabilitado"
-#: ../../include/functions_api.php:14573
+#: ../../include/functions_api.php:14584
msgid "Metaconsole and the licenses of all nodes were updated."
msgstr "Se han actualizado la Metaconsola y las licencias de todos los nodos."
-#: ../../include/functions_api.php:14575
+#: ../../include/functions_api.php:14586
#, php-format
msgid "Metaconsole license updated but %d of %d node failed to sync."
msgstr ""
"Se ha actualizado la licencia de la Metaconsola, pero %d de %d nodo no se ha "
"podido sincronizar."
-#: ../../include/functions_api.php:14578
+#: ../../include/functions_api.php:14589
msgid "This function is for metaconsole only."
msgstr "función exclusiva de la Metaconsola."
-#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039
+#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050
msgid "Successfully deleted."
msgstr "Eliminado correctamente"
-#: ../../include/functions_api.php:14998
+#: ../../include/functions_api.php:15009
msgid "The user cannot access the cluster."
msgstr "El usuario no puede acceder al cluster."
-#: ../../include/functions_api.php:15884
+#: ../../include/functions_api.php:15895
msgid "Event filter successfully created."
msgstr "Filtro de evento creado correctamente."
-#: ../../include/functions_api.php:16117
+#: ../../include/functions_api.php:16128
msgid "Event filter successfully updated."
msgstr "Filtro de evento creado correctamente."
-#: ../../include/functions_api.php:16158
+#: ../../include/functions_api.php:16169
msgid "Event filter successfully deleted."
msgstr "Filtro de evento borrado correctamente."
-#: ../../include/functions_api.php:16474
+#: ../../include/functions_api.php:16485
msgid "Validated traps."
msgstr "Traps validados."
-#: ../../include/functions_api.php:16501
+#: ../../include/functions_api.php:16512
msgid "Deleted traps."
msgstr "Traps eliminados."
-#: ../../include/functions_api.php:16694
+#: ../../include/functions_api.php:16705
#, php-format
msgid "Successfully updated module/alert count in id agent %d."
msgstr ""
"Recuento de módulos/alertas en ID de agente %d actualizado correctamente."
-#: ../../include/functions_api.php:16696
+#: ../../include/functions_api.php:16707
msgid "Successfully updated module/alert count in all agents"
msgstr ""
"Recuento de módulos/alertas actualizado correctamente en todos los agentes"
-#: ../../include/functions_api.php:17170
+#: ../../include/functions_api.php:17181
#, php-format
msgid "Successfully added to delete pending id agent %d to id policy %d."
msgstr ""
"Se ha añadido correctamente el agente %d a pendiente de eliminación en la "
"política %d."
-#: ../../include/functions_api.php:17359
+#: ../../include/functions_api.php:17370
msgid "Error enable/disable discovery task. Id_user cannot be left blank."
msgstr ""
"Error al habilitar/deshabilitar la tarea discovery. Id_user no puede estar "
"vacío."
-#: ../../include/functions_api.php:17367
+#: ../../include/functions_api.php:17378
msgid ""
"Error enable/disable discovery task. Enable/disable value cannot be left blank."
msgstr ""
"Error al habilitar/deshabilitar la tarea discovery. El valor de habilitar/"
"deshabilitar no puede estar vacío."
-#: ../../include/functions_api.php:17392
+#: ../../include/functions_api.php:17403
msgid "Error in discovery task enabling/disabling."
msgstr "Error al habilitar/deshabilitar la tarea discovery."
-#: ../../include/functions_api.php:17400
+#: ../../include/functions_api.php:17411
msgid "Enabled discovery task."
msgstr "Tarea discovery habilitada."
-#: ../../include/functions_api.php:17408
+#: ../../include/functions_api.php:17419
msgid "Disabled discovery task."
msgstr "Tarea discovery deshabilitada."
@@ -44555,25 +44915,39 @@ msgstr "El código es válido, pero hubo un error al guardar los datos."
msgid "3 minutes"
msgstr "3 minutos"
-#: ../../include/ajax/heatmap.ajax.php:81
+#: ../../include/ajax/heatmap.ajax.php:100
#: ../../include/lib/Dashboard/Widgets/heatmap.php:253
msgid "Group modules by tag"
msgstr "Agrupar módulos por etiqueta"
-#: ../../include/ajax/heatmap.ajax.php:82
+#: ../../include/ajax/heatmap.ajax.php:101
#: ../../include/lib/Dashboard/Widgets/heatmap.php:254
msgid "Group modules by module group"
msgstr "Agrupar módulos por grupo de módulos"
-#: ../../include/ajax/heatmap.ajax.php:83
+#: ../../include/ajax/heatmap.ajax.php:102
#: ../../include/lib/Dashboard/Widgets/heatmap.php:255
msgid "Group modules by agents"
msgstr "Agrupar módulos por agentes"
-#: ../../include/ajax/heatmap.ajax.php:100
+#: ../../include/ajax/heatmap.ajax.php:123
msgid "Show groups"
msgstr "Mostrar grupos"
+#: ../../include/ajax/heatmap.ajax.php:356
+msgid "Date of last data"
+msgstr "Fecha de los últimos datos"
+
+#: ../../include/ajax/heatmap.ajax.php:491
+#: ../../operation/agentes/estado_generalagente.php:406
+msgid "Out of bounds"
+msgstr "Fuera de límites"
+
+#: ../../include/ajax/heatmap.ajax.php:494
+#: ../../operation/agentes/estado_generalagente.php:441
+msgid "Next contact"
+msgstr "Siguiente contacto"
+
#: ../../include/ajax/alert_list.ajax.php:289
#: ../../include/ajax/alert_list.ajax.php:314
msgid "Force execution"
@@ -44585,13 +44959,17 @@ msgid "F."
msgstr "F."
#: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:372
-#: ../../operation/agentes/alerts_status.php:373
-#: ../../operation/agentes/alerts_status.php:414
-#: ../../operation/agentes/alerts_status.php:415
+#: ../../operation/agentes/alerts_status.php:374
+#: ../../operation/agentes/alerts_status.php:375
+#: ../../operation/agentes/alerts_status.php:416
+#: ../../operation/agentes/alerts_status.php:417
msgid "No alerts found"
msgstr "No se encontró ninguna alerta"
+#: ../../include/ajax/alert_list.ajax.php:540
+msgid "If a value of 0 is assigned, the Threshold of the action will be used."
+msgstr "Si se asigna el valor 0, se utilizará el umbral de la acción."
+
#: ../../include/ajax/alert_list.ajax.php:633
msgid "Insufficient permissions to validate alerts"
msgstr "Permisos insuficientes para validar alertas"
@@ -44622,32 +45000,32 @@ msgstr "Error al crear política"
msgid "Policy created succesfully"
msgstr "Política creada con éxito"
-#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215
+#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215
msgid "3 months"
msgstr "3 meses"
-#: ../../include/ajax/module.php:231
+#: ../../include/ajax/module.php:254
msgid "2 years"
msgstr "2 años"
-#: ../../include/ajax/module.php:232
+#: ../../include/ajax/module.php:255
msgid "3 years"
msgstr "3 años"
-#: ../../include/ajax/module.php:243 ../../operation/agentes/datos_agente.php:194
+#: ../../include/ajax/module.php:266 ../../operation/agentes/datos_agente.php:196
msgid "Choose a time from now"
msgstr "Elija un tiempo a partir de ahora"
-#: ../../include/ajax/module.php:269 ../../operation/agentes/datos_agente.php:197
+#: ../../include/ajax/module.php:292 ../../operation/agentes/datos_agente.php:199
msgid "Specify time range"
msgstr "Especificar rango de tiempo"
-#: ../../include/ajax/module.php:327
+#: ../../include/ajax/module.php:350
msgid "Exact phrase"
msgstr "Frase exacta"
-#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485
-#: ../../operation/agentes/interface_traffic_graph_win.php:310
+#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501
+#: ../../operation/agentes/interface_traffic_graph_win.php:319
msgid ""
"In Pandora FMS, data is stored compressed. The data visualization in database, "
"charts or CSV exported data won't match, because is interpreted at runtime. "
@@ -44658,15 +45036,11 @@ msgstr ""
"coincidirán porque se interpretan en el momento de la ejecución. Lea la "
"documentación del capítulo de 'Ingeniería de Pandora FMS'."
-#: ../../include/ajax/module.php:586
-msgid "No available data to showaaaa"
-msgstr "No hay datos a mostrar disponibles"
-
-#: ../../include/ajax/module.php:1000
+#: ../../include/ajax/module.php:1023
msgid "T"
msgstr "T"
-#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650
+#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650
#: ../../include/functions_reports.php:654
#: ../../include/functions_reports.php:659
#: ../../include/functions_reports.php:665
@@ -44677,41 +45051,41 @@ msgstr "T"
#: ../../include/functions_reports.php:693
#: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123
#: ../../include/functions_groups.php:187 ../../operation/search_results.php:120
-#: ../../operation/agentes/ver_agente.php:1578
-#: ../../operation/agentes/ver_agente.php:1881
+#: ../../operation/agentes/ver_agente.php:1574
+#: ../../operation/agentes/ver_agente.php:1877
msgid "Graphs"
msgstr "Gráficos"
-#: ../../include/ajax/module.php:1155
+#: ../../include/ajax/module.php:1182
msgid "Time elapsed since last status change: "
msgstr "Tiempo transcurrido desde el último cambio de estado: "
-#: ../../include/ajax/module.php:1281
-#: ../../operation/agentes/estado_generalagente.php:411
+#: ../../include/ajax/module.php:1309
+#: ../../operation/agentes/estado_generalagente.php:382
msgid "Force checks"
msgstr "Forzar comprobaciones"
-#: ../../include/ajax/module.php:1360
+#: ../../include/ajax/module.php:1388
msgid "Any monitors aren't with this filter."
msgstr "No todos los monitores llevan este filtro"
-#: ../../include/ajax/module.php:1360
+#: ../../include/ajax/module.php:1388
msgid "This agent doesn't have any active monitors."
msgstr "Este agente no tiene ningún monitor activo."
-#: ../../include/ajax/module.php:2138
+#: ../../include/ajax/module.php:2167
msgid "Load"
msgstr "Cargar"
-#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582
+#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582
msgid "Update/delete filter"
msgstr "Actualizar/eliminar filtro"
-#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672
+#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672
msgid "Save current filter"
msgstr "Guardar filtro actual"
-#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687
+#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687
#: ../../include/ajax/custom_fields.php:702
msgid "Delete filter"
msgstr "Eliminar filtro"
@@ -44794,107 +45168,107 @@ msgstr "Error al eliminar el filtro."
msgid "Console successfully deleted"
msgstr "Consola eliminada correctamente"
-#: ../../include/ajax/events.php:98
+#: ../../include/ajax/events.php:99
msgid "Failed to retrieve comments"
msgstr "No se han podido obtener los comentarios"
-#: ../../include/ajax/events.php:897
+#: ../../include/ajax/events.php:898
msgid "Save/Update filters"
msgstr "Guardar/Actualizar filtros"
-#: ../../include/ajax/events.php:1287
+#: ../../include/ajax/events.php:1288
msgid "unauthorized"
msgstr "no autorizado"
-#: ../../include/ajax/events.php:1393
+#: ../../include/ajax/events.php:1394
msgid "Error executing response"
msgstr "Error al ejecutar respuesta"
-#: ../../include/ajax/events.php:1746
+#: ../../include/ajax/events.php:1747
msgid "Related"
msgstr "Relacionado"
-#: ../../include/ajax/events.php:1758
+#: ../../include/ajax/events.php:1759
msgid "Agent fields"
msgstr "Campos de agente"
-#: ../../include/ajax/events.php:1896
+#: ../../include/ajax/events.php:1897
msgid "Error adding comment"
msgstr "Error al añadir el comentario"
-#: ../../include/ajax/events.php:1903
+#: ../../include/ajax/events.php:1904
msgid "Comment added successfully"
msgstr "Comentario añadido correctamente"
-#: ../../include/ajax/events.php:1910
+#: ../../include/ajax/events.php:1911
msgid "Error changing event status"
msgstr "Error al cambiar el estado del evento"
-#: ../../include/ajax/events.php:1917
+#: ../../include/ajax/events.php:1918
msgid "Event status changed successfully"
msgstr "Estado del evento cambiado correctamente"
-#: ../../include/ajax/events.php:1924
+#: ../../include/ajax/events.php:1925
msgid "Error changing event owner"
msgstr "Error al cambiar el propietario del evento"
-#: ../../include/ajax/events.php:1931
+#: ../../include/ajax/events.php:1932
msgid "Event owner changed successfully"
msgstr "Propietario del evento cambiado correctamente"
-#: ../../include/ajax/events.php:1938
+#: ../../include/ajax/events.php:1939
msgid "Error deleting event"
msgstr "Error al eliminar evento"
-#: ../../include/ajax/events.php:2073
+#: ../../include/ajax/events.php:2074
msgid "Show all Events 24h"
msgstr "Mostrar todos los eventos en las últimas 24h"
-#: ../../include/ajax/events.php:2170
+#: ../../include/ajax/events.php:2171
msgid "These commands will apply to all selected events"
msgstr "Estos comandos se aplicarán en todos los eventos seleccionados"
-#: ../../include/ajax/events.php:2232
+#: ../../include/ajax/events.php:2233
msgid "Total number of events in this node reached"
msgstr "Se ha alcanzado el número total de eventos en este nodo"
-#: ../../include/ajax/events.php:2266
+#: ../../include/ajax/events.php:2267
msgid "Total Events per node"
msgstr "Total de eventos por nodo"
-#: ../../include/ajax/events.php:2331
+#: ../../include/ajax/events.php:2332 ../../operation/events/sound_events.php:208
msgid "Console configuration"
msgstr "Configuración de la consola"
-#: ../../include/ajax/events.php:2338
+#: ../../include/ajax/events.php:2339 ../../operation/events/sound_events.php:215
msgid "Set condition"
msgstr "Establecer condición"
-#: ../../include/ajax/events.php:2345 ../../operation/events/sound_events.php:192
+#: ../../include/ajax/events.php:2346 ../../operation/events/sound_events.php:222
msgid "All new events"
msgstr "Todos los eventos nuevos"
-#: ../../include/ajax/events.php:2382
+#: ../../include/ajax/events.php:2383 ../../operation/events/sound_events.php:259
msgid "Sound duration"
msgstr "Duración del sonido"
-#: ../../include/ajax/events.php:2418
+#: ../../include/ajax/events.php:2419 ../../operation/events/sound_events.php:295
msgid "Sound melody"
msgstr "Melodía de sonido"
-#: ../../include/ajax/events.php:2432
+#: ../../include/ajax/events.php:2433 ../../operation/events/sound_events.php:309
msgid "Test sound"
msgstr "Probar sonido"
-#: ../../include/ajax/events.php:2456
+#: ../../include/ajax/events.php:2457 ../../operation/events/sound_events.php:333
msgid "Discovered alerts"
msgstr "Alertas descubiertas"
-#: ../../include/ajax/events.php:2463
+#: ../../include/ajax/events.php:2464 ../../operation/events/sound_events.php:340
msgid "No alerts discovered"
msgstr "No hay alertas descubiertas"
-#: ../../include/ajax/events.php:2468
+#: ../../include/ajax/events.php:2469 ../../operation/events/sound_events.php:345
msgid "Congrats! thereâs nothing to show"
msgstr "¡Enhorabuena! No hay nada que mostrar"
@@ -44917,28 +45291,28 @@ msgstr "No hay monitores"
#: ../../include/functions_agents.php:3030
#: ../../include/functions_agents.php:3091
#: ../../include/functions_agents.php:3158
-#: ../../include/functions_reporting.php:13111
+#: ../../include/functions_reporting.php:13184
msgid "At least one module in CRITICAL status"
msgstr "Al menos un módulo está en estado CRÍTICO"
#: ../../include/functions_agents.php:3036
#: ../../include/functions_agents.php:3104
#: ../../include/functions_agents.php:3166
-#: ../../include/functions_reporting.php:13118
+#: ../../include/functions_reporting.php:13191
msgid "At least one module in WARNING status"
msgstr "Al menos un módulo está en estado de ADVERTENCIA"
#: ../../include/functions_agents.php:3042
#: ../../include/functions_agents.php:3117
#: ../../include/functions_agents.php:3174
-#: ../../include/functions_reporting.php:13125
+#: ../../include/functions_reporting.php:13198
msgid "At least one module is in UKNOWN status"
msgstr "Al menos un módulo está en estado DESCONOCIDO"
#: ../../include/functions_agents.php:3048
#: ../../include/functions_agents.php:3130
#: ../../include/functions_agents.php:3182
-#: ../../include/functions_reporting.php:13132
+#: ../../include/functions_reporting.php:13205
msgid "All Monitors OK"
msgstr "Todos los monitores OK"
@@ -44950,12 +45324,12 @@ msgstr "Alerta disparada en agente"
msgid "Dialog response time"
msgstr "Tiempo de respuesta del diálogo"
-#: ../../include/functions_inventory.php:115
-#: ../../include/functions_inventory.php:1051
+#: ../../include/functions_inventory.php:116
+#: ../../include/functions_inventory.php:1161
msgid "No changes found"
msgstr "No se han encontrado cambios"
-#: ../../include/functions_inventory.php:214
+#: ../../include/functions_inventory.php:215
msgid "Get CSV file"
msgstr "Obtener archivo CSV"
@@ -45069,7 +45443,7 @@ msgstr ""
msgid "Could not changes password on remote pandora"
msgstr "No se pudo cambiar la contraseña en el Pandora FMS remoto."
-#: ../../include/auth/mysql.php:858
+#: ../../include/auth/mysql.php:886
msgid "Your installation of PHP does not support LDAP"
msgstr "Su instalación de PHP no es compatible con LDAP."
@@ -45089,17 +45463,17 @@ msgstr "Usuario, grupo o perfil no especificados"
msgid "User, group or profile status not specified"
msgstr "Usuario, grupo o estado de perfil no especificados"
-#: ../../include/functions_graph.php:2607
+#: ../../include/functions_graph.php:2617
msgid "Not fired alerts"
msgstr "No se han disparado alertas."
-#: ../../include/functions_graph.php:3235 ../../include/functions_graph.php:5490
-#: ../../include/functions_ui.php:4233 ../../include/functions_events.php:108
-#: ../../include/functions_events.php:2946 ../../operation/events/events.php:698
+#: ../../include/functions_graph.php:3245 ../../include/functions_graph.php:5500
+#: ../../include/functions_ui.php:4307 ../../include/functions_events.php:108
+#: ../../include/functions_events.php:2951 ../../operation/events/events.php:703
msgid "SYSTEM"
msgstr "SISTEMA"
-#: ../../include/functions_graph.php:5237
+#: ../../include/functions_graph.php:5247
msgid "Main node"
msgstr "Nodo principal"
@@ -45120,240 +45494,264 @@ msgstr "Haga clic aquí para ver este módulo"
msgid "Module information"
msgstr "Información del módulo"
-#: ../../include/functions_treeview.php:380
+#: ../../include/functions_treeview.php:329
+msgid "Go to module edition"
+msgstr "Ir a la edición de módulos"
+
+#: ../../include/functions_treeview.php:384
msgid "There was a problem loading alerts"
msgstr "Error al cargar las alertas"
-#: ../../include/functions_treeview.php:467
+#: ../../include/functions_treeview.php:471
msgid "Go to alerts edition"
msgstr "Ir a \"editar alertas\""
-#: ../../include/functions_treeview.php:559
+#: ../../include/functions_treeview.php:563
#: ../../operation/agentes/agent_fields.php:24
#: ../../operation/agentes/custom_fields.php:24
#: ../../operation/agentes/estado_generalagente.php:62
msgid "There was a problem loading agent"
msgstr "Error al cargar la configuración del agente"
-#: ../../include/functions_treeview.php:611
+#: ../../include/functions_treeview.php:615
msgid "Click here for view this agent"
msgstr "Haga clic aquí para ver este agente"
-#: ../../include/functions_treeview.php:633
-#: ../../operation/agentes/estado_generalagente.php:588
+#: ../../include/functions_treeview.php:637
+#: ../../operation/agentes/estado_generalagente.php:557
msgid "Other IP addresses"
msgstr "Otras direcciones IP"
-#: ../../include/functions_treeview.php:676
+#: ../../include/functions_treeview.php:680
msgid "Remote contact"
msgstr "Contacto remoto"
-#: ../../include/functions_treeview.php:684
+#: ../../include/functions_treeview.php:688
msgid "Next agent contact"
msgstr "Siguiente contacto con el agente"
-#: ../../include/functions_treeview.php:697
+#: ../../include/functions_treeview.php:701
msgid "Agent information"
msgstr "Información del agente"
-#: ../../include/functions_treeview.php:744
+#: ../../include/functions_treeview.php:748
msgid "Agent access rate (24h)"
msgstr "Accesibilidad del agente (24h)"
-#: ../../include/functions_treeview.php:800
+#: ../../include/functions_treeview.php:804
#: ../../operation/agentes/interface_view.functions.php:722
-#: ../../operation/agentes/pandora_networkmap.view.php:1303
-#: ../../operation/agentes/estado_generalagente.php:826
+#: ../../operation/agentes/pandora_networkmap.view.php:1304
+#: ../../operation/agentes/estado_generalagente.php:784
msgid "Interface traffic"
msgstr "Interfaz de tráfico"
-#: ../../include/functions_treeview.php:823
+#: ../../include/functions_treeview.php:827
msgid "Interface information"
msgstr "Interfaz de información"
-#: ../../include/functions_treeview.php:863
-#: ../../operation/agentes/estado_generalagente.php:549
+#: ../../include/functions_treeview.php:867
+#: ../../operation/agentes/estado_generalagente.php:524
msgid "Position (Long, Lat)"
msgstr "Posición (longitud, latitud)"
-#: ../../include/functions_treeview.php:872
-#: ../../operation/agentes/ver_agente.php:1552
-#: ../../operation/agentes/ver_agente.php:1889
-#: ../../operation/agentes/estado_generalagente.php:575
+#: ../../include/functions_treeview.php:876
+#: ../../operation/agentes/ver_agente.php:1548
+#: ../../operation/agentes/ver_agente.php:1885
+#: ../../operation/agentes/estado_generalagente.php:544
msgid "Url address"
msgstr "Dirección URL"
-#: ../../include/functions_treeview.php:886
-#: ../../operation/agentes/estado_generalagente.php:600
+#: ../../include/functions_treeview.php:890
+#: ../../operation/agentes/estado_generalagente.php:569
msgid "Timezone Offset"
msgstr "Zona horaria desactivada"
-#: ../../include/functions_treeview.php:917
+#: ../../include/functions_treeview.php:921
msgid "Advanced information"
msgstr "Información avanzada"
-#: ../../include/functions_menu.php:561
+#: ../../include/functions_treeview.php:940
+msgid "Go to cluster edition"
+msgstr "Ir a la edición del clúster"
+
+#: ../../include/functions_treeview.php:949
+msgid "Go to module creation"
+msgstr "Ir a la creación de módulos"
+
+#: ../../include/functions_treeview.php:958
+msgid "Go to agent edition"
+msgstr "Ir a \"editar agentes\""
+
+#: ../../include/functions_menu.php:563
msgid "Configure user"
msgstr "Configurar usuario"
-#: ../../include/functions_menu.php:562
+#: ../../include/functions_menu.php:564
msgid "Configure profile"
msgstr "Configurar perfil"
-#: ../../include/functions_menu.php:564
+#: ../../include/functions_menu.php:566
msgid "Module templates management"
msgstr "Gestión de plantillas de módulos"
-#: ../../include/functions_menu.php:565
+#: ../../include/functions_menu.php:567
msgid "Inventory modules management"
msgstr "Gestión de módulos de inventario"
-#: ../../include/functions_menu.php:572
+#: ../../include/functions_menu.php:574
msgid "Builder visual console"
msgstr "Configurador de la consola visual"
-#: ../../include/functions_menu.php:574
+#: ../../include/functions_menu.php:576
msgid "View reporting"
msgstr "Ver informes"
-#: ../../include/functions_menu.php:575
+#: ../../include/functions_menu.php:577
msgid "Graph viewer"
msgstr "Visor de gráficos"
-#: ../../include/functions_menu.php:577
+#: ../../include/functions_menu.php:579
msgid "Manage custom graphs"
msgstr "Gestionar gráficos personalizados"
-#: ../../include/functions_menu.php:578
+#: ../../include/functions_menu.php:580
msgid "View graph containers"
msgstr "Ver contenedores de gráfico"
-#: ../../include/functions_menu.php:579
+#: ../../include/functions_menu.php:581
msgid "Manage graph containers"
msgstr "Gestionar contenedores de gráfico"
-#: ../../include/functions_menu.php:580
+#: ../../include/functions_menu.php:582
msgid "View graph templates"
msgstr "Ver plantillas de gráfico"
-#: ../../include/functions_menu.php:581
+#: ../../include/functions_menu.php:583
msgid "Manage graph templates"
msgstr "Gestionar plantillas de gráfico"
-#: ../../include/functions_menu.php:582
+#: ../../include/functions_menu.php:584
msgid "Graph template items"
msgstr "Elementos de la plantilla de gráfico"
-#: ../../include/functions_menu.php:583
+#: ../../include/functions_menu.php:585
msgid "Graph template wizard"
msgstr "Asistente de plantilla de gráfico"
-#: ../../include/functions_menu.php:586
+#: ../../include/functions_menu.php:588
+msgid "New custom reports"
+msgstr "Nuevos informes personalizados"
+
+#: ../../include/functions_menu.php:589
msgid "Edit custom reports"
msgstr "Editar informes personalizados"
-#: ../../include/functions_menu.php:588
+#: ../../include/functions_menu.php:590
+msgid "Remove custom reports"
+msgstr "Eliminar informes personalizados"
+
+#: ../../include/functions_menu.php:592
msgid "Edit item"
msgstr "Editar elemento"
-#: ../../include/functions_menu.php:590
+#: ../../include/functions_menu.php:594
msgid "Wizard sla"
msgstr "SLA del asistente"
-#: ../../include/functions_menu.php:591
+#: ../../include/functions_menu.php:595
msgid "Global custom reports"
msgstr "Informes personalizados globales"
-#: ../../include/functions_menu.php:592
+#: ../../include/functions_menu.php:596
msgid "Avanced options"
msgstr "Opciones avanzadas"
-#: ../../include/functions_menu.php:595
+#: ../../include/functions_menu.php:599
msgid "Manage GIS Maps"
msgstr "Gestionar mapas GIS"
-#: ../../include/functions_menu.php:598
+#: ../../include/functions_menu.php:602
msgid "Manage messages"
msgstr "Gestionar mensajes"
-#: ../../include/functions_menu.php:600
+#: ../../include/functions_menu.php:604
msgid "Manage module groups"
msgstr "Gestionar grupos de módulos"
-#: ../../include/functions_menu.php:601
+#: ../../include/functions_menu.php:605
msgid "Manage custom field"
msgstr "Gestionar campos personalizados"
-#: ../../include/functions_menu.php:603
+#: ../../include/functions_menu.php:607
msgid "Manage alert actions"
msgstr "Gestionar acciones de alertas"
-#: ../../include/functions_menu.php:604
+#: ../../include/functions_menu.php:608
msgid "Manage commands"
msgstr "Gestionar comandos"
-#: ../../include/functions_menu.php:606
+#: ../../include/functions_menu.php:610
msgid "Manage export targets"
msgstr "Gestionar objetivos de exportación"
-#: ../../include/functions_menu.php:608 ../../operation/menu.php:254
+#: ../../include/functions_menu.php:612 ../../operation/menu.php:254
msgid "SNMP trap generator"
msgstr "Generador de traps SNMP"
-#: ../../include/functions_menu.php:611
+#: ../../include/functions_menu.php:615
msgid "Manage incident"
msgstr "Gestionar incidentes"
-#: ../../include/functions_menu.php:613
+#: ../../include/functions_menu.php:617
msgid "Manage groups"
msgstr "Gestionar grupos"
-#: ../../include/functions_menu.php:673
+#: ../../include/functions_menu.php:677
msgid "Administration"
msgstr "Administración"
-#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303
+#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303
msgid "Information"
msgstr "Información"
-#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109
+#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114
#: ../../include/class/Diagnostics.class.php:251
msgid "System Info"
msgstr "Información de Sistema"
-#: ../../include/functions_menu.php:939
+#: ../../include/functions_menu.php:944
msgid "PHP System"
msgstr "Sistema PHP"
-#: ../../include/functions_menu.php:954
+#: ../../include/functions_menu.php:959
msgid "MR version"
msgstr "Versión MR"
-#: ../../include/functions_menu.php:962
+#: ../../include/functions_menu.php:967
msgid "Update manager"
msgstr "Administrador de actualizaciones"
-#: ../../include/functions_menu.php:974
+#: ../../include/functions_menu.php:979
msgid "System report"
msgstr "Informe de sistema"
-#: ../../include/functions_menu.php:1006
+#: ../../include/functions_menu.php:1011
#: ../../include/class/Diagnostics.class.php:243
msgid "Database health status"
msgstr "Estado de la base de datos"
-#: ../../include/functions_menu.php:1036
+#: ../../include/functions_menu.php:1041
#: ../../include/class/Diagnostics.class.php:247
msgid "Database status info"
msgstr "Información sobre el estado de la base de datos"
-#: ../../include/functions_menu.php:1074
+#: ../../include/functions_menu.php:1079
#: ../../include/class/Diagnostics.class.php:260
#, php-format
msgid "Tables fragmentation in the %s database"
msgstr "Fragmentación de tablas de la base de datos de %s"
-#: ../../include/functions_menu.php:1168
+#: ../../include/functions_menu.php:1173
msgid "PHP system"
msgstr "Sistema PHP"
@@ -45472,6 +45870,7 @@ msgid "Now, pull down the Manage alerts menu and click on Actions. "
msgstr "Ahora, abre el menú Administrar alertas y haz clic en Acciones. "
#: ../../include/help/clippy/module_unknow.php:35
+#: ../../include/functions_clippy.php:321
msgid "You have unknown modules in this agent."
msgstr "Tienes módulos en estado desconocido en este agente."
@@ -45805,9 +46204,9 @@ msgid ""
"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need "
"introduce root pass."
msgstr ""
-"Puedes activar todos los servidores. Tienes que ir al terminal de Linux y "
-"ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es "
-"posible que necesites introducir la contraseña de root."
+"Puede activar todos los servidores. Vaya al terminal de Linux y ejecute el "
+"siguiente comando: \"sudo /etc/init.d/pandora_server restart\". Es posible que "
+"necesite introducir la contraseña raíz."
#: ../../include/help/clippy/interval_agent_min.php:35
msgid "Interval Agent."
@@ -45869,8 +46268,8 @@ msgid "Please check if the email configuration is correct."
msgstr "Por favor, confirma que la configuración de email es correcta."
#: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:972
-#: ../../operation/users/user_edit.php:981
+#: ../../operation/users/user_edit.php:969
+#: ../../operation/users/user_edit.php:978
msgid "Profiles/Groups assigned to this user"
msgstr "Perfiles/Grupos asignados a este usuario"
@@ -45906,111 +46305,111 @@ msgstr ""
"Es posible que esta vista utilice parte de la información a la cual tu usuario "
"no tenga acceso."
-#: ../../include/functions_ui.php:985
+#: ../../include/functions_ui.php:1017
msgid "Software"
msgstr "Software"
-#: ../../include/functions_ui.php:1281
+#: ../../include/functions_ui.php:1318
msgid "Force check"
msgstr "Forzar comprobación"
-#: ../../include/functions_ui.php:1525
+#: ../../include/functions_ui.php:1568
msgid "The alert would fire when the value is over "
msgstr ""
"La alerta se disparará cuando el valor esté por encima de "
"span>."
-#: ../../include/functions_ui.php:1530
+#: ../../include/functions_ui.php:1573
msgid "The alert would fire when the value is under "
msgstr ""
"La alerta se disparará cuando el valor esté por debajo de "
"span>."
-#: ../../include/functions_ui.php:1545
+#: ../../include/functions_ui.php:1588
msgid "Unknown option."
msgstr "Opción desconocida."
-#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666
+#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686
msgid "the Flexible Monitoring System"
msgstr "Sistema Flexible de Monitorización"
-#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312
+#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355
#, php-format
msgid "Total items: %s"
msgstr "Número total de elementos: %s"
-#: ../../include/functions_ui.php:2341
+#: ../../include/functions_ui.php:2384
msgid "First"
msgstr "Primero"
-#: ../../include/functions_ui.php:2797
+#: ../../include/functions_ui.php:2840
msgid "Unknown type"
msgstr "Tipo desconocido"
-#: ../../include/functions_ui.php:3752
+#: ../../include/functions_ui.php:3800
msgid "No matching records found"
msgstr "No se encontraron registros coincidentes"
-#: ../../include/functions_ui.php:3753
+#: ../../include/functions_ui.php:3801
msgid "No data available in table"
msgstr "No hay datos disponibles en la tabla"
-#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995
+#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067
msgid "Export current page to CSV"
msgstr "Exportar página actual a CSV"
-#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75
-#: ../../include/functions_events.php:101 ../../operation/events/events.php:689
-#: ../../operation/events/events.php:753
+#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75
+#: ../../include/functions_events.php:101 ../../operation/events/events.php:694
+#: ../../operation/events/events.php:758
msgid "ALERT"
msgstr "ALERTA"
-#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167
-#: ../../operation/events/events.php:613
+#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167
+#: ../../operation/events/events.php:618
msgid "MAINTENANCE"
msgstr "MANTENIMIENTO"
-#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170
-#: ../../operation/events/events.php:618
+#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170
+#: ../../operation/events/events.php:623
msgid "INFORMATIONAL"
msgstr "INFORMATIVO"
-#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176
-#: ../../operation/events/events.php:628
+#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176
+#: ../../operation/events/events.php:633
msgid "MINOR"
msgstr "MENOR"
-#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173
-#: ../../operation/events/events.php:623
+#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173
+#: ../../operation/events/events.php:628
msgid "MAJOR"
msgstr "MAYOR"
-#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962
-#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158
-#: ../../include/functions_reporting.php:12166
-#: ../../include/functions_reporting.php:12319
-#: ../../include/functions_reporting.php:12333
-#: ../../include/functions_reporting.php:14672
-#: ../../include/functions_reporting.php:14747
-#: ../../include/functions_groups.php:2647
-#: ../../include/functions_groups.php:2661
-#: ../../include/functions_groups.php:2711
+#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967
+#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174
+#: ../../include/functions_reporting.php:12239
+#: ../../include/functions_reporting.php:12392
+#: ../../include/functions_reporting.php:12406
+#: ../../include/functions_reporting.php:14745
+#: ../../include/functions_reporting.php:14820
+#: ../../include/functions_groups.php:2672
+#: ../../include/functions_groups.php:2686
+#: ../../include/functions_groups.php:2736
msgid "Enterprise version not installed"
msgstr "Versión Enterprise no instalada"
-#: ../../include/functions_ui.php:5563
+#: ../../include/functions_ui.php:5638
msgid "Type at least two characters to search."
msgstr "Escribe al menos dos caracteres para buscar."
-#: ../../include/functions_ui.php:6503
+#: ../../include/functions_ui.php:6578
msgid "Unhandled error"
msgstr "Error no tratado"
-#: ../../include/functions_ui.php:6504
+#: ../../include/functions_ui.php:6579
msgid "An unhandled error occurs"
msgstr "Ha ocurrido un error no tratado"
-#: ../../include/functions_ui.php:6775
+#: ../../include/functions_ui.php:6850
#, php-format
msgid ""
"These controls are using the timezone of the system (%s) instead of yours "
@@ -46019,43 +46418,43 @@ msgstr ""
"Estos controles emplean la zona horaria del sistema (%s) en vez de la suya "
"(%s). La diferencia de horas con su zona horaria es %s."
-#: ../../include/functions_ui.php:7127
+#: ../../include/functions_ui.php:7199
msgid "Results"
msgstr "Resultados"
-#: ../../include/functions_ui.php:7173
+#: ../../include/functions_ui.php:7245
msgid "Execute query"
msgstr "Ejecutar consulta"
-#: ../../include/functions_ui.php:7196
+#: ../../include/functions_ui.php:7266
msgid "Show password"
msgstr "Mostrar contraseña"
-#: ../../include/functions_ui.php:7296
+#: ../../include/functions_ui.php:7366
msgid "WEB server"
msgstr "Servidor web"
-#: ../../include/functions_ui.php:7306
+#: ../../include/functions_ui.php:7376
msgid "Wizard Module"
msgstr "Módulo de wizard"
-#: ../../include/functions_ui.php:7399
+#: ../../include/functions_ui.php:7469
msgid "Select inventory module"
msgstr "Seleccionar módulo de inventario"
-#: ../../include/functions_ui.php:7455
+#: ../../include/functions_ui.php:7532
msgid "Use custom fields"
msgstr "Usar campos personalizados"
-#: ../../include/functions_ui.php:7581
+#: ../../include/functions_ui.php:7672
msgid "Field name"
msgstr "Nombre del campo"
-#: ../../include/functions_ui.php:7598
+#: ../../include/functions_ui.php:7689
msgid "It's a password"
msgstr "Es una contraseña"
-#: ../../include/functions_ui.php:7606
+#: ../../include/functions_ui.php:7697
msgid "Add field"
msgstr "Añadir campo"
@@ -46074,21 +46473,21 @@ msgstr "Agente añadido correctamente al diseño"
msgid "Modules successfully added to layout"
msgstr "Módulos añadidos correctamente al diseño"
-#: ../../include/functions_visual_map.php:3108
+#: ../../include/functions_visual_map.php:3111
msgid "Agents successfully added to layout"
msgstr "Agentes añadidos correctamente al diseño"
-#: ../../include/functions_visual_map.php:3504
+#: ../../include/functions_visual_map.php:3512
msgid "Cannot load the visualmap"
msgstr "No se puede cargar el mapa visual"
-#: ../../include/functions_visual_map.php:4175
-#: ../../include/rest-api/models/VisualConsole/Item.php:2108
+#: ../../include/functions_visual_map.php:4184
+#: ../../include/rest-api/models/VisualConsole/Item.php:2111
msgid "Bars graph"
msgstr "Gráfico de barras"
-#: ../../include/functions_visual_map.php:4185
-#: ../../include/rest-api/models/VisualConsole/Item.php:2116
+#: ../../include/functions_visual_map.php:4194
+#: ../../include/rest-api/models/VisualConsole/Item.php:2119
msgid "Percentile bar"
msgstr "Barra de porcentaje"
@@ -46137,7 +46536,7 @@ msgstr "Estado anormal"
msgid "No actions defined"
msgstr "No hay acciones definidas"
-#: ../../include/functions_alerts.php:2665
+#: ../../include/functions_alerts.php:2666
msgid "Alert and command group does not match"
msgstr "El grupo de la alerta y del comando no coinciden"
@@ -46267,24 +46666,24 @@ msgid "Current ranges"
msgstr "Intervalos actuales"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-#: ../../include/rest-api/models/VisualConsole/Item.php:1995
+#: ../../include/rest-api/models/VisualConsole/Item.php:1998
msgid "width"
msgstr "ancho"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-#: ../../include/rest-api/models/VisualConsole/Item.php:2005
+#: ../../include/rest-api/models/VisualConsole/Item.php:2008
msgid "height"
msgstr "altura"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-#: ../../include/rest-api/models/VisualConsole/Item.php:2027
+#: ../../include/rest-api/models/VisualConsole/Item.php:2030
msgid "X"
msgstr "X"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
-#: ../../include/rest-api/models/VisualConsole/Item.php:2064
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954
+#: ../../include/rest-api/models/VisualConsole/Item.php:2067
msgid "Show on top"
msgstr "Mostrar primero"
@@ -46327,11 +46726,15 @@ msgstr "Color de leyenda"
msgid "Show legend"
msgstr "Mostrar leyenda"
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715
+msgid "Recursive"
+msgstr "Recursivo"
+
#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:721
-#: ../../include/rest-api/models/VisualConsole/View.php:800
+#: ../../include/rest-api/models/VisualConsole/View.php:687
+#: ../../include/rest-api/models/VisualConsole/View.php:766
msgid "Failed to connect to node"
msgstr "No se ha podido conectar con el nodo"
@@ -46354,67 +46757,67 @@ msgstr "Configuración general"
msgid "Specific settings"
msgstr "Configuración específica"
-#: ../../include/rest-api/models/VisualConsole/View.php:221
+#: ../../include/rest-api/models/VisualConsole/View.php:183
msgid "Item type not valid ["
msgstr "Tipo de elemento no válido ["
-#: ../../include/rest-api/models/VisualConsole/View.php:226
+#: ../../include/rest-api/models/VisualConsole/View.php:188
msgid "Item type has no getFormInputs method ["
msgstr "Este tipo de elemento no tiene método getFormInputs ["
-#: ../../include/rest-api/models/VisualConsole/View.php:738
+#: ../../include/rest-api/models/VisualConsole/View.php:704
msgid "NetworkLink from"
msgstr "NetworkLink de"
-#: ../../include/rest-api/models/VisualConsole/View.php:742
-#: ../../include/rest-api/models/VisualConsole/View.php:821
+#: ../../include/rest-api/models/VisualConsole/View.php:708
+#: ../../include/rest-api/models/VisualConsole/View.php:787
#, php-format
msgid "Interface %s status"
msgstr "Estado de la interfaz %s"
-#: ../../include/rest-api/models/VisualConsole/View.php:747
-#: ../../include/rest-api/models/VisualConsole/View.php:826
+#: ../../include/rest-api/models/VisualConsole/View.php:713
+#: ../../include/rest-api/models/VisualConsole/View.php:792
#: ../../operation/agentes/interface_traffic_graph_win.php:78
msgid "In"
msgstr "En"
-#: ../../include/rest-api/models/VisualConsole/View.php:748
-#: ../../include/rest-api/models/VisualConsole/View.php:827
+#: ../../include/rest-api/models/VisualConsole/View.php:714
+#: ../../include/rest-api/models/VisualConsole/View.php:793
#: ../../operation/agentes/interface_traffic_graph_win.php:79
msgid "Out"
msgstr "Fuera"
-#: ../../include/rest-api/models/VisualConsole/View.php:817
+#: ../../include/rest-api/models/VisualConsole/View.php:783
msgid "NetworkLink to"
msgstr "NetworkLink a"
-#: ../../include/rest-api/models/VisualConsole/View.php:869
+#: ../../include/rest-api/models/VisualConsole/View.php:835
#, php-format
msgid "Failed to generate charts: %s"
msgstr "No se han podido generar las tablas: %s"
-#: ../../include/rest-api/models/VisualConsole/Item.php:1965
+#: ../../include/rest-api/models/VisualConsole/Item.php:1968
msgid "Label position"
msgstr "Posición de la etiqueta"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2052
+#: ../../include/rest-api/models/VisualConsole/Item.php:2055
msgid "Link enabled"
msgstr "Enlace habilitado"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2094
+#: ../../include/rest-api/models/VisualConsole/Item.php:2097
msgid "Static graph"
msgstr "Imagen estática"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2112
+#: ../../include/rest-api/models/VisualConsole/Item.php:2115
msgid "Event History Graph"
msgstr "Gráfica de histórico de eventos"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2120
+#: ../../include/rest-api/models/VisualConsole/Item.php:2123
msgid "Percentile bubble"
msgstr "Gráfica bubble de percentil"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2590
-#: ../../include/rest-api/models/VisualConsole/Item.php:2591
+#: ../../include/rest-api/models/VisualConsole/Item.php:2593
+#: ../../include/rest-api/models/VisualConsole/Item.php:2594
msgid "Image Vc"
msgstr "Imagen Vc"
@@ -46456,8 +46859,8 @@ msgstr "Pinche aquí para obtener más información"
#: ../../include/functions_reports.php:651
#: ../../include/functions_reports.php:1102
-#: ../../include/functions_reporting.php:10729
-#: ../../include/functions_reporting.php:10889
+#: ../../include/functions_reporting.php:10738
+#: ../../include/functions_reporting.php:10898
msgid "Simple graph"
msgstr "Gráfico simple"
@@ -46578,12 +46981,12 @@ msgid "Inventory changes"
msgstr "Inventario de cambios"
#: ../../include/functions_reports.php:918
-#: ../../include/functions_reporting.php:6921
+#: ../../include/functions_reporting.php:6930
msgid "Agent configuration"
msgstr "Configuración de agentes"
#: ../../include/functions_reports.php:922
-#: ../../include/functions_reporting.php:5230
+#: ../../include/functions_reporting.php:5239
msgid "Group configuration"
msgstr "Configuración del grupo"
@@ -46613,60 +47016,61 @@ msgstr "Sql"
msgid "Graph Sql"
msgstr "Gráfico SQL"
-#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001
+#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006
msgid "Please select an item from this list."
msgstr "Seleccione un elemento de la lista."
-#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363
-msgid "Please select..."
-msgstr "Seleccione..."
-
-#: ../../include/functions_html.php:1622
+#: ../../include/functions_html.php:1630
msgid "Type to search agents"
msgstr "Escriba para buscar agentes"
-#: ../../include/functions_html.php:1636
+#: ../../include/functions_html.php:1644
msgid "Type to search modules"
msgstr "Escriba para buscar módulos"
-#: ../../include/functions_html.php:1704
+#: ../../include/functions_html.php:1713
msgid "Only common modules"
msgstr "Solo módulos comunes"
-#: ../../include/functions_html.php:2139
+#: ../../include/functions_html.php:2147
msgid "weeks"
msgstr "semanas"
-#: ../../include/functions_html.php:2321
+#: ../../include/functions_html.php:2336
msgid "Month day"
msgstr "Día del mes"
-#: ../../include/functions_html.php:2323
+#: ../../include/functions_html.php:2338
msgid "Week day"
msgstr "Día de la semana"
-#: ../../include/functions_html.php:4800
+#: ../../include/functions_html.php:4824
msgid "Select a file"
-msgstr "Elegir archivo"
+msgstr "Seleccionar filtro"
-#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020
+#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044
msgid "Type at least two characters to search the module."
msgstr "Escribe al menos dos caracteres para buscar el módulo."
-#: ../../include/functions_html.php:5182 ../../index.php:533 ../../index.php:817
-#: ../../index.php:891
+#: ../../include/functions_html.php:5206 ../../index.php:533 ../../index.php:818
+#: ../../index.php:892
#, php-format
msgid "%s cannot verify the origin of the request. Try again, please."
msgstr "%s no puede verificar el origen de la petición. Vuelva a intentarlo."
-#: ../../include/functions_html.php:6104
+#: ../../include/functions_html.php:6128
msgid "Type at least two characters to search the user."
msgstr "Escriba al menos dos caracteres para buscar el usuario."
-#: ../../include/functions_html.php:6507
+#: ../../include/functions_html.php:6535
msgid "Primary group cannot be secondary too."
msgstr "Un grupo primario no puede ser también secundario."
+#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938
+#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942
+msgid "Go to top"
+msgstr "Subir"
+
#: ../../include/functions_register.php:105
#, php-format
msgid "%s configuration wizard"
@@ -46732,7 +47136,7 @@ msgstr "Usar certificado"
msgid "Integria inventory"
msgstr "Inventario Integria IMS"
-#: ../../include/functions_config.php:252 ../../include/functions_config.php:1876
+#: ../../include/functions_config.php:252 ../../include/functions_config.php:1888
msgid "Integria API password"
msgstr "Contraseña de la API de Integria IMS"
@@ -46780,481 +47184,489 @@ msgid "alias_as_name"
msgstr "Alias como nombre"
#: ../../include/functions_config.php:374
+msgid "keep_in_process_status_extra_id"
+msgstr "keep_in_process_status_extra_id"
+
+#: ../../include/functions_config.php:378
msgid "Console log enabled"
msgstr "Log de consola habilitado"
-#: ../../include/functions_config.php:378
+#: ../../include/functions_config.php:382
msgid "Audit log enabled"
msgstr "Log de auditoría habilitado"
-#: ../../include/functions_config.php:382
+#: ../../include/functions_config.php:386
msgid "Module Custom ID read only"
msgstr "Solo lectura del ID personalizado del módulo"
-#: ../../include/functions_config.php:446
+#: ../../include/functions_config.php:454
msgid "Replication DB host"
msgstr "Host de la BD de replicación"
-#: ../../include/functions_config.php:450
+#: ../../include/functions_config.php:458
msgid "Replication DB database"
msgstr "Nombre de la BD de replicación"
-#: ../../include/functions_config.php:454
+#: ../../include/functions_config.php:462
msgid "Replication DB user"
msgstr "Usuario de la BD de replicación"
-#: ../../include/functions_config.php:458
+#: ../../include/functions_config.php:466
msgid "Replication DB password"
msgstr "Contraseña de la BD de replicación"
-#: ../../include/functions_config.php:462
+#: ../../include/functions_config.php:470
msgid "Replication DB port"
msgstr "Puerto de la BD de replicación"
-#: ../../include/functions_config.php:466
+#: ../../include/functions_config.php:474
msgid "Metaconsole agent cache"
msgstr "Caché de agente de la Metaconsola"
-#: ../../include/functions_config.php:474
+#: ../../include/functions_config.php:482
msgid "Enable Update Manager"
msgstr "Habilitar Update Manager"
-#: ../../include/functions_config.php:478
+#: ../../include/functions_config.php:486
msgid "Legacy database HA"
msgstr "Base de datos heredada HA"
-#: ../../include/functions_config.php:482
+#: ../../include/functions_config.php:490
msgid "Ipam Ocuppied Manager Critical"
msgstr "Ipam Ocuppied Manager Crítico"
-#: ../../include/functions_config.php:486
+#: ../../include/functions_config.php:494
msgid "Ipam Ocuppied Manager Warning"
msgstr "Ipam Ocuppied Manager Advertencia"
-#: ../../include/functions_config.php:583
+#: ../../include/functions_config.php:591
msgid "Automatically timezone visual"
msgstr "Visualización automática de la zona horaria"
-#: ../../include/functions_config.php:655
+#: ../../include/functions_config.php:611
+msgid "Recursive search"
+msgstr "Búsqueda recursiva"
+
+#: ../../include/functions_config.php:667
msgid "Ldap search timeout"
msgstr "Tiempo de espera de búsqueda LDAP"
-#: ../../include/functions_config.php:671
+#: ../../include/functions_config.php:683
msgid "Secontary start TLS"
msgstr "TLS de inicio secundario"
-#: ../../include/functions_config.php:787
+#: ../../include/functions_config.php:799
msgid "Saml profile parameters"
msgstr "Parámetros de perfil saml"
-#: ../../include/functions_config.php:803
+#: ../../include/functions_config.php:815
msgid "2FA all users"
msgstr "2FA todos los usuarios"
-#: ../../include/functions_config.php:810
+#: ../../include/functions_config.php:822
msgid "Session timeout forced to 90 minutes"
msgstr "Límite de tiempo de la sesión forzado a 90 minutos"
-#: ../../include/functions_config.php:830
+#: ../../include/functions_config.php:842
msgid "Event purge"
msgstr "Purga de eventos"
-#: ../../include/functions_config.php:866
+#: ../../include/functions_config.php:878
msgid "Max. days before autodisable deletion"
msgstr "Días máximos antes de eliminar los deshabilitados"
-#: ../../include/functions_config.php:870
+#: ../../include/functions_config.php:882
msgid "Item limit for realtime reports)"
msgstr "Límite de elementos para los informes de tiempo real"
-#: ../../include/functions_config.php:906
+#: ../../include/functions_config.php:918
msgid "Big Operatiopn Step to purge old data"
msgstr "Gran operación para la purga de datos antiguos"
-#: ../../include/functions_config.php:940
+#: ../../include/functions_config.php:952
msgid "Max execution event response"
msgstr "Máxima respuesta de ejecución de eventos"
-#: ../../include/functions_config.php:948
+#: ../../include/functions_config.php:960
msgid "SNMP walk binary path"
msgstr "Ruta del binario SNMP walk"
-#: ../../include/functions_config.php:952
+#: ../../include/functions_config.php:964
msgid "SNMP walk binary path (fallback for v1)"
msgstr "Ruta del binario SNMP walk (alternativa para la v1)"
-#: ../../include/functions_config.php:956
+#: ../../include/functions_config.php:968
msgid "Default WMI Binary"
msgstr "Binario WMI por defecto"
-#: ../../include/functions_config.php:966
+#: ../../include/functions_config.php:978
msgid "SNMP Interface Agent Wizard"
msgstr "Asistente del agente de interfaz SNMP"
-#: ../../include/functions_config.php:977
+#: ../../include/functions_config.php:989
msgid "Notification Autoclose time"
msgstr "Hora de cierre automático de notificaciones"
-#: ../../include/functions_config.php:997
+#: ../../include/functions_config.php:1009
msgid "Graph color #4"
msgstr "Color del gráfico #4"
-#: ../../include/functions_config.php:1001
+#: ../../include/functions_config.php:1013
msgid "Graph color #5"
msgstr "Color del gráfico #5"
-#: ../../include/functions_config.php:1005
+#: ../../include/functions_config.php:1017
msgid "Graph color #6"
msgstr "Color del gráfico #6"
-#: ../../include/functions_config.php:1009
+#: ../../include/functions_config.php:1021
msgid "Graph color #7"
msgstr "Color del gráfico #7"
-#: ../../include/functions_config.php:1013
+#: ../../include/functions_config.php:1025
msgid "Graph color #8"
msgstr "Color del gráfico #8"
-#: ../../include/functions_config.php:1017
+#: ../../include/functions_config.php:1029
msgid "Graph color #9"
msgstr "Color del gráfico #9"
-#: ../../include/functions_config.php:1021
+#: ../../include/functions_config.php:1033
msgid "Graph color #10"
msgstr "Color del gráfico #10"
-#: ../../include/functions_config.php:1054
+#: ../../include/functions_config.php:1066
msgid "Show QR code header"
msgstr "Mostrar código QR en la cabecera"
-#: ../../include/functions_config.php:1082
+#: ../../include/functions_config.php:1094
msgid "Custom logo white background"
msgstr "Fondo blanco del logo personalizado"
-#: ../../include/functions_config.php:1110
+#: ../../include/functions_config.php:1122
msgid "Custom title header"
msgstr "Encabezado de título personalizado"
-#: ../../include/functions_config.php:1114
+#: ../../include/functions_config.php:1126
msgid "Custom subtitle header"
msgstr "Encabezado del subtítulo personalizado"
-#: ../../include/functions_config.php:1134
+#: ../../include/functions_config.php:1146
msgid "Login background"
msgstr "Imagen de fondo de la pantalla de inicio de sesión"
-#: ../../include/functions_config.php:1138
-#: ../../include/functions_config.php:1186
+#: ../../include/functions_config.php:1150
+#: ../../include/functions_config.php:1198
msgid "Custom Docs url"
msgstr "URL de documentos personalizados"
-#: ../../include/functions_config.php:1142
-#: ../../include/functions_config.php:1190
+#: ../../include/functions_config.php:1154
+#: ../../include/functions_config.php:1202
msgid "Custom support url"
msgstr "URL de soporte personalizado"
-#: ../../include/functions_config.php:1162
+#: ../../include/functions_config.php:1174
msgid "Custom logo metaconsole (white background)"
msgstr "Logo personalizado de la consola (fondo blanco)"
-#: ../../include/functions_config.php:1166
+#: ../../include/functions_config.php:1178
msgid "Custom logo login metaconsole"
msgstr "Logo personalizado de la conexión a la Metaconsola"
-#: ../../include/functions_config.php:1170
+#: ../../include/functions_config.php:1182
msgid "Custom splash login metaconsole"
msgstr "Conexión del Splash personalizado de la Metaconsola"
-#: ../../include/functions_config.php:1174
+#: ../../include/functions_config.php:1186
msgid "Custom title1 login metaconsole"
msgstr "Título1 conexión personalizado de la Metaconsola"
-#: ../../include/functions_config.php:1178
+#: ../../include/functions_config.php:1190
msgid "Custom title2 login metaconsole"
msgstr "Título2 conexión personalizado de la Metaconsola"
-#: ../../include/functions_config.php:1182
+#: ../../include/functions_config.php:1194
msgid "Login background metaconsole"
msgstr "Fondo de la conexión a la Metaconsola"
-#: ../../include/functions_config.php:1206
+#: ../../include/functions_config.php:1218
msgid "Default line favourite_view for the Visual Console"
msgstr "Línea por defecto favourite_view para la consola visual"
-#: ../../include/functions_config.php:1210
+#: ../../include/functions_config.php:1222
msgid "Default line menu items for the Visual Console"
msgstr "Elementos predeterminados de menú de línea para la consola visual"
-#: ../../include/functions_config.php:1222
+#: ../../include/functions_config.php:1238
msgid "Default line menu items for the Services"
msgstr "Linea de elementos de menú por defecto para los servicios"
-#: ../../include/functions_config.php:1254
+#: ../../include/functions_config.php:1270
msgid "Show units in values report"
msgstr "Mostrar unidades en los valores del informe"
-#: ../../include/functions_config.php:1262
+#: ../../include/functions_config.php:1278
msgid "Autohidden menu"
msgstr "Ocultar menú automáticamente"
-#: ../../include/functions_config.php:1266
+#: ../../include/functions_config.php:1282
msgid "Visual animation"
msgstr "Animación visual"
-#: ../../include/functions_config.php:1282
+#: ../../include/functions_config.php:1298
msgid "Fixed graph"
msgstr "Gráfico fijo"
-#: ../../include/functions_config.php:1290
+#: ../../include/functions_config.php:1306
msgid "Paginate module"
msgstr "Paginar vista de módulos"
-#: ../../include/functions_config.php:1294
+#: ../../include/functions_config.php:1310
#: ../../include/class/ExternalTools.class.php:323
msgid "Custom graphviz directory"
msgstr "Directorio personalizado graphviz"
-#: ../../include/functions_config.php:1302
+#: ../../include/functions_config.php:1318
msgid "Shortened module graph data"
msgstr "Gráfico de módulo de datos acortados"
-#: ../../include/functions_config.php:1310
+#: ../../include/functions_config.php:1326
msgid "Show empty groups in group view."
msgstr "Mostrar grupos vacíos en la vista de grupos."
-#: ../../include/functions_config.php:1318
+#: ../../include/functions_config.php:1334
msgid "Default type of module charts."
msgstr "Tipo de gráficos de módulos por defecto"
-#: ../../include/functions_config.php:1322
+#: ../../include/functions_config.php:1338
msgid "Default Number of elements in Custom Graph."
msgstr "Número de elementos por defecto en gráfica personalizada."
-#: ../../include/functions_config.php:1326
+#: ../../include/functions_config.php:1342
msgid "Default type of interface charts."
msgstr "Tipo predefinido para los gráficos de interfaz"
-#: ../../include/functions_config.php:1342
+#: ../../include/functions_config.php:1358
msgid "Display lateral menus with left click"
msgstr "Mostrar los menús laterales con el clic izquierdo"
-#: ../../include/functions_config.php:1351
+#: ../../include/functions_config.php:1367
msgid "Service item padding size"
msgstr "Espacio entre los nodos del mapa de servicios"
-#: ../../include/functions_config.php:1356
+#: ../../include/functions_config.php:1372
msgid "Default percentil"
msgstr "Percentil por defecto"
-#: ../../include/functions_config.php:1360
+#: ../../include/functions_config.php:1376
msgid "Default full scale (TIP)"
msgstr "Escala completa por defecto (TIP)"
-#: ../../include/functions_config.php:1364
+#: ../../include/functions_config.php:1380
msgid "Default soft graphs"
msgstr "Gráficas soft por defecto"
-#: ../../include/functions_config.php:1368
+#: ../../include/functions_config.php:1384
msgid "Default zoom graphs"
msgstr "Gráficas ampliadas por defecto"
-#: ../../include/functions_config.php:1377
+#: ../../include/functions_config.php:1393
msgid "Default height of the chart image"
msgstr "Altuta de la imagen de la gráfica por defecto"
-#: ../../include/functions_config.php:1399
+#: ../../include/functions_config.php:1415
msgid "Add the custom post process"
msgstr "Añadir la personalización al proceso posterior"
-#: ../../include/functions_config.php:1407
+#: ../../include/functions_config.php:1423
msgid "Delete the custom post process"
msgstr "Borrar la personalización al proceso posterior"
-#: ../../include/functions_config.php:1461
+#: ../../include/functions_config.php:1477
msgid "Add custom module unit"
msgstr "Añadir unidad de módulo personalizado"
-#: ../../include/functions_config.php:1467
+#: ../../include/functions_config.php:1483
msgid "Delete custom module unit"
msgstr "Eliminar unidad de módulo personalizado"
-#: ../../include/functions_config.php:1524
+#: ../../include/functions_config.php:1540
msgid "Thousand separator"
msgstr "Separador de miles"
-#: ../../include/functions_config.php:1531
+#: ../../include/functions_config.php:1547
msgid "Name storage path"
msgstr "Ruta de almacenamiento de nombres"
-#: ../../include/functions_config.php:1574
+#: ../../include/functions_config.php:1586
msgid "Sflow name dir"
msgstr "Directorio del nombre de Sflow"
-#: ../../include/functions_config.php:1617
+#: ../../include/functions_config.php:1629
msgid "IP ElasticSearch server"
msgstr "IP del servidor ElasticSearch"
-#: ../../include/functions_config.php:1621
+#: ../../include/functions_config.php:1633
msgid "Port ElasticSearch server"
msgstr "Puerto del servidor ElasticSearch"
-#: ../../include/functions_config.php:1668
+#: ../../include/functions_config.php:1680
msgid "Enable history trap"
msgstr "Activar trap de histórico"
-#: ../../include/functions_config.php:1688
+#: ../../include/functions_config.php:1700
msgid "Enable history database advanced"
msgstr "Habilitar base de datos de histórico avanzada"
-#: ../../include/functions_config.php:1697
+#: ../../include/functions_config.php:1709
msgid "String Days"
msgstr "Días de cadena"
-#: ../../include/functions_config.php:1713
+#: ../../include/functions_config.php:1725
msgid "Trap Days"
msgstr "Días de traps"
-#: ../../include/functions_config.php:1721
+#: ../../include/functions_config.php:1733
msgid "Trap history purge"
msgstr "Purgado de histórico de traps"
-#: ../../include/functions_config.php:1793
+#: ../../include/functions_config.php:1805
msgid "Historical database traps purge"
msgstr "Purga de traps de la base de datos de histórico"
-#: ../../include/functions_config.php:1816
+#: ../../include/functions_config.php:1828
msgid "eHorus user login"
msgstr "Inicio de sesión del usuario a eHorus"
-#: ../../include/functions_config.php:1828
+#: ../../include/functions_config.php:1840
msgid "eHorus API hostname"
msgstr "Propietario de la API de eHorus"
-#: ../../include/functions_config.php:1832
+#: ../../include/functions_config.php:1844
msgid "eHorus API port"
msgstr "Puerto de la API de eHorus"
-#: ../../include/functions_config.php:1836
+#: ../../include/functions_config.php:1848
msgid "eHorus request timeout"
msgstr "Tiempo de respuesta de eHorus"
-#: ../../include/functions_config.php:1840
+#: ../../include/functions_config.php:1852
msgid "eHorus id custom field"
msgstr "ID del campo personalizado de eHorus"
-#: ../../include/functions_config.php:1846
+#: ../../include/functions_config.php:1858
msgid "Integria user login"
msgstr "Usuario de Integria"
-#: ../../include/functions_config.php:1854
+#: ../../include/functions_config.php:1866
msgid "Integria user"
msgstr "Usuario de Integria"
-#: ../../include/functions_config.php:1858
+#: ../../include/functions_config.php:1870
msgid "Integria password"
msgstr "Contraseña de Integria"
-#: ../../include/functions_config.php:1872
+#: ../../include/functions_config.php:1884
msgid "integria API hostname"
msgstr "Nombre del host de la API de Integria"
-#: ../../include/functions_config.php:1880
+#: ../../include/functions_config.php:1892
msgid "Integria request timeout"
msgstr "Límite de tiempo de las peticiones de Integria"
-#: ../../include/functions_config.php:1884
+#: ../../include/functions_config.php:1896
msgid "Integria default group"
msgstr "Grupo por defecto de Integria"
-#: ../../include/functions_config.php:1888
+#: ../../include/functions_config.php:1900
msgid "Integria custom response default group"
msgstr "Grupo de respuesta personalizada de Integria por defecto"
-#: ../../include/functions_config.php:1892
+#: ../../include/functions_config.php:1904
msgid "Integria default priority"
msgstr "Prioridad por defecto de Integria"
-#: ../../include/functions_config.php:1896
+#: ../../include/functions_config.php:1908
msgid "Integria custom response default priority"
msgstr "Prioridad de respuesta personalizada de Integria por defecto"
-#: ../../include/functions_config.php:1900
+#: ../../include/functions_config.php:1912
msgid "Integria default creator"
msgstr "Creador por defecto de Integria"
-#: ../../include/functions_config.php:1904
+#: ../../include/functions_config.php:1916
msgid "Integria default owner"
msgstr "Propietario de Integria por defecto"
-#: ../../include/functions_config.php:1908
+#: ../../include/functions_config.php:1920
msgid "Integria custom response default owner"
msgstr "Propietario de respuesta personalizada de Integria por defecto"
-#: ../../include/functions_config.php:1912
+#: ../../include/functions_config.php:1924
msgid "Integria default ticket type"
msgstr "Tipo de ticket de Integria por defecto"
-#: ../../include/functions_config.php:1916
+#: ../../include/functions_config.php:1928
msgid "Integria custom response default ticket type"
msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto"
-#: ../../include/functions_config.php:1920
+#: ../../include/functions_config.php:1932
msgid "Integria default ticket status"
msgstr "Estado del ticket de Integria por defecto"
-#: ../../include/functions_config.php:1924
+#: ../../include/functions_config.php:1936
msgid "Integria custom response default ticket status"
msgstr "Estado del ticket de respuesta personalizada de Integria por defecto"
-#: ../../include/functions_config.php:1928
+#: ../../include/functions_config.php:1940
msgid "Integria default ticket title"
msgstr "Título del ticket de Integria por defecto"
-#: ../../include/functions_config.php:1932
+#: ../../include/functions_config.php:1944
msgid "Integria custom response default ticket title"
msgstr "Título del ticket de respuesta personalizada de Integria por defecto"
-#: ../../include/functions_config.php:1936
+#: ../../include/functions_config.php:1948
msgid "Integria default ticket content"
msgstr "Contenido del ticket de Integria por defecto"
-#: ../../include/functions_config.php:1940
+#: ../../include/functions_config.php:1952
msgid "Integria custom response default ticket content"
msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto"
-#: ../../include/functions_config.php:1946
+#: ../../include/functions_config.php:1958
msgid "Module Library User"
msgstr "Usuario de la biblioteca de módulos"
-#: ../../include/functions_config.php:1950
+#: ../../include/functions_config.php:1962
msgid "Module Library Password"
msgstr "Contraseña de la biblioteca de módulos"
-#: ../../include/functions_config.php:1956
+#: ../../include/functions_config.php:1968
msgid "WebSocket bind address"
msgstr "Dirección de enlace WebSocket"
-#: ../../include/functions_config.php:1960
+#: ../../include/functions_config.php:1972
msgid "WebSocket port"
msgstr "Puerto WebSocket"
-#: ../../include/functions_config.php:1983
+#: ../../include/functions_config.php:1995
#, php-format
msgid "Update failed. The next values could not be updated:
-%s"
msgstr ""
"Error de actualización. No se pudieron actualizar los siguientes valores:
"
"-%s"
-#: ../../include/functions_config.php:2662
-#: ../../operation/agentes/networkmap.dinamic.php:220
+#: ../../include/functions_config.php:2682
+#: ../../operation/agentes/networkmap.dinamic.php:228
msgid "Pandora FMS"
msgstr "Pandora FMS"
-#: ../../include/functions_config.php:2670
+#: ../../include/functions_config.php:2690
msgid "PandoraFMS Metaconsole"
msgstr "Metaconsola PandoraFMS"
-#: ../../include/functions_config.php:2674
+#: ../../include/functions_config.php:2694
msgid "Centralized operation console"
msgstr "Consola de operación centralizada"
@@ -47358,7 +47770,7 @@ msgstr "Añadir por %s"
msgid "Resolution %s"
msgstr "Resolución de %s"
-#: ../../include/class/Tree.class.php:790
+#: ../../include/class/Tree.class.php:813
msgid "Module alerts"
msgstr "Alertas de módulo"
@@ -47515,7 +47927,6 @@ msgid "Sound not exist"
msgstr "El sonido no existe"
#: ../../include/class/EventSound.class.php:188
-#: ../../operation/events/sound_events.php:261
msgid "Sounds"
msgstr "Sonidos"
@@ -47524,7 +47935,7 @@ msgid "Add new sound"
msgstr "Añadir nuevo sonido"
#: ../../include/class/EventSound.class.php:212
-msgid "Accoustic console sound list"
+msgid "Acoustic console sound list"
msgstr "Lista de sonidos de la consola acústica"
#: ../../include/class/EventSound.class.php:253
@@ -47568,7 +47979,7 @@ msgid "Something is wrong"
msgstr "Algo ha salido mal"
#: ../../include/class/HelpFeedBack.class.php:172
-#: ../../include/class/Diagnostics.class.php:1922
+#: ../../include/class/Diagnostics.class.php:1926
msgid "What happened?"
msgstr "¿Qué ha pasado?"
@@ -47581,7 +47992,7 @@ msgid "Submit"
msgstr "Enviar"
#: ../../include/class/HelpFeedBack.class.php:214
-#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364
+#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364
#: ../../general/header.php:366
msgid "Feedback"
msgstr "Feedback"
@@ -47639,7 +48050,7 @@ msgid "%s Licence Information"
msgstr "Información de la licencia %s"
#: ../../include/class/Diagnostics.class.php:274
-#: ../../include/class/Diagnostics.class.php:1274
+#: ../../include/class/Diagnostics.class.php:1278
msgid "Status of the attachment folder"
msgstr "Estado de la carpeta de adjuntos"
@@ -47832,7 +48243,7 @@ msgstr "SO"
#: ../../include/class/Diagnostics.class.php:759
#: ../../include/class/Diagnostics.class.php:777
-#: ../../include/class/NetworkMap.class.php:3066
+#: ../../include/class/NetworkMap.class.php:3072
msgid "Ip"
msgstr "IP"
@@ -47973,39 +48384,39 @@ msgstr "Fragmentación de tablas (valor actual)"
msgid "Table fragmentation status"
msgstr "Estado de fragmentación de tablas"
-#: ../../include/class/Diagnostics.class.php:1048
+#: ../../include/class/Diagnostics.class.php:1052
msgid "Size server logs (current value)"
msgstr "Logs del tamaño del servidor (valor actual)"
-#: ../../include/class/Diagnostics.class.php:1052
+#: ../../include/class/Diagnostics.class.php:1056
msgid "Status server logs"
msgstr "Logs del estado del servidor"
-#: ../../include/class/Diagnostics.class.php:1057
+#: ../../include/class/Diagnostics.class.php:1061
msgid "Size error logs (current value)"
msgstr "Logs de error de tamaño (valor actual)"
-#: ../../include/class/Diagnostics.class.php:1061
+#: ../../include/class/Diagnostics.class.php:1065
msgid "Status error logs"
msgstr "Logs de error de estado"
-#: ../../include/class/Diagnostics.class.php:1066
+#: ../../include/class/Diagnostics.class.php:1070
msgid "Size console logs (current value)"
msgstr "Logs del tamaño de la consola (valor actual)"
-#: ../../include/class/Diagnostics.class.php:1070
+#: ../../include/class/Diagnostics.class.php:1074
msgid "Status console logs"
msgstr "Logs del estado de la consola"
-#: ../../include/class/Diagnostics.class.php:1105
+#: ../../include/class/Diagnostics.class.php:1109
msgid "License capacity is less than 90 percent"
msgstr "La capacidad de la licencia es menor del 90 por ciento"
-#: ../../include/class/Diagnostics.class.php:1108
+#: ../../include/class/Diagnostics.class.php:1112
msgid "License capacity exceeds 90 percent"
msgstr "La capacidad de la licencia excede del 90 por ciento"
-#: ../../include/class/Diagnostics.class.php:1116
+#: ../../include/class/Diagnostics.class.php:1120
msgid ""
"The average of modules per agent is more than 40. You can have performance "
"problems"
@@ -48013,48 +48424,48 @@ msgstr ""
"La media de módulos por agente es más de 40. Puede sufrir problemas de "
"rendimiento"
-#: ../../include/class/Diagnostics.class.php:1121
+#: ../../include/class/Diagnostics.class.php:1125
msgid "The average of modules per agent is less than 40"
msgstr "La media de módulos por agente es menos de 40"
-#: ../../include/class/Diagnostics.class.php:1159
+#: ../../include/class/Diagnostics.class.php:1163
msgid "The system has no load"
msgstr "El sistema no tiene carga"
-#: ../../include/class/Diagnostics.class.php:1203
+#: ../../include/class/Diagnostics.class.php:1207
msgid "Network Management System"
msgstr "Sistema de administración de la red"
-#: ../../include/class/Diagnostics.class.php:1204
#: ../../include/class/Diagnostics.class.php:1208
+#: ../../include/class/Diagnostics.class.php:1212
msgid "Off"
msgstr "Apagado"
-#: ../../include/class/Diagnostics.class.php:1215
+#: ../../include/class/Diagnostics.class.php:1219
msgid "Status of agents capacity"
msgstr "Estado de la capacidad de los agentes"
-#: ../../include/class/Diagnostics.class.php:1220
+#: ../../include/class/Diagnostics.class.php:1224
msgid "Status of average modules per agent"
msgstr "Estado de la media de módulos por agente"
-#: ../../include/class/Diagnostics.class.php:1226
+#: ../../include/class/Diagnostics.class.php:1230
msgid "Interval average of the network modules"
msgstr "Intervalo de media de los módulos de la red"
-#: ../../include/class/Diagnostics.class.php:1256
+#: ../../include/class/Diagnostics.class.php:1260
msgid "The attached folder contains more than 700 files."
msgstr "La carpeta adjunta contiene más de 700 archivos."
-#: ../../include/class/Diagnostics.class.php:1261
+#: ../../include/class/Diagnostics.class.php:1265
msgid "The attached folder contains less than 700 files."
msgstr "La carpeta adjunta contiene menos de 700 archivos."
-#: ../../include/class/Diagnostics.class.php:1270
+#: ../../include/class/Diagnostics.class.php:1274
msgid "Total files in the attached folder"
msgstr "Total de archivos en la carpeta adjunta"
-#: ../../include/class/Diagnostics.class.php:1305
+#: ../../include/class/Diagnostics.class.php:1309
msgid ""
"The tagente_datos table contains too much data. A historical database is "
"recommended."
@@ -48062,31 +48473,31 @@ msgstr ""
"La tabla tagente_datos contiene demasiados datos. Se recomienda una base de "
"datos histórica."
-#: ../../include/class/Diagnostics.class.php:1310
+#: ../../include/class/Diagnostics.class.php:1314
msgid "The tagente_datos table contains an acceptable amount of data."
msgstr "La tabla tagente_datos contiene una cantidad de datos aceptable"
-#: ../../include/class/Diagnostics.class.php:1319
+#: ../../include/class/Diagnostics.class.php:1323
msgid "Total data in tagente_datos table"
msgstr "Total de datos de la tabla tagente_datos"
-#: ../../include/class/Diagnostics.class.php:1323
+#: ../../include/class/Diagnostics.class.php:1327
msgid "Tagente_datos table status"
msgstr "Estado de la tabla tagente_datos"
-#: ../../include/class/Diagnostics.class.php:1359
+#: ../../include/class/Diagnostics.class.php:1363
msgid "Threads"
msgstr "Hilos"
-#: ../../include/class/Diagnostics.class.php:1369
+#: ../../include/class/Diagnostics.class.php:1373
msgid "Total threads"
msgstr "Total de hilos"
-#: ../../include/class/Diagnostics.class.php:1376
+#: ../../include/class/Diagnostics.class.php:1380
msgid "Current pandora_server running threads"
msgstr "Hilos pandora_server en ejecución actualmente"
-#: ../../include/class/Diagnostics.class.php:1380
+#: ../../include/class/Diagnostics.class.php:1384
msgid ""
"There's more pandora_server threads than configured, are you running multiple "
"servers simultaneusly?."
@@ -48094,7 +48505,7 @@ msgstr ""
"Hay más hilos pandora_server de los configurados, ¿está ejecutando varios "
"servidores a la vez?"
-#: ../../include/class/Diagnostics.class.php:1514
+#: ../../include/class/Diagnostics.class.php:1518
msgid ""
"Please check your Pandora Server setup and make sure that the database "
"maintenance daemon is running."
@@ -48102,7 +48513,7 @@ msgstr ""
"Compruebe la configuración del servidor de Pandora y asegúrese de que el "
"demonio de mantenimiento de la base de datos está en ejecución."
-#: ../../include/class/Diagnostics.class.php:1518
+#: ../../include/class/Diagnostics.class.php:1522
msgid ""
"It' is very important to keep the database up-to-date to get the best "
"performance and results in Pandora"
@@ -48110,56 +48521,56 @@ msgstr ""
"Es muy importante que la base de datos esté actualizada para conseguir un "
"rendimiento y resultados óptimos en Pandora FMS"
-#: ../../include/class/Diagnostics.class.php:1780
+#: ../../include/class/Diagnostics.class.php:1784
msgid "You have more than 10 MB of logs"
msgstr "Tiene más de 10MB de registros"
-#: ../../include/class/Diagnostics.class.php:1783
+#: ../../include/class/Diagnostics.class.php:1787
msgid "You have less than 10 MB of logs"
msgstr "Tiene menos de 10MB de logs"
-#: ../../include/class/Diagnostics.class.php:1950
+#: ../../include/class/Diagnostics.class.php:1954
msgid "Include installation data"
msgstr "Incluir datos de instalación"
-#: ../../include/class/Diagnostics.class.php:1987
+#: ../../include/class/Diagnostics.class.php:1991
msgid "Hello Feedback-Men"
msgstr "Hola Feedback-Men"
-#: ../../include/class/Diagnostics.class.php:1997
+#: ../../include/class/Diagnostics.class.php:2001
msgid "Hello"
msgstr "Hola"
-#: ../../include/class/Diagnostics.class.php:2001
+#: ../../include/class/Diagnostics.class.php:2005
#, php-format
msgid "User %s is reporting an issue in its %s experience"
msgstr "El usuario %s está notificando sobre un problema en su experiencia %s"
-#: ../../include/class/Diagnostics.class.php:2010
+#: ../../include/class/Diagnostics.class.php:2014
msgid "Find some files attached to this mail"
msgstr "Encontrar archivos adjuntos a este correo"
-#: ../../include/class/Diagnostics.class.php:2013
+#: ../../include/class/Diagnostics.class.php:2017
msgid "PDF is the diagnostic information retrieved at report time"
msgstr ""
"El PDF es la información de diagnóstico obtenida en el momento del informe"
-#: ../../include/class/Diagnostics.class.php:2016
+#: ../../include/class/Diagnostics.class.php:2020
msgid "CSV contains the statuses of every product file"
msgstr "CSV contiene los estados de cada archivo de producto"
-#: ../../include/class/Diagnostics.class.php:2021
+#: ../../include/class/Diagnostics.class.php:2025
#, php-format
msgid ""
"If you think this report must be escalated, feel free to forward this mail to "
"\"%s\""
msgstr "Si cree que el informe debe escalarse, reenvíe este correo a \"%s\""
-#: ../../include/class/Diagnostics.class.php:2025
+#: ../../include/class/Diagnostics.class.php:2029
msgid "LEGAL WARNING"
msgstr "AVISO LEGAL"
-#: ../../include/class/Diagnostics.class.php:2027
+#: ../../include/class/Diagnostics.class.php:2031
msgid ""
"The information contained in this transmission is privileged and confidential "
"information intended only for the use of the individual or entity named above"
@@ -48167,7 +48578,7 @@ msgstr ""
"La información aquí incluida es privilegiada y confidencial, destinada al uso "
"del individuo o la entidad arriba mencionada"
-#: ../../include/class/Diagnostics.class.php:2031
+#: ../../include/class/Diagnostics.class.php:2035
msgid ""
"If the reader of this message is not the intended recipient, you are hereby "
"notified that any dissemination, distribution or copying of this communication "
@@ -48176,11 +48587,11 @@ msgstr ""
"Si el lector del mensaje no es el destinatario deseado, le comunicamos que "
"está prohibido difundir, distribuir o copiar este comunicado"
-#: ../../include/class/Diagnostics.class.php:2035
+#: ../../include/class/Diagnostics.class.php:2039
msgid "If you have received this transmission in error, do not read it"
msgstr "Si ha recibido este mensaje por error, no lo lea"
-#: ../../include/class/Diagnostics.class.php:2039
+#: ../../include/class/Diagnostics.class.php:2043
msgid ""
"Please immediately reply to the sender that you have received this "
"communication in error and then delete it"
@@ -48188,81 +48599,81 @@ msgstr ""
"Comuníquele al remitente que ha recibido esta comunicación por error y acto "
"seguido elimínela"
-#: ../../include/class/Diagnostics.class.php:2118
+#: ../../include/class/Diagnostics.class.php:2122
msgid "Invalid cron task"
msgstr "Tarea cron no válida"
-#: ../../include/class/Diagnostics.class.php:2119
+#: ../../include/class/Diagnostics.class.php:2123
msgid "Sending of information has been processed"
msgstr "Se ha procesado el envío de información"
-#: ../../include/class/Diagnostics.class.php:2154
-#: ../../include/class/Diagnostics.class.php:2164
+#: ../../include/class/Diagnostics.class.php:2158
+#: ../../include/class/Diagnostics.class.php:2168
msgid "Diagnostics Info"
msgstr "Información de diagnóstico"
-#: ../../include/class/Diagnostics.class.php:2272
-#: ../../include/class/Diagnostics.class.php:2282
+#: ../../include/class/Diagnostics.class.php:2276
+#: ../../include/class/Diagnostics.class.php:2286
msgid "PHP Info"
msgstr "Información PHP"
-#: ../../include/class/NetworkMap.class.php:2382
+#: ../../include/class/NetworkMap.class.php:2388
msgid "Failed to generate dotmap, please select different layout schema"
msgstr "No se ha podido generar dotmap, seleccione un formato diferente"
-#: ../../include/class/NetworkMap.class.php:2524
+#: ../../include/class/NetworkMap.class.php:2530
msgid "Failed to retrieve graph data."
msgstr "No se ha podido obtener datos de gráfica."
-#: ../../include/class/NetworkMap.class.php:2808
+#: ../../include/class/NetworkMap.class.php:2814
msgid "Holding Area"
msgstr "Búfer de procesamiento"
-#: ../../include/class/NetworkMap.class.php:2935
+#: ../../include/class/NetworkMap.class.php:2941
#, php-format
msgid "Edit node %s"
msgstr "Modificar el nodo %s"
-#: ../../include/class/NetworkMap.class.php:2937
+#: ../../include/class/NetworkMap.class.php:2943
msgid "Show details and options"
msgstr "Mostrar detalles y opciones"
-#: ../../include/class/NetworkMap.class.php:2938
+#: ../../include/class/NetworkMap.class.php:2944
msgid "Add a interface link"
msgstr "Añadir enlace de interfaz"
-#: ../../include/class/NetworkMap.class.php:2939
+#: ../../include/class/NetworkMap.class.php:2945
msgid "Set parent interface"
msgstr "Establecer padre en la relación de interfaz"
-#: ../../include/class/NetworkMap.class.php:2940
+#: ../../include/class/NetworkMap.class.php:2946
msgid "Set as children"
msgstr "Establecer como hijo"
-#: ../../include/class/NetworkMap.class.php:2941
+#: ../../include/class/NetworkMap.class.php:2947
msgid "Set parent"
msgstr "Establecer como padre"
-#: ../../include/class/NetworkMap.class.php:2942
-#: ../../include/class/NetworkMap.class.php:2954
+#: ../../include/class/NetworkMap.class.php:2948
+#: ../../include/class/NetworkMap.class.php:2960
msgid "Abort the action of set relationship"
msgstr "Cancelar la acción de relacionar por parentesco"
-#: ../../include/class/NetworkMap.class.php:2944
-#: ../../include/class/NetworkMap.class.php:3344
+#: ../../include/class/NetworkMap.class.php:2950
+#: ../../include/class/NetworkMap.class.php:3350
msgid "Add node"
msgstr "Añadir nodo"
-#: ../../include/class/NetworkMap.class.php:2945
+#: ../../include/class/NetworkMap.class.php:2951
msgid "Set center"
msgstr "Fijar centro"
-#: ../../include/class/NetworkMap.class.php:2947
-#: ../../include/class/NetworkMap.class.php:2950
+#: ../../include/class/NetworkMap.class.php:2953
+#: ../../include/class/NetworkMap.class.php:2956
msgid "Proceed"
msgstr "Proceder"
-#: ../../include/class/NetworkMap.class.php:2948
+#: ../../include/class/NetworkMap.class.php:2954
msgid ""
"Resetting the map will delete all customizations you have done, including "
"manual relationships between elements, new items, etc."
@@ -48270,144 +48681,144 @@ msgstr ""
"Al resetear el mapa se borrarán todas las personalizaciones que hayas hecho, "
"incluyendo las relaciones manuales entre elementos, nuevos elementos, etc."
-#: ../../include/class/NetworkMap.class.php:2952
+#: ../../include/class/NetworkMap.class.php:2958
msgid "Restart map"
msgstr "Resetear el mapa"
-#: ../../include/class/NetworkMap.class.php:2953
+#: ../../include/class/NetworkMap.class.php:2959
msgid "Abort the interface relationship"
msgstr "Abortar la relación de interfaz"
-#: ../../include/class/NetworkMap.class.php:2971
-#: ../../include/class/NetworkMap.class.php:3020
+#: ../../include/class/NetworkMap.class.php:2977
+#: ../../include/class/NetworkMap.class.php:3026
msgid "Edit node"
msgstr "Modificar nodo"
-#: ../../include/class/NetworkMap.class.php:2981
-#: ../../include/class/NetworkMap.class.php:3036
+#: ../../include/class/NetworkMap.class.php:2987
+#: ../../include/class/NetworkMap.class.php:3042
msgid "Adresses"
msgstr "Direcciones"
-#: ../../include/class/NetworkMap.class.php:2983
-#: ../../include/class/NetworkMap.class.php:3041
+#: ../../include/class/NetworkMap.class.php:2989
+#: ../../include/class/NetworkMap.class.php:3047
msgid "OS type"
msgstr "Tipo de SO"
-#: ../../include/class/NetworkMap.class.php:2990
-#: ../../include/class/NetworkMap.class.php:2991
-#: ../../include/class/NetworkMap.class.php:3052
-#: ../../include/class/NetworkMap.class.php:3053
+#: ../../include/class/NetworkMap.class.php:2996
+#: ../../include/class/NetworkMap.class.php:2997
+#: ../../include/class/NetworkMap.class.php:3058
+#: ../../include/class/NetworkMap.class.php:3059
msgid "Node Details"
msgstr "Detalles de nodo"
-#: ../../include/class/NetworkMap.class.php:3078
-#: ../../include/class/NetworkMap.class.php:3079
+#: ../../include/class/NetworkMap.class.php:3084
+#: ../../include/class/NetworkMap.class.php:3085
msgid "Interface Information (SNMP)"
msgstr "Información de interfaces (SNMP)"
-#: ../../include/class/NetworkMap.class.php:3092
+#: ../../include/class/NetworkMap.class.php:3098
msgid "Shape"
msgstr "Forma"
-#: ../../include/class/NetworkMap.class.php:3095
+#: ../../include/class/NetworkMap.class.php:3101
msgid "Circle"
msgstr "Círculo"
-#: ../../include/class/NetworkMap.class.php:3096
+#: ../../include/class/NetworkMap.class.php:3102
msgid "Square"
msgstr "Cuadrado"
-#: ../../include/class/NetworkMap.class.php:3097
+#: ../../include/class/NetworkMap.class.php:3103
msgid "Rhombus"
msgstr "Rombo"
-#: ../../include/class/NetworkMap.class.php:3113
+#: ../../include/class/NetworkMap.class.php:3119
msgid "name node"
msgstr "Nombrar nodo"
-#: ../../include/class/NetworkMap.class.php:3125
-#: ../../include/class/NetworkMap.class.php:3495
+#: ../../include/class/NetworkMap.class.php:3131
+#: ../../include/class/NetworkMap.class.php:3501
msgid "name fictional node"
msgstr "Nombre de nodo ficticio"
-#: ../../include/class/NetworkMap.class.php:3133
-#: ../../include/class/NetworkMap.class.php:3503
+#: ../../include/class/NetworkMap.class.php:3139
+#: ../../include/class/NetworkMap.class.php:3509
msgid "Networkmap to link"
msgstr "Enlace a mapa de red"
-#: ../../include/class/NetworkMap.class.php:3147
+#: ../../include/class/NetworkMap.class.php:3153
msgid "Update fictional node"
msgstr "Actualizar nodo ficticio"
-#: ../../include/class/NetworkMap.class.php:3175
-#: ../../include/class/NetworkMap.class.php:3176
+#: ../../include/class/NetworkMap.class.php:3181
+#: ../../include/class/NetworkMap.class.php:3182
msgid "Node options"
msgstr "Opciones de nodo"
-#: ../../include/class/NetworkMap.class.php:3187
-#: ../../include/class/NetworkMap.class.php:3281
+#: ../../include/class/NetworkMap.class.php:3193
+#: ../../include/class/NetworkMap.class.php:3287
msgid "Node source"
msgstr "Nodo origen"
-#: ../../include/class/NetworkMap.class.php:3188
-#: ../../include/class/NetworkMap.class.php:3282
+#: ../../include/class/NetworkMap.class.php:3194
+#: ../../include/class/NetworkMap.class.php:3288
msgid "Interface source"
msgstr "Interfaz origen"
-#: ../../include/class/NetworkMap.class.php:3189
-#: ../../include/class/NetworkMap.class.php:3283
+#: ../../include/class/NetworkMap.class.php:3195
+#: ../../include/class/NetworkMap.class.php:3289
msgid "Interface Target"
msgstr "Interfaz objetivo"
-#: ../../include/class/NetworkMap.class.php:3191
-#: ../../include/class/NetworkMap.class.php:3284
+#: ../../include/class/NetworkMap.class.php:3197
+#: ../../include/class/NetworkMap.class.php:3290
msgid "Node target"
msgstr "Nodo objetivo"
-#: ../../include/class/NetworkMap.class.php:3192
+#: ../../include/class/NetworkMap.class.php:3198
msgid "E."
msgstr "E."
-#: ../../include/class/NetworkMap.class.php:3254
+#: ../../include/class/NetworkMap.class.php:3260
msgid "There are not relations"
msgstr "No hay relaciones"
-#: ../../include/class/NetworkMap.class.php:3327
+#: ../../include/class/NetworkMap.class.php:3333
msgid "Add interface link"
msgstr "Añadir enlace de interfaz"
-#: ../../include/class/NetworkMap.class.php:3372
-#: ../../include/class/NetworkMap.class.php:3399
-#: ../../include/class/NetworkMap.class.php:3400
-#: ../../include/class/NetworkMap.class.php:3463
-#: ../../include/class/NetworkMap.class.php:3479
-#: ../../include/class/NetworkMap.class.php:3536
+#: ../../include/class/NetworkMap.class.php:3378
+#: ../../include/class/NetworkMap.class.php:3405
+#: ../../include/class/NetworkMap.class.php:3406
+#: ../../include/class/NetworkMap.class.php:3469
+#: ../../include/class/NetworkMap.class.php:3485
+#: ../../include/class/NetworkMap.class.php:3542
msgid "Add agent node"
msgstr "Añadir nodo de agente"
-#: ../../include/class/NetworkMap.class.php:3478
+#: ../../include/class/NetworkMap.class.php:3484
msgid "Add agent node (filter by group)"
msgstr "Añadir nodo de agente (filtro por grupo)"
-#: ../../include/class/NetworkMap.class.php:3520
+#: ../../include/class/NetworkMap.class.php:3526
msgid "Add fictional node"
msgstr "Añadir nodo ficticio"
-#: ../../include/class/NetworkMap.class.php:3535
+#: ../../include/class/NetworkMap.class.php:3541
msgid "Add fictional point"
msgstr "Añadir punto ficticio"
-#: ../../include/class/NetworkMap.class.php:3620
+#: ../../include/class/NetworkMap.class.php:3626
#: ../../operation/visual_console/legacy_public_view.php:198
-#: ../../operation/visual_console/legacy_view.php:335
+#: ../../operation/visual_console/legacy_view.php:346
msgid "Until refresh"
msgstr "Hasta la actualización"
-#: ../../include/class/NetworkMap.class.php:3775
+#: ../../include/class/NetworkMap.class.php:3781
msgid "Open Minimap"
msgstr "Abrir Minimapa"
-#: ../../include/class/NetworkMap.class.php:3781
+#: ../../include/class/NetworkMap.class.php:3787
msgid "Hide Labels"
msgstr "Ocultar etiquetas"
@@ -48470,11 +48881,11 @@ msgstr "¿Está seguro de que desea borrar el script?"
msgid "Delete Script"
msgstr "Eliminar guión"
-#: ../../include/class/ManageNetScanScripts.class.php:490
+#: ../../include/class/ManageNetScanScripts.class.php:486
msgid "There are no net scan scripts in the system"
msgstr "No hay scripts de escaneo de red en el sistema"
-#: ../../include/class/ManageNetScanScripts.class.php:560
+#: ../../include/class/ManageNetScanScripts.class.php:556
msgid "Script fullpath"
msgstr "Ruta completa del script"
@@ -48533,12 +48944,12 @@ msgid "Extra (2)"
msgstr "Extra (2)"
#: ../../include/class/CredentialStore.class.php:986
-#: ../../include/class/CredentialStore.class.php:1307
+#: ../../include/class/CredentialStore.class.php:1309
msgid "Access key ID"
msgstr "ID de la clave de accso"
#: ../../include/class/CredentialStore.class.php:987
-#: ../../include/class/CredentialStore.class.php:1308
+#: ../../include/class/CredentialStore.class.php:1310
msgid "Secret access key"
msgstr "Clave de acceso secreta"
@@ -48548,22 +48959,22 @@ msgid "Account ID"
msgstr "ID de la cuenta"
#: ../../include/class/CredentialStore.class.php:994
-#: ../../include/class/CredentialStore.class.php:1315
+#: ../../include/class/CredentialStore.class.php:1318
msgid "Application secret"
msgstr "Secretos de aplicación"
#: ../../include/class/CredentialStore.class.php:995
-#: ../../include/class/CredentialStore.class.php:1316
+#: ../../include/class/CredentialStore.class.php:1319
msgid "Tenant or domain name"
msgstr "Propietario o nombre del dominio"
#: ../../include/class/CredentialStore.class.php:996
-#: ../../include/class/CredentialStore.class.php:1317
+#: ../../include/class/CredentialStore.class.php:1320
msgid "Subscription id"
msgstr "ID de la suscripción"
#: ../../include/class/CredentialStore.class.php:1000
-#: ../../include/class/CredentialStore.class.php:1333
+#: ../../include/class/CredentialStore.class.php:1338
msgid "Auth JSON"
msgstr "Autenticación JSON"
@@ -48584,45 +48995,45 @@ msgid "3"
msgstr "3"
#: ../../include/class/CredentialStore.class.php:1134
-#: ../../include/class/CredentialStore.class.php:1425
+#: ../../include/class/CredentialStore.class.php:1434
msgid "Authenticated and non-private method"
msgstr "Método con autentificación y sin privacidad"
#: ../../include/class/CredentialStore.class.php:1135
-#: ../../include/class/CredentialStore.class.php:1427
+#: ../../include/class/CredentialStore.class.php:1436
msgid "Authenticated and private method"
msgstr "Método con autentificación y privacidad"
#: ../../include/class/CredentialStore.class.php:1136
-#: ../../include/class/CredentialStore.class.php:1429
+#: ../../include/class/CredentialStore.class.php:1438
msgid "Non-authenticated and non-private method"
msgstr "Método sin autentificación ni privacidad"
#: ../../include/class/CredentialStore.class.php:1144
-#: ../../include/class/CredentialStore.class.php:1442
+#: ../../include/class/CredentialStore.class.php:1451
#: ../../include/class/AgentWizard.class.php:910
msgid "User authentication"
msgstr "Autenticación de usuario"
#: ../../include/class/CredentialStore.class.php:1179
-#: ../../include/class/CredentialStore.class.php:1476
+#: ../../include/class/CredentialStore.class.php:1485
#: ../../include/class/AgentWizard.class.php:939
msgid "Password authentication"
msgstr "Contraseña de autenticación"
-#: ../../include/class/CredentialStore.class.php:1314
+#: ../../include/class/CredentialStore.class.php:1317
msgid "Client ID"
msgstr "ID de cliente"
-#: ../../include/class/CredentialStore.class.php:1323
+#: ../../include/class/CredentialStore.class.php:1327
msgid "Account ID."
msgstr "ID de la cuenta"
-#: ../../include/class/CredentialStore.class.php:1648
+#: ../../include/class/CredentialStore.class.php:1657
msgid "Register new key into keystore"
msgstr "Registrar una clave nueva en el repositorio de claves"
-#: ../../include/class/CredentialStore.class.php:1652
+#: ../../include/class/CredentialStore.class.php:1661
msgid "Update key"
msgstr "Actualizar clave"
@@ -48631,9 +49042,9 @@ msgid "Trap subtype"
msgstr "Subtipo trap"
#: ../../include/class/SnmpConsole.class.php:291
-#: ../../include/functions_reporting.php:5890
-#: ../../include/functions_reporting.php:5907
-#: ../../include/functions_reporting.php:5924
+#: ../../include/functions_reporting.php:5899
+#: ../../include/functions_reporting.php:5916
+#: ../../include/functions_reporting.php:5933
msgid "Not triggered"
msgstr "No disparado"
@@ -48643,25 +49054,25 @@ msgstr "Disparado"
#: ../../include/class/SnmpConsole.class.php:309
#: ../../include/class/SnmpConsole.class.php:503
-#: ../../include/class/SnmpConsole.class.php:761
+#: ../../include/class/SnmpConsole.class.php:763
#: ../../include/functions_reporting.php:2366
-#: ../../include/functions_reporting.php:4597
-#: ../../include/functions_reporting.php:11390
+#: ../../include/functions_reporting.php:4606
+#: ../../include/functions_reporting.php:11399
msgid "Not validated"
msgstr "Sin validar"
#: ../../include/class/SnmpConsole.class.php:310
#: ../../include/class/SnmpConsole.class.php:501
-#: ../../include/class/SnmpConsole.class.php:771
+#: ../../include/class/SnmpConsole.class.php:773
#: ../../include/functions_reporting.php:2365
-#: ../../include/functions_reporting.php:4596
-#: ../../include/functions_reporting.php:11389
+#: ../../include/functions_reporting.php:4605
+#: ../../include/functions_reporting.php:11398
#: ../../include/functions_events.php:2547
-#: ../../include/functions_events.php:3269
-#: ../../include/functions_events.php:3544
-#: ../../include/functions_events.php:3553
-#: ../../include/functions_events.php:3560
-#: ../../include/functions_events.php:3567
+#: ../../include/functions_events.php:3274
+#: ../../include/functions_events.php:3549
+#: ../../include/functions_events.php:3558
+#: ../../include/functions_events.php:3565
+#: ../../include/functions_events.php:3572
msgid "Validated"
msgstr "Validado"
@@ -48669,46 +49080,46 @@ msgstr "Validado"
msgid "Group by Enterprise String/IP"
msgstr "Agrupado por cadena Enterprise/IP"
-#: ../../include/class/SnmpConsole.class.php:783
+#: ../../include/class/SnmpConsole.class.php:785
#: ../../operation/snmpconsole/snmp_statistics.php:199
msgid "View agent details"
msgstr "Ver detalles del agente"
-#: ../../include/class/SnmpConsole.class.php:902
-#: ../../include/class/SnmpConsole.class.php:903
+#: ../../include/class/SnmpConsole.class.php:904
+#: ../../include/class/SnmpConsole.class.php:905
msgid "Hide details"
msgstr "Ocultar detalles"
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "Count:"
msgstr "Contar:"
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "First trap:"
msgstr "Primer trap:"
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "Last trap:"
msgstr "Último trap:"
-#: ../../include/class/SnmpConsole.class.php:1403
+#: ../../include/class/SnmpConsole.class.php:1405
msgid "Type:"
msgstr "Tipo:"
-#: ../../include/class/SnmpConsole.class.php:1410
+#: ../../include/class/SnmpConsole.class.php:1412
msgid "Description:"
msgstr "Descripción:"
-#: ../../include/class/SnmpConsole.class.php:1417
+#: ../../include/class/SnmpConsole.class.php:1419
msgid "Enterprise String:"
msgstr "Cadena Enterprise:"
-#: ../../include/class/SnmpConsole.class.php:1426
-#: ../../include/class/SnmpConsole.class.php:1440
+#: ../../include/class/SnmpConsole.class.php:1428
+#: ../../include/class/SnmpConsole.class.php:1442
msgid "Variable bindings:"
msgstr "Enlaces variables"
-#: ../../include/class/SnmpConsole.class.php:1436
+#: ../../include/class/SnmpConsole.class.php:1438
msgid "See more details"
msgstr "Ver más detalles"
@@ -48783,51 +49194,51 @@ msgstr "Resultados encontrados"
msgid "Press enter to search"
msgstr "Búsqueda de texto libre"
-#: ../../include/class/TipsWindow.class.php:432
+#: ../../include/class/TipsWindow.class.php:444
msgid "Tip deleted"
msgstr "Tip eliminado"
-#: ../../include/class/TipsWindow.class.php:482
+#: ../../include/class/TipsWindow.class.php:494
msgid "Search by title"
msgstr "Buscar por título"
-#: ../../include/class/TipsWindow.class.php:683
+#: ../../include/class/TipsWindow.class.php:703
msgid "Tip created"
msgstr "Tip creado"
-#: ../../include/class/TipsWindow.class.php:743
-#: ../../include/class/TipsWindow.class.php:911
+#: ../../include/class/TipsWindow.class.php:763
+#: ../../include/class/TipsWindow.class.php:931
msgid "Wrong size, we recommend images of 464x260 px"
msgstr "Tamaño incorrecto, se recomiendan imágenes de 464x260 px"
-#: ../../include/class/TipsWindow.class.php:751
-#: ../../include/class/TipsWindow.class.php:919
+#: ../../include/class/TipsWindow.class.php:771
+#: ../../include/class/TipsWindow.class.php:939
msgid "Please select a image"
msgstr "Por favor, seleccione una imagen"
-#: ../../include/class/TipsWindow.class.php:755
-#: ../../include/class/TipsWindow.class.php:923
+#: ../../include/class/TipsWindow.class.php:775
+#: ../../include/class/TipsWindow.class.php:943
msgid "Add image"
msgstr "Añadir imagen"
-#: ../../include/class/TipsWindow.class.php:758
-#: ../../include/class/TipsWindow.class.php:926
+#: ../../include/class/TipsWindow.class.php:778
+#: ../../include/class/TipsWindow.class.php:946
msgid "Images"
msgstr "Imágenes"
-#: ../../include/class/TipsWindow.class.php:823
+#: ../../include/class/TipsWindow.class.php:843
msgid "Tip edited"
msgstr "Tip editado"
-#: ../../include/class/TipsWindow.class.php:1096
+#: ../../include/class/TipsWindow.class.php:1116
msgid "Incorrect file"
msgstr "Archivo incorrecto"
-#: ../../include/class/TipsWindow.class.php:1100
+#: ../../include/class/TipsWindow.class.php:1120
msgid "Format image invalid"
msgstr "Formato de imagen no válido"
-#: ../../include/class/TipsWindow.class.php:1104
+#: ../../include/class/TipsWindow.class.php:1124
msgid "Image size too large"
msgstr "Tamaño de imagen demasiado grande"
@@ -48836,15 +49247,19 @@ msgstr "Tamaño de imagen demasiado grande"
msgid "NetScan Custom"
msgstr "Personalización NetScan"
-#: ../../include/class/CustomNetScan.class.php:623
+#: ../../include/class/CustomNetScan.class.php:527
+msgid "The minimum recomended interval for Recon Task is 5 minutes"
+msgstr "El intervalo mínimo recomendado para Recon Task es de 5 minutos."
+
+#: ../../include/class/CustomNetScan.class.php:622
msgid "Recon script"
msgstr "Recon script"
-#: ../../include/class/CustomNetScan.class.php:663
+#: ../../include/class/CustomNetScan.class.php:662
msgid "Explanation"
msgstr "Explicación"
-#: ../../include/class/CustomNetScan.class.php:679
+#: ../../include/class/CustomNetScan.class.php:678
msgid "macro_desc"
msgstr "macro_desc"
@@ -48918,7 +49333,7 @@ msgid "The modules is already added"
msgstr "El módulo ya se ha añadido"
#: ../../include/class/ModuleTemplates.class.php:1097
-#: ../../include/class/ModuleTemplates.class.php:1361
+#: ../../include/class/ModuleTemplates.class.php:1365
msgid "Add components"
msgstr "Añadir componentes"
@@ -48955,11 +49370,11 @@ msgstr "Eliminar este módulo"
msgid "Do you want delete this module?"
msgstr "¿Desea eliminar este módulo?"
-#: ../../include/class/ModuleTemplates.class.php:1454
+#: ../../include/class/ModuleTemplates.class.php:1458
msgid "Do you want delete all templates?"
msgstr "¿Desea eliminar todas las plantillas?"
-#: ../../include/class/ModuleTemplates.class.php:1457
+#: ../../include/class/ModuleTemplates.class.php:1461
msgid "Do you want delete the selected templates?"
msgstr "¿Desea eliminar las plantillas seleccionadas?"
@@ -49679,6 +50094,107 @@ msgid "If something is not working as expected, look for this icon and report!"
msgstr ""
"Si algo no funciona como debería, !busque este icono e informe del problema¡"
+#: ../../include/class/AgentDeployWizard.class.php:306
+msgid "Please note that all OS must be 64-bit based architecture"
+msgstr ""
+"Tenga en cuenta que todos los sistemas operativos deben tener una arquitectura "
+"basada en 64-bits"
+
+#: ../../include/class/AgentDeployWizard.class.php:309
+msgid "Choose your OS"
+msgstr "Seleccione su sistema operativo"
+
+#: ../../include/class/AgentDeployWizard.class.php:321
+#, php-format
+msgid ""
+"Use your %s Data Server IP address here. It must be possible to establish a "
+"connection from the agent to port 41121/tcp of this address."
+msgstr ""
+"Utilice su dirección IP del servidor de datos %s aquí. La conexión desde el "
+"agente al puerto 41121/tcp de esta dirección debe ser posible."
+
+#: ../../include/class/AgentDeployWizard.class.php:326
+msgid "Server address"
+msgstr "Dirección del servidor"
+
+#: ../../include/class/AgentDeployWizard.class.php:379
+msgid "view the following instructions"
+msgstr "Vea las siguientes instrucciones"
+
+#: ../../include/class/AgentDeployWizard.class.php:385
+msgid "If you need more information regarding agents"
+msgstr "Si necesita más información sobre los agentes"
+
+#: ../../include/class/AgentDeployWizard.class.php:415
+msgid "Generate installer"
+msgstr "Generar instalador"
+
+#: ../../include/class/AgentDeployWizard.class.php:436
+msgid "Linux agent"
+msgstr "Agente Linux"
+
+#: ../../include/class/AgentDeployWizard.class.php:446
+msgid ""
+"Run the following command in the shell of your Linux server to perform the "
+"installation of the generated agent:"
+msgstr ""
+"Ejecute el siguiente comando en la Shell de su servidor Linux para llevar a "
+"cabo la instalación del agente generado:"
+
+#: ../../include/class/AgentDeployWizard.class.php:449
+#: ../../include/class/AgentDeployWizard.class.php:491
+msgid ""
+"Once installed, you must run the following command to start the software agent "
+"service:"
+msgstr ""
+"Una vez instalado, ejecute el siguiente comando para iniciar el servicio del "
+"agente software:"
+
+#: ../../include/class/AgentDeployWizard.class.php:458
+msgid "dependencies"
+msgstr "dependencias"
+
+#: ../../include/class/AgentDeployWizard.class.php:460
+msgid ""
+"For the correct operation of the Linux agent it is necessary that the server "
+"has installed the following "
+msgstr ""
+"Para la correcta operación del agente Linux es necesario que el servidor "
+"instale lo siguiente "
+
+#: ../../include/class/AgentDeployWizard.class.php:478
+msgid "Windows agent"
+msgstr "Agente Windows"
+
+#: ../../include/class/AgentDeployWizard.class.php:488
+msgid "Run the following command in cmd.exe as an administrator:"
+msgstr "Ejecute el siguiente comando en cmd.exe como administrador:"
+
+#: ../../include/class/AgentDeployWizard.class.php:510
+msgid "Mac agent"
+msgstr "Agente Mac"
+
+#: ../../include/class/AgentDeployWizard.class.php:524
+msgid ""
+"To complete the installation process, please perform a manual installation and "
+"configure the server address to XXX and specify the group as XXX. Thank you "
+"for your cooperation."
+msgstr ""
+"Para completar el proceso de instalación, lleve a cabo la instalación manual y "
+"configure la dirección del servidor a XXX y especifique el grupo como XXX."
+
+#: ../../include/class/AgentDeployWizard.class.php:530
+msgid "Click to Download the agent"
+msgstr "Haga click para descargar el agente"
+
+#: ../../include/class/AgentDeployWizard.class.php:551
+msgid "Change configuration"
+msgstr "Cambiar configuración"
+
+#: ../../include/class/AgentDeployWizard.class.php:728
+msgid "Installer"
+msgstr "Instalador"
+
#: ../../include/class/SatelliteCollection.class.php:306
msgid "Error adding collection"
msgstr "Error al añadir colección"
@@ -49826,12 +50342,12 @@ msgstr "Información del módulo"
msgid "Current value"
msgstr "Valor actual"
-#: ../../include/class/AgentWizard.class.php:5716
+#: ../../include/class/AgentWizard.class.php:5712
#, php-format
msgid "The operation '%s' is not permitted. Review for remote components."
msgstr "La operación '%s' no está permitida. Revise los componentes remotos."
-#: ../../include/class/AgentWizard.class.php:6182
+#: ../../include/class/AgentWizard.class.php:6178
msgid "Modules about to be created"
msgstr "Módulos a punto de ser creados"
@@ -50032,210 +50548,210 @@ msgstr "Excluir "
msgid "Event Report Module"
msgstr "Informe de eventos del módulo"
-#: ../../include/functions_reporting.php:3335
+#: ../../include/functions_reporting.php:3344
msgid "Agent/Modules"
msgstr "Agentes/módulos"
-#: ../../include/functions_reporting.php:3432
+#: ../../include/functions_reporting.php:3441
msgid "Agent/Modules Status"
msgstr "Estado del agente/módulos"
-#: ../../include/functions_reporting.php:3581
+#: ../../include/functions_reporting.php:3590
msgid "Exception - Everything"
msgstr "Excepción - Todo"
-#: ../../include/functions_reporting.php:3587
+#: ../../include/functions_reporting.php:3596
#, php-format
msgid "Exception - Modules over or equal to %s"
msgstr "Excepción - Módulos por encima de o igual a %s"
-#: ../../include/functions_reporting.php:3590
+#: ../../include/functions_reporting.php:3599
#, php-format
msgid "Modules over or equal to %s"
msgstr "Módulos por encima de o igual a %s"
-#: ../../include/functions_reporting.php:3595
+#: ../../include/functions_reporting.php:3604
#, php-format
msgid "Exception - Modules under or equal to %s"
msgstr "Excepción - Módulos por debajo o igual a %s"
-#: ../../include/functions_reporting.php:3598
+#: ../../include/functions_reporting.php:3607
#, php-format
msgid "Modules under or equal to %s"
msgstr "Módulos por debajo de o igual a %s"
-#: ../../include/functions_reporting.php:3603
+#: ../../include/functions_reporting.php:3612
#, php-format
msgid "Exception - Modules under %s"
msgstr "Excepción - Módulos por debajo de %s"
-#: ../../include/functions_reporting.php:3606
+#: ../../include/functions_reporting.php:3615
#, php-format
msgid "Modules under %s"
msgstr "Módulos por debajo de %s"
-#: ../../include/functions_reporting.php:3611
+#: ../../include/functions_reporting.php:3620
#, php-format
msgid "Exception - Modules over %s"
msgstr "Excepción - Módulos por encima de %s"
-#: ../../include/functions_reporting.php:3614
+#: ../../include/functions_reporting.php:3623
#, php-format
msgid "Modules over %s"
msgstr "Módulos por encima de %s"
-#: ../../include/functions_reporting.php:3619
+#: ../../include/functions_reporting.php:3628
#, php-format
msgid "Exception - Equal to %s"
msgstr "Excepción - Igual a %s"
-#: ../../include/functions_reporting.php:3622
+#: ../../include/functions_reporting.php:3631
#, php-format
msgid "Equal to %s"
msgstr "Igual a %s"
-#: ../../include/functions_reporting.php:3627
+#: ../../include/functions_reporting.php:3636
#, php-format
msgid "Exception - Not equal to %s"
msgstr "Excepción - No igual a %s"
-#: ../../include/functions_reporting.php:3630
+#: ../../include/functions_reporting.php:3639
#, php-format
msgid "Not equal to %s"
msgstr "No igual a %s"
-#: ../../include/functions_reporting.php:3634
+#: ../../include/functions_reporting.php:3643
msgid "Exception - Modules at normal status"
msgstr "Excepción - Módulos en estado normal"
-#: ../../include/functions_reporting.php:3635
+#: ../../include/functions_reporting.php:3644
msgid "Modules at normal status"
msgstr "Módulos en estado normal"
-#: ../../include/functions_reporting.php:3639
+#: ../../include/functions_reporting.php:3648
msgid "Exception - Modules at critical or warning status"
msgstr "Excepción - Módulos en estado crítico o de advertencia"
-#: ../../include/functions_reporting.php:3640
+#: ../../include/functions_reporting.php:3649
msgid "Modules at critical or warning status"
msgstr "Módulos en estado crítico o de advertencia"
-#: ../../include/functions_reporting.php:3920
+#: ../../include/functions_reporting.php:3929
msgid "There are no Modules under those conditions."
msgstr "No hay módulos bajo esas condiciones"
-#: ../../include/functions_reporting.php:3924
+#: ../../include/functions_reporting.php:3933
#, php-format
msgid "There are no Modules over or equal to %s."
msgstr "No hay módulos por encima de o iguales a %s"
-#: ../../include/functions_reporting.php:3928
+#: ../../include/functions_reporting.php:3937
#, php-format
msgid "There are no Modules less or equal to %s."
msgstr "No hay módulos por debajo de o iguales a %s"
-#: ../../include/functions_reporting.php:3932
+#: ../../include/functions_reporting.php:3941
#, php-format
msgid "There are no Modules less %s."
msgstr "No hay módulos por debajo de %s"
-#: ../../include/functions_reporting.php:3936
+#: ../../include/functions_reporting.php:3945
#, php-format
msgid "There are no Modules over %s."
msgstr "No hay módulos por encima de %s"
-#: ../../include/functions_reporting.php:3940
+#: ../../include/functions_reporting.php:3949
#, php-format
msgid "There are no Modules equal to %s"
msgstr "No hay módulos iguales a %s"
-#: ../../include/functions_reporting.php:3944
+#: ../../include/functions_reporting.php:3953
#, php-format
msgid "There are no Modules not equal to %s"
msgstr "No hay módulos no iguales a %s"
-#: ../../include/functions_reporting.php:3948
+#: ../../include/functions_reporting.php:3957
msgid "There are no Modules normal status"
msgstr "No hay módulos en estado normal"
-#: ../../include/functions_reporting.php:3952
+#: ../../include/functions_reporting.php:3961
msgid "There are no Modules at critial or warning status"
msgstr "No hay módulos en estado crítico o de advertencia"
-#: ../../include/functions_reporting.php:4380
+#: ../../include/functions_reporting.php:4389
msgid "Event Report Agent"
msgstr "Informe de eventos de agentes"
-#: ../../include/functions_reporting.php:4799
+#: ../../include/functions_reporting.php:4808
msgid "Database Serialized"
msgstr "Base de datos serializada"
-#: ../../include/functions_reporting.php:4995
+#: ../../include/functions_reporting.php:5004
msgid "Last Value"
msgstr "Último valor"
-#: ../../include/functions_reporting.php:5045
-#: ../../include/functions_reporting.php:5088
+#: ../../include/functions_reporting.php:5054
+#: ../../include/functions_reporting.php:5097
msgid "No data to display within the selected interval"
msgstr "No hay datos en el intervalo seleccionado"
-#: ../../include/functions_reporting.php:5319
+#: ../../include/functions_reporting.php:5328
msgid "Network interfaces report"
msgstr "Informe de las interfaces de red"
-#: ../../include/functions_reporting.php:5413
+#: ../../include/functions_reporting.php:5422
msgid "Custom render report"
msgstr "Informe de representación personalizado"
-#: ../../include/functions_reporting.php:5453
-#: ../../include/functions_reporting.php:5479
+#: ../../include/functions_reporting.php:5462
+#: ../../include/functions_reporting.php:5488
msgid ""
"This query is insecure, it could apply unwanted modiffications on the schema"
msgstr ""
"Esta consulta es insegura, podría aplicar modificationes no deseadas en el "
"esquema"
-#: ../../include/functions_reporting.php:5658
+#: ../../include/functions_reporting.php:5667
msgid "The group has no agents or none of the agents has any network interface"
msgstr "El grupo no tiene agentes o los agentes no tienen interfaz de red."
-#: ../../include/functions_reporting.php:5683
+#: ../../include/functions_reporting.php:5692
msgid "bytes/s"
msgstr "bytes/s"
-#: ../../include/functions_reporting.php:6350
+#: ../../include/functions_reporting.php:6359
msgid "SQL Graph Vertical Bars"
msgstr "Gráfico de barras verticales SQL"
-#: ../../include/functions_reporting.php:6354
+#: ../../include/functions_reporting.php:6363
msgid "SQL Graph Horizontal Bars"
msgstr "Gráfico de barras horizontales SQL"
-#: ../../include/functions_reporting.php:6358
+#: ../../include/functions_reporting.php:6367
msgid "SQL Graph Pie"
msgstr "Gráfico SQL circular"
-#: ../../include/functions_reporting.php:6585
+#: ../../include/functions_reporting.php:6594
msgid "Netflow Area"
msgstr "Área de Netflow"
-#: ../../include/functions_reporting.php:6589
+#: ../../include/functions_reporting.php:6598
msgid "Netflow Summary"
msgstr "Resumen de Netflow"
-#: ../../include/functions_reporting.php:6593
+#: ../../include/functions_reporting.php:6602
msgid "Netflow Data"
msgstr "Datos de Netflow"
-#: ../../include/functions_reporting.php:6601
+#: ../../include/functions_reporting.php:6610
msgid "Unknown report"
msgstr "Informe desconocido"
-#: ../../include/functions_reporting.php:6695
+#: ../../include/functions_reporting.php:6704
msgid "Prediction Date"
msgstr "Fecha de predicción"
-#: ../../include/functions_reporting.php:7705
+#: ../../include/functions_reporting.php:7714
msgid ""
"Illegal query: Due security restrictions, there are some tokens or words you "
"cannot use: *, delete, drop, alter, modify, password, pass, insert or update."
@@ -50244,226 +50760,226 @@ msgstr ""
"palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, "
"modificar, contraseña, pass, insertar o actualizar."
-#: ../../include/functions_reporting.php:9118
-#: ../../include/functions_reporting.php:9836
+#: ../../include/functions_reporting.php:9127
+#: ../../include/functions_reporting.php:9845
msgid "No Address"
msgstr "Sin dirección"
-#: ../../include/functions_reporting.php:10135
+#: ../../include/functions_reporting.php:10144
msgid ""
"The monitor have no data in this range of dates or monitor type is not numeric"
msgstr ""
"El monitor no tiene datos en este rango de fecha o el tipo de monitor no es "
"numérico."
-#: ../../include/functions_reporting.php:10153
+#: ../../include/functions_reporting.php:10162
msgid "The monitor type is not numeric"
msgstr "El tipo de monitor no es numérico."
-#: ../../include/functions_reporting.php:10579
+#: ../../include/functions_reporting.php:10588
msgid "Maximum"
msgstr "Máximo"
-#: ../../include/functions_reporting.php:10657
+#: ../../include/functions_reporting.php:10666
msgid "Automatic combined graph"
msgstr "Gráfica combinada automática"
-#: ../../include/functions_reporting.php:12079
-#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12088
+#: ../../include/functions_reporting.php:12112
+#: ../../include/functions_reporting.php:12151
msgid "Server health"
msgstr "Estado del servidor"
-#: ../../include/functions_reporting.php:12079
+#: ../../include/functions_reporting.php:12088
#, php-format
msgid "%d Downed servers"
msgstr "%d servidores caídos"
-#: ../../include/functions_reporting.php:12084
-#: ../../include/functions_reporting.php:12107
+#: ../../include/functions_reporting.php:12093
+#: ../../include/functions_reporting.php:12116
+#: ../../include/functions_reporting.php:12157
msgid "Monitor health"
msgstr "Estado del monitor"
-#: ../../include/functions_reporting.php:12084
+#: ../../include/functions_reporting.php:12093
#, php-format
msgid "%d Not Normal monitors"
msgstr "%d monitores fuera de la normalidad"
-#: ../../include/functions_reporting.php:12084
-#: ../../include/functions_reporting.php:12108
+#: ../../include/functions_reporting.php:12093
+#: ../../include/functions_reporting.php:12117
msgid "of monitors up"
msgstr "de monitores funcionando"
-#: ../../include/functions_reporting.php:12089
-msgid "Module sanityX"
-msgstr "Módulo sanityX"
+#: ../../include/functions_reporting.php:12098
+#: ../../include/functions_reporting.php:12120
+#: ../../include/functions_reporting.php:12163
+msgid "Module sanity"
+msgstr "Estado de los módulos"
-#: ../../include/functions_reporting.php:12089
+#: ../../include/functions_reporting.php:12098
#, php-format
msgid "%d Not inited monitors"
msgstr "%d monitores sin iniciar"
-#: ../../include/functions_reporting.php:12089
-#: ../../include/functions_reporting.php:12112
+#: ../../include/functions_reporting.php:12098
+#: ../../include/functions_reporting.php:12121
msgid "of total modules inited"
msgstr "del total de módulos iniciados"
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:13202
-#: ../../include/functions_reporting.php:13212
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:13275
+#: ../../include/functions_reporting.php:13285
#, php-format
msgid "%d Fired alerts"
msgstr "%d alertas disparadas"
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:12116
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12125
msgid "of defined alerts not fired"
msgstr "de alertas definidas no disparadas"
-#: ../../include/functions_reporting.php:12111
-msgid "Module sanity"
-msgstr "Estado de los módulos"
-
-#: ../../include/functions_reporting.php:12184
-#: ../../include/functions_groups.php:2733
+#: ../../include/functions_reporting.php:12257
+#: ../../include/functions_groups.php:2758
msgid "Defined and fired alerts"
msgstr "Alertas definidas y disparadas"
-#: ../../include/functions_reporting.php:12363
+#: ../../include/functions_reporting.php:12436
msgid "Defined users"
msgstr "Usuarios definidos"
-#: ../../include/functions_reporting.php:13059
+#: ../../include/functions_reporting.php:13132
msgid "Agent without data"
msgstr "Agente sin datos"
-#: ../../include/functions_reporting.php:13198
+#: ../../include/functions_reporting.php:13271
#, php-format
msgid "%d Normal modules"
msgstr "%d módulos normales"
-#: ../../include/functions_reporting.php:13199
+#: ../../include/functions_reporting.php:13272
#, php-format
msgid "%d Critical modules"
msgstr "%d módulos críticos"
-#: ../../include/functions_reporting.php:13200
+#: ../../include/functions_reporting.php:13273
#, php-format
msgid "%d Warning modules"
msgstr "%d módulos en estado de advertencia"
-#: ../../include/functions_reporting.php:13201
+#: ../../include/functions_reporting.php:13274
#, php-format
msgid "%d Unknown modules"
msgstr "%d módulos desconocidos"
-#: ../../include/functions_reporting.php:13206
+#: ../../include/functions_reporting.php:13279
#, php-format
msgid "%d Total agents"
msgstr "%d del total de agentes"
-#: ../../include/functions_reporting.php:13207
+#: ../../include/functions_reporting.php:13280
#, php-format
msgid "%d Normal agents"
msgstr "%d agentes normales"
-#: ../../include/functions_reporting.php:13208
+#: ../../include/functions_reporting.php:13281
#, php-format
msgid "%d Critical agents"
msgstr "%d agentes en estado crítico"
-#: ../../include/functions_reporting.php:13209
+#: ../../include/functions_reporting.php:13282
#, php-format
msgid "%d Warning agents"
msgstr "%d agentes en estado de advertencia"
-#: ../../include/functions_reporting.php:13210
+#: ../../include/functions_reporting.php:13283
#, php-format
msgid "%d Unknown agents"
msgstr "%d agentes desconocidos"
-#: ../../include/functions_reporting.php:13211
+#: ../../include/functions_reporting.php:13284
#, php-format
msgid "%d not init agents"
msgstr "%d agentes no iniciados"
-#: ../../include/functions_reporting.php:14639
+#: ../../include/functions_reporting.php:14712
msgid "Total running modules"
msgstr "Total de módulos en ejecución"
-#: ../../include/functions_reporting.php:14642
-#: ../../include/functions_reporting.php:14657
-#: ../../include/functions_reporting.php:14669
-#: ../../include/functions_reporting.php:14687
-#: ../../include/functions_reporting.php:14699
-#: ../../include/functions_reporting.php:14711
-#: ../../include/functions_reporting.php:14723
+#: ../../include/functions_reporting.php:14715
+#: ../../include/functions_reporting.php:14730
+#: ../../include/functions_reporting.php:14742
+#: ../../include/functions_reporting.php:14760
+#: ../../include/functions_reporting.php:14772
+#: ../../include/functions_reporting.php:14784
+#: ../../include/functions_reporting.php:14796
msgid "Ratio"
msgstr "Proporción"
-#: ../../include/functions_reporting.php:14642
-#: ../../include/functions_reporting.php:14657
-#: ../../include/functions_reporting.php:14669
-#: ../../include/functions_reporting.php:14687
-#: ../../include/functions_reporting.php:14699
-#: ../../include/functions_reporting.php:14711
-#: ../../include/functions_reporting.php:14723
+#: ../../include/functions_reporting.php:14715
+#: ../../include/functions_reporting.php:14730
+#: ../../include/functions_reporting.php:14742
+#: ../../include/functions_reporting.php:14760
+#: ../../include/functions_reporting.php:14772
+#: ../../include/functions_reporting.php:14784
+#: ../../include/functions_reporting.php:14796
msgid "Modules by second"
msgstr "Módulos por segundo"
-#: ../../include/functions_reporting.php:14654
+#: ../../include/functions_reporting.php:14727
msgid "Local modules"
msgstr "Módulos locales"
-#: ../../include/functions_reporting.php:14664
+#: ../../include/functions_reporting.php:14737
msgid "Network modules"
msgstr "Módulos de red"
-#: ../../include/functions_reporting.php:14683
+#: ../../include/functions_reporting.php:14756
msgid "Plugin modules"
msgstr "Módulos de plugin"
-#: ../../include/functions_reporting.php:14695
+#: ../../include/functions_reporting.php:14768
msgid "Prediction modules"
msgstr "Módulos de predicción"
-#: ../../include/functions_reporting.php:14707
+#: ../../include/functions_reporting.php:14780
msgid "WMI modules"
msgstr "Módulos WMI"
-#: ../../include/functions_reporting.php:14719
+#: ../../include/functions_reporting.php:14792
msgid "Web modules"
msgstr "Módulos web"
-#: ../../include/functions_reporting.php:14757
+#: ../../include/functions_reporting.php:14830
#: ../../include/lib/Dashboard/Widgets/tactical.php:287
msgid "Server performance"
msgstr "Rendimiento del servidor"
-#: ../../include/functions_reporting.php:14870
+#: ../../include/functions_reporting.php:14943
msgid "Start condition"
msgstr "Condición de inicio"
-#: ../../include/functions_reporting.php:14870
+#: ../../include/functions_reporting.php:14943
msgid "Stop condition"
msgstr "Condición de detención"
-#: ../../include/functions_reporting.php:14880
+#: ../../include/functions_reporting.php:14953
msgid "Weekly:"
msgstr "Semanalmente:"
-#: ../../include/functions_reporting.php:14922
+#: ../../include/functions_reporting.php:14995
msgid "Monthly:"
msgstr "Mensual:"
-#: ../../include/functions_reporting.php:15473
+#: ../../include/functions_reporting.php:15546
msgid "Module Histogram Graph"
msgstr "Gráfico de histograma del módulo"
-#: ../../include/functions_reporting.php:15836
+#: ../../include/functions_reporting.php:15913
msgid "Attached to this email there's a PDF file of the"
msgstr "En este correo encontrarás en adjunto un archivo del"
-#: ../../include/functions_reporting.php:15837
+#: ../../include/functions_reporting.php:15914
msgid "report"
msgstr "informe"
@@ -50521,84 +51037,84 @@ msgstr "Directorio creado"
msgid "Something gone wrong creating directory"
msgstr "Algo salió mal al crear un directorio"
-#: ../../include/functions_filemanager.php:541
-#: ../../include/functions_filemanager.php:821
+#: ../../include/functions_filemanager.php:553
+#: ../../include/functions_filemanager.php:838
msgid "Create a Directory"
msgstr "Crear directorio"
-#: ../../include/functions_filemanager.php:545
-#: ../../include/functions_filemanager.php:832
-#: ../../include/functions_filemanager.php:835
+#: ../../include/functions_filemanager.php:559
+#: ../../include/functions_filemanager.php:850
+#: ../../include/functions_filemanager.php:853
msgid "Create File"
msgstr "Crear archivo"
-#: ../../include/functions_filemanager.php:549
-#: ../../include/functions_filemanager.php:846
-#: ../../include/functions_filemanager.php:849
+#: ../../include/functions_filemanager.php:564
+#: ../../include/functions_filemanager.php:864
+#: ../../include/functions_filemanager.php:867
msgid "Upload Files"
msgstr "Subir archivos"
-#: ../../include/functions_filemanager.php:583
-#: ../../include/functions_filemanager.php:793
+#: ../../include/functions_filemanager.php:598
+#: ../../include/functions_filemanager.php:808
msgid "Real path"
msgstr "Ruta real"
-#: ../../include/functions_filemanager.php:618
+#: ../../include/functions_filemanager.php:633
#, php-format
msgid "Directory %s doesn't exist!"
msgstr "El directorio %s no existe!"
-#: ../../include/functions_filemanager.php:663
+#: ../../include/functions_filemanager.php:678
msgid "Parent directory"
msgstr "Directorio padre"
-#: ../../include/functions_filemanager.php:677
+#: ../../include/functions_filemanager.php:692
msgid "Directory"
msgstr "Directorio"
-#: ../../include/functions_filemanager.php:685
+#: ../../include/functions_filemanager.php:700
msgid "Compressed file"
msgstr "Archivo comprimido"
-#: ../../include/functions_filemanager.php:689
-#: ../../include/functions_filemanager.php:696
+#: ../../include/functions_filemanager.php:704
+#: ../../include/functions_filemanager.php:711
msgid "Text file"
msgstr "Archivo de texto"
-#: ../../include/functions_filemanager.php:729
+#: ../../include/functions_filemanager.php:744
msgid "This file could be executed by any user"
msgstr "Cualquier usuario podría ejecutar este archivo"
-#: ../../include/functions_filemanager.php:730
+#: ../../include/functions_filemanager.php:745
msgid "Make sure it can't perform dangerous tasks"
msgstr "Asegúrate de que no puede desempeñar tareas peligrosas"
-#: ../../include/functions_filemanager.php:804
+#: ../../include/functions_filemanager.php:819
msgid "No files or directories to show."
msgstr "No hay archivos o directorios a mostrar."
-#: ../../include/functions_filemanager.php:818
-#: ../../include/functions_filemanager.php:940
+#: ../../include/functions_filemanager.php:835
+#: ../../include/functions_filemanager.php:961
msgid "Create directory"
msgstr "Crear directorio"
-#: ../../include/functions_filemanager.php:880
+#: ../../include/functions_filemanager.php:900
msgid "The zip upload in this dir, easy to upload multiple files."
msgstr "Subir archivo zip a este directorio, útil para subir múltiples archivos."
-#: ../../include/functions_filemanager.php:882
+#: ../../include/functions_filemanager.php:902
msgid "Decompress"
msgstr "Descomprimir"
-#: ../../include/functions_filemanager.php:954
+#: ../../include/functions_filemanager.php:976
msgid "Create file"
msgstr "Crear archivo"
-#: ../../include/functions_filemanager.php:968
+#: ../../include/functions_filemanager.php:990
msgid "Upload file/s"
msgstr "Subir archivo/s"
-#: ../../include/functions_filemanager.php:999
+#: ../../include/functions_filemanager.php:1021
msgid "The directory is read-only"
msgstr "Este directorio es solo de lectura"
@@ -50611,15 +51127,15 @@ msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL"
msgid "Copy of %s"
msgstr "Copia de %s"
-#: ../../include/lib/Dashboard/Manager.php:1007
+#: ../../include/lib/Dashboard/Manager.php:1011
msgid "Error create or update dashboard"
msgstr "Error al crear o actualizar el panel de control"
-#: ../../include/lib/Dashboard/Manager.php:1479
+#: ../../include/lib/Dashboard/Manager.php:1483
msgid "Icon image dashboard"
msgstr "Panel de control de imágenes de iconos"
-#: ../../include/lib/Dashboard/Widget.php:468
+#: ../../include/lib/Dashboard/Widget.php:469
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347
#: ../../include/lib/Dashboard/Widgets/reports.php:336
@@ -50627,28 +51143,28 @@ msgstr "Panel de control de imágenes de iconos"
msgid "Failed to connect to node %d"
msgstr "No se ha podido conectar con el nodo %d"
-#: ../../include/lib/Dashboard/Widget.php:483
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:621
+#: ../../include/lib/Dashboard/Widget.php:484
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:634
msgid "Please configure this widget before usage"
msgstr "Por favor, configura este widget antes de usarlo"
-#: ../../include/lib/Dashboard/Widget.php:491
+#: ../../include/lib/Dashboard/Widget.php:492
#: ../../include/lib/Dashboard/Widgets/maps_status.php:390
#: ../../include/lib/Dashboard/Widgets/events_list.php:561
msgid "Widget cannot be loaded"
msgstr "No se puede cargar el widget"
-#: ../../include/lib/Dashboard/Widget.php:491
+#: ../../include/lib/Dashboard/Widget.php:492
#: ../../include/lib/Dashboard/Widgets/maps_status.php:390
msgid "Please, configure the widget again to recover it"
msgstr "Por favor, configúralo de nuevo"
#: ../../include/lib/Dashboard/Widgets/groups_status.php:158
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:510
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:533
msgid "General group status"
msgstr "Estado general de grupo"
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:464
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:477
msgid "Not agents in this group"
msgstr "No hay agentes en este grupo"
@@ -50678,7 +51194,7 @@ msgid "No modules in selected groups"
msgstr "No hay módulos en los grupos seleccionados"
#: ../../include/lib/Dashboard/Widgets/heatmap.php:173
-#: ../../include/lib/Dashboard/Widgets/heatmap.php:385
+#: ../../include/lib/Dashboard/Widgets/heatmap.php:386
msgid "Heatmap"
msgstr "Mapa de calor"
@@ -50715,7 +51231,7 @@ msgstr "Si no, el diseño es vertical"
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:471
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482
#: ../../include/lib/Dashboard/Widgets/events_list.php:528
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:646
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:659
msgid "You don't have access"
msgstr "No tienes acceso"
@@ -50737,13 +51253,14 @@ msgstr "Color de fuente"
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256
msgid "Agent / module"
msgstr "Agente/módulo"
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408
msgid "Not found modules"
@@ -50776,7 +51293,7 @@ msgid "Maps"
msgstr "Mapas"
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175
-#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709
+#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711
msgid "Avg|Sum|Max|Min Module Data"
msgstr "Datos de módulos Promedio| Suma| Máx.| Mín."
@@ -50862,7 +51379,7 @@ msgstr "Gracias por usar %s."
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172
-#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537
+#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545
msgid "Color tabs modules"
msgstr "Color de las pestañas de módulos"
@@ -50946,21 +51463,21 @@ msgid "Zoom level"
msgstr "Nivel de zoom"
#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417
msgid "Triggered alerts report"
msgstr "Informe de alertas disparadas"
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390
msgid "Not alert fired"
msgstr "No hay alertas disparadas"
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399
#: ../../include/lib/Dashboard/Widgets/events_list.php:521
msgid "You must select some group"
msgstr "Seleccione un grupo"
#: ../../include/lib/Dashboard/Widgets/events_list.php:175
-#: ../../include/lib/Dashboard/Widgets/events_list.php:715
+#: ../../include/lib/Dashboard/Widgets/events_list.php:722
msgid "List of latest events"
msgstr "Lista de últimos eventos"
@@ -50970,16 +51487,16 @@ msgstr "Filtros personalizados"
#: ../../include/lib/Dashboard/Widgets/events_list.php:383
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299
-#: ../../include/functions_events.php:3261
-#: ../../include/functions_events.php:3267
-#: ../../include/functions_events.php:3289
+#: ../../include/functions_events.php:3266
+#: ../../include/functions_events.php:3272
+#: ../../include/functions_events.php:3294
msgid "All event"
msgstr "Todos los eventos"
#: ../../include/lib/Dashboard/Widgets/events_list.php:384
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300
-#: ../../include/functions_events.php:3263
-#: ../../include/functions_events.php:3297
+#: ../../include/functions_events.php:3268
+#: ../../include/functions_events.php:3302
msgid "Only validated"
msgstr "Solo eventos validados"
@@ -50992,6 +51509,34 @@ msgstr "Solo pendientes"
msgid "Please, event filter has been removed."
msgstr "Se ha eliminado el filtro de eventos."
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420
+msgid "Color chart"
+msgstr "Tabla de colores"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431
+msgid "Show label"
+msgstr "Mostrar etiqueta"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458
+msgid "Label size in px"
+msgstr "Tamaño de la etiqueta en píxeles"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470
+msgid "Color label"
+msgstr "Color de la etiqueta"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481
+msgid "Show Value"
+msgstr "Mostrar el valor"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501
+msgid "Value size in px"
+msgstr "Valor del tamaño en píxeles"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513
+msgid "Color value"
+msgstr "Valor del color"
+
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626
msgid "Event cardboard"
@@ -51128,12 +51673,12 @@ msgid "Missing Service id"
msgstr "Falta el ID de servicio"
#: ../../include/lib/Dashboard/Widgets/agent_module.php:173
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:766
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:779
msgid "Agent/Module View"
msgstr "Vista de Agente/Módulo"
#: ../../include/lib/Dashboard/Widgets/agent_module.php:250
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:454
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:459
msgid "Filter modules"
msgstr "Filtrar módulos"
@@ -51187,23 +51732,23 @@ msgstr "crítico"
msgid "unknown"
msgstr "desconocido"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:354
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:357
msgid "Type tree"
msgstr "Tipo de árbol"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:386
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:389
msgid "Open all groups"
msgstr "Abrir todos los grupos"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:407
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:411
msgid "Agents status"
msgstr "Estado de agente"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:442
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:447
msgid "Modules status"
msgstr "Estado de módulos"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:508
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:513
#, php-format
msgid ""
"The user doesn't have permission to read agents. Please contact with your %s "
@@ -51212,38 +51757,38 @@ msgstr ""
"El usuario no tiene permisos para leer agentes. Póngase en contacto con su "
"administrador de %s."
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:654
-#: ../../operation/tree.php:471
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:647
+#: ../../operation/tree.php:473
msgid "Operating systems found"
msgstr "Sistemas operativos encontrados"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:658
-#: ../../operation/tree.php:474
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:651
+#: ../../operation/tree.php:476
msgid "Tags found"
msgstr "Etiquetas encontradas"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:662
-#: ../../operation/tree.php:477
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:655
+#: ../../operation/tree.php:479
msgid "Module Groups found"
msgstr "Grupos de módulos encontrados"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:666
-#: ../../operation/tree.php:480 ../../operation/search_main.php:56
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:659
+#: ../../operation/tree.php:482 ../../operation/search_main.php:56
msgid "Modules found"
msgstr "Módulos encontrados"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:671
-#: ../../operation/tree.php:484
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:664
+#: ../../operation/tree.php:486
msgid "Groups found"
msgstr "Grupos encontrados"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:732
-#: ../../operation/tree.php:536
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:725
+#: ../../operation/tree.php:538
msgid "Not normal agents"
msgstr "Agentes en estado anómalo"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:733
-#: ../../operation/tree.php:537
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:726
+#: ../../operation/tree.php:539
msgid "Not normal modules"
msgstr "Módulos en estado anómalo"
@@ -51261,10 +51806,6 @@ msgstr ""
"mayúsculas y minúsculas. Por ejemplo: .*usage.* coincidirá con: cpu_usage o "
"vram usage."
-#: ../../include/lib/Dashboard/Widgets/top_n.php:280
-msgid "Avg."
-msgstr "Media"
-
#: ../../include/lib/Dashboard/Widgets/top_n.php:456
msgid "There are no agents/modules found matching filter set"
msgstr ""
@@ -51329,11 +51870,11 @@ msgstr "Activo-Pasivo"
msgid "Cluster already defined, please use another name."
msgstr "Este clúster ya ha sido definido, use otro nombre."
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:782
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:783
msgid "Cluster name"
msgstr "Nombre del clúster"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:783
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:784
msgid ""
"An agent with the same name of the cluster will be created, as well a special "
"service with the same name"
@@ -51341,11 +51882,11 @@ msgstr ""
"Se creará un agente con el mismo nombre que el clúster y un servicio especial "
"con el mismo nombre."
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:797
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:798
msgid "Cluster type"
msgstr "Tipo de clúster"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:798
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:799
msgid ""
"AA is a cluster where all members are working. In AP cluster only master "
"member is working"
@@ -51353,48 +51894,48 @@ msgstr ""
"AA es un clúster donde funcionan todos los miembros. En un clúster AP solo "
"trabaja el miembro maestro."
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:806
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:807
msgid "Active - Active"
msgstr "Activo - Activo"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:807
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:808
msgid "Active - Pasive"
msgstr "Activo - Pasivo"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:827
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:828
msgid "Target cluster agent will be stored under this group"
msgstr "El agente del clúster objetivo se guardará bajo este grupo"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:844
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:845
msgid ""
"You must select a Prediction Server to perform all cluster status calculations"
msgstr ""
"Debe seleccionar un Servidor de Predicción para llevar a cabo todos los "
"cálculos de estado de clúster"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042
msgid "critical if"
msgstr "crítico si"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074
#, php-format
msgid "% of balanced modules are down (equal or greater)."
msgstr "% de los módulos equilibrados están caídos (igual o mayor)."
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090
msgid "Please, set thresholds for all active-passive modules"
msgstr "Establezca umbrales para todos los módulos activo-pasivo"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101
msgid "Please, set thresholds for all active-active modules"
msgstr "Establezca umbrales para todos los módulos activo-activo"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206
msgid "Please, check all active-passive modules critical for this cluster"
msgstr "Compruebe todos los módulos activo-pasivo críticos para este clúster"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208
msgid ""
"If a critical balanced module is going to critical status, then cluster will "
"be critical."
@@ -51402,7 +51943,7 @@ msgstr ""
"Si un módulo equilibrado crítico pasa a estado crítico, el clúster entrará en "
"estado crítico."
-#: ../../include/lib/Core/DBMaintainer.php:174
+#: ../../include/lib/Core/DBMaintainer.php:177
#, php-format
msgid "Connection problems: %s"
msgstr "Problemas de conexión: %s"
@@ -51519,52 +52060,52 @@ msgid "Collapse the tree"
msgstr "Plegar el árbol"
#: ../../include/functions_snmp_browser.php:1115
-#: ../../include/functions_snmp_browser.php:1170
+#: ../../include/functions_snmp_browser.php:1178
msgid "Search options"
msgstr "Opciones de búsqueda"
-#: ../../include/functions_snmp_browser.php:1160
+#: ../../include/functions_snmp_browser.php:1168
msgid "SNMP v3 options"
msgstr "Opciones SNMP v3"
-#: ../../include/functions_snmp_browser.php:1192
+#: ../../include/functions_snmp_browser.php:1200
msgid "Search matches"
msgstr "Buscar coincidencias"
-#: ../../include/functions_snmp_browser.php:1208
+#: ../../include/functions_snmp_browser.php:1216
msgid "Create agent modules"
msgstr "Crear módulos de agentes"
-#: ../../include/functions_snmp_browser.php:1217
+#: ../../include/functions_snmp_browser.php:1225
msgid "Create policy modules"
msgstr "Crear módulos de políticas"
-#: ../../include/functions_snmp_browser.php:1226
+#: ../../include/functions_snmp_browser.php:1234
msgid "Create network components"
msgstr "Crear componentes de red"
-#: ../../include/functions_snmp_browser.php:1656
+#: ../../include/functions_snmp_browser.php:1665
msgid " available"
msgstr " disponible"
-#: ../../include/functions_snmp_browser.php:1663
+#: ../../include/functions_snmp_browser.php:1672
msgid " to apply"
msgstr " a aplicar"
-#: ../../include/functions_snmp_browser.php:1668
-#: ../../operation/snmpconsole/snmp_browser.php:535
+#: ../../include/functions_snmp_browser.php:1677
+#: ../../operation/snmpconsole/snmp_browser.php:540
msgid "Create new policy"
msgstr "Crear nueva política"
-#: ../../include/functions_snmp_browser.php:1723
+#: ../../include/functions_snmp_browser.php:1732
msgid "Undo"
msgstr "Deshacer"
-#: ../../include/chart_generator.php:117 ../../operation/agentes/stat_win.php:51
+#: ../../include/chart_generator.php:122 ../../operation/agentes/stat_win.php:51
#: ../../operation/agentes/stat_win.php:176
#: ../../operation/agentes/realtime_win.php:51
#: ../../operation/agentes/interface_traffic_graph_win.php:54
-#: ../../operation/inventory/inventory.php:369
+#: ../../operation/inventory/inventory.php:371
msgid "There was a problem connecting with the node"
msgstr "Error al conectar con el nodo"
@@ -51603,7 +52144,8 @@ msgid "GIS map layers"
msgstr "Mapas GIS adicionales"
#: ../../include/functions_groups.php:251
-#: ../../operation/agentes/pandora_networkmap.view.php:2413
+#: ../../operation/agentes/networkmap.dinamic.php:150
+#: ../../operation/agentes/pandora_networkmap.view.php:2414
msgid "Network maps"
msgstr "Mapas de red"
@@ -51637,158 +52179,152 @@ msgstr "No se ha podido conectar: %s"
msgid "Latest events"
msgstr "Últimos eventos"
-#: ../../include/functions_events.php:2910
+#: ../../include/functions_events.php:2915
msgid "Going to unknown"
msgstr "Cambiando a estado desconocido"
-#: ../../include/functions_events.php:2918
+#: ../../include/functions_events.php:2923
msgid "Alert manually validated"
msgstr "Alerta validada manualmente"
-#: ../../include/functions_events.php:2922
+#: ../../include/functions_events.php:2927
msgid "Going from critical to warning"
msgstr "Cambiando de crítico a advertencia"
-#: ../../include/functions_events.php:2928
+#: ../../include/functions_events.php:2933
msgid "Going up to critical state"
msgstr "Entrando en estado crítico"
-#: ../../include/functions_events.php:2934
+#: ../../include/functions_events.php:2939
msgid "Going up to normal state"
msgstr "Subiendo a estado normal"
-#: ../../include/functions_events.php:2938
+#: ../../include/functions_events.php:2943
msgid "Going down from normal to warning"
msgstr "Cambiando de normal a advertencia"
-#: ../../include/functions_events.php:2950
+#: ../../include/functions_events.php:2955
msgid "Discovery server detected a new host"
msgstr "El servidor Discovery ha detectado un host nuevo"
-#: ../../include/functions_events.php:2954
+#: ../../include/functions_events.php:2959
msgid "New agent created"
msgstr "Agente nuevo creado"
-#: ../../include/functions_events.php:2971
+#: ../../include/functions_events.php:2976
msgid "Unknown type:"
msgstr "Tipo desconocido:"
-#: ../../include/functions_events.php:3262
-#: ../../include/functions_events.php:3293
+#: ../../include/functions_events.php:3267
+#: ../../include/functions_events.php:3298
msgid "Only new"
msgstr "Solo nuevos"
-#: ../../include/functions_events.php:3264
-#: ../../include/functions_events.php:3301
+#: ../../include/functions_events.php:3269
+#: ../../include/functions_events.php:3306
msgid "Only in process"
msgstr "Solo en proceso"
-#: ../../include/functions_events.php:3265
-#: ../../include/functions_events.php:3305
+#: ../../include/functions_events.php:3270
+#: ../../include/functions_events.php:3310
msgid "Only not validated"
msgstr "Solo no validados"
-#: ../../include/functions_events.php:3270
-#: ../../include/functions_events.php:3543
-#: ../../include/functions_events.php:3552
-msgid "In process"
-msgstr "En proceso"
-
-#: ../../include/functions_events.php:3271
+#: ../../include/functions_events.php:3276
msgid "Not Validated"
msgstr "No validado"
-#: ../../include/functions_events.php:3463
+#: ../../include/functions_events.php:3468
msgid "Change owner"
msgstr "Cambiar propietario"
-#: ../../include/functions_events.php:3528
+#: ../../include/functions_events.php:3533
msgid "Change status"
msgstr "Cambiar estado"
-#: ../../include/functions_events.php:3625
-#: ../../include/functions_events.php:5361
+#: ../../include/functions_events.php:3630
+#: ../../include/functions_events.php:5366
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330
msgid "Add comment"
msgstr "Añadir comentario"
-#: ../../include/functions_events.php:3648
-#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978
+#: ../../include/functions_events.php:3653
+#: ../../include/functions_events.php:3657 ../../operation/events/events.php:983
msgid "Delete event"
msgstr "Eliminar evento"
-#: ../../include/functions_events.php:3675
+#: ../../include/functions_events.php:3680
msgid "Custom responses"
msgstr "Respuesta personalizada"
-#: ../../include/functions_events.php:4281
+#: ../../include/functions_events.php:4286
msgid "Extended information"
msgstr "Información extendida"
-#: ../../include/functions_events.php:4312
+#: ../../include/functions_events.php:4317
msgid "There was an error connecting to the node"
msgstr "Error al conectarse al nodo"
-#: ../../include/functions_events.php:4333
+#: ../../include/functions_events.php:4338
msgid "Agent details"
msgstr "Detalles del agente"
-#: ../../include/functions_events.php:4347
+#: ../../include/functions_events.php:4352
msgid "This agent belongs to metaconsole, is not possible display it"
msgstr "Este agente pertenece a la Metaconsola, no es posible mostrarlo"
-#: ../../include/functions_events.php:4442
+#: ../../include/functions_events.php:4447
msgid "View custom fields"
msgstr "Ver campos personalizados"
-#: ../../include/functions_events.php:4465
+#: ../../include/functions_events.php:4470
msgid "Module details"
msgstr "Detalles del módulo"
-#: ../../include/functions_events.php:4481
+#: ../../include/functions_events.php:4486
msgid "No assigned"
msgstr "No asignado"
-#: ../../include/functions_events.php:4562
-#: ../../include/functions_events.php:4571
+#: ../../include/functions_events.php:4567
+#: ../../include/functions_events.php:4576
msgid "Go to data overview"
msgstr "Ir a la vista general de datos"
-#: ../../include/functions_events.php:4688
+#: ../../include/functions_events.php:4693
#, php-format
msgid "Invalid custom data: %s"
msgstr "Datos personalizados no válidos: %s"
-#: ../../include/functions_events.php:4917
+#: ../../include/functions_events.php:4922
msgid "First event"
msgstr "Primer evento"
-#: ../../include/functions_events.php:4920
+#: ../../include/functions_events.php:4925
msgid "Last event"
msgstr "Último evento"
-#: ../../include/functions_events.php:5017
+#: ../../include/functions_events.php:5022
msgid "Autovalidated"
msgstr "Autovalidado"
-#: ../../include/functions_events.php:5093
+#: ../../include/functions_events.php:5098
msgid "ID extra"
msgstr "ID extra"
-#: ../../include/functions_events.php:5210
+#: ../../include/functions_events.php:5215
msgid "There are no comments"
msgstr "No hay comentarios"
-#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214
+#: ../../include/functions_events.php:5279
msgid "by"
msgstr "por"
-#: ../../include/functions_events.php:5941
+#: ../../include/functions_events.php:5946
#, php-format
msgid "Event # %d"
msgstr "Evento # %d"
-#: ../../include/functions_events.php:5944
+#: ../../include/functions_events.php:5949
msgid "Executing command: "
msgstr "Ejecutando comando: %s"
@@ -51862,15 +52398,15 @@ msgstr "Error SAML"
msgid "User is blocked"
msgstr "El usuario está bloqueado"
-#: ../../index.php:1003
+#: ../../index.php:1004
msgid "User doesn\\'t exist."
msgstr "El usuario no existe."
-#: ../../index.php:1025
+#: ../../index.php:1026
msgid "User only can use the API."
msgstr "El usuario solo puede usar la API."
-#: ../../index.php:1231
+#: ../../index.php:1232
#, php-format
msgid "Metaconsole MR (%d) is different than this one (%d)"
msgstr "La Metaconsola MR (%d) es diferente a esta (%d)"
@@ -51907,35 +52443,35 @@ msgstr "Grupos de módulos"
msgid "policies"
msgstr "Políticas"
-#: ../../operation/tree.php:215
+#: ../../operation/tree.php:216
msgid "Search group"
msgstr "Buscar grupo"
-#: ../../operation/tree.php:221 ../../operation/tree.php:310
+#: ../../operation/tree.php:222 ../../operation/tree.php:312
msgid "Show not init modules"
msgstr "Mostrar módulos no iniciados"
-#: ../../operation/tree.php:232
+#: ../../operation/tree.php:233
msgid "Search agent"
msgstr "Buscar agente"
-#: ../../operation/tree.php:244
+#: ../../operation/tree.php:245
msgid "Show not init agents"
msgstr "Mostrar agentes no iniciados"
-#: ../../operation/tree.php:254
+#: ../../operation/tree.php:255
msgid "Show full hirearchy"
msgstr "Mostrar jerarquía completa"
-#: ../../operation/tree.php:288
+#: ../../operation/tree.php:289
msgid "Show only disabled"
msgstr "Mostrar solo deshabilitados"
-#: ../../operation/tree.php:305
+#: ../../operation/tree.php:307
msgid "Search module"
msgstr "Buscar módulo"
-#: ../../operation/tree.php:355
+#: ../../operation/tree.php:357
msgid "Tree search"
msgstr "Búsqueda de árbol"
@@ -52015,34 +52551,29 @@ msgstr ""
"Si se marca la casilla, se usará el tamaño de bloque de la configuración "
"global."
-#: ../../operation/users/user_edit.php:519
-#: ../../operation/users/user_edit.php:528
+#: ../../operation/users/user_edit.php:524
msgid "Theme"
msgstr "Tema"
-#: ../../operation/users/user_edit.php:529
-msgid "This change will only apply to nodes"
-msgstr "Este cambio solo se aplicará a los nodos"
-
-#: ../../operation/users/user_edit.php:846
+#: ../../operation/users/user_edit.php:843
msgid "eHorus user configuration"
msgstr "Configuración de usuario eHorus"
-#: ../../operation/users/user_edit.php:851
+#: ../../operation/users/user_edit.php:848
msgid "eHorus user acces enabled"
msgstr "Acceso de usuario eHorus habilitado"
-#: ../../operation/users/user_edit.php:905
+#: ../../operation/users/user_edit.php:902
msgid "Integria user configuration"
msgstr "Configuración de usuario de Integria"
-#: ../../operation/users/user_edit.php:948
+#: ../../operation/users/user_edit.php:945
msgid "You can not change your user info under the current authentication scheme"
msgstr ""
"No puede cambiar la información de usuario con la configuración actual de "
"autenticación"
-#: ../../operation/users/user_edit.php:1036
+#: ../../operation/users/user_edit.php:1033
msgid "This user doesn't have any assigned profile/group."
msgstr "Este usuario no tiene asignado ningún perfil/grupo"
@@ -52072,42 +52603,42 @@ msgstr "Puede encontrar más ayuda en wiki Site "
+"news."
+msgstr ""
+"Puede reemplazar este mensaje por uno personalizado en Herramientas de "
+"administrador -> Novedades del sitio."
+
+#: ../../general/logon_ok.php:273
msgid "News board"
msgstr "Tablón de noticias"
-#: ../../general/logon_ok.php:304
+#: ../../general/logon_ok.php:349
msgid "Latest activity"
msgstr "Actividad reciente"
@@ -54747,7 +55318,7 @@ msgstr ""
msgid "You cannot use this node until system is unified"
msgstr "No puede utilizar este nodo hasta que el sistema esté unificado"
-#: ../../general/node_deactivated.php:56
+#: ../../general/node_deactivated.php:61
#, php-format
msgid "Please navigate to %s to unify system"
msgstr "Navegue a %s para unificar el sistema"
@@ -54769,7 +55340,7 @@ msgstr ""
"\t\t\tTen en cuenta que todos los intentos de acceso a esta página son "
"guardados en los logs de seguridad de la base de datos de Pandora FMS"
-#: ../../general/main_menu.php:79 ../../general/main_menu.php:86
+#: ../../general/main_menu.php:80 ../../general/main_menu.php:87
msgid "Management"
msgstr "Gestión"
@@ -54807,14 +55378,14 @@ msgstr "Ir a la página web de %s"
msgid "Go to Login"
msgstr "Ir a la pantalla de inicio"
-#: ../../general/login_page.php:297 ../../general/login_page.php:302
-msgid "Login as admin"
-msgstr "Entrar como administrador"
-
-#: ../../general/login_page.php:355
+#: ../../general/login_page.php:297 ../../general/login_page.php:355
msgid "Let's go"
msgstr "Comenzar"
+#: ../../general/login_page.php:302
+msgid "Login as admin"
+msgstr "Entrar como administrador"
+
#: ../../general/login_page.php:409
msgid "View details"
msgstr "Ver detalles"
@@ -55022,6 +55593,62 @@ msgstr ""
"El sistema de ayuda de %s se ha solicitado con una petición de ayuda que no "
"existe actualmente. No hay contenido de ayuda a mostrar."
+#~ msgid "Ultimo contacto remoto"
+#~ msgstr "Ultimo contacto remoto"
+
+#~ msgid "Generated automatically with the information provided for the user"
+#~ msgstr ""
+#~ "Generado automáticamente con la información proporcionada para el usuario"
+
+#~ msgid "SMNP"
+#~ msgstr "SMNP"
+
+#~ msgid "SMNP community"
+#~ msgstr "Comunidad SMNP"
+
+#~ msgid "Manage satellite hosts"
+#~ msgstr "Administrar hosts satélite"
+
+#~ msgid "No maps defined"
+#~ msgstr "No hay mapas definidos"
+
+#, fuzzy
+#~| msgid "Width"
+#~ msgid "Widtzzzzh"
+#~ msgstr "Anchura"
+
+#, fuzzy
+#~| msgid "No available data to show"
+#~ msgid "No available data to showaaaa"
+#~ msgstr "No hay datos disponibles para mostrar"
+
+#, fuzzy
+#~| msgid "Module sanity"
+#~ msgid "Module sanityX"
+#~ msgstr "Estado de los módulos"
+
+#~ msgid "This change will only apply to nodes"
+#~ msgstr "Este cambio solo se aplicará a los nodos"
+
+#~ msgid ""
+#~ "To see the list of modules paginated, enable this option in the Styles "
+#~ "Configuration."
+#~ msgstr ""
+#~ "Para ver la lista de módulos con paginación, habilita esta opción en la "
+#~ "configuración de estilos."
+
+#~ msgid "There is no GIS data."
+#~ msgstr "No hay datos GIS"
+
+#~ msgid "Events info (24hr.)"
+#~ msgstr "Información de eventos (24h)"
+
+#~ msgid "Time Sound"
+#~ msgstr "Programar sonido"
+
+#~ msgid "Events not found"
+#~ msgstr "Eventos no encontrados"
+
#~ msgid "Calendars"
#~ msgstr "Calendarios"
@@ -55247,15 +55874,6 @@ msgstr ""
#~ msgid "Scheduled jobs"
#~ msgstr "Tareas programadas"
-#~ msgid "Go to module edition"
-#~ msgstr "Ir a la edición de módulos"
-
-#~ msgid "Go to cluster edition"
-#~ msgstr "Ir a la edición del clúster"
-
-#~ msgid "Go to agent edition"
-#~ msgstr "Ir a \"editar agentes\""
-
#~ msgid "PANDORA FMS"
#~ msgstr "PANDORA FMS"
@@ -56633,22 +57251,6 @@ msgstr ""
#~ msgid "Transactional Map - Create Phase - "
#~ msgstr "Mapa Transaccional - Crear Fase - "
-#~ msgid ""
-#~ "This extension makes registering server plugins an easier task.\n"
-#~ "\t\t\t\t\t\tHere you can upload a server plugin in .pspz zipped format.\n"
-#~ "\t\t\t\t\t\tPlease refer to the official documentation on how to obtain and "
-#~ "use Server Plugins.\n"
-#~ "\t\t\t\t\t\t
You can get more plugins in our Public Resource Library "
-#~ msgstr ""
-#~ "Esta extensión facilita registrar los plugins de servidor.\n"
-#~ "\t\t\t\t\t\tAquí puede subir un plugin de servidor en formato .pspz "
-#~ "comprimido.\n"
-#~ "\t\t\t\t\t\tConsulte la documentación oficial para saber como obtener y "
-#~ "utilizar los plugins de servidor.\n"
-#~ "\t\t\t\t\t\t
Tiene más plugins a su disposición en la Public Resource Library "
-
#~ msgid ""
#~ "This node is configured with centralized mode. This page is for read only. "
#~ "Go to metaconsole to manage the component groups."
@@ -57423,9 +58025,6 @@ msgstr ""
#~ msgid "First date"
#~ msgstr "Primera fecha"
-#~ msgid "Latest data"
-#~ msgstr "Últimos datos"
-
#~ msgid "Purge event data over 90 days"
#~ msgstr "Borrar los datos de eventos excepto el último trimestre"
@@ -58634,9 +59233,6 @@ msgstr ""
#~ msgid "Filter Networkmaps by %s"
#~ msgstr "Filtrar mapas de red por %s"
-#~ msgid "Welcome to Pandora FMS Web Console"
-#~ msgstr "Bienvenido/a a la consola web de Pandora FMS"
-
#~ msgid "Pandora FMS Overview"
#~ msgstr "Vista general de Pandora FMS"
@@ -58825,12 +59421,6 @@ msgstr ""
#~ msgid "There was an error with the zip file"
#~ msgstr "Ha habido un error con el fichero zip"
-#~ msgid "Generate file"
-#~ msgstr "Generar archivo"
-
-#~ msgid "At least one option must be selected"
-#~ msgstr "Se debe seleccionar al menos una opción"
-
#~ msgid "File is too large (> 500KB)"
#~ msgstr "Archivo demasiado grande (>500KB)"
@@ -61387,9 +61977,6 @@ msgstr ""
#~ msgid "Event graph by user"
#~ msgstr "Gráfico de eventos por usuario"
-#~ msgid "Successfully set in process"
-#~ msgstr "Establecido en modo \"en proceso\" correctamente"
-
#~ msgid "Marquee display"
#~ msgstr "Mostrar marquesina"
diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo
index 3283401019..c04c8000c2 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 ba53cc15bb..7be4b164bc 100644
--- a/pandora_console/include/languages/fr.po
+++ b/pandora_console/include/languages/fr.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: pandora-fms\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-09 10:50+0200\n"
-"PO-Revision-Date: 2023-05-09 13:46+0200\n"
+"POT-Creation-Date: 2023-06-06 09:26+0200\n"
+"PO-Revision-Date: 2023-06-06 13:03+0200\n"
"Last-Translator: Laura Cano
WARNING: you also need to delete config."
"php options in your console or delete the whole console."
@@ -549,7 +571,7 @@ msgstr ""
"supprimer les options de config.php de votre console ou supprimer toute la "
"console."
-#: ../../views/consoles/list.php:127
+#: ../../views/consoles/list.php:128
#: ../../views/calendar/special_days_edit.php:209
#: ../../views/calendar/special_days.php:430
#: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70
@@ -576,23 +598,23 @@ msgstr ""
#: ../../enterprise/include/class/DeploymentCenter.class.php:1824
#: ../../enterprise/include/class/AgentRepository.class.php:903
#: ../../enterprise/include/class/AgentRepository.class.php:1001
-#: ../../enterprise/include/class/LogSource.class.php:824
-#: ../../enterprise/include/class/LogSource.class.php:877
+#: ../../enterprise/include/class/LogSource.class.php:821
+#: ../../enterprise/include/class/LogSource.class.php:874
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114
#: ../../enterprise/include/class/ManageBackups.class.php:455
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:926
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:949
-#: ../../update_manager_client/views/register.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:254
+#: ../../update_manager_client/views/register.php:86
+#: ../../godmode/agentes/status_monitor_custom_fields.php:274
#: ../../godmode/snmpconsole/snmp_alert.php:2226
#: ../../godmode/snmpconsole/snmp_alert.php:2241
#: ../../godmode/massive/massive_operations.php:416
#: ../../godmode/setup/snmp_wizard.php:100
#: ../../godmode/events/custom_events.php:234
-#: ../../include/functions_visual_map_editor.php:878
-#: ../../include/functions_visual_map_editor.php:882
+#: ../../include/functions_visual_map_editor.php:926
+#: ../../include/functions_visual_map_editor.php:930
#: ../../include/functions_register.php:179
#: ../../include/class/ConfigPEN.class.php:675
#: ../../include/class/ConfigPEN.class.php:699
@@ -601,23 +623,24 @@ msgstr ""
#: ../../include/class/SatelliteAgent.class.php:1199
#: ../../include/class/SatelliteAgent.class.php:1261
#: ../../include/class/TreeGroupEdition.class.php:165
-#: ../../include/class/NetworkMap.class.php:2951
-#: ../../include/class/CredentialStore.class.php:1647
-#: ../../include/class/CredentialStore.class.php:1699
-#: ../../include/class/ModuleTemplates.class.php:1360
+#: ../../include/class/NetworkMap.class.php:2957
+#: ../../include/class/CredentialStore.class.php:1656
+#: ../../include/class/CredentialStore.class.php:1708
+#: ../../include/class/ModuleTemplates.class.php:1364
#: ../../include/class/WelcomeWindow.class.php:174
#: ../../include/class/SatelliteCollection.class.php:536
#: ../../include/class/SatelliteCollection.class.php:579
-#: ../../include/class/AgentWizard.class.php:6234
+#: ../../include/class/AgentWizard.class.php:6230
#: ../../operation/agentes/pandora_networkmap.editor.php:746
-#: ../../operation/snmpconsole/snmp_browser.php:174
-#: ../../operation/snmpconsole/snmp_browser.php:545
-#: ../../operation/snmpconsole/snmp_browser.php:625
-#: ../../operation/snmpconsole/snmp_browser.php:640 ../../general/header.php:834
+#: ../../operation/snmpconsole/snmp_browser.php:179
+#: ../../operation/snmpconsole/snmp_browser.php:550
+#: ../../operation/snmpconsole/snmp_browser.php:623
+#: ../../operation/snmpconsole/snmp_browser.php:684
+#: ../../operation/snmpconsole/snmp_browser.php:699 ../../general/header.php:834
msgid "Cancel"
msgstr "Annuler"
-#: ../../views/consoles/list.php:164
+#: ../../views/consoles/list.php:165
#: ../../enterprise/godmode/services/services.elements.php:956
#: ../../enterprise/godmode/services/services.elements.php:967
#: ../../enterprise/godmode/setup/setup.php:595
@@ -627,24 +650,25 @@ msgstr "Annuler"
#: ../../enterprise/include/class/DeploymentCenter.class.php:1647
#: ../../enterprise/include/class/AgentRepository.class.php:944
#: ../../enterprise/include/class/Omnishell.class.php:1306
-#: ../../enterprise/include/class/LogSource.class.php:767
+#: ../../enterprise/include/class/LogSource.class.php:764
#: ../../enterprise/include/class/ManageBackups.class.php:482
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1079
#: ../../include/ajax/snmp_browser.ajax.php:260
#: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743
#: ../../include/class/SatelliteAgent.class.php:1046
#: ../../include/class/HelpFeedBack.class.php:360
-#: ../../include/class/Diagnostics.class.php:2115
-#: ../../include/class/CredentialStore.class.php:1590
-#: ../../include/class/ModuleTemplates.class.php:1395
+#: ../../include/class/Diagnostics.class.php:2119
+#: ../../include/class/CredentialStore.class.php:1599
+#: ../../include/class/ModuleTemplates.class.php:1399
+#: ../../include/class/AgentDeployWizard.class.php:604
#: ../../include/class/SatelliteCollection.class.php:616
#: ../../include/class/WebServerModuleDebug.class.php:359
-#: ../../include/class/AgentWizard.class.php:6027
-#: ../../operation/visual_console/view.php:937
+#: ../../include/class/AgentWizard.class.php:6023
+#: ../../operation/visual_console/view.php:939
msgid "Success"
msgstr "Succès"
-#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179
+#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657
#: ../../enterprise/include/functions_HA_cluster.php:542
#: ../../enterprise/include/functions_HA_cluster.php:547
@@ -654,8 +678,8 @@ msgstr "Succès"
#: ../../enterprise/include/class/AgentRepository.class.php:951
#: ../../enterprise/include/class/AgentRepository.class.php:956
#: ../../enterprise/include/class/Omnishell.class.php:1302
-#: ../../enterprise/include/class/LogSource.class.php:774
-#: ../../enterprise/include/class/LogSource.class.php:779
+#: ../../enterprise/include/class/LogSource.class.php:771
+#: ../../enterprise/include/class/LogSource.class.php:776
#: ../../enterprise/include/class/ManageBackups.class.php:493
#: ../../enterprise/include/class/ManageBackups.class.php:498
#: ../../enterprise/include/functions_ux_console.php:483
@@ -669,19 +693,21 @@ msgstr "Succès"
#: ../../include/class/SatelliteAgent.class.php:1055
#: ../../include/class/SatelliteAgent.class.php:1060
#: ../../include/class/HelpFeedBack.class.php:355
-#: ../../include/class/Diagnostics.class.php:2114
-#: ../../include/class/CredentialStore.class.php:1597
-#: ../../include/class/CredentialStore.class.php:1602
-#: ../../include/class/ModuleTemplates.class.php:1402
-#: ../../include/class/ModuleTemplates.class.php:1407
+#: ../../include/class/Diagnostics.class.php:2118
+#: ../../include/class/CredentialStore.class.php:1606
+#: ../../include/class/CredentialStore.class.php:1611
+#: ../../include/class/ModuleTemplates.class.php:1406
+#: ../../include/class/ModuleTemplates.class.php:1411
+#: ../../include/class/AgentDeployWizard.class.php:611
+#: ../../include/class/AgentDeployWizard.class.php:616
#: ../../include/class/SatelliteCollection.class.php:626
#: ../../include/class/SatelliteCollection.class.php:631
#: ../../include/class/WebServerModuleDebug.class.php:366
#: ../../include/class/WebServerModuleDebug.class.php:371
-#: ../../include/class/AgentWizard.class.php:6034
-#: ../../include/class/AgentWizard.class.php:6039
-#: ../../operation/visual_console/view.php:944
-#: ../../operation/visual_console/view.php:949
+#: ../../include/class/AgentWizard.class.php:6030
+#: ../../include/class/AgentWizard.class.php:6035
+#: ../../operation/visual_console/view.php:946
+#: ../../operation/visual_console/view.php:951
msgid "Failed"
msgstr "Échoué"
@@ -707,21 +733,21 @@ msgstr "Échoué"
#: ../../enterprise/include/functions_policies.php:3734
#: ../../enterprise/operation/agentes/tag_view.php:702
#: ../../enterprise/operation/services/massive/services.create.php:897
-#: ../../godmode/groups/configure_group.php:224
-#: ../../godmode/groups/group_list.php:880 ../../godmode/groups/tactical.php:181
+#: ../../godmode/groups/configure_group.php:243
+#: ../../godmode/groups/group_list.php:881 ../../godmode/groups/tactical.php:181
#: ../../godmode/agentes/configurar_agente.php:441
#: ../../godmode/agentes/configurar_agente.php:745
-#: ../../godmode/agentes/modificar_agente.php:829
-#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265
+#: ../../godmode/agentes/modificar_agente.php:841
+#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263
#: ../../godmode/massive/massive_copy_modules.php:216
#: ../../godmode/alerts/configure_alert_command.php:58
#: ../../godmode/alerts/alert_actions.php:70
#: ../../godmode/alerts/alert_commands.php:581
-#: ../../godmode/alerts/alert_templates.php:126
-#: ../../godmode/alerts/alert_templates.php:135
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
+#: ../../godmode/alerts/alert_templates.php:129
+#: ../../godmode/alerts/alert_templates.php:138
+#: ../../godmode/alerts/alert_templates.php:192
+#: ../../godmode/alerts/alert_templates.php:215
+#: ../../godmode/alerts/alert_templates.php:236
#: ../../godmode/alerts/configure_alert_action.php:72
#: ../../godmode/alerts/configure_alert_action.php:92
#: ../../godmode/alerts/configure_alert_template.php:95
@@ -730,20 +756,20 @@ msgstr "Échoué"
#: ../../godmode/alerts/alert_view.php:74 ../../godmode/alerts/alert_list.php:504
#: ../../godmode/alerts/alert_list.php:523
#: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98
-#: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74
-#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194
-#: ../../include/functions_reporting_html.php:2594
-#: ../../include/functions_reporting_html.php:5671
-#: ../../include/functions_treeview.php:392
+#: ../../mobile/operation/agents.php:408 ../../mobile/operation/home.php:74
+#: ../../mobile/operation/agent.php:358 ../../mobile/operation/alerts.php:194
+#: ../../include/functions_reporting_html.php:2615
+#: ../../include/functions_reporting_html.php:5699
+#: ../../include/functions_treeview.php:396
#: ../../include/functions_reports.php:855
#: ../../include/functions_reports.php:859
#: ../../include/functions_reports.php:865
#: ../../include/functions_reports.php:871
#: ../../include/class/AgentsAlerts.class.php:567
#: ../../operation/search_agents.php:57 ../../operation/search_results.php:107
-#: ../../operation/agentes/estado_agente.php:1052
+#: ../../operation/agentes/estado_agente.php:1060
#: ../../operation/agentes/ver_agente.php:1436
-#: ../../operation/agentes/ver_agente.php:1848
+#: ../../operation/agentes/ver_agente.php:1844
msgid "Alerts"
msgstr "Alertes"
@@ -766,7 +792,7 @@ msgstr "Jours Spéciaux"
#: ../../enterprise/godmode/policies/policy_alerts.php:68
#: ../../enterprise/godmode/policies/configure_policy.php:85
#: ../../enterprise/godmode/policies/policy_modules.php:481
-#: ../../enterprise/godmode/policies/policy_queue.php:211
+#: ../../enterprise/godmode/policies/policy_queue.php:213
#: ../../enterprise/godmode/policies/policies.php:268
#: ../../enterprise/godmode/policies/policy_linking.php:120
#: ../../enterprise/godmode/policies/policy_external_alerts.php:322
@@ -786,10 +812,10 @@ msgstr "Jours Spéciaux"
#: ../../extensions/resource_registration.php:1105
#: ../../godmode/modules/manage_nc_groups.php:315
#: ../../godmode/modules/manage_inventory_modules.php:67
-#: ../../godmode/modules/manage_network_components.php:314
+#: ../../godmode/modules/manage_network_components.php:315
#: ../../godmode/groups/group_list.php:393
#: ../../godmode/groups/modu_group_list.php:95
-#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:537
+#: ../../godmode/users/profile_list.php:117 ../../godmode/users/user_list.php:538
#: ../../godmode/agentes/modificar_agente.php:118
#: ../../godmode/massive/massive_operations.php:433
#: ../../godmode/massive/massive_edit_users.php:47
@@ -798,7 +824,7 @@ msgstr "Jours Spéciaux"
#: ../../godmode/alerts/configure_alert_command.php:194
#: ../../godmode/alerts/alert_actions.php:218
#: ../../godmode/alerts/alert_commands.php:730
-#: ../../godmode/alerts/alert_templates.php:266
+#: ../../godmode/alerts/alert_templates.php:270
#: ../../godmode/alerts/configure_alert_action.php:125
#: ../../godmode/alerts/configure_alert_template.php:429
#: ../../godmode/setup/os.list.php:49
@@ -817,7 +843,7 @@ msgstr "Métaconsole"
#: ../../enterprise/godmode/policies/policy_alerts.php:70
#: ../../enterprise/godmode/policies/configure_policy.php:87
#: ../../enterprise/godmode/policies/policy_modules.php:483
-#: ../../enterprise/godmode/policies/policy_queue.php:213
+#: ../../enterprise/godmode/policies/policy_queue.php:215
#: ../../enterprise/godmode/policies/policies.php:270
#: ../../enterprise/godmode/policies/policy_linking.php:122
#: ../../enterprise/godmode/policies/policy_external_alerts.php:324
@@ -835,10 +861,10 @@ msgstr "Métaconsole"
#: ../../extensions/resource_registration.php:1107
#: ../../godmode/modules/manage_nc_groups.php:317
#: ../../godmode/modules/manage_inventory_modules.php:69
-#: ../../godmode/modules/manage_network_components.php:316
+#: ../../godmode/modules/manage_network_components.php:317
#: ../../godmode/groups/group_list.php:395
#: ../../godmode/groups/modu_group_list.php:97
-#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:539
+#: ../../godmode/users/profile_list.php:119 ../../godmode/users/user_list.php:540
#: ../../godmode/agentes/modificar_agente.php:120
#: ../../godmode/massive/massive_operations.php:435
#: ../../godmode/massive/massive_edit_users.php:49
@@ -847,7 +873,7 @@ msgstr "Métaconsole"
#: ../../godmode/alerts/configure_alert_command.php:196
#: ../../godmode/alerts/alert_actions.php:220
#: ../../godmode/alerts/alert_commands.php:732
-#: ../../godmode/alerts/alert_templates.php:268
+#: ../../godmode/alerts/alert_templates.php:272
#: ../../godmode/alerts/configure_alert_action.php:127
#: ../../godmode/alerts/configure_alert_template.php:431
#: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188
@@ -872,7 +898,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_excel.php:207
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:778
#: ../../extensions/api_checker.php:286 ../../godmode/modules/module_list.php:97
-#: ../../godmode/groups/group_list.php:874
+#: ../../godmode/groups/group_list.php:875
#: ../../godmode/groups/modu_group_list.php:260
#: ../../godmode/agentes/fields_manager.php:152
#: ../../godmode/agentes/agent_manager.php:364
@@ -899,7 +925,7 @@ msgstr "Identifiant"
#: ../../enterprise/views/ncm/vendors/edit.php:67
#: ../../enterprise/views/ipam/sites/list.php:46
#: ../../enterprise/views/ipam/sites/edit.php:40
-#: ../../enterprise/meta/advanced/servers.build_table.php:61
+#: ../../enterprise/meta/advanced/servers.build_table.php:77
#: ../../enterprise/meta/advanced/collections.data.php:350
#: ../../enterprise/meta/include/functions_autoprovision.php:495
#: ../../enterprise/meta/include/functions_autoprovision.php:603
@@ -922,7 +948,7 @@ msgstr "Identifiant"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130
#: ../../enterprise/godmode/policies/configure_policy.php:112
-#: ../../enterprise/godmode/policies/policy_modules.php:1544
+#: ../../enterprise/godmode/policies/policy_modules.php:1589
#: ../../enterprise/godmode/policies/policies.php:437
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270
#: ../../enterprise/godmode/policies/policy_collections.php:240
@@ -985,25 +1011,25 @@ msgstr "Identifiant"
#: ../../godmode/modules/manage_inventory_modules_form.php:115
#: ../../godmode/modules/module_list.php:99
#: ../../godmode/modules/manage_network_templates.php:248
-#: ../../godmode/groups/configure_group.php:132
-#: ../../godmode/groups/group_list.php:876
+#: ../../godmode/groups/configure_group.php:142
+#: ../../godmode/groups/group_list.php:877
#: ../../godmode/groups/configure_modu_group.php:82
#: ../../godmode/groups/modu_group_list.php:261
-#: ../../godmode/users/user_list.php:574
+#: ../../godmode/users/user_list.php:575
#: ../../godmode/agentes/inventory_manager.php:233
#: ../../godmode/agentes/planned_downtime.editor.php:882
#: ../../godmode/agentes/planned_downtime.editor.php:1356
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128
#: ../../godmode/agentes/configure_field.php:115
#: ../../godmode/agentes/module_manager_editor_common.php:252
-#: ../../godmode/agentes/module_manager_editor_common.php:1430
+#: ../../godmode/agentes/module_manager_editor_common.php:1440
#: ../../godmode/agentes/module_manager.php:605
#: ../../godmode/netflow/nf_edit.php:166
-#: ../../godmode/netflow/nf_edit_form.php:199
+#: ../../godmode/netflow/nf_edit_form.php:242
#: ../../godmode/alerts/configure_alert_command.php:220
#: ../../godmode/alerts/alert_actions.php:351
#: ../../godmode/alerts/alert_commands.php:749
-#: ../../godmode/alerts/alert_templates.php:409
+#: ../../godmode/alerts/alert_templates.php:413
#: ../../godmode/alerts/configure_alert_action.php:183
#: ../../godmode/alerts/configure_alert_template.php:1080
#: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73
@@ -1012,44 +1038,49 @@ msgstr "Identifiant"
#: ../../godmode/reporting/visual_console_builder.data.php:151
#: ../../godmode/reporting/create_container.php:247
#: ../../godmode/reporting/reporting_builder.item_editor.php:83
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1085
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1087
#: ../../godmode/reporting/reporting_builder.main.php:91
#: ../../godmode/reporting/reporting_builder.main.php:95
#: ../../godmode/reporting/graph_builder.main.php:128
#: ../../godmode/events/event_filter.php:144
#: ../../godmode/events/event_responses.editor.php:97
#: ../../godmode/events/event_responses.list.php:66
-#: ../../godmode/servers/servers.build_table.php:77
+#: ../../godmode/servers/servers.build_table.php:79
#: ../../godmode/servers/modificar_server.php:91
-#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992
-#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190
+#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984
+#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194
#: ../../godmode/category/edit_category.php:189
+#: ../../mobile/operation/module_data.php:264
+#: ../../mobile/operation/server_status.php:283
+#: ../../mobile/operation/server_status.php:321
+#: ../../mobile/operation/server_status.php:351
+#: ../../mobile/operation/server_status.php:447
#: ../../include/functions_reporting_html.php:1058
#: ../../include/functions_reporting_html.php:1066
-#: ../../include/functions_reporting_html.php:1760
-#: ../../include/functions_reporting_html.php:2643
-#: ../../include/functions_reporting_html.php:2993
-#: ../../include/functions_reporting_html.php:3709
-#: ../../include/functions_reporting_html.php:6370
+#: ../../include/functions_reporting_html.php:1769
+#: ../../include/functions_reporting_html.php:2662
+#: ../../include/functions_reporting_html.php:3021
+#: ../../include/functions_reporting_html.php:3737
+#: ../../include/functions_reporting_html.php:6404
#: ../../include/functions_treeview.php:69
#: ../../include/class/EventSound.class.php:306
-#: ../../include/class/NetworkMap.class.php:3063
-#: ../../include/class/NetworkMap.class.php:3109
-#: ../../include/class/NetworkMap.class.php:3121
-#: ../../include/class/NetworkMap.class.php:3491
+#: ../../include/class/NetworkMap.class.php:3069
+#: ../../include/class/NetworkMap.class.php:3115
+#: ../../include/class/NetworkMap.class.php:3127
+#: ../../include/class/NetworkMap.class.php:3497
#: ../../include/class/ManageNetScanScripts.class.php:403
-#: ../../include/class/ManageNetScanScripts.class.php:553
+#: ../../include/class/ManageNetScanScripts.class.php:549
#: ../../include/class/ModuleTemplates.class.php:848
#: ../../include/class/ModuleTemplates.class.php:1030
#: ../../include/class/CalendarManager.class.php:1026
#: ../../include/class/SatelliteCollection.class.php:132
-#: ../../include/functions_filemanager.php:644
-#: ../../include/functions_snmp_browser.php:1851
-#: ../../include/functions_events.php:4339
-#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44
+#: ../../include/functions_filemanager.php:659
+#: ../../include/functions_snmp_browser.php:1860
+#: ../../include/functions_events.php:4344
+#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44
#: ../../operation/search_helps.php:31
#: ../../operation/agentes/pandora_networkmap.editor.php:332
-#: ../../operation/agentes/pandora_networkmap.php:716
+#: ../../operation/agentes/pandora_networkmap.php:717
#: ../../operation/agentes/pandora_networkmap.view.php:137
#: ../../operation/gis_maps/gis_map.php:115
#: ../../operation/incidents/configure_integriaims_incident.php:232
@@ -1117,7 +1148,7 @@ msgstr "Nom"
#: ../../enterprise/include/class/Omnishell.class.php:861
#: ../../enterprise/include/class/DB2.app.php:477
#: ../../enterprise/include/class/Aws.S3.php:441
-#: ../../enterprise/include/class/SAP.app.php:635
+#: ../../enterprise/include/class/SAP.app.php:636
#: ../../enterprise/include/class/Aws.cloud.php:566
#: ../../enterprise/include/class/Aws.cloud.php:1252
#: ../../enterprise/include/class/MySQL.app.php:482
@@ -1133,31 +1164,31 @@ msgstr "Nom"
#: ../../enterprise/operation/agentes/tag_view.php:698
#: ../../enterprise/operation/agentes/ver_agente.php:70
#: ../../enterprise/operation/agentes/ver_agente.php:91
-#: ../../enterprise/operation/log/log_viewer.php:616
+#: ../../enterprise/operation/log/log_viewer.php:614
#: ../../enterprise/operation/services/services.service.php:112
#: ../../enterprise/operation/services/massive/services.create.php:678
#: ../../enterprise/operation/services/services.list.php:268
#: ../../enterprise/operation/services/services.list.php:540
#: ../../enterprise/operation/services/services.table_services.php:218
#: ../../enterprise/tools/ipam/ipam_editor.php:335
-#: ../../extensions/agents_modules.php:419
+#: ../../extensions/agents_modules.php:427
#: ../../godmode/modules/manage_network_templates_form.php:235
#: ../../godmode/modules/manage_network_templates_form.php:303
#: ../../godmode/modules/manage_network_templates_form.php:339
#: ../../godmode/modules/manage_network_components_form_common.php:131
-#: ../../godmode/modules/manage_network_components.php:659
-#: ../../godmode/modules/manage_network_components.php:778
-#: ../../godmode/users/user_list.php:469
+#: ../../godmode/modules/manage_network_components.php:662
+#: ../../godmode/modules/manage_network_components.php:781
+#: ../../godmode/users/user_list.php:470
#: ../../godmode/agentes/configurar_agente.php:518
#: ../../godmode/agentes/modificar_agente.php:314
-#: ../../godmode/agentes/modificar_agente.php:697
+#: ../../godmode/agentes/modificar_agente.php:707
#: ../../godmode/agentes/planned_downtime.list.php:735
#: ../../godmode/agentes/planned_downtime.editor.php:895
#: ../../godmode/agentes/planned_downtime.editor.php:1357
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
#: ../../godmode/agentes/agent_incidents.php:91
#: ../../godmode/netflow/nf_edit.php:167
-#: ../../godmode/netflow/nf_edit_form.php:211
+#: ../../godmode/netflow/nf_edit_form.php:256
#: ../../godmode/snmpconsole/snmp_alert.php:837
#: ../../godmode/gis_maps/configure_gis_map.php:509
#: ../../godmode/gis_maps/configure_gis_map.php:646
@@ -1167,7 +1198,7 @@ msgstr "Nom"
#: ../../godmode/massive/massive_delete_action_alerts.php:210
#: ../../godmode/massive/massive_add_alerts.php:211
#: ../../godmode/massive/massive_enable_disable_alerts.php:170
-#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:711
#: ../../godmode/massive/massive_delete_profiles.php:153
#: ../../godmode/massive/massive_delete_alerts.php:290
#: ../../godmode/massive/massive_add_action_alerts.php:198
@@ -1177,10 +1208,10 @@ msgstr "Nom"
#: ../../godmode/alerts/alert_actions.php:353
#: ../../godmode/alerts/alert_list.list.php:220
#: ../../godmode/alerts/alert_commands.php:751
-#: ../../godmode/alerts/alert_templates.php:410
+#: ../../godmode/alerts/alert_templates.php:414
#: ../../godmode/alerts/configure_alert_action.php:220
#: ../../godmode/alerts/configure_alert_template.php:1116
-#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70
+#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70
#: ../../godmode/setup/gis_step_2.php:237
#: ../../godmode/setup/setup_integria.php:426
#: ../../godmode/setup/setup_integria.php:560
@@ -1195,10 +1226,10 @@ msgstr "Nom"
#: ../../godmode/reporting/visual_console_favorite.php:182
#: ../../godmode/reporting/reporting_builder.item_editor.php:72
#: ../../godmode/reporting/reporting_builder.item_editor.php:87
-#: ../../godmode/reporting/reporting_builder.item_editor.php:213
-#: ../../godmode/reporting/reporting_builder.item_editor.php:892
+#: ../../godmode/reporting/reporting_builder.item_editor.php:214
+#: ../../godmode/reporting/reporting_builder.item_editor.php:893
#: ../../godmode/reporting/reporting_builder.item_editor.php:1641
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3494
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3503
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.elements.php:343
#: ../../godmode/reporting/reporting_builder.main.php:119
@@ -1208,43 +1239,45 @@ msgstr "Nom"
#: ../../godmode/reporting/graph_builder.main.php:176
#: ../../godmode/events/event_filter.php:145
#: ../../godmode/events/event_responses.editor.php:120
-#: ../../godmode/events/event_edit_filter.php:334
+#: ../../godmode/events/event_edit_filter.php:336
#: ../../godmode/events/event_responses.list.php:68
#: ../../godmode/events/custom_events.php:98
-#: ../../godmode/wizards/HostDevices.class.php:933
-#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157
-#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235
-#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171
+#: ../../godmode/wizards/HostDevices.class.php:935
+#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158
+#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236
+#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171
#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266
#: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113
#: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231
#: ../../mobile/operation/alerts.php:232
#: ../../mobile/operation/visualmaps.php:113
#: ../../mobile/operation/visualmaps.php:118
-#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671
-#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954
-#: ../../mobile/operation/events.php:955
+#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700
+#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998
+#: ../../mobile/operation/events.php:999
+#: ../../mobile/operation/server_status.php:162
+#: ../../mobile/operation/server_status.php:167
#: ../../include/functions_visual_map_editor.php:70
-#: ../../include/functions_visual_map_editor.php:594
-#: ../../include/functions_visual_map_editor.php:1395
-#: ../../include/functions_reporting_html.php:1604
-#: ../../include/functions_reporting_html.php:2355
-#: ../../include/functions_reporting_html.php:3660
-#: ../../include/functions_reporting_html.php:6458
-#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113
-#: ../../include/ajax/heatmap.ajax.php:358
+#: ../../include/functions_visual_map_editor.php:588
+#: ../../include/functions_visual_map_editor.php:1453
+#: ../../include/functions_reporting_html.php:1613
+#: ../../include/functions_reporting_html.php:2376
+#: ../../include/functions_reporting_html.php:3688
+#: ../../include/functions_reporting_html.php:6492
+#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142
+#: ../../include/ajax/heatmap.ajax.php:523
#: ../../include/ajax/custom_fields.php:630
#: ../../include/ajax/custom_fields.php:679
-#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228
+#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228
#: ../../include/functions_profile.php:204
-#: ../../include/functions_visual_map.php:4215
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551
-#: ../../include/rest-api/models/VisualConsole/Item.php:2140
-#: ../../include/functions_html.php:1561
+#: ../../include/functions_visual_map.php:4224
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697
+#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../include/functions_html.php:1566
#: ../../include/functions_massive_operations.php:124
-#: ../../include/class/NetworkMap.class.php:2985
-#: ../../include/class/NetworkMap.class.php:3046
-#: ../../include/class/NetworkMap.class.php:3412
+#: ../../include/class/NetworkMap.class.php:2991
+#: ../../include/class/NetworkMap.class.php:3052
+#: ../../include/class/NetworkMap.class.php:3418
#: ../../include/class/AgentsAlerts.class.php:774
#: ../../include/class/CredentialStore.class.php:814
#: ../../include/class/CredentialStore.class.php:846
@@ -1252,37 +1285,37 @@ msgstr "Nom"
#: ../../include/class/CustomNetScan.class.php:506
#: ../../include/class/ModuleTemplates.class.php:728
#: ../../include/class/CalendarManager.class.php:1027
+#: ../../include/class/AgentDeployWizard.class.php:342
#: ../../include/functions_container.php:149
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:826
-#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1863
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:827
+#: ../../include/lib/Group.php:566 ../../include/functions_snmp_browser.php:1872
#: ../../include/functions_events.php:203 ../../include/functions_events.php:256
-#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122
+#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122
#: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46
-#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999
-#: ../../operation/visual_console/view.php:371
+#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996
+#: ../../operation/visual_console/view.php:373
#: ../../operation/agentes/estado_agente.php:291
-#: ../../operation/agentes/estado_agente.php:1039
+#: ../../operation/agentes/estado_agente.php:1047
#: ../../operation/agentes/pandora_networkmap.editor.php:344
#: ../../operation/agentes/pandora_networkmap.editor.php:428
#: ../../operation/agentes/interface_view.functions.php:37
#: ../../operation/agentes/exportdata.php:328
-#: ../../operation/agentes/status_monitor.php:816
-#: ../../operation/agentes/group_view.php:240
+#: ../../operation/agentes/status_monitor.php:815
+#: ../../operation/agentes/group_view.php:243
#: ../../operation/agentes/pandora_networkmap.view.php:140
#: ../../operation/agentes/pandora_networkmap.view.php:176
#: ../../operation/agentes/ver_agente.php:1036
-#: ../../operation/agentes/estado_generalagente.php:492
+#: ../../operation/agentes/estado_generalagente.php:463
#: ../../operation/agentes/alerts_status.functions.php:73
#: ../../operation/gis_maps/gis_map.php:116 ../../operation/gis_maps/ajax.php:332
#: ../../operation/gis_maps/ajax.php:438
#: ../../operation/incidents/configure_integriaims_incident.php:269
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340
#: ../../operation/incidents/list_integriaims_incidents.php:347
-#: ../../operation/inventory/inventory.php:510
-#: ../../operation/inventory/inventory.php:1002
-#: ../../operation/inventory/inventory.php:1296
-#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29
+#: ../../operation/inventory/inventory.php:512
+#: ../../operation/inventory/inventory.php:1248
+#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29
#: ../../general/ui/agents_list.php:76
msgid "Group"
msgstr "Groupe"
@@ -1297,7 +1330,7 @@ msgstr "Groupe"
#: ../../enterprise/views/ipam/sites/list.php:73
#: ../../enterprise/meta/advanced/metasetup.consoles.php:965
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295
#: ../../enterprise/include/class/LogSource.class.php:634
@@ -1308,16 +1341,16 @@ msgstr "Groupe"
#: ../../godmode/update_manager/update_manager.history.php:67
#: ../../godmode/agentes/modificar_agente.php:381
#: ../../godmode/snmpconsole/snmp_alert.php:1742
-#: ../../godmode/events/event_edit_filter.php:409
-#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318
-#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992
-#: ../../include/ajax/module.php:312 ../../include/class/ConfigPEN.class.php:630
+#: ../../godmode/events/event_edit_filter.php:411
+#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318
+#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036
+#: ../../include/ajax/module.php:335 ../../include/class/ConfigPEN.class.php:630
#: ../../include/class/EventSound.class.php:337
#: ../../include/class/CredentialStore.class.php:858
#: ../../include/class/SnmpConsole.class.php:374
#: ../../include/class/AuditLog.class.php:197
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241
-#: ../../operation/events/events.php:1820
+#: ../../operation/events/events.php:1874
msgid "Free search"
msgstr "Recherche libre"
@@ -1369,8 +1402,8 @@ msgstr "Recherche libre"
#: ../../enterprise/godmode/agentes/collections.php:593
#: ../../enterprise/godmode/policies/configure_policy.php:169
#: ../../enterprise/godmode/policies/policy_modules.php:433
-#: ../../enterprise/godmode/policies/policy_modules.php:1746
-#: ../../enterprise/godmode/policies/policy_modules.php:1871
+#: ../../enterprise/godmode/policies/policy_modules.php:1791
+#: ../../enterprise/godmode/policies/policy_modules.php:1916
#: ../../enterprise/godmode/policies/policies.php:728
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165
@@ -1395,50 +1428,50 @@ msgstr "Recherche libre"
#: ../../godmode/modules/manage_network_templates_form.php:180
#: ../../godmode/modules/manage_nc_groups.php:344
#: ../../godmode/modules/manage_inventory_modules.php:374
-#: ../../godmode/modules/manage_network_components_form.php:379
-#: ../../godmode/modules/manage_network_components.php:896
+#: ../../godmode/modules/manage_network_components_form.php:382
+#: ../../godmode/modules/manage_network_components.php:899
#: ../../godmode/modules/manage_inventory_modules_form.php:249
#: ../../godmode/modules/manage_network_templates.php:311
-#: ../../godmode/groups/configure_group.php:277
+#: ../../godmode/groups/configure_group.php:296
#: ../../godmode/groups/configure_modu_group.php:102
-#: ../../godmode/users/configure_user.php:1665
+#: ../../godmode/users/configure_user.php:1717
#: ../../godmode/agentes/module_manager_editor.php:817
#: ../../godmode/agentes/planned_downtime.list.php:680
#: ../../godmode/agentes/planned_downtime.list.php:989
-#: ../../godmode/agentes/agent_manager.php:1081
+#: ../../godmode/agentes/agent_manager.php:1087
#: ../../godmode/agentes/configure_field.php:203
-#: ../../godmode/agentes/module_manager.php:1119
-#: ../../godmode/netflow/nf_edit_form.php:338
+#: ../../godmode/agentes/module_manager.php:1134
+#: ../../godmode/netflow/nf_edit_form.php:454
#: ../../godmode/snmpconsole/snmp_alert.php:1711
#: ../../godmode/snmpconsole/snmp_alert.php:2177
#: ../../godmode/snmpconsole/snmp_filters.php:275
#: ../../godmode/snmpconsole/snmp_filters.php:366
#: ../../godmode/alerts/configure_alert_command.php:395
#: ../../godmode/alerts/alert_actions.php:502
-#: ../../godmode/alerts/alert_list.list.php:1096
+#: ../../godmode/alerts/alert_list.list.php:1095
#: ../../godmode/alerts/alert_commands.php:839
-#: ../../godmode/alerts/alert_templates.php:514
+#: ../../godmode/alerts/alert_templates.php:518
#: ../../godmode/alerts/configure_alert_action.php:446
-#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321
+#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325
#: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95
#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165
#: ../../godmode/reporting/create_container.php:383
#: ../../godmode/reporting/map_builder.php:586
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2330
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2339
#: ../../godmode/reporting/reporting_builder.main.php:45
#: ../../godmode/reporting/graph_builder.main.php:298
#: ../../godmode/events/event_responses.editor.php:328
-#: ../../godmode/events/event_edit_filter.php:957
-#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258
+#: ../../godmode/events/event_edit_filter.php:959
+#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262
#: ../../godmode/category/edit_category.php:201
-#: ../../include/functions_visual_map_editor.php:882
+#: ../../include/functions_visual_map_editor.php:930
#: ../../include/class/EventSound.class.php:199
#: ../../include/class/EventSound.class.php:282
-#: ../../include/class/ManageNetScanScripts.class.php:769
+#: ../../include/class/ManageNetScanScripts.class.php:765
#: ../../include/class/ModuleTemplates.class.php:933
#: ../../include/class/ModuleTemplates.class.php:987
-#: ../../include/functions_filemanager.php:859
-#: ../../include/functions_filemanager.php:920
+#: ../../include/functions_filemanager.php:878
+#: ../../include/functions_filemanager.php:940
#: ../../operation/gis_maps/gis_map.php:220
#: ../../operation/incidents/configure_integriaims_incident.php:406
#: ../../operation/incidents/list_integriaims_incidents.php:654
@@ -1464,27 +1497,27 @@ msgstr "Configurer jour spécial"
#: ../../enterprise/include/functions_reporting.php:2234
#: ../../enterprise/include/functions_reporting.php:2252
#: ../../extensions/insert_data.php:196
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2200
-#: ../../mobile/operation/tactical.php:350
-#: ../../include/functions_reporting_html.php:2018
-#: ../../include/functions_reporting_html.php:2835
-#: ../../include/functions_reporting_html.php:2844
-#: ../../include/functions_reporting_html.php:2849
-#: ../../include/functions_reporting_html.php:2858
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2209
+#: ../../mobile/operation/tactical.php:351
+#: ../../include/functions_reporting_html.php:2034
#: ../../include/functions_reporting_html.php:2863
-#: ../../include/functions_reporting_html.php:2870
-#: ../../include/functions_reporting_html.php:2920
-#: ../../include/functions_reporting_html.php:2994
-#: ../../include/functions_reporting_html.php:6014
-#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065
+#: ../../include/functions_reporting_html.php:2872
+#: ../../include/functions_reporting_html.php:2877
+#: ../../include/functions_reporting_html.php:2886
+#: ../../include/functions_reporting_html.php:2891
+#: ../../include/functions_reporting_html.php:2898
+#: ../../include/functions_reporting_html.php:2948
+#: ../../include/functions_reporting_html.php:3022
+#: ../../include/functions_reporting_html.php:6048
+#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175
#: ../../include/class/AuditLog.class.php:112
-#: ../../include/functions_reporting.php:4728
-#: ../../include/functions_reporting.php:4769
+#: ../../include/functions_reporting.php:4737
+#: ../../include/functions_reporting.php:4778
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624
-#: ../../operation/agentes/agent_inventory.php:127
+#: ../../operation/agentes/agent_inventory.php:135
#: ../../operation/incidents/list_integriaims_incidents.php:441
-#: ../../operation/inventory/inventory.php:681
-#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:257
+#: ../../operation/inventory/inventory.php:682
+#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:302
msgid "Date"
msgstr "Date"
@@ -1500,7 +1533,7 @@ msgstr "Date"
#: ../../enterprise/include/functions_reporting.php:4403
#: ../../godmode/alerts/alert_templates.php:62
#: ../../godmode/reporting/reporting_builder.item_editor.php:1530
-#: ../../include/functions_html.php:2300
+#: ../../include/functions_html.php:2315
msgid "Monday"
msgstr "Lundi"
@@ -1516,7 +1549,7 @@ msgstr "Lundi"
#: ../../enterprise/include/functions_reporting.php:4404
#: ../../godmode/alerts/alert_templates.php:63
#: ../../godmode/reporting/reporting_builder.item_editor.php:1538
-#: ../../include/functions_html.php:2301
+#: ../../include/functions_html.php:2316
msgid "Tuesday"
msgstr "Mardi"
@@ -1532,7 +1565,7 @@ msgstr "Mardi"
#: ../../enterprise/include/functions_reporting.php:4405
#: ../../godmode/alerts/alert_templates.php:64
#: ../../godmode/reporting/reporting_builder.item_editor.php:1546
-#: ../../include/functions_html.php:2302
+#: ../../include/functions_html.php:2317
msgid "Wednesday"
msgstr "Mercredi"
@@ -1548,7 +1581,7 @@ msgstr "Mercredi"
#: ../../enterprise/include/functions_reporting.php:4406
#: ../../godmode/alerts/alert_templates.php:65
#: ../../godmode/reporting/reporting_builder.item_editor.php:1554
-#: ../../include/functions_html.php:2303
+#: ../../include/functions_html.php:2318
msgid "Thursday"
msgstr "Jeudi"
@@ -1564,7 +1597,7 @@ msgstr "Jeudi"
#: ../../enterprise/include/functions_reporting.php:4407
#: ../../godmode/alerts/alert_templates.php:66
#: ../../godmode/reporting/reporting_builder.item_editor.php:1562
-#: ../../include/functions_html.php:2304
+#: ../../include/functions_html.php:2319
msgid "Friday"
msgstr "Vendredi"
@@ -1580,7 +1613,7 @@ msgstr "Vendredi"
#: ../../enterprise/include/functions_reporting.php:4408
#: ../../godmode/alerts/alert_templates.php:67
#: ../../godmode/reporting/reporting_builder.item_editor.php:1570
-#: ../../include/functions_html.php:2305
+#: ../../include/functions_html.php:2320
msgid "Saturday"
msgstr "Samedi"
@@ -1596,7 +1629,7 @@ msgstr "Samedi"
#: ../../enterprise/include/functions_reporting.php:4409
#: ../../godmode/alerts/alert_templates.php:68
#: ../../godmode/reporting/reporting_builder.item_editor.php:1578
-#: ../../include/functions_html.php:2299
+#: ../../include/functions_html.php:2314
msgid "Sunday"
msgstr "Dimanche"
@@ -1668,7 +1701,7 @@ msgstr "Même jour de la semaine"
#: ../../enterprise/godmode/policies/policy_collections.php:352
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:355
@@ -1703,7 +1736,7 @@ msgstr "Même jour de la semaine"
#: ../../enterprise/include/class/DatabaseHA.class.php:892
#: ../../enterprise/include/class/AgentRepository.class.php:1004
#: ../../enterprise/include/class/Omnishell.class.php:829
-#: ../../enterprise/include/class/LogSource.class.php:828
+#: ../../enterprise/include/class/LogSource.class.php:825
#: ../../enterprise/include/class/SAPView.class.php:325
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314
#: ../../enterprise/operation/agentes/policy_view.php:209
@@ -1718,24 +1751,24 @@ msgstr "Même jour de la semaine"
#: ../../godmode/modules/manage_nc_groups_form.php:95
#: ../../godmode/modules/manage_network_templates_form.php:178
#: ../../godmode/modules/manage_inventory_modules.php:338
-#: ../../godmode/modules/manage_network_components_form.php:373
+#: ../../godmode/modules/manage_network_components_form.php:376
#: ../../godmode/modules/manage_inventory_modules_form.php:245
-#: ../../godmode/groups/configure_group.php:268
+#: ../../godmode/groups/configure_group.php:287
#: ../../godmode/groups/configure_modu_group.php:99
#: ../../godmode/update_manager/update_manager.setup.php:406
#: ../../godmode/users/configure_profile.php:418
-#: ../../godmode/users/configure_user.php:1669
-#: ../../godmode/agentes/status_monitor_custom_fields.php:211
+#: ../../godmode/users/configure_user.php:1721
+#: ../../godmode/agentes/status_monitor_custom_fields.php:231
#: ../../godmode/agentes/module_manager_editor.php:795
#: ../../godmode/agentes/inventory_manager.php:184
-#: ../../godmode/agentes/inventory_manager.php:266
+#: ../../godmode/agentes/inventory_manager.php:267
#: ../../godmode/agentes/agent_conf_gis.php:161
#: ../../godmode/agentes/planned_downtime.list.php:891
#: ../../godmode/agentes/planned_downtime.list.php:936
#: ../../godmode/agentes/planned_downtime.editor.php:1305
-#: ../../godmode/agentes/agent_manager.php:1056
+#: ../../godmode/agentes/agent_manager.php:1062
#: ../../godmode/agentes/configure_field.php:199
-#: ../../godmode/netflow/nf_edit_form.php:334
+#: ../../godmode/netflow/nf_edit_form.php:450
#: ../../godmode/snmpconsole/snmp_alert.php:1700
#: ../../godmode/snmpconsole/snmp_alert.php:2002
#: ../../godmode/snmpconsole/snmp_filters.php:264
@@ -1743,18 +1776,18 @@ msgstr "Même jour de la semaine"
#: ../../godmode/snmpconsole/snmp_filters.php:337
#: ../../godmode/alerts/configure_alert_command.php:386
#: ../../godmode/alerts/alert_list.list.php:227
-#: ../../godmode/alerts/alert_list.list.php:1041
+#: ../../godmode/alerts/alert_list.list.php:1040
#: ../../godmode/alerts/configure_alert_action.php:424
-#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216
+#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216
#: ../../godmode/setup/setup_sflow.php:95
-#: ../../godmode/setup/setup_websocket_engine.php:93
+#: ../../godmode/setup/setup_websocket_engine.php:117
#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142
#: ../../godmode/setup/setup_auth.php:515
#: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168
#: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/setup/setup_netflow.php:95
-#: ../../godmode/setup/setup_visuals.php:2130
-#: ../../godmode/setup/setup_general.php:841
+#: ../../godmode/setup/setup_netflow.php:91
+#: ../../godmode/setup/setup_visuals.php:2145
+#: ../../godmode/setup/setup_general.php:867
#: ../../godmode/setup/performance.php:880
#: ../../godmode/reporting/visual_console_builder.data.php:313
#: ../../godmode/reporting/create_container.php:365
@@ -1762,24 +1795,24 @@ msgstr "Même jour de la semaine"
#: ../../godmode/reporting/reporting_builder.main.php:56
#: ../../godmode/reporting/graph_builder.main.php:298
#: ../../godmode/events/event_responses.editor.php:332
-#: ../../godmode/events/event_edit_filter.php:954
+#: ../../godmode/events/event_edit_filter.php:956
#: ../../godmode/events/custom_events.php:192
#: ../../godmode/servers/modificar_server.php:134
-#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721
-#: ../../godmode/tag/edit_tag.php:247
+#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713
+#: ../../godmode/tag/edit_tag.php:251
#: ../../godmode/category/edit_category.php:196
-#: ../../include/functions_visual_map_editor.php:878
+#: ../../include/functions_visual_map_editor.php:926
#: ../../include/ajax/alert_list.ajax.php:564
#: ../../include/class/ConfigPEN.class.php:703
#: ../../include/class/ConfigPEN.class.php:704
-#: ../../include/class/ManageNetScanScripts.class.php:773
-#: ../../include/class/CredentialStore.class.php:1651
+#: ../../include/class/ManageNetScanScripts.class.php:769
+#: ../../include/class/CredentialStore.class.php:1660
#: ../../include/class/ModuleTemplates.class.php:992
#: ../../include/class/ExternalTools.class.php:420
-#: ../../include/functions_events.php:3512
-#: ../../include/functions_events.php:3594
-#: ../../operation/users/user_edit.php:951
-#: ../../operation/agentes/datos_agente.php:218
+#: ../../include/functions_events.php:3517
+#: ../../include/functions_events.php:3599
+#: ../../operation/users/user_edit.php:948
+#: ../../operation/agentes/datos_agente.php:220
#: ../../operation/incidents/configure_integriaims_incident.php:415
#: ../../operation/reporting/reporting_viewer.php:284
msgid "Update"
@@ -1791,7 +1824,7 @@ msgstr "Mise à jour"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420
#: ../../godmode/agentes/planned_downtime.list.php:819
#: ../../godmode/alerts/configure_alert_template.php:1600
-#: ../../include/class/AgentWizard.class.php:6186
+#: ../../include/class/AgentWizard.class.php:6182
msgid "Loading, this operation might take several minutes..."
msgstr "Chargement, cette opération peut prendre plusieurs minutes..."
@@ -1817,7 +1850,7 @@ msgstr "Cochez cette case si vous voulez écraser les jours qui existent déjà.
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:535
#: ../../extensions/extension_uploader.php:134
#: ../../extensions/resource_registration.php:1145
-#: ../../godmode/servers/plugin_registration.php:123
+#: ../../godmode/servers/plugin_registration.php:119
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234
msgid "Upload"
msgstr "Téléverser"
@@ -1841,25 +1874,26 @@ msgstr "Afficher plage : "
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129
#: ../../enterprise/operation/agentes/policy_view.php:333
-#: ../../godmode/users/configure_user.php:1102
+#: ../../godmode/users/configure_user.php:58
+#: ../../godmode/users/configure_user.php:1166
#: ../../godmode/users/user_management.php:37
-#: ../../godmode/users/user_management.php:564
-#: ../../godmode/agentes/module_manager_editor_common.php:681
+#: ../../godmode/users/user_management.php:570
+#: ../../godmode/agentes/module_manager_editor_common.php:686
#: ../../godmode/massive/massive_edit_users.php:242
#: ../../godmode/massive/massive_edit_users.php:273
-#: ../../godmode/massive/massive_edit_agents.php:1034
+#: ../../godmode/massive/massive_edit_agents.php:1051
#: ../../godmode/alerts/alert_list.list.php:702
#: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599
#: ../../godmode/setup/gis_step_2.php:685
-#: ../../godmode/setup/setup_visuals.php:402
-#: ../../godmode/setup/setup_visuals.php:433
-#: ../../godmode/setup/setup_visuals.php:573
-#: ../../godmode/setup/setup_visuals.php:689
-#: ../../godmode/setup/setup_visuals.php:729
-#: ../../godmode/setup/setup_visuals.php:1543
-#: ../../godmode/events/event_edit_filter.php:463
-#: ../../include/functions_ui.php:1404
-#: ../../include/class/AgentsAlerts.class.php:947
+#: ../../godmode/setup/setup_visuals.php:406
+#: ../../godmode/setup/setup_visuals.php:437
+#: ../../godmode/setup/setup_visuals.php:577
+#: ../../godmode/setup/setup_visuals.php:693
+#: ../../godmode/setup/setup_visuals.php:733
+#: ../../godmode/setup/setup_visuals.php:1558
+#: ../../godmode/events/event_edit_filter.php:465
+#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447
+#: ../../include/class/AgentsAlerts.class.php:948
#: ../../include/class/SnmpConsole.class.php:299
#: ../../operation/users/user_edit.php:429
#: ../../operation/users/user_edit.php:432
@@ -1874,7 +1908,7 @@ msgstr "Par défaut"
#: ../../godmode/agentes/planned_downtime.editor.php:1059
#: ../../include/functions.php:1157
#: ../../include/class/CalendarManager.class.php:1035
-#: ../../include/functions_reporting.php:14913
+#: ../../include/functions_reporting.php:14986
msgid "Sun"
msgstr "Dimanche"
@@ -1883,7 +1917,7 @@ msgstr "Dimanche"
#: ../../godmode/agentes/planned_downtime.editor.php:1053
#: ../../include/functions.php:1133
#: ../../include/class/CalendarManager.class.php:1029
-#: ../../include/functions_reporting.php:14883
+#: ../../include/functions_reporting.php:14956
msgid "Mon"
msgstr "Lundi"
@@ -1892,7 +1926,7 @@ msgstr "Lundi"
#: ../../godmode/agentes/planned_downtime.editor.php:1054
#: ../../include/functions.php:1137
#: ../../include/class/CalendarManager.class.php:1030
-#: ../../include/functions_reporting.php:14888
+#: ../../include/functions_reporting.php:14961
msgid "Tue"
msgstr "Mardi"
@@ -1901,7 +1935,7 @@ msgstr "Mardi"
#: ../../godmode/agentes/planned_downtime.editor.php:1055
#: ../../include/functions.php:1141
#: ../../include/class/CalendarManager.class.php:1031
-#: ../../include/functions_reporting.php:14893
+#: ../../include/functions_reporting.php:14966
msgid "Wed"
msgstr "Mercredi"
@@ -1910,7 +1944,7 @@ msgstr "Mercredi"
#: ../../godmode/agentes/planned_downtime.editor.php:1056
#: ../../include/functions.php:1145
#: ../../include/class/CalendarManager.class.php:1032
-#: ../../include/functions_reporting.php:14898
+#: ../../include/functions_reporting.php:14971
msgid "Thu"
msgstr "Jeudi"
@@ -1919,7 +1953,7 @@ msgstr "Jeudi"
#: ../../godmode/agentes/planned_downtime.editor.php:1057
#: ../../include/functions.php:1149
#: ../../include/class/CalendarManager.class.php:1033
-#: ../../include/functions_reporting.php:14903
+#: ../../include/functions_reporting.php:14976
msgid "Fri"
msgstr "Vendredi"
@@ -1928,7 +1962,7 @@ msgstr "Vendredi"
#: ../../godmode/agentes/planned_downtime.editor.php:1058
#: ../../include/functions.php:1153
#: ../../include/class/CalendarManager.class.php:1034
-#: ../../include/functions_reporting.php:14908
+#: ../../include/functions_reporting.php:14981
msgid "Sat"
msgstr "Samedi"
@@ -2045,7 +2079,7 @@ msgstr "Afficher les modèles"
#: ../../enterprise/godmode/agentes/collections.data.php:300
#: ../../enterprise/godmode/agentes/collections.data.php:429
#: ../../enterprise/godmode/agentes/collections.editor.php:255
-#: ../../enterprise/godmode/policies/policy_modules.php:1944
+#: ../../enterprise/godmode/policies/policy_modules.php:1989
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:580
#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383
@@ -2066,34 +2100,34 @@ msgstr "Afficher les modèles"
#: ../../enterprise/tools/ipam/ipam_ajax.php:122
#: ../../enterprise/tools/ipam/ipam_ajax.php:530
#: ../../extensions/files_repo/files_repo_list.php:139
-#: ../../godmode/groups/group_list.php:951
-#: ../../godmode/groups/group_list.php:952
+#: ../../godmode/groups/group_list.php:963
+#: ../../godmode/groups/group_list.php:964
#: ../../godmode/users/profile_list.php:444
#: ../../godmode/agentes/agent_template.php:306
-#: ../../godmode/agentes/modificar_agente.php:810
+#: ../../godmode/agentes/modificar_agente.php:822
#: ../../godmode/agentes/planned_downtime.list.php:747
#: ../../godmode/agentes/planned_downtime.editor.php:1416
#: ../../godmode/agentes/fields_manager.php:191
#: ../../godmode/agentes/configure_field.php:83
#: ../../godmode/setup/snmp_wizard.php:110
-#: ../../godmode/reporting/reporting_builder.list_items.php:626
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2338
+#: ../../godmode/reporting/reporting_builder.list_items.php:627
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2347
#: ../../godmode/reporting/reporting_builder.php:1164
#: ../../godmode/events/event_responses.list.php:105
-#: ../../godmode/servers/servers.build_table.php:237
-#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050
+#: ../../godmode/servers/servers.build_table.php:250
+#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042
#: ../../godmode/category/category.php:182
#: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918
#: ../../include/functions_cron.php:944
-#: ../../include/class/NetworkMap.class.php:3192
+#: ../../include/class/NetworkMap.class.php:3198
#: ../../include/class/CredentialStore.class.php:1263
-#: ../../include/class/TipsWindow.class.php:457
+#: ../../include/class/TipsWindow.class.php:469
#: ../../include/class/CalendarManager.class.php:703
#: ../../include/lib/ClusterViewer/ClusterManager.php:618
-#: ../../operation/visual_console/view.php:465
-#: ../../operation/agentes/estado_agente.php:1262
-#: ../../operation/agentes/pandora_networkmap.php:815
-#: ../../operation/agentes/status_monitor.php:2248
+#: ../../operation/visual_console/view.php:467
+#: ../../operation/agentes/estado_agente.php:1271
+#: ../../operation/agentes/pandora_networkmap.php:816
+#: ../../operation/agentes/status_monitor.php:2250
#: ../../operation/gis_maps/gis_map.php:203
#: ../../operation/incidents/list_integriaims_incidents.php:621
#: ../../operation/search_reports.php:68
@@ -2110,12 +2144,12 @@ msgstr "Modifier"
#: ../../enterprise/godmode/modules/local_components.php:743
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78
#: ../../enterprise/godmode/policies/policy_alerts.php:565
-#: ../../enterprise/godmode/policies/policy_modules.php:1626
-#: ../../enterprise/godmode/policies/policy_modules.php:1642
-#: ../../enterprise/godmode/policies/policy_modules.php:1703
-#: ../../enterprise/godmode/policies/policy_queue.php:810
-#: ../../enterprise/godmode/policies/policy_queue.php:852
-#: ../../enterprise/godmode/policies/policy_queue.php:875
+#: ../../enterprise/godmode/policies/policy_modules.php:1671
+#: ../../enterprise/godmode/policies/policy_modules.php:1687
+#: ../../enterprise/godmode/policies/policy_modules.php:1748
+#: ../../enterprise/godmode/policies/policy_queue.php:814
+#: ../../enterprise/godmode/policies/policy_queue.php:856
+#: ../../enterprise/godmode/policies/policy_queue.php:879
#: ../../enterprise/godmode/policies/policies.php:633
#: ../../enterprise/godmode/policies/policies.php:652
#: ../../enterprise/godmode/policies/policies.php:687
@@ -2152,7 +2186,7 @@ msgstr "Modifier"
#: ../../enterprise/include/class/Omnishell.class.php:702
#: ../../enterprise/include/class/Omnishell.class.php:1390
#: ../../enterprise/include/class/Omnishell.class.php:1525
-#: ../../enterprise/include/class/LogSource.class.php:871
+#: ../../enterprise/include/class/LogSource.class.php:868
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471
#: ../../enterprise/include/class/ManageBackups.class.php:452
@@ -2166,27 +2200,29 @@ msgstr "Modifier"
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:844
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:975
#: ../../update_manager_client/views/offline.php:72
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/online.php:125
+#: ../../update_manager_client/views/online.php:166
#: ../../extensions/files_repo/files_repo_list.php:149
#: ../../godmode/modules/manage_nc_groups.php:300
#: ../../godmode/modules/manage_inventory_modules.php:341
-#: ../../godmode/modules/manage_network_components.php:852
+#: ../../godmode/modules/manage_network_components.php:855
#: ../../godmode/modules/manage_network_templates.php:274
#: ../../godmode/modules/manage_network_templates.php:289
-#: ../../godmode/groups/group_list.php:960
+#: ../../godmode/groups/group_list.php:972
#: ../../godmode/groups/modu_group_list.php:284
#: ../../godmode/groups/modu_group_list.php:287 ../../godmode/extensions.php:283
#: ../../godmode/extensions.php:301 ../../godmode/users/profile_list.php:452
-#: ../../godmode/users/configure_user.php:1935
-#: ../../godmode/users/configure_user.php:2171
+#: ../../godmode/users/user_list.php:984
+#: ../../godmode/users/configure_user.php:1987
+#: ../../godmode/users/configure_user.php:2223
#: ../../godmode/agentes/agent_template.php:298
-#: ../../godmode/agentes/inventory_manager.php:261
-#: ../../godmode/agentes/modificar_agente.php:941
+#: ../../godmode/agentes/inventory_manager.php:262
+#: ../../godmode/agentes/modificar_agente.php:953
#: ../../godmode/agentes/planned_downtime.editor.php:1453
#: ../../godmode/agentes/fields_manager.php:210
-#: ../../godmode/agentes/module_manager.php:1014
-#: ../../godmode/agentes/module_manager.php:1235
+#: ../../godmode/agentes/module_manager.php:1012
+#: ../../godmode/agentes/module_manager.php:1028
+#: ../../godmode/agentes/module_manager.php:1256
#: ../../godmode/netflow/nf_item_list.php:262
#: ../../godmode/netflow/nf_edit.php:202
#: ../../godmode/snmpconsole/snmp_alert.php:1945
@@ -2198,10 +2234,10 @@ msgstr "Modifier"
#: ../../godmode/massive/massive_edit_plugins.php:576
#: ../../godmode/massive/massive_enable_disable_alerts.php:227
#: ../../godmode/alerts/alert_actions.php:449
-#: ../../godmode/alerts/alert_list.list.php:1256
+#: ../../godmode/alerts/alert_list.list.php:1255
#: ../../godmode/alerts/alert_commands.php:812
#: ../../godmode/alerts/alert_commands.php:815
-#: ../../godmode/alerts/alert_templates.php:465 ../../godmode/setup/news.php:393
+#: ../../godmode/alerts/alert_templates.php:469 ../../godmode/setup/news.php:392
#: ../../godmode/setup/links.php:210
#: ../../godmode/reporting/create_container.php:801
#: ../../godmode/reporting/map_builder.php:544
@@ -2217,7 +2253,7 @@ msgstr "Modifier"
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1019
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1032
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
-#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420
+#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421
#: ../../godmode/category/category.php:186
#: ../../godmode/category/category.php:222
#: ../../include/functions_profile.php:319
@@ -2226,25 +2262,26 @@ msgstr "Modifier"
#: ../../include/class/SatelliteAgent.class.php:1193
#: ../../include/class/SatelliteAgent.class.php:1255
#: ../../include/class/TreeGroupEdition.class.php:166
-#: ../../include/class/CredentialStore.class.php:1693
+#: ../../include/class/CredentialStore.class.php:1702
#: ../../include/class/SnmpConsole.class.php:472
-#: ../../include/class/SnmpConsole.class.php:1266
-#: ../../include/class/SnmpConsole.class.php:1293
-#: ../../include/class/TipsWindow.class.php:618
+#: ../../include/class/SnmpConsole.class.php:1268
+#: ../../include/class/SnmpConsole.class.php:1295
+#: ../../include/class/TipsWindow.class.php:640
#: ../../include/class/ModuleTemplates.class.php:874
#: ../../include/class/ModuleTemplates.class.php:889
#: ../../include/class/WelcomeWindow.class.php:171
#: ../../include/class/SatelliteCollection.class.php:531
#: ../../include/class/SatelliteCollection.class.php:574
-#: ../../include/functions_filemanager.php:754
+#: ../../include/functions_filemanager.php:769
#: ../../include/functions_container.php:190
#: ../../include/functions_container.php:324
#: ../../include/lib/Dashboard/Widgets/events_list.php:655
-#: ../../include/functions_events.php:3655
-#: ../../operation/users/user_edit.php:1345
+#: ../../include/functions_events.php:3660
+#: ../../operation/users/user_edit.php:1342
#: ../../operation/agentes/pandora_networkmap.editor.php:743
#: ../../operation/messages/message_list.php:300
-#: ../../operation/snmpconsole/snmp_browser.php:637
+#: ../../operation/snmpconsole/snmp_browser.php:620
+#: ../../operation/snmpconsole/snmp_browser.php:696
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213
#: ../../operation/incidents/list_integriaims_incidents.php:625
msgid "Are you sure?"
@@ -2257,12 +2294,12 @@ msgstr "Êtes-vous sûr(e) ?"
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418
#: ../../godmode/alerts/configure_alert_template.php:1598
-#: ../../godmode/events/event_edit_filter.php:681
-#: ../../godmode/events/event_edit_filter.php:746
-#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569
+#: ../../godmode/events/event_edit_filter.php:683
+#: ../../godmode/events/event_edit_filter.php:748
+#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661
#: ../../include/rest-api/index.php:363
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546
-#: ../../operation/events/events.php:1284 ../../operation/events/events.php:1356
+#: ../../operation/events/events.php:1311 ../../operation/events/events.php:1401
msgid "Remove"
msgstr "Supprimer"
@@ -2291,11 +2328,12 @@ msgstr "Vue de grappe"
#: ../../enterprise/include/class/SAPView.class.php:155
#: ../../enterprise/include/class/SAPView.class.php:199
#: ../../enterprise/operation/agentes/tag_view.php:50
-#: ../../enterprise/operation/log/log_viewer.php:494
+#: ../../enterprise/operation/log/log_viewer.php:492
#: ../../enterprise/tools/ipam/ipam_editor.php:303
-#: ../../extensions/agents_modules.php:552 ../../extensions/module_groups.php:260
+#: ../../extensions/agents_modules.php:560 ../../extensions/module_groups.php:260
#: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71
-#: ../../godmode/groups/tactical.php:126
+#: ../../godmode/groups/tactical.php:125
+#: ../../godmode/agentes/status_monitor_custom_fields.php:44
#: ../../godmode/snmpconsole/snmp_trap_generator.php:47
#: ../../godmode/snmpconsole/snmp_filters.php:55
#: ../../include/class/AgentsAlerts.class.php:751
@@ -2303,17 +2341,17 @@ msgstr "Vue de grappe"
#: ../../operation/tree.php:185 ../../operation/agentes/alerts_status.php:198
#: ../../operation/agentes/estado_agente.php:246
#: ../../operation/agentes/interface_view.php:72
-#: ../../operation/agentes/status_monitor.php:336
+#: ../../operation/agentes/status_monitor.php:335
#: ../../operation/agentes/group_view.php:98
#: ../../operation/agentes/tactical.php:81
#: ../../operation/network/network_usage_map.php:48
-#: ../../operation/netflow/nf_live_view.php:139
+#: ../../operation/netflow/nf_live_view.php:144
#: ../../operation/netflow/netflow_explorer.php:55
#: ../../operation/snmpconsole/snmp_statistics.php:100
-#: ../../operation/snmpconsole/snmp_browser.php:86
+#: ../../operation/snmpconsole/snmp_browser.php:88
#: ../../operation/snmpconsole/snmp_mib_uploader.php:56
#: ../../operation/menu.php:159 ../../operation/menu.php:276
-#: ../../operation/inventory/inventory.php:310
+#: ../../operation/inventory/inventory.php:312
#: ../../general/first_task/cluster_builder.php:38
msgid "Monitoring"
msgstr "Surveillance"
@@ -2326,13 +2364,13 @@ msgid "Clusters"
msgstr "Grappes"
#: ../../views/cluster/list.php:72
-#: ../../enterprise/meta/advanced/servers.build_table.php:63
+#: ../../enterprise/meta/advanced/servers.build_table.php:79
#: ../../enterprise/meta/advanced/metasetup.relations.php:335
#: ../../enterprise/meta/advanced/metasetup.relations.php:413
#: ../../enterprise/meta/advanced/metasetup.relations.php:548
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68
#: ../../enterprise/godmode/modules/configure_local_component.php:214
-#: ../../enterprise/godmode/policies/policy_modules.php:1545
+#: ../../enterprise/godmode/policies/policy_modules.php:1590
#: ../../enterprise/godmode/services/services.elements.php:113
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:72
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93
@@ -2349,46 +2387,46 @@ msgstr "Grappes"
#: ../../enterprise/operation/agentes/ver_agente.php:50
#: ../../godmode/modules/manage_network_templates_form.php:232
#: ../../godmode/modules/manage_network_components_form_common.php:64
-#: ../../godmode/modules/manage_network_components.php:776
+#: ../../godmode/modules/manage_network_components.php:779
#: ../../godmode/update_manager/update_manager.history.php:41
#: ../../godmode/agentes/agent_template.php:275
-#: ../../godmode/agentes/modificar_agente.php:696
+#: ../../godmode/agentes/modificar_agente.php:706
#: ../../godmode/agentes/planned_downtime.list.php:736
#: ../../godmode/agentes/planned_downtime.editor.php:926
#: ../../godmode/agentes/module_manager_editor_common.php:293
-#: ../../godmode/agentes/module_manager_editor_common.php:1536
+#: ../../godmode/agentes/module_manager_editor_common.php:1546
#: ../../godmode/agentes/module_manager.php:630
#: ../../godmode/alerts/alert_templates.php:35
-#: ../../godmode/alerts/alert_templates.php:307
-#: ../../godmode/alerts/alert_templates.php:412 ../../godmode/setup/news.php:350
+#: ../../godmode/alerts/alert_templates.php:311
+#: ../../godmode/alerts/alert_templates.php:416 ../../godmode/setup/news.php:354
#: ../../godmode/setup/gis_step_2.php:256
#: ../../godmode/setup/setup_integria.php:479
#: ../../godmode/setup/setup_integria.php:613
#: ../../godmode/reporting/reporting_builder.list_items.php:245
#: ../../godmode/reporting/reporting_builder.list_items.php:374
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1055
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1057
#: ../../godmode/reporting/visual_console_builder.wizard.php:131
#: ../../godmode/reporting/visual_console_builder.wizard.php:315
#: ../../godmode/events/event_responses.editor.php:234
-#: ../../godmode/servers/servers.build_table.php:79
+#: ../../godmode/servers/servers.build_table.php:81
#: ../../godmode/servers/modificar_server.php:105
-#: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125
+#: ../../godmode/servers/plugin.php:985 ../../mobile/operation/visualmaps.php:125
#: ../../mobile/operation/visualmaps.php:126
-#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659
-#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972
-#: ../../mobile/operation/events.php:973
-#: ../../include/functions_visual_map_editor.php:700
-#: ../../include/functions_visual_map_editor.php:718
-#: ../../include/functions_visual_map_editor.php:846
+#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688
+#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016
+#: ../../mobile/operation/events.php:1017
+#: ../../include/functions_visual_map_editor.php:750
+#: ../../include/functions_visual_map_editor.php:768
+#: ../../include/functions_visual_map_editor.php:894
#: ../../include/functions_reporting_html.php:1056
#: ../../include/functions_reporting_html.php:1065
#: ../../include/functions_reporting_html.php:1306
#: ../../include/functions_reporting_html.php:1314
-#: ../../include/functions_reporting_html.php:2638
-#: ../../include/functions_reporting_html.php:5490
-#: ../../include/ajax/heatmap.ajax.php:77
+#: ../../include/functions_reporting_html.php:2657
+#: ../../include/functions_reporting_html.php:5518
+#: ../../include/ajax/heatmap.ajax.php:96
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467
-#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5952
+#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5976
#: ../../include/class/ModuleTemplates.class.php:1185
#: ../../include/class/CalendarManager.class.php:1028
#: ../../include/class/CalendarManager.class.php:1062
@@ -2401,27 +2439,27 @@ msgstr "Grappes"
#: ../../include/lib/Dashboard/Widgets/clock.php:221
#: ../../include/functions_snmp_browser.php:564
#: ../../include/functions_events.php:2525
-#: ../../include/functions_events.php:4958
-#: ../../operation/agentes/estado_agente.php:1043
+#: ../../include/functions_events.php:4963
+#: ../../operation/agentes/estado_agente.php:1051
#: ../../operation/agentes/ver_agente.php:1171
-#: ../../operation/netflow/nf_live_view.php:495
+#: ../../operation/netflow/nf_live_view.php:568
#: ../../operation/incidents/configure_integriaims_incident.php:251
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342
-#: ../../operation/search_modules.php:34
+#: ../../operation/search_modules.php:37
#: ../../operation/reporting/graph_viewer.php:363
msgid "Type"
msgstr "Type"
#: ../../views/cluster/list.php:73
-#: ../../include/functions_reporting_html.php:5925
+#: ../../include/functions_reporting_html.php:5953
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325
-#: ../../operation/agentes/pandora_networkmap.php:717
+#: ../../operation/agentes/pandora_networkmap.php:718
msgid "Nodes"
msgstr "Nœuds"
#: ../../views/cluster/list.php:74
#: ../../enterprise/views/ncm/devices/list.php:120
-#: ../../enterprise/meta/advanced/servers.build_table.php:62
+#: ../../enterprise/meta/advanced/servers.build_table.php:78
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584
#: ../../enterprise/meta/advanced/policymanager.queue.php:225
#: ../../enterprise/meta/monitoring/custom_fields_view.php:719
@@ -2432,8 +2470,8 @@ msgstr "Nœuds"
#: ../../enterprise/godmode/agentes/collection_manager.php:164
#: ../../enterprise/godmode/agentes/collection_manager.php:264
#: ../../enterprise/godmode/policies/policy_alerts.php:368
-#: ../../enterprise/godmode/policies/policy_modules.php:1546
-#: ../../enterprise/godmode/policies/policy_queue.php:335
+#: ../../enterprise/godmode/policies/policy_modules.php:1591
+#: ../../enterprise/godmode/policies/policy_queue.php:337
#: ../../enterprise/godmode/policies/policies.php:436
#: ../../enterprise/godmode/policies/policy_collections.php:243
#: ../../enterprise/godmode/policies/policy_collections.php:324
@@ -2469,15 +2507,15 @@ msgstr "Nœuds"
#: ../../enterprise/operation/services/services.table_services.php:183
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490
#: ../../godmode/groups/tactical.php:180
-#: ../../godmode/agentes/status_monitor_custom_fields.php:97
-#: ../../godmode/agentes/status_monitor_custom_fields.php:146
+#: ../../godmode/agentes/status_monitor_custom_fields.php:117
+#: ../../godmode/agentes/status_monitor_custom_fields.php:166
#: ../../godmode/agentes/agent_incidents.php:88
#: ../../godmode/agentes/module_manager.php:645
#: ../../godmode/massive/massive_copy_modules.php:121
#: ../../godmode/massive/massive_copy_modules.php:281
#: ../../godmode/massive/massive_delete_modules.php:415
#: ../../godmode/massive/massive_edit_users.php:501
-#: ../../godmode/massive/massive_edit_agents.php:926
+#: ../../godmode/massive/massive_edit_agents.php:943
#: ../../godmode/alerts/alert_list.list.php:174
#: ../../godmode/alerts/alert_list.list.php:569
#: ../../godmode/alerts/alert_view.php:120
@@ -2486,63 +2524,72 @@ msgstr "Nœuds"
#: ../../godmode/reporting/reporting_builder.item_editor.php:77
#: ../../godmode/events/custom_events.php:99
#: ../../godmode/wizards/DiscoveryTaskList.class.php:605
-#: ../../godmode/servers/servers.build_table.php:78
-#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144
-#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244
-#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163
+#: ../../godmode/servers/servers.build_table.php:80
+#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145
+#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245
+#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163
#: ../../mobile/operation/modules.php:164 ../../mobile/operation/modules.php:275
-#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:603
-#: ../../mobile/operation/modules.php:609 ../../mobile/operation/modules.php:615
-#: ../../mobile/operation/modules.php:621 ../../mobile/operation/modules.php:632
-#: ../../mobile/operation/modules.php:640 ../../mobile/operation/modules.php:648
-#: ../../mobile/operation/modules.php:720 ../../mobile/operation/modules.php:732
-#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105
+#: ../../mobile/operation/modules.php:276 ../../mobile/operation/modules.php:614
+#: ../../mobile/operation/modules.php:620 ../../mobile/operation/modules.php:626
+#: ../../mobile/operation/modules.php:632 ../../mobile/operation/modules.php:643
+#: ../../mobile/operation/modules.php:651 ../../mobile/operation/modules.php:659
+#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:742
+#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:763
+#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105
#: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247
-#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350
-#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650
-#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963
-#: ../../mobile/operation/events.php:964
+#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334
+#: ../../mobile/operation/module_data.php:262
+#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679
+#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007
+#: ../../mobile/operation/events.php:1008
+#: ../../mobile/operation/server_status.php:154
+#: ../../mobile/operation/server_status.php:155
+#: ../../mobile/operation/server_status.php:281
+#: ../../mobile/operation/server_status.php:319
+#: ../../mobile/operation/server_status.php:349
+#: ../../mobile/operation/server_status.php:445
#: ../../include/functions_reporting_html.php:553
#: ../../include/functions_reporting_html.php:1055
#: ../../include/functions_reporting_html.php:1064
#: ../../include/functions_reporting_html.php:1305
#: ../../include/functions_reporting_html.php:1313
-#: ../../include/functions_reporting_html.php:1624
-#: ../../include/functions_reporting_html.php:2356
-#: ../../include/functions_reporting_html.php:2637
-#: ../../include/functions_reporting_html.php:2996
-#: ../../include/functions_reporting_html.php:3664
-#: ../../include/functions_reporting_html.php:3714
-#: ../../include/functions_reporting_html.php:5303
+#: ../../include/functions_reporting_html.php:1633
+#: ../../include/functions_reporting_html.php:2377
+#: ../../include/functions_reporting_html.php:2656
+#: ../../include/functions_reporting_html.php:3024
+#: ../../include/functions_reporting_html.php:3692
+#: ../../include/functions_reporting_html.php:3742
+#: ../../include/functions_reporting_html.php:5331
+#: ../../include/ajax/heatmap.ajax.php:391
#: ../../include/ajax/alert_list.ajax.php:296
-#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1003
+#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1026
#: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369
#: ../../include/functions_massive_operations.php:152
-#: ../../include/class/NetworkMap.class.php:3064
-#: ../../include/class/AgentsAlerts.class.php:913
+#: ../../include/class/NetworkMap.class.php:3070
+#: ../../include/class/AgentsAlerts.class.php:914
#: ../../include/class/SnmpConsole.class.php:273
#: ../../include/class/SnmpConsole.class.php:382
#: ../../include/class/SnmpConsole.class.php:500
#: ../../include/class/ExternalTools.class.php:877
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:322
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562
#: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594
#: ../../include/functions_events.php:204 ../../include/functions_events.php:259
#: ../../include/functions_events.php:2543
-#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56
+#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56
#: ../../operation/agentes/estado_agente.php:324
-#: ../../operation/agentes/estado_agente.php:1049
+#: ../../operation/agentes/estado_agente.php:1057
#: ../../operation/agentes/interface_view.functions.php:516
-#: ../../operation/agentes/status_monitor.php:1566
+#: ../../operation/agentes/status_monitor.php:1568
#: ../../operation/agentes/alerts_status.functions.php:108
#: ../../operation/messages/message_list.php:188
#: ../../operation/incidents/integriaims_export_csv.php:83
#: ../../operation/incidents/configure_integriaims_incident.php:305
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338
#: ../../operation/incidents/list_integriaims_incidents.php:334
-#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38
+#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38
msgid "Status"
msgstr "État"
@@ -2566,10 +2613,10 @@ msgstr "État"
#: ../../enterprise/include/ajax/log_viewer.ajax.php:352
#: ../../enterprise/include/class/Omnishell.class.php:1016
#: ../../enterprise/include/class/Omnishell.class.php:1095
-#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598
-#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276
-#: ../../include/functions_html.php:1427
-#: ../../include/functions_snmp_browser.php:1617
+#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598
+#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281
+#: ../../include/functions_html.php:1432
+#: ../../include/functions_snmp_browser.php:1626
msgid "Filter group"
msgstr "Filtrer le groupe"
@@ -2615,27 +2662,27 @@ msgstr "Éditer ce grappe"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323
#: ../../enterprise/include/lib/NetworkManager.php:190
-#: ../../godmode/groups/group_list.php:942
-#: ../../godmode/agentes/modificar_agente.php:779
+#: ../../godmode/groups/group_list.php:954
+#: ../../godmode/agentes/modificar_agente.php:791
#: ../../godmode/agentes/module_manager_editor_common.php:253
-#: ../../godmode/agentes/module_manager_editor_common.php:696
-#: ../../godmode/agentes/module_manager_editor_common.php:1311
-#: ../../godmode/agentes/module_manager.php:974
-#: ../../godmode/agentes/module_manager.php:987
-#: ../../godmode/massive/massive_edit_agents.php:938
-#: ../../godmode/massive/massive_edit_agents.php:1138
+#: ../../godmode/agentes/module_manager_editor_common.php:702
+#: ../../godmode/agentes/module_manager_editor_common.php:1321
+#: ../../godmode/agentes/module_manager.php:988
+#: ../../godmode/agentes/module_manager.php:1001
+#: ../../godmode/massive/massive_edit_agents.php:955
+#: ../../godmode/massive/massive_edit_agents.php:1154
#: ../../godmode/massive/massive_edit_modules.php:780
#: ../../godmode/alerts/alert_list.list.php:172
#: ../../godmode/alerts/configure_alert_template.php:918
-#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167
+#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173
#: ../../mobile/operation/alerts.php:68
-#: ../../include/functions_visual_map_editor.php:824
-#: ../../include/functions_reporting_html.php:3676
+#: ../../include/functions_visual_map_editor.php:872
+#: ../../include/functions_reporting_html.php:3704
#: ../../include/functions_agents.php:1472
#: ../../include/functions_treeview.php:66
-#: ../../include/functions_treeview.php:602
+#: ../../include/functions_treeview.php:606
#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405
-#: ../../include/functions_reporting.php:6992
+#: ../../include/functions_reporting.php:7001
#: ../../operation/search_agents.php:93
#: ../../operation/agentes/estado_generalagente.php:92
#: ../../operation/agentes/alerts_status.functions.php:101
@@ -2646,24 +2693,24 @@ msgstr "Désactivé"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028
#: ../../enterprise/godmode/services/services.service.php:773
#: ../../enterprise/operation/services/massive/services.create.php:839
-#: ../../godmode/agentes/modificar_agente.php:788
+#: ../../godmode/agentes/modificar_agente.php:800
#: ../../godmode/agentes/planned_downtime.list.php:778
#: ../../godmode/agentes/planned_downtime.editor.php:929
-#: ../../godmode/agentes/agent_manager.php:826
-#: ../../godmode/agentes/module_manager_editor_common.php:1394
+#: ../../godmode/agentes/agent_manager.php:834
+#: ../../godmode/agentes/module_manager_editor_common.php:1404
#: ../../godmode/agentes/module_manager.php:765
-#: ../../godmode/massive/massive_edit_agents.php:1108
+#: ../../godmode/massive/massive_edit_agents.php:1125
#: ../../godmode/massive/massive_edit_modules.php:1119
-#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114
-#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100
-#: ../../operation/agentes/estado_agente.php:1145
+#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137
+#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100
+#: ../../operation/agentes/estado_agente.php:1153
#: ../../operation/agentes/estado_generalagente.php:94
msgid "Quiet"
msgstr "Mode silencieux"
#: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185
#: ../../operation/search_agents.php:111
-#: ../../operation/agentes/estado_agente.php:1153
+#: ../../operation/agentes/estado_agente.php:1161
msgid "Agent in scheduled downtime"
msgstr "Agent dans temps d'arrêt programmé"
@@ -2688,25 +2735,24 @@ msgstr "Forcer calcule d'état du grappe"
#: ../../enterprise/tools/ipam/ipam_network.php:426
#: ../../godmode/modules/manage_inventory_modules.php:291
#: ../../godmode/modules/manage_inventory_modules_form.php:140
-#: ../../godmode/agentes/modificar_agente.php:694
+#: ../../godmode/agentes/modificar_agente.php:704
#: ../../godmode/agentes/planned_downtime.editor.php:1358
#: ../../godmode/agentes/agent_manager.php:523
-#: ../../godmode/massive/massive_edit_agents.php:733
+#: ../../godmode/massive/massive_edit_agents.php:750
#: ../../godmode/reporting/reporting_builder.item_editor.php:71
-#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404
-#: ../../include/functions_reporting_html.php:1600
-#: ../../include/functions_reporting_html.php:3661
-#: ../../include/ajax/heatmap.ajax.php:339
+#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405
+#: ../../include/functions_reporting_html.php:1609
+#: ../../include/functions_reporting_html.php:3689
+#: ../../include/ajax/heatmap.ajax.php:467
#: ../../include/class/Diagnostics.class.php:769
#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:345
-#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:348
+#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44
#: ../../operation/search_agents.php:50 ../../operation/tree.php:79
-#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031
+#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038
#: ../../operation/agentes/estado_generalagente.php:216
#: ../../operation/gis_maps/ajax.php:297
-#: ../../operation/inventory/inventory.php:1005
-#: ../../operation/inventory/inventory.php:1299
+#: ../../operation/inventory/inventory.php:1251
msgid "OS"
msgstr "Système d'exploitation"
@@ -2716,12 +2762,12 @@ msgid "IP address"
msgstr "Adresse IP"
#: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292
-#: ../../enterprise/meta/advanced/servers.build_table.php:101
-#: ../../enterprise/meta/advanced/servers.build_table.php:102
-#: ../../enterprise/meta/advanced/servers.build_table.php:108
+#: ../../enterprise/meta/advanced/servers.build_table.php:125
+#: ../../enterprise/meta/advanced/servers.build_table.php:126
+#: ../../enterprise/meta/advanced/servers.build_table.php:132
#: ../../enterprise/meta/advanced/metasetup.visual.php:964
#: ../../enterprise/include/functions_visual_map.php:320
-#: ../../enterprise/include/functions_servicemap.php:471
+#: ../../enterprise/include/functions_servicemap.php:483
#: ../../enterprise/include/functions_aws.php:509
#: ../../enterprise/include/functions_aws.php:510
#: ../../enterprise/include/functions_reporting.php:6178
@@ -2734,92 +2780,92 @@ msgstr "Adresse IP"
#: ../../enterprise/tools/ipam/ipam_network.php:543
#: ../../enterprise/tools/ipam/ipam_ajax.php:369
#: ../../enterprise/tools/ipam/ipam_ajax.php:390
-#: ../../godmode/modules/manage_network_components.php:802
-#: ../../godmode/modules/manage_network_components.php:803
+#: ../../godmode/modules/manage_network_components.php:805
+#: ../../godmode/modules/manage_network_components.php:806
#: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222
#: ../../godmode/agentes/planned_downtime.list.php:942
#: ../../godmode/alerts/alert_view.php:141
-#: ../../godmode/servers/servers.build_table.php:151
-#: ../../godmode/servers/servers.build_table.php:152
-#: ../../godmode/servers/servers.build_table.php:158
-#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200
-#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319
-#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443
-#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509
-#: ../../include/functions_servers.php:1275
+#: ../../godmode/servers/servers.build_table.php:153
+#: ../../godmode/servers/servers.build_table.php:154
+#: ../../godmode/servers/servers.build_table.php:160
+#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203
+#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315
+#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435
+#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501
+#: ../../include/functions_servers.php:1298
#: ../../include/functions_reporting_html.php:659
#: ../../include/functions_reporting_html.php:662
-#: ../../include/functions_reporting_html.php:5564
-#: ../../include/functions_reporting_html.php:5617
+#: ../../include/functions_reporting_html.php:5592
+#: ../../include/functions_reporting_html.php:5645
#: ../../include/functions.php:1180 ../../include/functions.php:1186
-#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156
+#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183
#: ../../include/functions_treeview.php:153
#: ../../include/functions_treeview.php:311
-#: ../../include/functions_treeview.php:410
-#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874
-#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241
-#: ../../include/class/SnmpConsole.class.php:794
-#: ../../include/class/SnmpConsole.class.php:812
-#: ../../include/functions_events.php:3684
-#: ../../include/functions_events.php:3818
-#: ../../include/functions_events.php:3838
-#: ../../include/functions_events.php:3847
-#: ../../include/functions_events.php:3856
-#: ../../include/functions_events.php:3857
-#: ../../include/functions_events.php:3869
-#: ../../include/functions_events.php:3929
-#: ../../include/functions_events.php:3962
-#: ../../include/functions_events.php:4028
-#: ../../include/functions_events.php:4045
-#: ../../include/functions_events.php:4052
-#: ../../include/functions_events.php:4118
-#: ../../include/functions_events.php:4210
-#: ../../include/functions_events.php:4334
-#: ../../include/functions_events.php:4373
-#: ../../include/functions_events.php:4413
-#: ../../include/functions_events.php:4436
-#: ../../include/functions_events.php:4466
-#: ../../include/functions_events.php:4549
-#: ../../include/functions_events.php:4630
-#: ../../include/functions_events.php:4640
-#: ../../include/functions_events.php:4857
-#: ../../include/functions_events.php:4938
-#: ../../include/functions_events.php:5043
-#: ../../include/functions_events.php:5072
-#: ../../include/functions_events.php:5087
-#: ../../include/functions_events.php:5097
-#: ../../include/functions_events.php:5107
-#: ../../include/functions_events.php:5590
-#: ../../include/functions_events.php:5604
+#: ../../include/functions_treeview.php:414
+#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917
+#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241
+#: ../../include/class/SnmpConsole.class.php:796
+#: ../../include/class/SnmpConsole.class.php:814
+#: ../../include/functions_events.php:3689
+#: ../../include/functions_events.php:3823
+#: ../../include/functions_events.php:3843
+#: ../../include/functions_events.php:3852
+#: ../../include/functions_events.php:3861
+#: ../../include/functions_events.php:3862
+#: ../../include/functions_events.php:3874
+#: ../../include/functions_events.php:3934
+#: ../../include/functions_events.php:3967
+#: ../../include/functions_events.php:4033
+#: ../../include/functions_events.php:4050
+#: ../../include/functions_events.php:4057
+#: ../../include/functions_events.php:4123
+#: ../../include/functions_events.php:4215
+#: ../../include/functions_events.php:4339
+#: ../../include/functions_events.php:4378
+#: ../../include/functions_events.php:4418
+#: ../../include/functions_events.php:4441
+#: ../../include/functions_events.php:4471
+#: ../../include/functions_events.php:4554
+#: ../../include/functions_events.php:4635
+#: ../../include/functions_events.php:4645
+#: ../../include/functions_events.php:4862
+#: ../../include/functions_events.php:4943
+#: ../../include/functions_events.php:5048
+#: ../../include/functions_events.php:5077
+#: ../../include/functions_events.php:5092
+#: ../../include/functions_events.php:5102
+#: ../../include/functions_events.php:5112
+#: ../../include/functions_events.php:5595
#: ../../include/functions_events.php:5609
-#: ../../include/functions_events.php:5612
-#: ../../include/functions_events.php:5620
-#: ../../include/functions_events.php:5629
-#: ../../include/functions_events.php:5641
-#: ../../include/functions_events.php:5694
-#: ../../include/functions_events.php:5721
-#: ../../include/functions_events.php:5746
-#: ../../include/functions_events.php:5790
-#: ../../operation/agentes/estado_agente.php:1222
+#: ../../include/functions_events.php:5614
+#: ../../include/functions_events.php:5617
+#: ../../include/functions_events.php:5625
+#: ../../include/functions_events.php:5634
+#: ../../include/functions_events.php:5646
+#: ../../include/functions_events.php:5699
+#: ../../include/functions_events.php:5726
+#: ../../include/functions_events.php:5751
+#: ../../include/functions_events.php:5795
+#: ../../operation/agentes/estado_agente.php:1231
#: ../../operation/agentes/interface_view.functions.php:742
#: ../../operation/agentes/interface_view.functions.php:743
#: ../../operation/agentes/interface_view.functions.php:744
#: ../../operation/agentes/interface_view.functions.php:745
#: ../../operation/agentes/interface_view.functions.php:746
-#: ../../operation/agentes/status_monitor.php:1945
+#: ../../operation/agentes/status_monitor.php:1947
#: ../../operation/agentes/estado_generalagente.php:234
#: ../../operation/agentes/estado_generalagente.php:251
#: ../../operation/agentes/estado_generalagente.php:254
-#: ../../operation/agentes/estado_generalagente.php:440
-#: ../../operation/agentes/estado_generalagente.php:454
-#: ../../operation/agentes/estado_generalagente.php:513
-#: ../../operation/inventory/inventory.php:153
-#: ../../operation/inventory/inventory.php:173
-#: ../../operation/inventory/inventory.php:200
+#: ../../operation/agentes/estado_generalagente.php:411
+#: ../../operation/agentes/estado_generalagente.php:425
+#: ../../operation/agentes/estado_generalagente.php:484
+#: ../../operation/inventory/inventory.php:155
+#: ../../operation/inventory/inventory.php:175
+#: ../../operation/inventory/inventory.php:202
msgid "N/A"
msgstr "S.O."
-#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839
+#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843
#: ../../operation/agentes/estado_generalagente.php:250
#: ../../operation/gis_maps/ajax.php:341
msgid "Agent Version"
@@ -2830,12 +2876,12 @@ msgid "Cluster agent"
msgstr "Agent de grappe"
#: ../../views/cluster/view.php:364
-#: ../../operation/agentes/estado_generalagente.php:1012
+#: ../../operation/agentes/estado_generalagente.php:919
msgid "Events (Last 24h)"
msgstr "Événements (Dernières 24h)"
-#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453
-#: ../../operation/agentes/interface_traffic_graph_win.php:278
+#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469
+#: ../../operation/agentes/interface_traffic_graph_win.php:294
msgid "Reload"
msgstr "Recharger"
@@ -2853,24 +2899,24 @@ msgstr "Nouveau widget"
#: ../../views/dashboard/header.php:43
#: ../../extensions/disabled/matrix_events.php:35
-#: ../../extensions/agents_modules.php:380
-#: ../../extensions/agents_modules.php:387
-#: ../../extensions/agents_modules.php:390
-#: ../../operation/visual_console/view.php:231
-#: ../../operation/visual_console/legacy_view.php:201
+#: ../../extensions/agents_modules.php:388
+#: ../../extensions/agents_modules.php:395
+#: ../../extensions/agents_modules.php:398
+#: ../../operation/visual_console/view.php:233
+#: ../../operation/visual_console/legacy_view.php:200
#: ../../operation/gis_maps/render_view.php:137
#: ../../operation/reporting/reporting_viewer.php:185
#: ../../operation/reporting/graph_viewer.php:234
msgid "Full screen mode"
msgstr "Mode plein écran"
-#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603
-#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500
-#: ../../operation/visual_console/legacy_view.php:249
+#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611
+#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502
+#: ../../operation/visual_console/legacy_view.php:260
#: ../../operation/gis_maps/render_view.php:139
#: ../../operation/reporting/reporting_viewer.php:194
#: ../../operation/reporting/graph_viewer.php:243
-#: ../../operation/events/events.php:1410
+#: ../../operation/events/events.php:1464
msgid "Back to normal mode"
msgstr "Retour au mode normal"
@@ -2898,11 +2944,11 @@ msgstr "Mettre à jour le tableau de bord"
#: ../../enterprise/operation/services/services.list.php:590
#: ../../godmode/snmpconsole/snmp_alert.php:2227
#: ../../godmode/snmpconsole/snmp_alert.php:2242
-#: ../../godmode/massive/massive_edit_agents.php:1043
-#: ../../godmode/reporting/graph_builder.graph_editor.php:241
-#: ../../godmode/reporting/graph_builder.graph_editor.php:262
-#: ../../include/functions_config.php:1333
-#: ../../include/functions_config.php:3537
+#: ../../godmode/massive/massive_edit_agents.php:1060
+#: ../../godmode/reporting/graph_builder.graph_editor.php:374
+#: ../../godmode/reporting/graph_builder.graph_editor.php:395
+#: ../../include/functions_config.php:1349
+#: ../../include/functions_config.php:3561
#: ../../include/class/SatelliteAgent.class.php:1269
#: ../../operation/gis_maps/render_view.php:167
msgid "Ok"
@@ -2927,23 +2973,23 @@ msgstr "Afficher lien au panneau de configuration"
#: ../../views/dashboard/header.php:163
#: ../../enterprise/views/ncm/devices/list.php:172
#: ../../enterprise/meta/advanced/policymanager.queue.php:238
-#: ../../enterprise/godmode/policies/policy_queue.php:849
+#: ../../enterprise/godmode/policies/policy_queue.php:853
#: ../../enterprise/godmode/servers/HA_cluster.php:437
#: ../../enterprise/include/class/Omnishell.class.php:559
#: ../../enterprise/include/class/Omnishell.class.php:1712
#: ../../enterprise/include/functions_ipam.php:1400
-#: ../../extensions/agents_modules.php:615
+#: ../../extensions/agents_modules.php:623
#: ../../godmode/wizards/DiscoveryTaskList.class.php:196
-#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285
-#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720
-#: ../../include/class/NetworkMap.class.php:2946 ../../operation/heatmap.php:175
-#: ../../operation/visual_console/view.php:513
+#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313
+#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815
+#: ../../include/class/NetworkMap.class.php:2952 ../../operation/heatmap.php:175
+#: ../../operation/visual_console/view.php:515
#: ../../operation/visual_console/legacy_public_view.php:141
-#: ../../operation/visual_console/legacy_view.php:263
+#: ../../operation/visual_console/legacy_view.php:274
#: ../../operation/visual_console/public_view.php:129
#: ../../operation/agentes/pandora_networkmap.editor.php:553
#: ../../operation/gis_maps/render_view.php:161
-#: ../../operation/events/events.php:1422 ../../general/login_page.php:97
+#: ../../operation/events/events.php:1476 ../../general/login_page.php:97
#: ../../general/login_page.php:408
msgid "Refresh"
msgstr "Rafraîchir"
@@ -2955,9 +3001,10 @@ msgstr "Ajouter cellule"
#: ../../views/dashboard/header.php:298
#: ../../enterprise/extensions/vmware/vmware_view.php:1377
#: ../../enterprise/extensions/vmware/vmware_view.php:1414
+#: ../../godmode/users/configure_user.php:66
#: ../../godmode/users/user_management.php:45
#: ../../godmode/massive/massive_edit_users.php:280
-#: ../../mobile/include/functions_web.php:22
+#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814
#: ../../include/class/OrderInterpreter.class.php:219
#: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478
msgid "Dashboard"
@@ -2968,9 +3015,9 @@ msgid "Hello! These are the tips of the day."
msgstr "Bonjour! Ce sont les astuces du jour."
#: ../../views/dashboard/tipsWindow.php:44
-#: ../../godmode/users/user_management.php:378
+#: ../../godmode/users/user_management.php:384
msgid "Show usage tips at startup"
-msgstr "Afficher les conseils d’utilisation au démarrage"
+msgstr "Afficher les astuces d’utilisation au démarrage"
#: ../../views/dashboard/tipsWindow.php:81
msgid "See more info"
@@ -3008,11 +3055,11 @@ msgstr "Panneaux de configuration"
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132
#: ../../extensions/files_repo.php:206
#: ../../godmode/modules/manage_nc_groups.php:176
-#: ../../godmode/modules/manage_network_components.php:562
+#: ../../godmode/modules/manage_network_components.php:565
#: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357
#: ../../godmode/users/user_list.php:411
-#: ../../godmode/users/configure_user.php:101
-#: ../../godmode/users/configure_user.php:121
+#: ../../godmode/users/configure_user.php:871
+#: ../../godmode/users/configure_user.php:891
#: ../../godmode/agentes/planned_downtime.list.php:290
#: ../../godmode/netflow/nf_item_list.php:120
#: ../../godmode/netflow/nf_item_list.php:148
@@ -3024,7 +3071,7 @@ msgstr "Panneaux de configuration"
#: ../../godmode/massive/massive_delete_alerts.php:201
#: ../../godmode/alerts/alert_actions.php:208
#: ../../godmode/alerts/alert_commands.php:698
-#: ../../godmode/alerts/alert_templates.php:257
+#: ../../godmode/alerts/alert_templates.php:261
#: ../../godmode/alerts/alert_list.php:239
#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137
#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89
@@ -3048,7 +3095,7 @@ msgstr "Supprimé correctement"
#: ../../enterprise/godmode/modules/local_components.php:432
#: ../../enterprise/godmode/policies/policy_alerts.php:267
#: ../../enterprise/godmode/policies/policy_alerts.php:315
-#: ../../enterprise/godmode/policies/policy_modules.php:1329
+#: ../../enterprise/godmode/policies/policy_modules.php:1374
#: ../../enterprise/godmode/policies/policy_external_alerts.php:159
#: ../../enterprise/godmode/policies/policy_external_alerts.php:186
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:174
@@ -3065,18 +3112,18 @@ msgstr "Supprimé correctement"
#: ../../enterprise/tools/ipam/ipam_action.php:100
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130
#: ../../extensions/files_repo.php:206
-#: ../../godmode/modules/manage_network_components.php:563
-#: ../../godmode/users/configure_user.php:102
+#: ../../godmode/modules/manage_network_components.php:566
+#: ../../godmode/users/configure_user.php:872
#: ../../godmode/massive/massive_delete_action_alerts.php:171
#: ../../godmode/massive/massive_delete_alerts.php:202
#: ../../godmode/alerts/alert_actions.php:209
#: ../../godmode/alerts/alert_commands.php:699
-#: ../../godmode/alerts/alert_templates.php:258
+#: ../../godmode/alerts/alert_templates.php:262
#: ../../godmode/alerts/alert_list.php:240
#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138
#: ../../godmode/setup/gis.php:59
#: ../../godmode/reporting/reporting_builder.php:632
-#: ../../operation/agentes/pandora_networkmap.php:563
+#: ../../operation/agentes/pandora_networkmap.php:564
#: ../../operation/messages/message_list.php:110
#: ../../operation/gis_maps/gis_map.php:100
#: ../../operation/incidents/list_integriaims_incidents.php:306
@@ -3105,15 +3152,15 @@ msgstr "Favori"
#: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90
#: ../../operation/agentes/networkmap.dinamic.php:115
-#: ../../operation/agentes/pandora_networkmap.view.php:2364
+#: ../../operation/agentes/pandora_networkmap.view.php:2365
#: ../../operation/snmpconsole/snmp_statistics.php:54
#: ../../operation/snmpconsole/snmp_browser.php:68
-#: ../../operation/events/events.php:1460
+#: ../../operation/events/events.php:1514
msgid "Full screen"
msgstr "Plein écran"
#: ../../views/dashboard/list.php:106
-#: ../../enterprise/godmode/policies/policy_modules.php:1796
+#: ../../enterprise/godmode/policies/policy_modules.php:1841
#: ../../enterprise/godmode/policies/policies.php:643
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229
#: ../../godmode/agentes/planned_downtime.list.php:746
@@ -3121,8 +3168,8 @@ msgstr "Plein écran"
#: ../../godmode/agentes/planned_downtime.list.php:925
#: ../../godmode/alerts/alert_actions.php:355
#: ../../godmode/reporting/map_builder.php:420
-#: ../../include/functions_filemanager.php:985
-#: ../../operation/agentes/pandora_networkmap.php:806
+#: ../../include/functions_filemanager.php:1007
+#: ../../operation/agentes/pandora_networkmap.php:807
msgid "Copy"
msgstr "Copier"
@@ -3148,8 +3195,8 @@ msgid "Please select widget"
msgstr "Sélectionnez un widget"
#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76
-#: ../../include/class/SnmpConsole.class.php:1550
-#: ../../operation/events/events.php:3160
+#: ../../include/class/SnmpConsole.class.php:1552
+#: ../../operation/events/events.php:3219
msgid "Until next"
msgstr "Jusqu'au suivant"
@@ -3170,7 +3217,7 @@ msgstr "Favori"
msgid "Configure widget"
msgstr "Configurer le widget"
-#: ../../views/dashboard/cell.php:68
+#: ../../views/dashboard/cell.php:69
msgid "Delete widget"
msgstr "Supprimer le widget"
@@ -3187,13 +3234,13 @@ msgstr "Changer chaque"
#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211
#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252
#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212
-#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381
+#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424
msgid "Previous"
msgstr "Précédent"
#: ../../views/dashboard/slides.php:218
#: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572
-#: ../../operation/events/events.php:1518
+#: ../../operation/events/events.php:1572
msgid "Stop"
msgstr "Arrêter"
@@ -3221,9 +3268,9 @@ msgstr "Pause"
#: ../../godmode/alerts/configure_alert_template.php:1227
#: ../../godmode/alerts/configure_alert_template.php:1239
#: ../../godmode/wizards/HostDevices.class.php:779
-#: ../../include/functions_ui.php:2462
-#: ../../include/class/CustomNetScan.class.php:556
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238
+#: ../../include/functions_ui.php:2505
+#: ../../include/class/CustomNetScan.class.php:555
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239
msgid "Next"
msgstr "Suivant"
@@ -3263,7 +3310,7 @@ msgstr ""
#: ../../enterprise/views/ncm/models/edit.php:37
#: ../../enterprise/views/ncm/vendors/list.php:32
#: ../../enterprise/views/ncm/vendors/edit.php:35
-#: ../../include/functions.php:1294 ../../include/functions_events.php:3178
+#: ../../include/functions.php:1294 ../../include/functions_events.php:3183
msgid "Network configuration manager"
msgstr "Gestionnaire de configuration réseau"
@@ -3336,7 +3383,7 @@ msgid "Device model"
msgstr "Modèle d'appareil"
#: ../../enterprise/views/ncm/agent/manage.php:102
-#: ../../godmode/agentes/module_manager_editor_network.php:502
+#: ../../godmode/agentes/module_manager_editor_network.php:507
msgid "Connection method"
msgstr "Méthode de connexion"
@@ -3358,11 +3405,11 @@ msgstr "Connecter utilisant telnet"
#: ../../enterprise/include/class/Aws.S3.php:580
#: ../../enterprise/include/class/Aws.cloud.php:544
#: ../../extensions/quick_shell.php:183
-#: ../../godmode/modules/manage_network_components_form_network.php:53
-#: ../../godmode/agentes/module_manager_editor_network.php:83
+#: ../../godmode/modules/manage_network_components_form_network.php:83
+#: ../../godmode/agentes/module_manager_editor_network.php:84
#: ../../godmode/massive/massive_edit_modules.php:1160
#: ../../godmode/servers/modificar_server.php:117
-#: ../../include/functions_config.php:1651
+#: ../../include/functions_config.php:1663
#: ../../include/class/AgentWizard.class.php:648
#: ../../include/functions_snmp_browser.php:724
msgid "Port"
@@ -3413,7 +3460,7 @@ msgstr "État NCM"
#: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542
#: ../../godmode/setup/snmp_wizard.php:100
#: ../../godmode/reporting/visual_console_builder.data.php:310
-#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377
+#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377
msgid "Save"
msgstr "Sauvegarder"
@@ -3441,10 +3488,10 @@ msgstr "Type de script"
#: ../../enterprise/views/ncm/agent/details.php:90
#: ../../enterprise/include/class/CommandCenter.class.php:470
#: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371
-#: ../../include/functions_reporting_html.php:4310
-#: ../../include/functions_reporting_html.php:4457
-#: ../../include/functions_reporting_html.php:4800
-#: ../../include/functions_reporting_html.php:4811
+#: ../../include/functions_reporting_html.php:4338
+#: ../../include/functions_reporting_html.php:4485
+#: ../../include/functions_reporting_html.php:4828
+#: ../../include/functions_reporting_html.php:4839
#: ../../include/functions_db.php:1959
msgid "Result"
msgstr "Résultat"
@@ -3507,9 +3554,9 @@ msgstr "Exécuter skipper"
#: ../../enterprise/meta/include/functions_wizard_meta.php:1632
#: ../../enterprise/meta/include/functions_wizard_meta.php:1757
#: ../../enterprise/meta/include/functions_wizard_meta.php:1832
-#: ../../godmode/setup/setup_visuals.php:1549
-#: ../../include/class/TipsWindow.class.php:777
-#: ../../include/class/TipsWindow.class.php:944
+#: ../../godmode/setup/setup_visuals.php:1564
+#: ../../include/class/TipsWindow.class.php:797
+#: ../../include/class/TipsWindow.class.php:964
msgid "Preview"
msgstr "Aperçu"
@@ -3538,7 +3585,7 @@ msgstr "Aperçu"
#: ../../enterprise/operation/services/services.list.php:208
#: ../../enterprise/operation/services/services.list.php:609
#: ../../enterprise/operation/services/services.table_services.php:144
-#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1104
+#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1116
#: ../../godmode/massive/massive_copy_modules.php:118
#: ../../godmode/massive/massive_copy_modules.php:278
#: ../../godmode/massive/massive_delete_modules.php:421
@@ -3546,42 +3593,42 @@ msgstr "Aperçu"
#: ../../godmode/massive/massive_edit_modules.php:388
#: ../../godmode/massive/massive_edit_modules.php:474
#: ../../godmode/alerts/alert_list.builder.php:326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3833
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3842
#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72
-#: ../../include/graphs/functions_flot.php:310
-#: ../../include/functions_reporting_html.php:2563
-#: ../../include/functions_reporting_html.php:2576
-#: ../../include/functions_reporting_html.php:3563
-#: ../../include/functions_reporting_html.php:3966
-#: ../../include/functions.php:1281 ../../include/functions.php:4181
-#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946
+#: ../../include/graphs/functions_flot.php:311
+#: ../../include/functions_reporting_html.php:2584
+#: ../../include/functions_reporting_html.php:2597
+#: ../../include/functions_reporting_html.php:3591
+#: ../../include/functions_reporting_html.php:3994
+#: ../../include/functions.php:1281 ../../include/functions.php:4207
+#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974
#: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607
#: ../../include/functions_visual_map.php:2457
#: ../../include/functions_visual_map.php:2485
#: ../../include/functions_visual_map.php:2503
#: ../../include/functions_visual_map.php:2521
#: ../../include/functions_alerts.php:702
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585
#: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54
#: ../../include/functions_massive_operations.php:149
#: ../../include/functions_netflow.php:1884
-#: ../../include/functions_reporting.php:6772
-#: ../../include/functions_filemanager.php:708
+#: ../../include/functions_reporting.php:6781
+#: ../../include/functions_filemanager.php:723
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:401
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:435
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:719
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:404
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:439
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:712
#: ../../include/lib/ClusterViewer/ClusterManager.php:582
-#: ../../include/functions_events.php:3126 ../../operation/tree.php:211
-#: ../../operation/tree.php:301 ../../operation/tree.php:523
+#: ../../include/functions_events.php:3131 ../../operation/tree.php:211
+#: ../../operation/tree.php:302 ../../operation/tree.php:525
#: ../../operation/agentes/estado_agente.php:276
-#: ../../operation/agentes/status_monitor.php:567
-#: ../../operation/agentes/group_view.php:242
-#: ../../operation/agentes/group_view.php:247
-#: ../../operation/agentes/estado_monitores.php:521
-#: ../../operation/agentes/pandora_networkmap.view.php:1804
-#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:815
-#: ../../general/logon_ok.php:151
+#: ../../operation/agentes/status_monitor.php:566
+#: ../../operation/agentes/group_view.php:245
+#: ../../operation/agentes/group_view.php:250
+#: ../../operation/agentes/estado_monitores.php:518
+#: ../../operation/agentes/pandora_networkmap.view.php:1805
+#: ../../operation/agentes/tactical.php:200 ../../operation/events/events.php:820
+#: ../../general/logon_ok.php:160
msgid "Unknown"
msgstr "Inconnu"
@@ -3666,31 +3713,32 @@ msgstr "Différences"
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208
#: ../../enterprise/tools/ipam/ipam_ajax.php:535
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807
-#: ../../godmode/groups/group_list.php:887 ../../godmode/users/user_list.php:583
+#: ../../godmode/groups/group_list.php:888 ../../godmode/users/user_list.php:584
#: ../../godmode/agentes/inventory_manager.php:237
-#: ../../godmode/agentes/modificar_agente.php:700
+#: ../../godmode/agentes/modificar_agente.php:710
#: ../../godmode/agentes/planned_downtime.editor.php:1369
-#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279
+#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277
#: ../../godmode/alerts/alert_list.list.php:136
#: ../../godmode/alerts/alert_list.list.php:571
#: ../../godmode/alerts/alert_commands.php:753
#: ../../godmode/alerts/alert_view.php:307
#: ../../godmode/alerts/alert_list.builder.php:112
+#: ../../godmode/setup/os.list.php:69
#: ../../godmode/reporting/reporting_builder.item_editor.php:2092
-#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:309
+#: ../../godmode/events/event_responses.list.php:69 ../../godmode/tag/tag.php:310
#: ../../godmode/category/category.php:161
-#: ../../include/functions_reporting_html.php:3450
-#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008
-#: ../../include/functions_treeview.php:400
+#: ../../include/functions_reporting_html.php:3478
+#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031
+#: ../../include/functions_treeview.php:404
#: ../../include/class/SatelliteAgent.class.php:148
#: ../../include/class/AgentsAlerts.class.php:254
#: ../../include/class/AgentsAlerts.class.php:332
#: ../../include/class/SnmpConsole.class.php:281
#: ../../include/class/SatelliteCollection.class.php:135
-#: ../../include/functions_reporting.php:3233
-#: ../../include/functions_filemanager.php:647
-#: ../../operation/agentes/pandora_networkmap.php:721
-#: ../../operation/agentes/status_monitor.php:1605
+#: ../../include/functions_reporting.php:3242
+#: ../../include/functions_filemanager.php:662
+#: ../../operation/agentes/pandora_networkmap.php:722
+#: ../../operation/agentes/status_monitor.php:1607
msgid "Actions"
msgstr "Actions"
@@ -3744,9 +3792,9 @@ msgstr "Différence entre : sauvegarde - sélectionné"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390
#: ../../enterprise/include/class/AgentRepository.class.php:692
#: ../../godmode/modules/manage_inventory_modules.php:54
-#: ../../godmode/modules/manage_network_components.php:298
+#: ../../godmode/modules/manage_network_components.php:299
#: ../../godmode/modules/manage_inventory_modules_form.php:45
-#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:255
+#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:254
#: ../../godmode/massive/massive_operations.php:332
#: ../../godmode/massive/massive_operations.php:354
#: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917
@@ -3754,6 +3802,7 @@ msgstr "Différence entre : sauvegarde - sélectionné"
#: ../../include/class/ConfigPEN.class.php:329
#: ../../include/class/ModuleTemplates.class.php:195
#: ../../include/class/ModuleTemplates.class.php:213
+#: ../../include/class/AgentDeployWizard.class.php:727
msgid "Configuration"
msgstr "Configuration"
@@ -3822,11 +3871,11 @@ msgid "Customize script execution"
msgstr "Personnaliser l’exécution des scripts"
#: ../../enterprise/views/ncm/agent/details.php:690
-#: ../../include/ajax/events.php:2199
+#: ../../include/ajax/events.php:2200
#: ../../include/class/ExternalTools.class.php:646
#: ../../include/functions_snmp_browser.php:974
-#: ../../include/functions_snmp_browser.php:1134
-#: ../../include/functions_events.php:3710
+#: ../../include/functions_snmp_browser.php:1142
+#: ../../include/functions_events.php:3715
msgid "Execute"
msgstr "Exécuter"
@@ -3841,13 +3890,13 @@ msgstr "Exécuter"
#: ../../enterprise/godmode/reporting/visual_console_template.php:123
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137
#: ../../enterprise/include/functions_reporting.php:146
-#: ../../enterprise/include/functions_reporting.php:8001
-#: ../../enterprise/include/functions_reporting.php:8029
-#: ../../enterprise/include/functions_reporting.php:8100
-#: ../../godmode/modules/manage_network_components.php:302
-#: ../../godmode/menu.php:172 ../../godmode/menu.php:275
+#: ../../enterprise/include/functions_reporting.php:8010
+#: ../../enterprise/include/functions_reporting.php:8038
+#: ../../enterprise/include/functions_reporting.php:8109
+#: ../../godmode/modules/manage_network_components.php:303
+#: ../../godmode/menu.php:172 ../../godmode/menu.php:273
#: ../../godmode/reporting/reporting_builder.item_editor.php:2027
-#: ../../include/functions_menu.php:585
+#: ../../include/functions_menu.php:587
#: ../../include/class/ConfigPEN.class.php:334
#: ../../include/class/ModuleTemplates.class.php:196
#: ../../include/class/ModuleTemplates.class.php:214
@@ -4009,7 +4058,7 @@ msgstr "Configurez les agents pour l'utilisation de modèles NCM"
#: ../../enterprise/tools/ipam/ipam_excel.php:139
#: ../../enterprise/tools/ipam/ipam_ajax.php:362
#: ../../enterprise/tools/ipam/ipam_calculator.php:69
-#: ../../godmode/setup/setup_general.php:878
+#: ../../godmode/setup/setup_general.php:904
#: ../../operation/agentes/ver_agente.php:1199
msgid "Address"
msgstr "Adresse"
@@ -4033,14 +4082,14 @@ msgstr "Dernière tâche en file d’attente"
#: ../../enterprise/operation/services/services.service.php:124
#: ../../enterprise/operation/services/services.list.php:548
#: ../../enterprise/tools/ipam/ipam_list.php:738
-#: ../../extensions/agents_modules.php:317
+#: ../../extensions/agents_modules.php:325
#: ../../operation/agentes/group_view.php:80
#: ../../operation/agentes/tactical.php:63
msgid "Last update"
msgstr "Dernière mise à jour"
#: ../../enterprise/views/ncm/devices/list.php:123
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154
#: ../../enterprise/godmode/policies/policy_alerts.php:368
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:243
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488
@@ -4048,7 +4097,7 @@ msgstr "Dernière mise à jour"
#: ../../godmode/massive/massive_copy_modules.php:185
#: ../../godmode/alerts/alert_list.list.php:572
#: ../../godmode/wizards/DiscoveryTaskList.class.php:617
-#: ../../godmode/servers/plugin.php:996
+#: ../../godmode/servers/plugin.php:988
#: ../../operation/agentes/alerts_status.php:234
#: ../../operation/agentes/alerts_status.php:235
msgid "Operations"
@@ -4100,7 +4149,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:1587
#: ../../enterprise/meta/include/functions_wizard_meta.php:1707
#: ../../enterprise/meta/include/functions_wizard_meta.php:1727
-#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016
+#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328
#: ../../enterprise/godmode/agentes/manage_config_remote.php:344
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120
@@ -4126,51 +4175,51 @@ msgstr ""
#: ../../update_manager_client/views/offline.php:80
#: ../../extensions/dbmanager.php:124
#: ../../godmode/modules/manage_network_components_form_wizard.php:384
-#: ../../godmode/groups/group_list.php:1099
-#: ../../godmode/users/configure_user.php:1013
-#: ../../godmode/users/configure_user.php:1974
+#: ../../godmode/groups/group_list.php:1111
+#: ../../godmode/users/configure_user.php:1061
+#: ../../godmode/users/configure_user.php:2026
#: ../../godmode/massive/massive_copy_modules.php:116
#: ../../godmode/massive/massive_copy_modules.php:276
#: ../../godmode/massive/massive_delete_modules.php:419
#: ../../godmode/massive/massive_delete_modules.php:440
-#: ../../godmode/massive/massive_edit_agents.php:1061
+#: ../../godmode/massive/massive_edit_agents.php:1078
#: ../../godmode/massive/massive_edit_modules.php:386
#: ../../godmode/massive/massive_edit_modules.php:472
#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3831
+#: ../../godmode/setup/setup_netflow.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3840
#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70
-#: ../../include/functions_reporting_html.php:2575
+#: ../../include/functions_reporting_html.php:2596
#: ../../include/functions.php:1091 ../../include/functions.php:1329
#: ../../include/functions.php:1332 ../../include/functions.php:1371
-#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341
-#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846
-#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425
+#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351
+#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:4856
+#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2912
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571
#: ../../include/functions_massive_operations.php:147
#: ../../include/class/SatelliteAgent.class.php:1337
#: ../../include/class/SatelliteAgent.class.php:1362
-#: ../../include/class/Diagnostics.class.php:1837
+#: ../../include/class/Diagnostics.class.php:1841
#: ../../include/class/AgentWizard.class.php:1401
#: ../../include/class/AgentWizard.class.php:4147
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:316
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:399
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:433
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:714
-#: ../../include/functions_events.php:3222 ../../index.php:1243
-#: ../../operation/tree.php:209 ../../operation/tree.php:299
-#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:402
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:437
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:707
+#: ../../include/functions_events.php:3227 ../../index.php:1244
+#: ../../operation/tree.php:209 ../../operation/tree.php:300
+#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305
#: ../../operation/agentes/estado_agente.php:274
-#: ../../operation/agentes/status_monitor.php:565
-#: ../../operation/agentes/group_view.php:245
-#: ../../operation/agentes/group_view.php:250
-#: ../../operation/agentes/estado_monitores.php:520
+#: ../../operation/agentes/status_monitor.php:564
+#: ../../operation/agentes/group_view.php:248
+#: ../../operation/agentes/group_view.php:253
+#: ../../operation/agentes/estado_monitores.php:517
#: ../../operation/agentes/tactical.php:198
-#: ../../operation/netflow/nf_live_view.php:339
-#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149
+#: ../../operation/netflow/nf_live_view.php:348
+#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158
msgid "Warning"
msgstr "Attention"
@@ -4189,15 +4238,15 @@ msgstr "icône"
#: ../../enterprise/views/ipam/sites/list.php:48
#: ../../enterprise/views/ipam/sites/edit.php:54
#: ../../godmode/modules/manage_nc_groups_form.php:73
-#: ../../godmode/groups/configure_group.php:206
-#: ../../godmode/groups/group_list.php:882
-#: ../../godmode/agentes/agent_manager.php:645
-#: ../../godmode/massive/massive_edit_agents.php:655
+#: ../../godmode/groups/configure_group.php:225
+#: ../../godmode/groups/group_list.php:883
+#: ../../godmode/agentes/agent_manager.php:649
+#: ../../godmode/massive/massive_edit_agents.php:672
#: ../../godmode/reporting/visual_console_builder.elements.php:124
-#: ../../include/functions_visual_map_editor.php:954
-#: ../../include/rest-api/models/VisualConsole/Item.php:2176
+#: ../../include/functions_visual_map_editor.php:1002
+#: ../../include/rest-api/models/VisualConsole/Item.php:2179
#: ../../operation/agentes/ver_agente.php:1236
-#: ../../operation/agentes/estado_generalagente.php:511
+#: ../../operation/agentes/estado_generalagente.php:482
msgid "Parent"
msgstr "Parent"
@@ -4223,9 +4272,9 @@ msgstr "Parent"
#: ../../enterprise/godmode/modules/configure_local_component.php:727
#: ../../enterprise/godmode/modules/configure_local_component.php:733
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152
#: ../../enterprise/godmode/policies/policy_external_alerts.php:637
#: ../../enterprise/godmode/policies/policy_agents.php:391
@@ -4246,12 +4295,12 @@ msgstr "Parent"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977
@@ -4344,8 +4393,8 @@ msgstr "Parent"
#: ../../enterprise/include/class/Omnishell.class.php:1062
#: ../../enterprise/include/class/Omnishell.class.php:1063
#: ../../enterprise/include/class/SAP.app.php:604
-#: ../../enterprise/include/class/SAP.app.php:818
#: ../../enterprise/include/class/SAP.app.php:819
+#: ../../enterprise/include/class/SAP.app.php:820
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:949
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059
@@ -4356,7 +4405,7 @@ msgstr "Parent"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594
#: ../../enterprise/operation/agentes/ver_agente.php:56
-#: ../../enterprise/operation/log/log_viewer.php:881
+#: ../../enterprise/operation/log/log_viewer.php:879
#: ../../enterprise/tools/ipam/ipam_network.php:622
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:565
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:748
@@ -4369,40 +4418,40 @@ msgstr "Parent"
#: ../../godmode/modules/manage_nc_groups_form.php:80
#: ../../godmode/modules/manage_network_components_form_plugin.php:41
#: ../../godmode/modules/manage_network_components_form_common.php:354
-#: ../../godmode/modules/manage_network_components_form_network.php:248
-#: ../../godmode/modules/manage_network_components_form.php:669
-#: ../../godmode/modules/manage_network_components_form.php:675
-#: ../../godmode/modules/manage_network_components_form.php:684
-#: ../../godmode/modules/manage_network_components_form.php:690
-#: ../../godmode/groups/configure_group.php:170
-#: ../../godmode/groups/configure_group.php:192
-#: ../../godmode/users/configure_user.php:1270
-#: ../../godmode/users/configure_user.php:1286
-#: ../../godmode/users/configure_user.php:1437
-#: ../../godmode/users/configure_user.php:1449
-#: ../../godmode/users/configure_user.php:1573
-#: ../../godmode/users/configure_user.php:1588
-#: ../../godmode/users/configure_user.php:1750
-#: ../../godmode/users/configure_user.php:1758
-#: ../../godmode/users/configure_user.php:1767
-#: ../../godmode/users/configure_user.php:1774
-#: ../../godmode/users/user_management.php:577
-#: ../../godmode/users/user_management.php:600
-#: ../../godmode/agentes/status_monitor_custom_fields.php:230
-#: ../../godmode/agentes/status_monitor_custom_fields.php:278
+#: ../../godmode/modules/manage_network_components_form_network.php:266
+#: ../../godmode/modules/manage_network_components_form.php:672
+#: ../../godmode/modules/manage_network_components_form.php:678
+#: ../../godmode/modules/manage_network_components_form.php:687
+#: ../../godmode/modules/manage_network_components_form.php:693
+#: ../../godmode/groups/configure_group.php:189
+#: ../../godmode/groups/configure_group.php:211
+#: ../../godmode/users/configure_user.php:1334
+#: ../../godmode/users/configure_user.php:1350
+#: ../../godmode/users/configure_user.php:1486
+#: ../../godmode/users/configure_user.php:1502
+#: ../../godmode/users/configure_user.php:1627
+#: ../../godmode/users/configure_user.php:1642
+#: ../../godmode/users/configure_user.php:1802
+#: ../../godmode/users/configure_user.php:1810
+#: ../../godmode/users/configure_user.php:1819
+#: ../../godmode/users/configure_user.php:1826
+#: ../../godmode/users/user_management.php:583
+#: ../../godmode/users/user_management.php:610
+#: ../../godmode/agentes/status_monitor_custom_fields.php:250
+#: ../../godmode/agentes/status_monitor_custom_fields.php:298
#: ../../godmode/agentes/module_manager_editor_plugin.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:181
-#: ../../godmode/agentes/module_manager_editor_network.php:514
+#: ../../godmode/agentes/module_manager_editor_network.php:182
+#: ../../godmode/agentes/module_manager_editor_network.php:519
#: ../../godmode/agentes/agent_manager.php:558
-#: ../../godmode/agentes/agent_manager.php:750
-#: ../../godmode/agentes/agent_manager.php:1008
-#: ../../godmode/agentes/module_manager_editor_common.php:766
-#: ../../godmode/agentes/module_manager_editor_common.php:1125
-#: ../../godmode/agentes/module_manager_editor_common.php:1360
-#: ../../godmode/agentes/module_manager_editor_common.php:1654
-#: ../../godmode/agentes/module_manager_editor_common.php:1661
-#: ../../godmode/agentes/module_manager_editor_common.php:1672
-#: ../../godmode/agentes/module_manager_editor_common.php:1680
+#: ../../godmode/agentes/agent_manager.php:754
+#: ../../godmode/agentes/agent_manager.php:1014
+#: ../../godmode/agentes/module_manager_editor_common.php:776
+#: ../../godmode/agentes/module_manager_editor_common.php:1135
+#: ../../godmode/agentes/module_manager_editor_common.php:1370
+#: ../../godmode/agentes/module_manager_editor_common.php:1664
+#: ../../godmode/agentes/module_manager_editor_common.php:1671
+#: ../../godmode/agentes/module_manager_editor_common.php:1682
+#: ../../godmode/agentes/module_manager_editor_common.php:1690
#: ../../godmode/snmpconsole/snmp_alert.php:40
#: ../../godmode/snmpconsole/snmp_alert.php:1781
#: ../../godmode/massive/massive_copy_modules.php:374
@@ -4419,13 +4468,13 @@ msgstr "Parent"
#: ../../godmode/massive/massive_delete_modules.php:835
#: ../../godmode/massive/massive_edit_users.php:338
#: ../../godmode/massive/massive_edit_users.php:399
-#: ../../godmode/massive/massive_edit_users.php:609
-#: ../../godmode/massive/massive_edit_users.php:617
-#: ../../godmode/massive/massive_edit_users.php:628
-#: ../../godmode/massive/massive_edit_users.php:636
+#: ../../godmode/massive/massive_edit_users.php:610
+#: ../../godmode/massive/massive_edit_users.php:618
+#: ../../godmode/massive/massive_edit_users.php:629
+#: ../../godmode/massive/massive_edit_users.php:637
#: ../../godmode/massive/massive_add_alerts.php:304
#: ../../godmode/massive/massive_edit_plugins.php:338
-#: ../../godmode/massive/massive_edit_agents.php:754
+#: ../../godmode/massive/massive_edit_agents.php:771
#: ../../godmode/massive/massive_delete_alerts.php:366
#: ../../godmode/massive/massive_add_action_alerts.php:342
#: ../../godmode/massive/massive_edit_modules.php:458
@@ -4452,23 +4501,23 @@ msgstr "Parent"
#: ../../godmode/alerts/configure_alert_template.php:730
#: ../../godmode/alerts/configure_alert_template.php:824
#: ../../godmode/setup/os.builder.php:51
-#: ../../godmode/setup/setup_visuals.php:611
-#: ../../godmode/setup/setup_visuals.php:651
-#: ../../godmode/setup/setup_visuals.php:1084
-#: ../../godmode/setup/setup_general.php:1051
-#: ../../godmode/setup/setup_general.php:1068
+#: ../../godmode/setup/setup_visuals.php:615
+#: ../../godmode/setup/setup_visuals.php:655
+#: ../../godmode/setup/setup_visuals.php:1088
#: ../../godmode/setup/setup_general.php:1077
#: ../../godmode/setup/setup_general.php:1094
+#: ../../godmode/setup/setup_general.php:1103
+#: ../../godmode/setup/setup_general.php:1120
#: ../../godmode/reporting/create_container.php:572
-#: ../../godmode/reporting/graph_builder.graph_editor.php:373
-#: ../../godmode/reporting/reporting_builder.item_editor.php:209
-#: ../../godmode/reporting/reporting_builder.item_editor.php:991
+#: ../../godmode/reporting/graph_builder.graph_editor.php:296
+#: ../../godmode/reporting/reporting_builder.item_editor.php:210
+#: ../../godmode/reporting/reporting_builder.item_editor.php:993
#: ../../godmode/reporting/reporting_builder.item_editor.php:2175
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2248
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2269
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2301
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3232
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3393
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2257
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2278
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2310
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3241
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3402
#: ../../godmode/reporting/visual_console_builder.elements.php:525
#: ../../godmode/reporting/visual_console_builder.elements.php:676
#: ../../godmode/reporting/visual_console_builder.elements.php:686
@@ -4482,25 +4531,25 @@ msgstr "Parent"
#: ../../godmode/reporting/visual_console_builder.wizard.php:783
#: ../../godmode/reporting/visual_console_builder.wizard.php:793
#: ../../godmode/reporting/visual_console_builder.wizard.php:825
-#: ../../godmode/events/event_edit_filter.php:977
+#: ../../godmode/events/event_edit_filter.php:979
#: ../../godmode/events/custom_events.php:210
#: ../../godmode/events/custom_events.php:258
-#: ../../godmode/wizards/HostDevices.class.php:1119
-#: ../../mobile/operation/events.php:930
-#: ../../include/functions_visual_map_editor.php:404
-#: ../../include/functions_visual_map_editor.php:406
-#: ../../include/functions_visual_map_editor.php:622
-#: ../../include/functions_visual_map_editor.php:955
-#: ../../include/functions_visual_map_editor.php:1008
-#: ../../include/functions_visual_map_editor.php:1070
+#: ../../godmode/wizards/HostDevices.class.php:1115
+#: ../../mobile/operation/events.php:974
+#: ../../include/functions_visual_map_editor.php:398
+#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_visual_map_editor.php:616
+#: ../../include/functions_visual_map_editor.php:1003
+#: ../../include/functions_visual_map_editor.php:1056
+#: ../../include/functions_visual_map_editor.php:1122
#: ../../include/functions.php:1129 ../../include/functions_cron.php:680
#: ../../include/functions_networkmap.php:1524
#: ../../include/ajax/audit_log.php:156
#: ../../include/ajax/planned_downtime.ajax.php:85
-#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614
+#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643
#: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838
#: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987
-#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589
+#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590
#: ../../include/functions_integriaims.php:135
#: ../../include/functions_profile.php:349
#: ../../include/functions_profile.php:367
@@ -4510,24 +4559,24 @@ msgstr "Parent"
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634
-#: ../../include/rest-api/models/VisualConsole/Item.php:2088
-#: ../../include/rest-api/models/VisualConsole/Item.php:2207
-#: ../../include/rest-api/models/VisualConsole/Item.php:2325
-#: ../../include/rest-api/models/VisualConsole/Item.php:2447
+#: ../../include/rest-api/models/VisualConsole/Item.php:2091
+#: ../../include/rest-api/models/VisualConsole/Item.php:2210
+#: ../../include/rest-api/models/VisualConsole/Item.php:2328
+#: ../../include/rest-api/models/VisualConsole/Item.php:2450
#: ../../include/functions_html.php:397 ../../include/functions_html.php:848
-#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323
-#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371
-#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472
-#: ../../include/functions_html.php:6508
-#: ../../include/class/NetworkMap.class.php:2934
-#: ../../include/class/NetworkMap.class.php:3203
-#: ../../include/class/NetworkMap.class.php:3226
-#: ../../include/class/NetworkMap.class.php:3299
-#: ../../include/class/NetworkMap.class.php:3309
-#: ../../include/class/NetworkMap.class.php:3420
-#: ../../include/class/NetworkMap.class.php:3441
+#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328
+#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376
+#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477
+#: ../../include/functions_html.php:6536
+#: ../../include/class/NetworkMap.class.php:2940
+#: ../../include/class/NetworkMap.class.php:3209
+#: ../../include/class/NetworkMap.class.php:3232
+#: ../../include/class/NetworkMap.class.php:3305
+#: ../../include/class/NetworkMap.class.php:3315
+#: ../../include/class/NetworkMap.class.php:3426
+#: ../../include/class/NetworkMap.class.php:3447
#: ../../include/class/SnmpConsole.class.php:314
-#: ../../include/class/SnmpConsole.class.php:1375
+#: ../../include/class/SnmpConsole.class.php:1377
#: ../../include/class/AgentWizard.class.php:729
#: ../../include/class/AgentWizard.class.php:785
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:369
@@ -4539,6 +4588,8 @@ msgstr "Parent"
#: ../../include/lib/Dashboard/Widgets/network_map.php:365
#: ../../include/lib/Dashboard/Widgets/events_list.php:312
#: ../../include/lib/Dashboard/Widgets/events_list.php:470
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413
#: ../../include/lib/Dashboard/Widgets/module_icon.php:388
#: ../../include/lib/Dashboard/Widgets/module_value.php:363
#: ../../include/lib/Dashboard/Widgets/module_table_value.php:336
@@ -4554,29 +4605,28 @@ msgstr "Parent"
#: ../../include/lib/Dashboard/Widgets/single_graph.php:352
#: ../../include/lib/Dashboard/Widgets/reports.php:552
#: ../../include/lib/Dashboard/Widgets/top_n.php:241
-#: ../../include/functions_events.php:3501
-#: ../../operation/users/user_edit.php:520
-#: ../../operation/users/user_edit.php:532
-#: ../../operation/users/user_edit.php:581
-#: ../../operation/users/user_edit.php:616
-#: ../../operation/users/user_edit.php:631
-#: ../../operation/users/user_edit.php:1081
-#: ../../operation/users/user_edit.php:1088
-#: ../../operation/users/user_edit.php:1097
-#: ../../operation/users/user_edit.php:1104
+#: ../../include/functions_events.php:3506
+#: ../../operation/users/user_edit.php:525
+#: ../../operation/users/user_edit.php:578
+#: ../../operation/users/user_edit.php:613
+#: ../../operation/users/user_edit.php:628
+#: ../../operation/users/user_edit.php:1078
+#: ../../operation/users/user_edit.php:1085
+#: ../../operation/users/user_edit.php:1094
+#: ../../operation/users/user_edit.php:1101
#: ../../operation/agentes/pandora_networkmap.editor.php:488
#: ../../operation/agentes/pandora_networkmap.view.php:227
#: ../../operation/agentes/ver_agente.php:1182
#: ../../operation/agentes/ver_agente.php:1238
#: ../../operation/agentes/ver_agente.php:1253
-#: ../../operation/snmpconsole/snmp_browser.php:383
-#: ../../operation/snmpconsole/snmp_browser.php:398
-#: ../../operation/snmpconsole/snmp_browser.php:408
-#: ../../operation/snmpconsole/snmp_browser.php:527
+#: ../../operation/snmpconsole/snmp_browser.php:388
+#: ../../operation/snmpconsole/snmp_browser.php:403
+#: ../../operation/snmpconsole/snmp_browser.php:413
+#: ../../operation/snmpconsole/snmp_browser.php:532
#: ../../operation/gis_maps/render_view.php:164
#: ../../operation/incidents/list_integriaims_incidents.php:601
#: ../../operation/incidents/list_integriaims_incidents.php:605
-#: ../../operation/events/events.php:2647
+#: ../../operation/events/events.php:2701
msgid "None"
msgstr "Aucun"
@@ -4584,12 +4634,21 @@ msgstr "Aucun"
msgid "Create visualmap"
msgstr "Créer une carte visuelle"
-#: ../../enterprise/meta/advanced/servers.build_table.php:34
+#: ../../enterprise/meta/advanced/servers.build_table.php:33
+#: ../../godmode/servers/modificar_server.php:63
+#: ../../godmode/servers/modificar_server.php:223
+#: ../../godmode/servers/modificar_server.php:242
+#: ../../godmode/servers/modificar_server.php:284
+#, php-format
+msgid "%s servers"
+msgstr "Serveurs %s"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:50
#: ../../godmode/servers/servers.build_table.php:52
msgid "There are no servers configured into the database"
msgstr "Aucun serveur configuré dans la base de données"
-#: ../../enterprise/meta/advanced/servers.build_table.php:65
+#: ../../enterprise/meta/advanced/servers.build_table.php:81
#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647
@@ -4600,7 +4659,7 @@ msgstr "Aucun serveur configuré dans la base de données"
#: ../../enterprise/meta/include/functions_wizard_meta.php:406
#: ../../enterprise/meta/include/functions_wizard_meta.php:1821
#: ../../enterprise/meta/agentsearch.php:138
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135
#: ../../enterprise/godmode/policies/policy_modules.php:459
#: ../../enterprise/godmode/policies/policy_modules.php:472
#: ../../enterprise/godmode/policies/policies.php:581
@@ -4616,10 +4675,10 @@ msgstr "Aucun serveur configuré dans la base de données"
#: ../../enterprise/operation/services/massive/services.create.php:986
#: ../../enterprise/operation/services/massive/service.create.elements.php:380
#: ../../enterprise/operation/services/services.service_map.php:153
-#: ../../extensions/agents_modules.php:841
+#: ../../extensions/agents_modules.php:865
#: ../../godmode/agentes/configurar_agente.php:423
#: ../../godmode/agentes/configurar_agente.php:735
-#: ../../godmode/agentes/modificar_agente.php:820
+#: ../../godmode/agentes/modificar_agente.php:832
#: ../../godmode/agentes/planned_downtime.list.php:85
#: ../../godmode/agentes/planned_downtime.list.php:116
#: ../../godmode/agentes/planned_downtime.editor.php:1360
@@ -4632,12 +4691,12 @@ msgstr "Aucun serveur configuré dans la base de données"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1946
#: ../../godmode/reporting/reporting_builder.item_editor.php:2167
#: ../../godmode/reporting/visual_console_builder.wizard.php:447
-#: ../../godmode/servers/servers.build_table.php:81
-#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409
+#: ../../godmode/servers/servers.build_table.php:83
+#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410
#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88
-#: ../../mobile/operation/agent.php:327
-#: ../../include/functions_reporting_html.php:2094
-#: ../../include/functions_reporting_html.php:5662
+#: ../../mobile/operation/agent.php:330
+#: ../../include/functions_reporting_html.php:2115
+#: ../../include/functions_reporting_html.php:5690
#: ../../include/functions_reports.php:745
#: ../../include/functions_reports.php:749
#: ../../include/functions_reports.php:753
@@ -4646,53 +4705,53 @@ msgstr "Aucun serveur configuré dans la base de données"
#: ../../include/functions_reports.php:765
#: ../../include/functions_reports.php:769
#: ../../include/functions_reports.php:773
-#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745
-#: ../../include/functions_html.php:5982
+#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1755
+#: ../../include/functions_html.php:6006
#: ../../include/class/AgentsAlerts.class.php:253
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:414
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:420
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:432
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:344
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:424
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:430
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:445
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:347
#: ../../operation/search_agents.php:55 ../../operation/tree.php:115
#: ../../operation/search_results.php:159
-#: ../../operation/agentes/estado_agente.php:1046
+#: ../../operation/agentes/estado_agente.php:1054
#: ../../operation/agentes/graphs.php:203
#: ../../operation/agentes/exportdata.php:354
#: ../../operation/agentes/group_view.php:185
-#: ../../operation/agentes/group_view.php:235
+#: ../../operation/agentes/group_view.php:238
msgid "Modules"
msgstr "Modules"
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-#: ../../godmode/servers/servers.build_table.php:82
+#: ../../enterprise/meta/advanced/servers.build_table.php:82
+#: ../../godmode/servers/servers.build_table.php:84
msgid "Lag"
msgstr "Retard"
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-#: ../../godmode/servers/servers.build_table.php:82
+#: ../../enterprise/meta/advanced/servers.build_table.php:82
+#: ../../godmode/servers/servers.build_table.php:84
msgid "Avg. Delay(sec)/Modules delayed"
msgstr "Retard moyen(sec)/Modules retardés"
-#: ../../enterprise/meta/advanced/servers.build_table.php:67
-#: ../../godmode/servers/servers.build_table.php:83
+#: ../../enterprise/meta/advanced/servers.build_table.php:83
+#: ../../godmode/servers/servers.build_table.php:85
msgid "T/Q"
msgstr "T/Q"
-#: ../../enterprise/meta/advanced/servers.build_table.php:67
-#: ../../godmode/servers/servers.build_table.php:83
+#: ../../enterprise/meta/advanced/servers.build_table.php:83
+#: ../../godmode/servers/servers.build_table.php:85
msgid "Threads / Queued modules currently"
msgstr "Threads/Modules en attente"
-#: ../../enterprise/meta/advanced/servers.build_table.php:69
+#: ../../enterprise/meta/advanced/servers.build_table.php:85
#: ../../enterprise/include/class/DatabaseHA.class.php:800
#: ../../enterprise/tools/ipam/ipam_ajax.php:497
#: ../../godmode/agentes/agent_incidents.php:92
-#: ../../godmode/servers/servers.build_table.php:85
+#: ../../godmode/servers/servers.build_table.php:87
#: ../../operation/incidents/integriaims_export_csv.php:86
msgid "Updated"
msgstr "Mis à jour"
-#: ../../enterprise/meta/advanced/servers.build_table.php:73
+#: ../../enterprise/meta/advanced/servers.build_table.php:89
#: ../../enterprise/meta/include/functions_autoprovision.php:701
#: ../../enterprise/godmode/modules/local_components.php:648
#: ../../enterprise/godmode/policies/policy_alerts.php:368
@@ -4701,46 +4760,53 @@ msgstr "Mis à jour"
#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
#: ../../godmode/users/profile_list.php:359
#: ../../godmode/alerts/alert_list.list.php:572
-#: ../../godmode/alerts/alert_templates.php:413
+#: ../../godmode/alerts/alert_templates.php:417
#: ../../godmode/reporting/reporting_builder.list_items.php:429
#: ../../godmode/reporting/graphs.php:375
#: ../../godmode/reporting/reporting_builder.php:931
#: ../../godmode/reporting/reporting_builder.php:1151
-#: ../../godmode/servers/servers.build_table.php:89
-#: ../../godmode/servers/plugin.php:996 ../../include/functions_container.php:157
+#: ../../godmode/servers/servers.build_table.php:91
+#: ../../include/functions_container.php:157
#: ../../operation/gis_maps/gis_map.php:122
msgid "Op."
msgstr "Op."
-#: ../../enterprise/meta/advanced/servers.build_table.php:92
-#: ../../godmode/servers/servers.build_table.php:138
+#: ../../enterprise/meta/advanced/servers.build_table.php:116
+#: ../../godmode/servers/servers.build_table.php:140
msgid "This is a master server"
msgstr "Ceci est un serveur principal"
-#: ../../enterprise/meta/advanced/servers.build_table.php:107
-#: ../../enterprise/meta/advanced/servers.build_table.php:113
-#: ../../godmode/servers/servers.build_table.php:157
-#: ../../godmode/servers/servers.build_table.php:163
+#: ../../enterprise/meta/advanced/servers.build_table.php:131
+#: ../../enterprise/meta/advanced/servers.build_table.php:137
+#: ../../godmode/servers/servers.build_table.php:159
+#: ../../godmode/servers/servers.build_table.php:165
msgid "of"
msgstr "de"
-#: ../../enterprise/meta/advanced/servers.build_table.php:143
-#: ../../godmode/servers/servers.build_table.php:274
+#: ../../enterprise/meta/advanced/servers.build_table.php:170
+#: ../../godmode/servers/servers.build_table.php:262
+msgid "Manage server conf"
+msgstr "Gérer la configuration du serveur"
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:186
+#: ../../godmode/servers/servers.build_table.php:287
msgid "Modules run by this server will stop working. Do you want to continue?"
msgstr ""
"Les modules sur ce serveur cesseront de fonctionner. Voulez-vous continuer ?"
-#: ../../enterprise/meta/advanced/servers.build_table.php:170
-#: ../../godmode/servers/servers.build_table.php:301
+#: ../../enterprise/meta/advanced/servers.build_table.php:213
+#: ../../godmode/servers/servers.build_table.php:314
msgid "Tactical server information"
msgstr "Information tactique du serveur"
-#: ../../enterprise/meta/advanced/servers.build_table.php:180
+#: ../../enterprise/meta/advanced/servers.build_table.php:223
+#: ../../godmode/servers/servers.build_table.php:327
#: ../../include/help/clippy/server_queued_modules.php:35
msgid "Excesive Queued."
msgstr "File d'attente de modules excessive"
-#: ../../enterprise/meta/advanced/servers.build_table.php:181
+#: ../../enterprise/meta/advanced/servers.build_table.php:224
+#: ../../godmode/servers/servers.build_table.php:328
msgid ""
"You have too many items in the processing queue. This can happen if your "
"server is overloaded and/or improperly configured. This could be something "
@@ -4753,7 +4819,7 @@ msgstr ""
"associé à un retard de supervision, avec des modules qui deviennent inconnus, "
"essayez d’augmenter le nombre de threads."
-#: ../../enterprise/meta/advanced/servers.build_table.php:182
+#: ../../enterprise/meta/advanced/servers.build_table.php:225
#: ../../enterprise/meta/advanced/cron_main.php:408
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163
@@ -4761,39 +4827,41 @@ msgstr ""
#: ../../enterprise/godmode/wizards/consoletask_js.php:47
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416
-#: ../../enterprise/operation/log/log_viewer.php:1201
-#: ../../enterprise/operation/log/log_viewer.php:1216
+#: ../../enterprise/operation/log/log_viewer.php:1199
+#: ../../enterprise/operation/log/log_viewer.php:1214
#: ../../enterprise/operation/services/services.treeview_services.php:416
#: ../../extensions/insert_data.php:285
-#: ../../godmode/agentes/planned_downtime.editor.php:2017
+#: ../../godmode/agentes/planned_downtime.editor.php:2013
#: ../../godmode/alerts/configure_alert_template.php:1512
#: ../../godmode/alerts/configure_alert_template.php:1596
-#: ../../godmode/setup/news.php:437
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5168
+#: ../../godmode/setup/news.php:436
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5177
#: ../../godmode/wizards/HostDevices.class.php:797
-#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749
-#: ../../include/functions_menu.php:941
+#: ../../godmode/servers/servers.build_table.php:329
+#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775
+#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323
#: ../../include/class/WelcomeWindow.class.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:743
-#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631
-#: ../../operation/agentes/stat_win.php:591
-#: ../../operation/agentes/interface_traffic_graph_win.php:442
-#: ../../operation/agentes/datos_agente.php:318
-#: ../../operation/agentes/estado_monitores.php:470
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:736
+#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633
+#: ../../operation/agentes/stat_win.php:607
+#: ../../operation/agentes/interface_traffic_graph_win.php:451
+#: ../../operation/agentes/datos_agente.php:320
+#: ../../operation/agentes/estado_monitores.php:467
#: ../../operation/network/network_report.php:463
#: ../../operation/network/network_usage_map.php:300
-#: ../../operation/netflow/nf_live_view.php:871
+#: ../../operation/netflow/nf_live_view.php:982
+#: ../../operation/search_modules.php:359
#: ../../operation/reporting/reporting_viewer.php:366
#: ../../operation/reporting/reporting_viewer.php:385
#: ../../operation/reporting/graph_viewer.php:472
-#: ../../operation/events/events.php:3229
+#: ../../operation/events/events.php:3288
msgid "Close"
msgstr "Fermer"
#: ../../enterprise/meta/advanced/massive_operations.php:55
#: ../../enterprise/meta/monitoring/wizard/wizard.php:71
#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64
-#: ../../general/node_deactivated.php:59
+#: ../../general/node_deactivated.php:64
msgid "command center"
msgstr "centre de commande"
@@ -4808,7 +4876,7 @@ msgstr ""
"Veuillez aller vers %s"
#: ../../enterprise/meta/advanced/component_management.php:35
-#: ../../include/functions_menu.php:614
+#: ../../include/functions_menu.php:618
msgid "Tags management"
msgstr "Gestion des étiquettes"
@@ -4825,7 +4893,7 @@ msgstr "Gestion du système d'exploitation"
#: ../../godmode/groups/configure_modu_group.php:43
#: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116
#: ../../godmode/reporting/reporting_builder.item_editor.php:86
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:343
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:346
#: ../../operation/tree.php:103
msgid "Module groups"
msgstr "Groupes de modules"
@@ -4869,56 +4937,56 @@ msgid "Successfully update"
msgstr "Mis à jour correctement"
#: ../../enterprise/meta/advanced/metasetup.visual.php:100
-#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137
+#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137
#: ../../godmode/setup/setup.php:285
msgid "Visual styles"
msgstr "Styles visuels"
#: ../../enterprise/meta/advanced/metasetup.visual.php:106
#: ../../enterprise/meta/include/functions_meta.php:1364
-#: ../../godmode/setup/setup_visuals.php:1757
-#: ../../include/functions_config.php:973
+#: ../../godmode/setup/setup_visuals.php:1772
+#: ../../include/functions_config.php:985
msgid "Date format string"
msgstr "Format de la date"
#: ../../enterprise/meta/advanced/metasetup.visual.php:108
#: ../../enterprise/tools/ipam/ipam_editor.php:147
-#: ../../godmode/setup/setup_visuals.php:1766
+#: ../../godmode/setup/setup_visuals.php:1781
msgid "Example"
msgstr "Exemple"
#: ../../enterprise/meta/advanced/metasetup.visual.php:138
-#: ../../godmode/setup/setup_visuals.php:1801
+#: ../../godmode/setup/setup_visuals.php:1816
msgid "Timestamp, time comparison, or compact mode"
msgstr "Horodatage, comparaison d’heure ou mode compact"
#: ../../enterprise/meta/advanced/metasetup.visual.php:140
-#: ../../godmode/setup/setup_visuals.php:1611
+#: ../../godmode/setup/setup_visuals.php:1626
msgid "Comparation in rollover"
msgstr "Date en comparaison"
#: ../../enterprise/meta/advanced/metasetup.visual.php:147
-#: ../../godmode/setup/setup_visuals.php:1618
+#: ../../godmode/setup/setup_visuals.php:1633
msgid "Timestamp in rollover"
msgstr "Horodatage littéral"
#: ../../enterprise/meta/advanced/metasetup.visual.php:154
-#: ../../godmode/setup/setup_visuals.php:1625
+#: ../../godmode/setup/setup_visuals.php:1640
msgid "Compact mode"
msgstr "Mode compact"
#: ../../enterprise/meta/advanced/metasetup.visual.php:164
-#: ../../include/functions_config.php:985
+#: ../../include/functions_config.php:997
msgid "Graph color #1"
msgstr "Couleur du graphique #1"
#: ../../enterprise/meta/advanced/metasetup.visual.php:175
-#: ../../include/functions_config.php:989
+#: ../../include/functions_config.php:1001
msgid "Graph color #2"
msgstr "Couleur du graphique #2"
#: ../../enterprise/meta/advanced/metasetup.visual.php:186
-#: ../../include/functions_config.php:993
+#: ../../include/functions_config.php:1005
msgid "Graph color #3"
msgstr "Couleur du graphique #3"
@@ -4932,10 +5000,10 @@ msgstr "La précision doit être un nombre entier entre 0 et 5"
#: ../../enterprise/meta/advanced/metasetup.visual.php:215
#: ../../enterprise/meta/include/functions_meta.php:1414
-#: ../../godmode/setup/setup_visuals.php:1256
+#: ../../godmode/setup/setup_visuals.php:1260
#: ../../godmode/reporting/visual_console_builder.elements.php:233
#: ../../godmode/reporting/visual_console_builder.wizard.php:288
-#: ../../include/functions_visual_map_editor.php:684
+#: ../../include/functions_visual_map_editor.php:734
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458
msgid "Percentile"
msgstr "Centile"
@@ -4946,46 +5014,46 @@ msgstr "Afficher le centile 95 dans les graphiques"
#: ../../enterprise/meta/advanced/metasetup.visual.php:231
#: ../../enterprise/meta/include/functions_meta.php:1499
-#: ../../godmode/setup/setup_visuals.php:1160
-#: ../../include/functions_config.php:1025
+#: ../../godmode/setup/setup_visuals.php:1164
+#: ../../include/functions_config.php:1037
msgid "Value to interface graphics"
msgstr "Valeur pour l'interface graphique"
#: ../../enterprise/meta/advanced/metasetup.visual.php:247
#: ../../enterprise/meta/include/functions_meta.php:1512
-#: ../../godmode/users/configure_user.php:1380
-#: ../../godmode/users/user_management.php:583
+#: ../../godmode/users/configure_user.php:1429
+#: ../../godmode/users/user_management.php:589
#: ../../godmode/massive/massive_edit_users.php:263
-#: ../../godmode/setup/setup_visuals.php:92
-#: ../../godmode/events/event_edit_filter.php:457
-#: ../../include/functions_config.php:1042
+#: ../../godmode/setup/setup_visuals.php:96
+#: ../../godmode/events/event_edit_filter.php:459
+#: ../../include/functions_config.php:1054
#: ../../operation/users/user_edit.php:420
msgid "Block size for pagination"
msgstr "Longueur de bloc pour la mise en page"
#: ../../enterprise/meta/advanced/metasetup.visual.php:263
#: ../../enterprise/meta/include/functions_meta.php:1428
-#: ../../godmode/setup/setup_visuals.php:1185
+#: ../../godmode/setup/setup_visuals.php:1189
msgid "Number of elements in Custom Graph"
msgstr "Nombre d'éléments dans le Graphique personnalisé"
#: ../../enterprise/meta/advanced/metasetup.visual.php:278
#: ../../enterprise/meta/include/functions_meta.php:1522
-#: ../../godmode/setup/setup_visuals.php:1199
-#: ../../include/functions_config.php:1046
+#: ../../godmode/setup/setup_visuals.php:1203
+#: ../../include/functions_config.php:1058
msgid "Use round corners"
msgstr "Utiliser des coins arrondis"
#: ../../enterprise/meta/advanced/metasetup.visual.php:288
#: ../../enterprise/meta/include/functions_meta.php:1533
-#: ../../godmode/setup/setup_visuals.php:1210
-#: ../../include/functions_config.php:1050
+#: ../../godmode/setup/setup_visuals.php:1214
+#: ../../include/functions_config.php:1062
msgid "Chart fit to content"
msgstr "Table adapté au contenu"
#: ../../enterprise/meta/advanced/metasetup.visual.php:298
#: ../../enterprise/meta/include/functions_meta.php:1544
-#: ../../include/functions_config.php:1278
+#: ../../include/functions_config.php:1294
msgid "Disable help"
msgstr "Désactiver l'aide"
@@ -5012,10 +5080,10 @@ msgstr "Désactiver l'aide"
#: ../../enterprise/godmode/modules/local_components.php:555
#: ../../enterprise/godmode/modules/local_components.php:588
#: ../../enterprise/godmode/agentes/collections.data.php:485
-#: ../../enterprise/godmode/policies/policy_queue.php:292
-#: ../../enterprise/godmode/policies/policy_queue.php:304
-#: ../../enterprise/godmode/policies/policy_queue.php:329
-#: ../../enterprise/godmode/policies/policy_queue.php:732
+#: ../../enterprise/godmode/policies/policy_queue.php:294
+#: ../../enterprise/godmode/policies/policy_queue.php:306
+#: ../../enterprise/godmode/policies/policy_queue.php:331
+#: ../../enterprise/godmode/policies/policy_queue.php:734
#: ../../enterprise/godmode/policies/policy_external_alerts.php:383
#: ../../enterprise/godmode/policies/policy_agents.php:453
#: ../../enterprise/godmode/policies/policy_agents.php:588
@@ -5052,15 +5120,15 @@ msgstr "Désactiver l'aide"
#: ../../enterprise/operation/agentes/tag_view.php:316
#: ../../enterprise/operation/agentes/tag_view.php:328
#: ../../enterprise/operation/agentes/tag_view.php:430
-#: ../../enterprise/operation/log/log_viewer.php:755
-#: ../../enterprise/operation/log/log_viewer.php:776
-#: ../../enterprise/operation/log/log_viewer.php:830
+#: ../../enterprise/operation/log/log_viewer.php:753
+#: ../../enterprise/operation/log/log_viewer.php:774
+#: ../../enterprise/operation/log/log_viewer.php:828
#: ../../enterprise/operation/snmpconsole/snmp_view.php:33
#: ../../extensions/resource_registration.php:1137
-#: ../../extensions/agents_modules.php:454
+#: ../../extensions/agents_modules.php:462
#: ../../extensions/files_repo/files_repo_form.php:44
#: ../../godmode/modules/manage_network_templates_form.php:303
-#: ../../godmode/modules/manage_network_components.php:665
+#: ../../godmode/modules/manage_network_components.php:668
#: ../../godmode/massive/massive_copy_modules.php:127
#: ../../godmode/massive/massive_copy_modules.php:287
#: ../../godmode/massive/massive_delete_modules.php:327
@@ -5075,11 +5143,11 @@ msgstr "Désactiver l'aide"
#: ../../godmode/alerts/alert_list.list.php:152
#: ../../godmode/alerts/alert_list.list.php:169
#: ../../godmode/alerts/alert_list.list.php:201
-#: ../../godmode/alerts/alert_templates.php:313
+#: ../../godmode/alerts/alert_templates.php:317
#: ../../godmode/alerts/alert_list.php:553
#: ../../godmode/alerts/alert_list.php:574
#: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238
-#: ../../godmode/setup/setup_visuals.php:1085
+#: ../../godmode/setup/setup_visuals.php:1089
#: ../../godmode/reporting/reporting_builder.list_items.php:217
#: ../../godmode/reporting/reporting_builder.list_items.php:234
#: ../../godmode/reporting/reporting_builder.list_items.php:251
@@ -5087,28 +5155,28 @@ msgstr "Désactiver l'aide"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1710
#: ../../godmode/reporting/reporting_builder.item_editor.php:1728
#: ../../godmode/reporting/reporting_builder.item_editor.php:2153
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3007
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3685
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3766
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3788
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3846
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3016
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3043
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3694
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3775
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3797
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3855
#: ../../godmode/reporting/visual_console_builder.wizard.php:359
-#: ../../godmode/events/event_edit_filter.php:358
-#: ../../godmode/events/event_edit_filter.php:378
-#: ../../godmode/events/event_edit_filter.php:762
+#: ../../godmode/events/event_edit_filter.php:360
+#: ../../godmode/events/event_edit_filter.php:380
+#: ../../godmode/events/event_edit_filter.php:764
#: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68
#: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304
#: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72
-#: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984
-#: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489
+#: ../../mobile/operation/events.php:1018 ../../mobile/operation/events.php:1028
+#: ../../mobile/operation/events.php:1585 ../../mobile/operation/events.php:1614
#: ../../include/functions.php:1127 ../../include/functions.php:1387
-#: ../../include/ajax/events.php:521 ../../include/functions_groupview.php:96
+#: ../../include/ajax/events.php:522 ../../include/functions_groupview.php:96
#: ../../include/functions_modules.php:3604
#: ../../include/functions_modules.php:3606 ../../include/functions_users.php:428
#: ../../include/functions_users.php:686
#: ../../include/functions_notifications.php:105
-#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606
+#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614
#: ../../include/functions_massive_operations.php:158
#: ../../include/functions_massive_operations.php:172
#: ../../include/class/EventSound.class.php:347
@@ -5118,23 +5186,23 @@ msgstr "Désactiver l'aide"
#: ../../include/class/SnmpConsole.class.php:308
#: ../../include/class/AuditLog.class.php:232
#: ../../include/class/AuditLog.class.php:242
-#: ../../include/class/TipsWindow.class.php:719
-#: ../../include/class/TipsWindow.class.php:886
-#: ../../include/functions_reporting.php:3343
-#: ../../include/functions_reporting.php:3440
+#: ../../include/class/TipsWindow.class.php:739
+#: ../../include/class/TipsWindow.class.php:906
+#: ../../include/functions_reporting.php:3352
+#: ../../include/functions_reporting.php:3449
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:422
#: ../../include/lib/Dashboard/Widgets/events_list.php:412
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:397
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:431
-#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1959
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:400
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:435
+#: ../../include/functions_groups.php:671 ../../include/functions_groups.php:1984
#: ../../operation/heatmap.php:122 ../../operation/tree.php:205
-#: ../../operation/tree.php:296 ../../operation/agentes/estado_agente.php:330
-#: ../../operation/agentes/status_monitor.php:599
-#: ../../operation/agentes/status_monitor.php:680
-#: ../../operation/agentes/status_monitor.php:977
-#: ../../operation/agentes/estado_monitores.php:515
-#: ../../operation/agentes/estado_monitores.php:536
-#: ../../operation/agentes/agent_inventory.php:122
+#: ../../operation/tree.php:297 ../../operation/agentes/estado_agente.php:330
+#: ../../operation/agentes/status_monitor.php:598
+#: ../../operation/agentes/status_monitor.php:679
+#: ../../operation/agentes/status_monitor.php:979
+#: ../../operation/agentes/estado_monitores.php:512
+#: ../../operation/agentes/estado_monitores.php:533
+#: ../../operation/agentes/agent_inventory.php:124
#: ../../operation/agentes/alerts_status.functions.php:98
#: ../../operation/agentes/alerts_status.functions.php:134
#: ../../operation/agentes/alerts_status.functions.php:165
@@ -5145,24 +5213,24 @@ msgstr "Désactiver l'aide"
#: ../../operation/incidents/list_integriaims_incidents.php:407
#: ../../operation/inventory/inventory.php:78
#: ../../operation/inventory/inventory.php:79
-#: ../../operation/inventory/inventory.php:319
-#: ../../operation/inventory/inventory.php:320
-#: ../../operation/inventory/inventory.php:496
-#: ../../operation/inventory/inventory.php:529
-#: ../../operation/inventory/inventory.php:564
-#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745
-#: ../../operation/events/events.php:1839 ../../operation/events/events.php:2039
+#: ../../operation/inventory/inventory.php:321
+#: ../../operation/inventory/inventory.php:322
+#: ../../operation/inventory/inventory.php:498
+#: ../../operation/inventory/inventory.php:531
+#: ../../operation/inventory/inventory.php:566
+#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799
+#: ../../operation/events/events.php:1893 ../../operation/events/events.php:2093
#: ../../general/subselect_data_module.php:62
msgid "All"
msgstr "Tout"
#: ../../enterprise/meta/advanced/metasetup.visual.php:310
-#: ../../godmode/setup/setup_visuals.php:1086
+#: ../../godmode/setup/setup_visuals.php:1090
msgid "On Boolean graphs"
msgstr "Sur les graphiques booléens"
#: ../../enterprise/meta/advanced/metasetup.visual.php:313
-#: ../../godmode/setup/setup_visuals.php:1268
+#: ../../godmode/setup/setup_visuals.php:1272
msgid "Graph TIP view"
msgstr "Vue Graphique TIP"
@@ -5171,17 +5239,17 @@ msgid "This option may cause performance issues"
msgstr "Cette option peut entraîner des problèmes de performances"
#: ../../enterprise/meta/advanced/metasetup.visual.php:328
-#: ../../godmode/setup/setup_visuals.php:1089
+#: ../../godmode/setup/setup_visuals.php:1093
msgid "Show only average by default"
msgstr "Afficher uniquement la moyenne par défaut"
#: ../../enterprise/meta/advanced/metasetup.visual.php:329
-#: ../../godmode/setup/setup_visuals.php:1090
+#: ../../godmode/setup/setup_visuals.php:1094
msgid "Show MAX/AVG/MIN by default"
msgstr "Afficher MAX/MOY/MIN par défaut"
#: ../../enterprise/meta/advanced/metasetup.visual.php:332
-#: ../../godmode/setup/setup_visuals.php:1284
+#: ../../godmode/setup/setup_visuals.php:1288
msgid "Graph mode"
msgstr "Mode du graphique"
@@ -5190,16 +5258,16 @@ msgid "Zoom graphs:"
msgstr "Graphiques de zoom :"
#: ../../enterprise/meta/advanced/metasetup.visual.php:369
-#: ../../godmode/setup/setup_visuals.php:1220
+#: ../../godmode/setup/setup_visuals.php:1224
msgid "Type of module charts"
msgstr "Type de graphiques de module"
#: ../../enterprise/meta/advanced/metasetup.visual.php:371
#: ../../enterprise/godmode/reporting/graph_template_editor.php:260
-#: ../../godmode/setup/setup_visuals.php:1227
+#: ../../godmode/setup/setup_visuals.php:1231
#: ../../godmode/reporting/create_container.php:430
#: ../../godmode/reporting/graph_builder.main.php:208
-#: ../../include/functions_visual_map_editor.php:558
+#: ../../include/functions_visual_map_editor.php:552
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:352
#: ../../operation/agentes/graphs.php:251 ../../operation/agentes/graphs.php:258
@@ -5210,16 +5278,16 @@ msgstr "Zone"
#: ../../enterprise/meta/advanced/metasetup.visual.php:378
#: ../../enterprise/godmode/reporting/graph_template_editor.php:262
-#: ../../godmode/setup/setup_visuals.php:1239
+#: ../../godmode/setup/setup_visuals.php:1243
#: ../../godmode/reporting/create_container.php:431
#: ../../godmode/reporting/visual_console_builder.elements.php:365
#: ../../godmode/reporting/graph_builder.main.php:210
#: ../../include/functions_visual_map_editor.php:72
-#: ../../include/functions_visual_map_editor.php:557
-#: ../../include/functions_visual_map_editor.php:1397
+#: ../../include/functions_visual_map_editor.php:551
+#: ../../include/functions_visual_map_editor.php:1455
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:354
-#: ../../operation/visual_console/view.php:381
+#: ../../operation/visual_console/view.php:383
#: ../../operation/agentes/graphs.php:253 ../../operation/agentes/graphs.php:259
#: ../../operation/agentes/graphs.php:451 ../../operation/agentes/graphs.php:465
#: ../../operation/reporting/graph_viewer.php:356
@@ -5238,33 +5306,33 @@ msgstr "Nombre d'éléments récupérés pour chaque instance dans certaines vue
#: ../../enterprise/meta/advanced/metasetup.visual.php:401
#: ../../enterprise/meta/advanced/metasetup.visual.php:919
#: ../../enterprise/meta/advanced/metasetup.visual.php:920
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480
#: ../../enterprise/include/ajax/log_viewer.ajax.php:282
#: ../../godmode/snmpconsole/snmp_alert.php:1608
-#: ../../godmode/setup/setup_visuals.php:1319
-#: ../../godmode/setup/setup_visuals.php:1320
-#: ../../godmode/setup/setup_visuals.php:1898
-#: ../../include/functions_visual_map_editor.php:1221
-#: ../../include/functions_visual_map_editor.php:1222
+#: ../../godmode/setup/setup_visuals.php:1323
+#: ../../godmode/setup/setup_visuals.php:1324
+#: ../../godmode/setup/setup_visuals.php:1913
+#: ../../include/functions_visual_map_editor.php:1279
+#: ../../include/functions_visual_map_editor.php:1280
#: ../../include/functions.php:509 ../../include/functions.php:640
-#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353
-#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355
-#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360
-#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362
-#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364
-#: ../../include/functions_html.php:2135
-#: ../../operation/events/sound_events.php:199
-#: ../../operation/events/sound_events.php:200
-#: ../../operation/events/sound_events.php:201
-#: ../../operation/events/sound_events.php:202
-#: ../../operation/events/sound_events.php:206
-#: ../../operation/events/sound_events.php:207
-#: ../../operation/events/sound_events.php:208
-#: ../../operation/events/sound_events.php:209
-#: ../../operation/events/sound_events.php:210
-#: ../../operation/events/sound_events.php:211
+#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354
+#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356
+#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361
+#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363
+#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365
+#: ../../include/functions_html.php:2143
+#: ../../operation/events/sound_events.php:229
+#: ../../operation/events/sound_events.php:230
+#: ../../operation/events/sound_events.php:231
+#: ../../operation/events/sound_events.php:232
+#: ../../operation/events/sound_events.php:236
+#: ../../operation/events/sound_events.php:237
+#: ../../operation/events/sound_events.php:238
+#: ../../operation/events/sound_events.php:239
+#: ../../operation/events/sound_events.php:240
+#: ../../operation/events/sound_events.php:241
msgid "seconds"
msgstr "secondes"
@@ -5274,45 +5342,45 @@ msgstr "secondes"
#: ../../enterprise/meta/advanced/metasetup.visual.php:923
#: ../../enterprise/meta/advanced/metasetup.visual.php:924
#: ../../enterprise/include/ajax/log_viewer.ajax.php:284
-#: ../../godmode/setup/setup_visuals.php:1321
-#: ../../godmode/setup/setup_visuals.php:1322
-#: ../../godmode/setup/setup_visuals.php:1323
-#: ../../godmode/setup/setup_visuals.php:1324
-#: ../../godmode/setup/setup_visuals.php:1899
-#: ../../include/functions_visual_map_editor.php:1223
-#: ../../include/functions_visual_map_editor.php:1224
-#: ../../include/functions_visual_map_editor.php:1225
-#: ../../include/functions_visual_map_editor.php:1226
+#: ../../godmode/setup/setup_visuals.php:1325
+#: ../../godmode/setup/setup_visuals.php:1326
+#: ../../godmode/setup/setup_visuals.php:1327
+#: ../../godmode/setup/setup_visuals.php:1328
+#: ../../godmode/setup/setup_visuals.php:1914
+#: ../../include/functions_visual_map_editor.php:1281
+#: ../../include/functions_visual_map_editor.php:1282
+#: ../../include/functions_visual_map_editor.php:1283
+#: ../../include/functions_visual_map_editor.php:1284
#: ../../include/functions.php:513 ../../include/functions.php:644
-#: ../../include/functions_html.php:2136
+#: ../../include/functions_html.php:2144
msgid "minutes"
msgstr "minutes"
#: ../../enterprise/meta/advanced/metasetup.visual.php:403
#: ../../enterprise/include/ajax/log_viewer.ajax.php:286
-#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514
+#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514
#: ../../include/functions.php:645 ../../include/functions_snmp.php:402
-#: ../../include/functions_html.php:2137
+#: ../../include/functions_html.php:2145
msgid "hours"
msgstr "heures"
#: ../../enterprise/meta/advanced/metasetup.visual.php:404
#: ../../enterprise/include/ajax/log_viewer.ajax.php:288
#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92
-#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510
-#: ../../include/functions.php:641 ../../include/functions_html.php:2138
+#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510
+#: ../../include/functions.php:641 ../../include/functions_html.php:2146
msgid "days"
msgstr "jours"
#: ../../enterprise/meta/advanced/metasetup.visual.php:405
-#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511
-#: ../../include/functions.php:642 ../../include/functions_html.php:2140
+#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511
+#: ../../include/functions.php:642 ../../include/functions_html.php:2148
msgid "months"
msgstr "mois"
#: ../../enterprise/meta/advanced/metasetup.visual.php:406
-#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512
-#: ../../include/functions.php:643 ../../include/functions_html.php:2141
+#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512
+#: ../../include/functions.php:643 ../../include/functions_html.php:2149
msgid "years"
msgstr "années"
@@ -5371,66 +5439,66 @@ msgstr "Ajouter une nouvelle valeur personnalisée aux intervalles"
#: ../../godmode/agentes/planned_downtime.editor.php:1493
#: ../../godmode/snmpconsole/snmp_alert.php:2135
#: ../../godmode/gis_maps/configure_gis_map.php:642
-#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:402
-#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1833
-#: ../../godmode/setup/setup_visuals.php:1923
-#: ../../godmode/setup/setup_visuals.php:2005
-#: ../../godmode/reporting/graph_builder.graph_editor.php:397
+#: ../../godmode/alerts/alert_list.list.php:893 ../../godmode/setup/news.php:401
+#: ../../godmode/setup/links.php:226 ../../godmode/setup/setup_visuals.php:1848
+#: ../../godmode/setup/setup_visuals.php:1938
+#: ../../godmode/setup/setup_visuals.php:2020
+#: ../../godmode/reporting/graph_builder.graph_editor.php:324
#: ../../godmode/reporting/visual_console_builder.wizard.php:575
-#: ../../godmode/events/event_edit_filter.php:647
-#: ../../godmode/events/event_edit_filter.php:712
+#: ../../godmode/events/event_edit_filter.php:649
+#: ../../godmode/events/event_edit_filter.php:714
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483
#: ../../include/functions_notifications.php:970
#: ../../include/class/SatelliteAgent.class.php:1147
-#: ../../include/class/ManageNetScanScripts.class.php:475
-#: ../../include/functions_snmp_browser.php:1713
+#: ../../include/class/ManageNetScanScripts.class.php:473
+#: ../../include/functions_snmp_browser.php:1722
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287
-#: ../../operation/events/events.php:1267 ../../operation/events/events.php:1341
+#: ../../operation/events/events.php:1294 ../../operation/events/events.php:1386
msgid "Add"
msgstr "Ajouter"
#: ../../enterprise/meta/advanced/metasetup.visual.php:443
#: ../../enterprise/meta/include/functions_meta.php:1853
-#: ../../include/functions_config.php:1449
+#: ../../include/functions_config.php:1465
msgid "Delete interval"
msgstr "Supprimer intervalle"
#: ../../enterprise/meta/advanced/metasetup.visual.php:475
#: ../../enterprise/meta/include/functions_meta.php:1644
-#: ../../godmode/setup/setup_visuals.php:1736
+#: ../../godmode/setup/setup_visuals.php:1751
msgid "Show only the group name"
msgstr "Afficher seulement le nom du groupe"
#: ../../enterprise/meta/advanced/metasetup.visual.php:475
-#: ../../include/functions_config.php:1306
+#: ../../include/functions_config.php:1322
msgid "Show the group name instead the group icon."
msgstr "Afficher le nom du groupe au lieu de l'icône du groupe"
#: ../../enterprise/meta/advanced/metasetup.visual.php:485
#: ../../enterprise/meta/include/functions_meta.php:1945
-#: ../../godmode/setup/setup_visuals.php:129
-#: ../../include/functions_config.php:1330
+#: ../../godmode/setup/setup_visuals.php:133
+#: ../../include/functions_config.php:1346
msgid "Display data of proc modules in other format"
msgstr "Affichage des données des modules proc sous un format différent"
#: ../../enterprise/meta/advanced/metasetup.visual.php:495
#: ../../enterprise/meta/include/functions_meta.php:1955
-#: ../../godmode/setup/setup_visuals.php:140
-#: ../../include/functions_config.php:1334
+#: ../../godmode/setup/setup_visuals.php:144
+#: ../../include/functions_config.php:1350
msgid "Display text proc modules have state is ok"
msgstr "Texte à afficher lorsque l'état du module proc est OK"
#: ../../enterprise/meta/advanced/metasetup.visual.php:507
#: ../../enterprise/meta/include/functions_meta.php:1965
-#: ../../godmode/setup/setup_visuals.php:144
-#: ../../include/functions_config.php:1338
+#: ../../godmode/setup/setup_visuals.php:148
+#: ../../include/functions_config.php:1354
msgid "Display text when proc modules have state critical"
msgstr "Texte à afficher lorsque l'état du module proc est critique"
#: ../../enterprise/meta/advanced/metasetup.visual.php:528
#: ../../enterprise/meta/include/functions_meta.php:1684
-#: ../../godmode/setup/setup_visuals.php:393
-#: ../../include/functions_config.php:1070
+#: ../../godmode/setup/setup_visuals.php:397
+#: ../../include/functions_config.php:1082
msgid "Custom favicon"
msgstr "Favicon personnalisé"
@@ -5443,7 +5511,7 @@ msgstr ""
"fichier doit être au format .ico d’une taille de 16x16."
#: ../../enterprise/meta/advanced/metasetup.visual.php:563
-#: ../../godmode/setup/setup_visuals.php:424
+#: ../../godmode/setup/setup_visuals.php:428
msgid "Custom background logo"
msgstr "Logo d'arrière-plan personnalisé"
@@ -5463,108 +5531,107 @@ msgstr ""
#: ../../enterprise/operation/agentes/policy_view.php:70
#: ../../godmode/agentes/configurar_agente.php:386
#: ../../godmode/agentes/modificar_agente.php:83
-#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596
-#: ../../godmode/setup/setup_visuals.php:375
-#: ../../godmode/setup/setup_visuals.php:442
-#: ../../godmode/setup/setup_visuals.php:465
-#: ../../godmode/setup/setup_visuals.php:490
-#: ../../godmode/setup/setup_visuals.php:516
-#: ../../godmode/setup/setup_visuals.php:541
-#: ../../godmode/setup/setup_visuals.php:582
-#: ../../godmode/setup/setup_visuals.php:620
-#: ../../godmode/setup/setup_visuals.php:660
-#: ../../godmode/setup/setup_visuals.php:698
-#: ../../godmode/setup/setup_visuals.php:738
-#: ../../godmode/setup/setup_visuals.php:924
-#: ../../godmode/reporting/visual_console_builder.php:841
+#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594
+#: ../../godmode/setup/setup_visuals.php:379
+#: ../../godmode/setup/setup_visuals.php:446
+#: ../../godmode/setup/setup_visuals.php:469
+#: ../../godmode/setup/setup_visuals.php:494
+#: ../../godmode/setup/setup_visuals.php:520
+#: ../../godmode/setup/setup_visuals.php:545
+#: ../../godmode/setup/setup_visuals.php:586
+#: ../../godmode/setup/setup_visuals.php:624
+#: ../../godmode/setup/setup_visuals.php:664
+#: ../../godmode/setup/setup_visuals.php:702
+#: ../../godmode/setup/setup_visuals.php:742
+#: ../../godmode/setup/setup_visuals.php:928
+#: ../../godmode/reporting/visual_console_builder.php:849
#: ../../godmode/module_library/module_library_view.php:59
-#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312
#: ../../include/lib/ClusterViewer/ClusterManager.php:601
-#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212
+#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214
#: ../../operation/visual_console/legacy_view.php:189
#: ../../operation/agentes/status_monitor.php:77
-#: ../../operation/agentes/status_monitor.php:306
+#: ../../operation/agentes/status_monitor.php:305
msgid "View"
msgstr "Vue"
#: ../../enterprise/meta/advanced/metasetup.visual.php:602
-#: ../../godmode/setup/setup_visuals.php:460
+#: ../../godmode/setup/setup_visuals.php:464
msgid "Custom logo (menu)"
msgstr "Logo personnalisé (menu)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:633
-#: ../../godmode/setup/setup_visuals.php:485
+#: ../../godmode/setup/setup_visuals.php:489
msgid "Custom logo collapsed (menu)"
msgstr "Le logo personnalisé s'est effondré (menu)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:663
-#: ../../godmode/setup/setup_visuals.php:511
+#: ../../godmode/setup/setup_visuals.php:515
msgid "Custom logo (header white background)"
msgstr "Logo personnalisé (fond blanc d’en-tête)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:694
-#: ../../godmode/setup/setup_visuals.php:536
+#: ../../godmode/setup/setup_visuals.php:540
msgid "Custom logo (login)"
msgstr "Logo personnalisé (connexion)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:724
-#: ../../godmode/setup/setup_visuals.php:564
+#: ../../godmode/setup/setup_visuals.php:568
msgid "Custom Splash (login)"
msgstr "Splash personnalisé (connexion)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:754
#: ../../enterprise/meta/advanced/metasetup.visual.php:847
#: ../../enterprise/meta/include/functions_meta.php:1714
-#: ../../godmode/setup/setup_visuals.php:798
-#: ../../include/functions_config.php:1146
+#: ../../godmode/setup/setup_visuals.php:802
+#: ../../include/functions_config.php:1158
msgid "Product name"
msgstr "Nom du produit"
#: ../../enterprise/meta/advanced/metasetup.visual.php:767
#: ../../enterprise/meta/advanced/metasetup.visual.php:859
#: ../../enterprise/meta/include/functions_meta.php:1724
-#: ../../godmode/setup/setup_visuals.php:803
-#: ../../include/functions_config.php:1150
+#: ../../godmode/setup/setup_visuals.php:807
+#: ../../include/functions_config.php:1162
msgid "Copyright notice"
msgstr "Mention de copyright"
#: ../../enterprise/meta/advanced/metasetup.visual.php:780
#: ../../enterprise/meta/include/functions_meta.php:1614
-#: ../../godmode/setup/setup_visuals.php:809
-#: ../../include/functions_config.php:1154
-#: ../../include/functions_config.php:1158
+#: ../../godmode/setup/setup_visuals.php:813
+#: ../../include/functions_config.php:1166
+#: ../../include/functions_config.php:1170
msgid "Background opacity % (login)"
msgstr "% d’opacité d’arrière-plan (connexion)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:786
-#: ../../godmode/setup/setup_visuals.php:762
+#: ../../godmode/setup/setup_visuals.php:766
msgid "Title (header)"
msgstr "Titre (en-tête)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:792
-#: ../../godmode/setup/setup_visuals.php:768
+#: ../../godmode/setup/setup_visuals.php:772
msgid "Subtitle (header)"
msgstr "Sous-titre (en-tête)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:798
-#: ../../godmode/setup/setup_visuals.php:776
+#: ../../godmode/setup/setup_visuals.php:780
msgid "Title 1 (login)"
msgstr "Titre 1 (connexion)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:811
-#: ../../godmode/setup/setup_visuals.php:781
+#: ../../godmode/setup/setup_visuals.php:785
msgid "Title 2 (login)"
msgstr "Titre 2 (connexion)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:823
#: ../../enterprise/meta/include/functions_meta.php:1774
-#: ../../godmode/setup/setup_visuals.php:787
+#: ../../godmode/setup/setup_visuals.php:791
msgid "Docs URL (login)"
msgstr "URL docs (connexion)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:835
#: ../../enterprise/meta/include/functions_meta.php:1784
-#: ../../godmode/setup/setup_visuals.php:792
+#: ../../godmode/setup/setup_visuals.php:796
msgid "Support URL (login)"
msgstr "URL assistance (connexion)"
@@ -5574,17 +5641,17 @@ msgstr "Famille de polices de graphiques"
#: ../../enterprise/meta/advanced/metasetup.visual.php:884
#: ../../enterprise/meta/include/functions_meta.php:1594
-#: ../../godmode/setup/setup_visuals.php:864
+#: ../../godmode/setup/setup_visuals.php:868
msgid "Visual effects and animation"
msgstr "Effets visuels et animation"
#: ../../enterprise/meta/advanced/metasetup.visual.php:894
-#: ../../godmode/setup/setup_visuals.php:875
+#: ../../godmode/setup/setup_visuals.php:879
msgid "Random background (login)"
msgstr "Arrière-plan aléatoire (connexion)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:906
-#: ../../godmode/setup/setup_visuals.php:1340
+#: ../../godmode/setup/setup_visuals.php:1344
msgid "Legacy Visual Console View"
msgstr "Vue console visuelle legacy"
@@ -5595,26 +5662,26 @@ msgstr ""
"visuelle"
#: ../../enterprise/meta/advanced/metasetup.visual.php:925
-#: ../../godmode/setup/setup_visuals.php:1325
-#: ../../include/functions_visual_map_editor.php:1227
+#: ../../godmode/setup/setup_visuals.php:1329
+#: ../../include/functions_visual_map_editor.php:1285
msgid "hour"
msgstr "heure"
#: ../../enterprise/meta/advanced/metasetup.visual.php:928
-#: ../../godmode/setup/setup_visuals.php:1350
+#: ../../godmode/setup/setup_visuals.php:1354
msgid "Default cache expiration"
msgstr "Expiration du cache par défaut"
#: ../../enterprise/meta/advanced/metasetup.visual.php:933
-#: ../../godmode/setup/setup_visuals.php:1355
-#: ../../include/functions_visual_map_editor.php:1253
+#: ../../godmode/setup/setup_visuals.php:1359
+#: ../../include/functions_visual_map_editor.php:1311
msgid "No cache"
msgstr "Pas de cache"
#: ../../enterprise/meta/advanced/metasetup.visual.php:955
#: ../../enterprise/meta/include/functions_meta.php:1992
-#: ../../godmode/setup/setup_visuals.php:1369
-#: ../../include/functions_config.php:1202
+#: ../../godmode/setup/setup_visuals.php:1373
+#: ../../include/functions_config.php:1214
msgid "Default interval for refresh on Visual Console"
msgstr "Intervalle de rafraîchissement par défaut sur la console visuelle"
@@ -5623,34 +5690,36 @@ msgid "This interval will affect to Visual Console pages"
msgstr "Cet intervalle aura un effet sur les pages de la console visuelle"
#: ../../enterprise/meta/advanced/metasetup.visual.php:973
-#: ../../godmode/setup/setup_visuals.php:1710
+#: ../../godmode/setup/setup_visuals.php:1725
msgid "Use 1024 when module unit are bytes"
msgstr "Utiliser 1024 lorsque l’unité de module est en octets"
#: ../../enterprise/meta/advanced/metasetup.visual.php:974
-#: ../../godmode/setup/setup_visuals.php:1711
+#: ../../godmode/setup/setup_visuals.php:1726
msgid "Use always 1000"
msgstr "Utilisez toujours 1000"
#: ../../enterprise/meta/advanced/metasetup.visual.php:975
-#: ../../godmode/setup/setup_visuals.php:1712
+#: ../../godmode/setup/setup_visuals.php:1727
msgid "Use always 1024"
msgstr "Utilisez toujours 1024"
#: ../../enterprise/meta/advanced/metasetup.visual.php:978
-#: ../../godmode/setup/setup_visuals.php:2072
+#: ../../godmode/setup/setup_visuals.php:2087
msgid "Data multiplier to use in graphs/data"
msgstr "Multiplicateur de données à utiliser dans les graphiques/données"
#: ../../enterprise/meta/advanced/metasetup.visual.php:993
#: ../../enterprise/meta/include/functions_meta.php:1997
-#: ../../godmode/setup/setup_visuals.php:1416
-#: ../../include/functions_config.php:1218
+#: ../../godmode/setup/setup_visuals.php:1420
+#: ../../include/functions_config.php:1230
msgid "Mobile view not allow visual console orientation"
msgstr "Non permettre l’orientation de la console visuelle dans la vue mobile"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1003
#: ../../enterprise/meta/include/functions_meta.php:2002
+#: ../../godmode/setup/setup_visuals.php:1430
+#: ../../include/functions_config.php:1234
msgid "Display item frame on alert triggered"
msgstr "Afficher le cadre de l’élément déclenché par l’alerte"
@@ -5659,7 +5728,7 @@ msgid "Reports configuration"
msgstr "Configuration des rapports"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1028
-#: ../../godmode/setup/setup_visuals.php:1482
+#: ../../godmode/setup/setup_visuals.php:1497
msgid "Show report info with description"
msgstr "Afficher l'information du rapport avec description"
@@ -5672,7 +5741,7 @@ msgstr ""
"rapports et modèles."
#: ../../enterprise/meta/advanced/metasetup.visual.php:1042
-#: ../../godmode/setup/setup_visuals.php:1492
+#: ../../godmode/setup/setup_visuals.php:1507
msgid "Custom report front page"
msgstr "Page de couverture du rapport personnalisé"
@@ -5686,21 +5755,21 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1055
#: ../../enterprise/meta/include/functions_meta.php:1459
-#: ../../godmode/setup/setup_visuals.php:1503
-#: ../../include/functions_config.php:1480
+#: ../../godmode/setup/setup_visuals.php:1518
+#: ../../include/functions_config.php:1496
msgid "PDF font size (px)"
msgstr "Taille de la police PDF (px)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1060
#: ../../enterprise/meta/include/functions_meta.php:1449
-#: ../../godmode/setup/setup_visuals.php:1507
-#: ../../include/functions_config.php:1476
+#: ../../godmode/setup/setup_visuals.php:1522
+#: ../../include/functions_config.php:1492
msgid "HTML font size for SLA (em)"
msgstr "Taille de la police HTML pour SLA (em)"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1065
#: ../../enterprise/meta/include/functions_meta.php:1574
-#: ../../godmode/setup/setup_visuals.php:1513
+#: ../../godmode/setup/setup_visuals.php:1528
msgid "Graph image height for HTML reports"
msgstr "Hauteur de l'image du graphique pour des rapports HTML"
@@ -5714,21 +5783,21 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1127
#: ../../enterprise/meta/include/functions_meta.php:1479
-#: ../../godmode/setup/setup_visuals.php:2061
-#: ../../include/functions_config.php:1508
+#: ../../godmode/setup/setup_visuals.php:2076
+#: ../../include/functions_config.php:1524
msgid "CSV divider"
msgstr "Séparateur CSV"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1136
#: ../../enterprise/meta/include/functions_meta.php:1489
-#: ../../godmode/setup/setup_visuals.php:2066
-#: ../../include/functions_config.php:1512
+#: ../../godmode/setup/setup_visuals.php:2081
+#: ../../include/functions_config.php:1528
msgid "CSV decimal separator"
msgstr "Séparateur décimale CSV"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1146
#: ../../enterprise/meta/include/functions_meta.php:1469
-#: ../../godmode/setup/setup_visuals.php:1517
+#: ../../godmode/setup/setup_visuals.php:1532
msgid "Interval description"
msgstr "Description de l'intervalle"
@@ -5745,9 +5814,9 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1905
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125
-#: ../../godmode/setup/setup_visuals.php:1534
-#: ../../include/functions_config.php:1074
-#: ../../include/functions_config.php:1492
+#: ../../godmode/setup/setup_visuals.php:1549
+#: ../../include/functions_config.php:1086
+#: ../../include/functions_config.php:1508
msgid "Custom logo"
msgstr "Logo personnalisé"
@@ -5772,17 +5841,17 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1915
#: ../../enterprise/meta/include/functions_meta.php:1925
#: ../../enterprise/meta/include/functions_meta.php:1935
-#: ../../godmode/setup/setup_visuals.php:1534
#: ../../godmode/setup/setup_visuals.php:1549
-#: ../../godmode/setup/setup_visuals.php:1555
-#: ../../godmode/setup/setup_visuals.php:1568
-#: ../../godmode/setup/setup_visuals.php:1582
-#: ../../include/functions_config.php:1484
-#: ../../include/functions_config.php:1488
-#: ../../include/functions_config.php:1492
-#: ../../include/functions_config.php:1496
+#: ../../godmode/setup/setup_visuals.php:1564
+#: ../../godmode/setup/setup_visuals.php:1570
+#: ../../godmode/setup/setup_visuals.php:1583
+#: ../../godmode/setup/setup_visuals.php:1597
#: ../../include/functions_config.php:1500
#: ../../include/functions_config.php:1504
+#: ../../include/functions_config.php:1508
+#: ../../include/functions_config.php:1512
+#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1520
msgid "Custom report front"
msgstr "Page de couverture du rapport personnalisé"
@@ -5790,8 +5859,8 @@ msgstr "Page de couverture du rapport personnalisé"
#: ../../enterprise/meta/include/functions_meta.php:1915
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137
-#: ../../godmode/setup/setup_visuals.php:1555
-#: ../../include/functions_config.php:1496
+#: ../../godmode/setup/setup_visuals.php:1570
+#: ../../include/functions_config.php:1512
msgid "Header"
msgstr "En-tête"
@@ -5800,23 +5869,93 @@ msgstr "En-tête"
#: ../../enterprise/meta/include/functions_meta.php:1925
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147
-#: ../../godmode/setup/setup_visuals.php:1568
-#: ../../include/functions_config.php:1500
+#: ../../godmode/setup/setup_visuals.php:1583
+#: ../../include/functions_config.php:1516
msgid "First page"
msgstr "Première page"
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1420
-#: ../../godmode/setup/setup_visuals.php:2356
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1266
+#: ../../godmode/setup/setup_visuals.php:73
+msgid "Legacy visual console Information"
+msgstr "Informations sur la console visuelle héritée"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1267
+#: ../../godmode/setup/setup_visuals.php:74
+msgid "Visual console in legacy mode will no longer be supported as of LTS 772"
+msgstr ""
+"La console visuelle en mode héritée ne sera pas prise en charge à partir de la "
+"version LTS 772"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1400
+#: ../../enterprise/godmode/services/services.service.php:1025
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608
+#: ../../enterprise/include/functions_reporting_csv.php:1589
+#: ../../enterprise/include/functions_reporting_csv.php:1635
+#: ../../enterprise/include/functions_reporting_csv.php:1953
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1704
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1756
+#: ../../enterprise/include/class/DatabaseHA.class.php:390
+#: ../../enterprise/include/class/DatabaseHA.class.php:625
+#: ../../enterprise/include/class/DatabaseHA.class.php:727
+#: ../../enterprise/include/class/AgentRepository.class.php:1000
+#: ../../enterprise/include/class/LogSource.class.php:820
+#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142
+#: ../../enterprise/include/class/ManageBackups.class.php:298
+#: ../../enterprise/include/class/ManageBackups.class.php:454
+#: ../../enterprise/include/class/NewDatabaseHA.class.php:182
+#: ../../enterprise/include/class/NewDatabaseHA.class.php:225
+#: ../../enterprise/include/functions_reporting.php:1876
+#: ../../enterprise/include/functions_reporting.php:2949
+#: ../../enterprise/include/functions_reporting.php:3206
+#: ../../enterprise/include/functions_reporting.php:3939
+#: ../../enterprise/include/functions_reporting.php:4208
+#: ../../enterprise/include/functions_reporting.php:4854
+#: ../../enterprise/include/functions_reporting.php:6176
+#: ../../enterprise/include/functions_reporting.php:6214
+#: ../../enterprise/include/functions_services.php:2091
+#: ../../enterprise/include/functions_ux_console.php:483
+#: ../../enterprise/operation/agentes/ux_console_view.php:186
+#: ../../enterprise/operation/agentes/ux_console_view.php:391
+#: ../../enterprise/operation/agentes/wux_console_view.php:407
+#: ../../extensions/module_groups.php:53
+#: ../../godmode/massive/massive_operations.php:415
+#: ../../godmode/setup/setup_visuals.php:2257
+#: ../../godmode/setup/setup_general.php:1044
+#: ../../godmode/setup/setup_general.php:1062
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2743
+#: ../../include/functions_reporting_html.php:667
+#: ../../include/functions_reporting_html.php:862
+#: ../../include/functions_reporting_html.php:3597
+#: ../../include/functions_reporting_html.php:4894
+#: ../../include/functions_db.php:1974
+#: ../../include/class/ConfigPEN.class.php:674
+#: ../../include/class/ConfigPEN.class.php:698
+#: ../../include/class/SatelliteAgent.class.php:1105
+#: ../../include/class/HelpFeedBack.class.php:370
+#: ../../include/class/CredentialStore.class.php:1655
+#: ../../include/class/ModuleTemplates.class.php:1363
+#: ../../include/class/WelcomeWindow.class.php:173
+#: ../../include/class/AgentWizard.class.php:6229
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:362
+#: ../../operation/agentes/pandora_networkmap.editor.php:745
+#: ../../operation/snmpconsole/snmp_browser.php:622
+#: ../../operation/snmpconsole/snmp_browser.php:698
+msgid "OK"
+msgstr "OK"
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1437
+#: ../../godmode/setup/setup_visuals.php:2376
msgid "Logo preview"
msgstr "Aperçu du logo"
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1442
-#: ../../godmode/setup/setup_visuals.php:2386
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1459
+#: ../../godmode/setup/setup_visuals.php:2406
msgid "Splash Preview"
msgstr "Aperçu du Splash"
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1447
-#: ../../godmode/setup/setup_visuals.php:2410
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1464
+#: ../../godmode/setup/setup_visuals.php:2430
#: ../../godmode/reporting/visual_console_builder.data.php:196
msgid "Background preview"
msgstr "Aperçu du fond d'écran"
@@ -5948,12 +6087,12 @@ msgstr "Serveur source"
#: ../../godmode/massive/massive_delete_alerts.php:312
#: ../../godmode/massive/massive_add_action_alerts.php:210
#: ../../godmode/massive/massive_edit_modules.php:370
-#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440
+#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445
#: ../../include/functions_massive_operations.php:136
#: ../../include/lib/Dashboard/Widgets/groups_status.php:243
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:334
#: ../../include/lib/Dashboard/Widgets/events_list.php:447
-#: ../../operation/events/events.php:1704
+#: ../../operation/events/events.php:1758
msgid "Group recursion"
msgstr "Récursion du groupe"
@@ -5998,7 +6137,7 @@ msgstr "Serveur de destination"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474
#: ../../enterprise/include/class/Omnishell.class.php:1119
-#: ../../enterprise/operation/services/massive/services.create.php:1305
+#: ../../enterprise/operation/services/massive/services.create.php:1317
#: ../../enterprise/operation/services/massive/service.delete.elements.php:262
#: ../../enterprise/operation/services/massive/service.create.elements.php:610
#: ../../enterprise/operation/services/massive/service.edit.elements.php:369
@@ -6068,8 +6207,8 @@ msgstr "Déplacer"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130
-#: ../../include/functions_inventory.php:142
-#: ../../include/functions_inventory.php:176
+#: ../../include/functions_inventory.php:143
+#: ../../include/functions_inventory.php:177
#: ../../include/functions_events.php:250
msgid "Agent alias"
msgstr "Alias de l'agent"
@@ -6085,8 +6224,8 @@ msgstr "Nœud cible"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591
@@ -6100,9 +6239,9 @@ msgstr "Nœud cible"
#: ../../godmode/alerts/alert_view.php:130
#: ../../godmode/setup/setup_integria.php:444
#: ../../godmode/setup/setup_integria.php:578
-#: ../../include/functions_reporting_html.php:5374
-#: ../../include/functions_events.php:4593
-#: ../../operation/agentes/estado_generalagente.php:758
+#: ../../include/functions_reporting_html.php:5402
+#: ../../include/functions_events.php:4598
+#: ../../operation/agentes/estado_generalagente.php:727
#: ../../operation/incidents/integriaims_export_csv.php:85
#: ../../operation/incidents/configure_integriaims_incident.php:287
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341
@@ -6133,7 +6272,7 @@ msgstr "Priorité"
#: ../../godmode/alerts/configure_alert_template.php:270
#: ../../godmode/alerts/configure_alert_template.php:287
#: ../../godmode/alerts/configure_alert_template.php:291
-#: ../../include/functions_config.php:1729
+#: ../../include/functions_config.php:1741
msgid "Step"
msgstr "Étape"
@@ -6159,8 +6298,8 @@ msgstr "Créant un agent dans le nœud cible"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661
#: ../../enterprise/meta/advanced/policymanager.queue.php:261
-#: ../../enterprise/godmode/policies/policy_queue.php:711
-#: ../../enterprise/godmode/policies/policy_queue.php:714
+#: ../../enterprise/godmode/policies/policy_queue.php:713
+#: ../../enterprise/godmode/policies/policy_queue.php:716
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453
#: ../../enterprise/include/class/Omnishell.class.php:369
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180
@@ -6189,12 +6328,12 @@ msgid "checking migration requirements"
msgstr "vérificant des exigences de migration"
#: ../../enterprise/meta/advanced/servers.php:37
-#: ../../godmode/servers/modificar_server.php:308
+#: ../../godmode/servers/modificar_server.php:330
msgid "Server deleted successfully"
msgstr "Serveur supprimé correctement"
#: ../../enterprise/meta/advanced/servers.php:39
-#: ../../godmode/servers/modificar_server.php:310
+#: ../../godmode/servers/modificar_server.php:332
msgid "There was a problem deleting the server"
msgstr "Problème de suppression du serveur"
@@ -6220,12 +6359,12 @@ msgstr "Erreur de mise à jour de la chaîne de traduction"
#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174
#: ../../enterprise/extensions/translate_string.php:308
-#: ../../godmode/users/configure_user.php:1096
-#: ../../godmode/users/user_management.php:558
+#: ../../godmode/users/configure_user.php:1160
+#: ../../godmode/users/user_management.php:564
#: ../../godmode/massive/massive_edit_users.php:248
-#: ../../include/class/TipsWindow.class.php:453
-#: ../../include/class/TipsWindow.class.php:702
-#: ../../include/class/TipsWindow.class.php:869
+#: ../../include/class/TipsWindow.class.php:465
+#: ../../include/class/TipsWindow.class.php:722
+#: ../../include/class/TipsWindow.class.php:889
#: ../../operation/users/user_edit.php:437
msgid "Language"
msgstr "Langue"
@@ -6255,7 +6394,7 @@ msgstr "Texte libre pour la recherche (*)"
#: ../../enterprise/meta/general/main_header.php:689
#: ../../enterprise/meta/general/main_header.php:691
#: ../../enterprise/extensions/translate_string.php:334
-#: ../../enterprise/godmode/policies/policy_modules.php:1466
+#: ../../enterprise/godmode/policies/policy_modules.php:1511
#: ../../enterprise/godmode/policies/policy_collections.php:172
#: ../../enterprise/godmode/policies/policy_agents.php:440
#: ../../enterprise/godmode/policies/policy_agents.php:462
@@ -6263,8 +6402,8 @@ msgstr "Texte libre pour la recherche (*)"
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:168
#: ../../enterprise/godmode/setup/setup_skins.php:131
#: ../../enterprise/operation/agentes/tag_view.php:229
-#: ../../enterprise/operation/log/log_viewer.php:610
-#: ../../enterprise/operation/log/log_viewer.php:957
+#: ../../enterprise/operation/log/log_viewer.php:608
+#: ../../enterprise/operation/log/log_viewer.php:955
#: ../../enterprise/operation/services/services.list.php:233
#: ../../enterprise/operation/services/services.list.php:338
#: ../../enterprise/operation/services/services.table_services.php:171
@@ -6281,23 +6420,23 @@ msgstr "Texte libre pour la recherche (*)"
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:335
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:358
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:375
-#: ../../godmode/groups/group_list.php:785 ../../godmode/users/user_list.php:484
-#: ../../godmode/users/user_list.php:504
+#: ../../godmode/groups/group_list.php:786 ../../godmode/users/user_list.php:485
+#: ../../godmode/users/user_list.php:505
#: ../../godmode/agentes/planned_downtime.list.php:372
#: ../../godmode/agentes/planned_downtime.list.php:697
#: ../../godmode/alerts/alert_actions.php:250
#: ../../godmode/alerts/alert_actions.php:317
#: ../../godmode/alerts/alert_actions.php:332
#: ../../godmode/alerts/alert_actions.php:333
-#: ../../godmode/alerts/alert_templates.php:325
-#: ../../godmode/alerts/alert_templates.php:342
+#: ../../godmode/alerts/alert_templates.php:329
+#: ../../godmode/alerts/alert_templates.php:346
#: ../../godmode/reporting/map_builder.php:357
#: ../../godmode/reporting/graphs.php:238
#: ../../godmode/reporting/visual_console_favorite.php:177
#: ../../godmode/reporting/reporting_builder.item_editor.php:1313
#: ../../godmode/module_library/module_library_view.php:102
#: ../../godmode/module_library/module_library_view.php:112
-#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72
+#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76
#: ../../include/functions_snmp.php:358
#: ../../include/class/SatelliteAgent.class.php:184
#: ../../include/class/CalendarManager.class.php:1071
@@ -6305,13 +6444,12 @@ msgstr "Texte libre pour la recherche (*)"
#: ../../include/class/AgentWizard.class.php:2753
#: ../../include/lib/Dashboard/Widgets/heatmap.php:236
#: ../../include/functions_snmp_browser.php:1023
-#: ../../include/functions_snmp_browser.php:1641
+#: ../../include/functions_snmp_browser.php:1650
#: ../../operation/search_results.php:193 ../../operation/search_results.php:202
#: ../../operation/agentes/estado_agente.php:342
-#: ../../operation/agentes/status_monitor.php:915
-#: ../../operation/agentes/agent_inventory.php:138
-#: ../../operation/agentes/agent_inventory.php:140
-#: ../../operation/inventory/inventory.php:640
+#: ../../operation/agentes/status_monitor.php:917
+#: ../../operation/agentes/agent_inventory.php:153
+#: ../../operation/inventory/inventory.php:642
#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
msgid "Search"
msgstr "Rechercher"
@@ -6331,8 +6469,8 @@ msgstr "Rechercher"
#: ../../enterprise/godmode/modules/local_components.php:624
#: ../../enterprise/godmode/agentes/collections.php:473
#: ../../enterprise/godmode/agentes/collections.php:474
-#: ../../enterprise/godmode/policies/policy_modules.php:1512
-#: ../../enterprise/godmode/policies/policy_queue.php:378
+#: ../../enterprise/godmode/policies/policy_modules.php:1557
+#: ../../enterprise/godmode/policies/policy_queue.php:380
#: ../../enterprise/godmode/policies/policies.php:364
#: ../../enterprise/godmode/policies/policy_linking.php:175
#: ../../enterprise/godmode/policies/policy_external_alerts.php:415
@@ -6342,14 +6480,14 @@ msgstr "Rechercher"
#: ../../enterprise/godmode/setup/setup_acl.php:511
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947
#: ../../enterprise/operation/agentes/tag_view.php:533
-#: ../../enterprise/operation/log/log_viewer.php:1026
+#: ../../enterprise/operation/log/log_viewer.php:1024
#: ../../enterprise/operation/services/services.list.php:497
#: ../../enterprise/operation/services/services.table_services.php:472
#: ../../enterprise/operation/services/services.table_services.php:487
#: ../../extensions/module_groups.php:322
-#: ../../extensions/realtime_graphs.php:220
-#: ../../godmode/modules/manage_network_components.php:713
-#: ../../godmode/groups/group_list.php:820
+#: ../../extensions/realtime_graphs.php:216
+#: ../../godmode/modules/manage_network_components.php:716
+#: ../../godmode/groups/group_list.php:821
#: ../../godmode/agentes/planned_downtime.list.php:661
#: ../../godmode/agentes/planned_downtime.list.php:662
#: ../../godmode/agentes/planned_downtime.list.php:711
@@ -6360,16 +6498,17 @@ msgstr "Rechercher"
#: ../../godmode/reporting/visual_console_favorite.php:220
#: ../../godmode/reporting/reporting_builder.php:782
#: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124
-#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715
-#: ../../include/functions_ui.php:3728
-#: ../../include/class/AgentsAlerts.class.php:879
+#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763
+#: ../../include/functions_ui.php:3776
+#: ../../include/class/AgentsAlerts.class.php:880
#: ../../include/functions_snmp_browser.php:992
#: ../../operation/agentes/estado_agente.php:490
-#: ../../operation/agentes/status_monitor.php:1081
+#: ../../operation/agentes/status_monitor.php:1083
+#: ../../operation/agentes/agent_inventory.php:188
#: ../../operation/network/network_report.php:219
#: ../../operation/network/network_report.php:220
#: ../../operation/incidents/list_integriaims_incidents.php:502
-#: ../../operation/inventory/inventory.php:721
+#: ../../operation/inventory/inventory.php:722
#: ../../operation/reporting/reporting_viewer.php:305
#: ../../operation/reporting/graph_viewer.php:415
msgid "Filters"
@@ -6398,7 +6537,7 @@ msgstr "Personnaliser la traduction"
#: ../../include/ajax/visual_console_builder.ajax.php:343
#: ../../include/functions_visual_map.php:2843
#: ../../operation/network/network_usage_map.php:275
-#: ../../operation/netflow/nf_live_view.php:647
+#: ../../operation/netflow/nf_live_view.php:720
msgid "No data to show"
msgstr "Aucune donnée à afficher"
@@ -6412,14 +6551,14 @@ msgstr "Aucune donnée à afficher"
#: ../../enterprise/include/functions_cron.php:582
#: ../../enterprise/include/lib/NetworkManager.php:87
#: ../../godmode/agentes/module_manager_editor_wmi.php:59
-#: ../../godmode/agentes/module_manager_editor_network.php:105
+#: ../../godmode/agentes/module_manager_editor_network.php:106
#: ../../godmode/massive/massive_edit_modules.php:834
-#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918
-#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029
-#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182
-#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699
+#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929
+#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040
+#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190
+#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727
#: ../../include/class/CredentialStore.class.php:959
-#: ../../operation/netflow/nf_live_view.php:274
+#: ../../operation/netflow/nf_live_view.php:283
msgid "Custom"
msgstr "Personnaliser"
@@ -6446,8 +6585,8 @@ msgid "Imei"
msgstr "Imei"
#: ../../enterprise/meta/advanced/metasetup.relations.php:330
-#: ../../include/class/NetworkMap.class.php:3265
-#: ../../include/class/NetworkMap.class.php:3266
+#: ../../include/class/NetworkMap.class.php:3271
+#: ../../include/class/NetworkMap.class.php:3272
msgid "Relations"
msgstr "Relations"
@@ -6483,21 +6622,21 @@ msgstr "Afficher les relations de liste"
#: ../../enterprise/include/functions_reporting_csv.php:2731
#: ../../enterprise/operation/services/services.service.php:115
#: ../../enterprise/operation/services/services.list.php:544
-#: ../../godmode/agentes/module_manager_editor_common.php:1432
+#: ../../godmode/agentes/module_manager_editor_common.php:1442
#: ../../godmode/snmpconsole/snmp_trap_generator.php:126
#: ../../godmode/massive/massive_edit_modules.php:899
#: ../../godmode/alerts/configure_alert_template.php:839
-#: ../../godmode/setup/setup_visuals.php:1823
-#: ../../godmode/setup/setup_visuals.php:1913
-#: ../../godmode/setup/setup_visuals.php:1995
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2708
+#: ../../godmode/setup/setup_visuals.php:1838
+#: ../../godmode/setup/setup_visuals.php:1928
+#: ../../godmode/setup/setup_visuals.php:2010
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2717
#: ../../godmode/reporting/visual_console_builder.wizard.php:330
-#: ../../include/functions_visual_map_editor.php:691
+#: ../../include/functions_visual_map_editor.php:741
#: ../../include/functions_reporting_html.php:949
-#: ../../include/functions_reporting_html.php:2461
-#: ../../include/functions_reporting_html.php:4962
-#: ../../include/functions_reporting_html.php:5492
-#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172
+#: ../../include/functions_reporting_html.php:2482
+#: ../../include/functions_reporting_html.php:4990
+#: ../../include/functions_reporting_html.php:5520
+#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
#: ../../include/functions_reports.php:1087
#: ../../include/functions_netflow.php:212
@@ -6515,7 +6654,7 @@ msgstr "Adresse du nœud"
#: ../../enterprise/meta/advanced/metasetup.relations.php:550
#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255
-#: ../../enterprise/godmode/policies/policy_modules.php:1546
+#: ../../enterprise/godmode/policies/policy_modules.php:1591
#: ../../enterprise/godmode/admin_access_logs.php:54
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:397
@@ -6537,7 +6676,7 @@ msgstr "Adresse du nœud"
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:330
#: ../../godmode/modules/manage_nc_groups.php:266
#: ../../godmode/modules/manage_inventory_modules.php:295
-#: ../../godmode/modules/manage_network_components.php:781
+#: ../../godmode/modules/manage_network_components.php:784
#: ../../godmode/modules/manage_network_templates.php:250
#: ../../godmode/agentes/agent_template.php:277
#: ../../godmode/agentes/planned_downtime.editor.php:1446
@@ -6547,26 +6686,26 @@ msgstr "Adresse du nœud"
#: ../../godmode/snmpconsole/snmp_alert.php:1915
#: ../../godmode/snmpconsole/snmp_alert.php:2075
#: ../../godmode/snmpconsole/snmp_filters.php:315
-#: ../../godmode/massive/massive_operations.php:452
+#: ../../godmode/massive/massive_operations.php:454
#: ../../godmode/massive/massive_standby_alerts.php:251
#: ../../godmode/massive/massive_delete_action_alerts.php:271
#: ../../godmode/massive/massive_enable_disable_alerts.php:223
#: ../../godmode/massive/massive_add_action_alerts.php:249
#: ../../godmode/alerts/alert_list.list.php:825
#: ../../godmode/alerts/alert_view.php:394
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4138
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4650
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4638
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4659
#: ../../godmode/reporting/visual_console_builder.elements.php:134
#: ../../godmode/events/event_filter.php:149
-#: ../../mobile/operation/tactical.php:348
-#: ../../include/functions_reporting_html.php:3451
-#: ../../include/functions_reporting_html.php:6013
+#: ../../mobile/operation/tactical.php:349
+#: ../../include/functions_reporting_html.php:3479
+#: ../../include/functions_reporting_html.php:6047
#: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294
#: ../../include/ajax/alert_list.ajax.php:319
#: ../../include/ajax/alert_list.ajax.php:495
#: ../../include/functions_profile.php:207
-#: ../../include/class/AgentsAlerts.class.php:911
+#: ../../include/class/AgentsAlerts.class.php:912
#: ../../include/class/SnmpConsole.class.php:512
#: ../../include/class/AuditLog.class.php:111
#: ../../include/class/AuditLog.class.php:230
@@ -6575,7 +6714,7 @@ msgstr "Adresse du nœud"
#: ../../operation/agentes/alerts_status.php:279
#: ../../operation/agentes/alerts_status.php:280
#: ../../operation/agentes/alerts_status.functions.php:178
-#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256
+#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301
msgid "Action"
msgstr "Action"
@@ -6594,7 +6733,7 @@ msgstr "Mots de passe"
#: ../../enterprise/meta/advanced/metasetup.password.php:93
#: ../../enterprise/meta/include/functions_meta.php:377
#: ../../enterprise/godmode/setup/setup.php:318
-#: ../../include/functions_config.php:494
+#: ../../include/functions_config.php:502
msgid "Enable password policy"
msgstr "Activer la politique de mot de passe"
@@ -6629,7 +6768,7 @@ msgstr "Activer la politique de mot de passe"
#: ../../enterprise/godmode/setup/setup_auth.php:230
#: ../../enterprise/godmode/setup/setup_auth.php:431
#: ../../enterprise/godmode/setup/setup_auth.php:479
-#: ../../enterprise/godmode/setup/setup_auth.php:1287
+#: ../../enterprise/godmode/setup/setup_auth.php:1504
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:521
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317
#: ../../enterprise/godmode/reporting/visual_console_template.php:304
@@ -6638,11 +6777,11 @@ msgstr "Activer la politique de mot de passe"
#: ../../enterprise/include/functions_reporting_csv.php:1990
#: ../../enterprise/include/functions_reporting.php:2357
#: ../../godmode/update_manager/update_manager.setup.php:395
-#: ../../godmode/users/configure_user.php:1301
+#: ../../godmode/users/configure_user.php:1365
#: ../../godmode/agentes/agent_conf_gis.php:133
-#: ../../godmode/massive/massive_edit_agents.php:671
-#: ../../godmode/massive/massive_edit_agents.php:1084
-#: ../../godmode/massive/massive_edit_agents.php:1116
+#: ../../godmode/massive/massive_edit_agents.php:688
+#: ../../godmode/massive/massive_edit_agents.php:1101
+#: ../../godmode/massive/massive_edit_agents.php:1133
#: ../../godmode/massive/massive_edit_modules.php:631
#: ../../godmode/massive/massive_edit_modules.php:653
#: ../../godmode/massive/massive_edit_modules.php:722
@@ -6657,13 +6796,13 @@ msgstr "Activer la politique de mot de passe"
#: ../../godmode/reporting/visual_console_builder.wizard.php:382
#: ../../godmode/reporting/visual_console_builder.wizard.php:481
#: ../../godmode/servers/modificar_server.php:80
-#: ../../include/functions_reporting_html.php:1664
+#: ../../include/functions_reporting_html.php:1673
#: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304
#: ../../include/functions_snmp.php:390
#: ../../include/class/EventSound.class.php:349
#: ../../include/class/SnmpConsole.class.php:403
#: ../../operation/users/user_edit.php:433
-#: ../../operation/netflow/nf_live_view.php:340
+#: ../../operation/netflow/nf_live_view.php:349
msgid "Yes"
msgstr "Oui"
@@ -6699,7 +6838,7 @@ msgstr "Oui"
#: ../../enterprise/godmode/setup/setup_auth.php:230
#: ../../enterprise/godmode/setup/setup_auth.php:434
#: ../../enterprise/godmode/setup/setup_auth.php:482
-#: ../../enterprise/godmode/setup/setup_auth.php:1290
+#: ../../enterprise/godmode/setup/setup_auth.php:1507
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:523
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319
#: ../../enterprise/godmode/reporting/visual_console_template.php:304
@@ -6708,11 +6847,11 @@ msgstr "Oui"
#: ../../enterprise/include/functions_reporting_csv.php:1990
#: ../../enterprise/include/functions_reporting.php:2357
#: ../../godmode/update_manager/update_manager.setup.php:396
-#: ../../godmode/users/configure_user.php:1302
+#: ../../godmode/users/configure_user.php:1366
#: ../../godmode/agentes/agent_conf_gis.php:142
-#: ../../godmode/massive/massive_edit_agents.php:672
-#: ../../godmode/massive/massive_edit_agents.php:1095
-#: ../../godmode/massive/massive_edit_agents.php:1117
+#: ../../godmode/massive/massive_edit_agents.php:689
+#: ../../godmode/massive/massive_edit_agents.php:1112
+#: ../../godmode/massive/massive_edit_agents.php:1134
#: ../../godmode/massive/massive_edit_modules.php:632
#: ../../godmode/massive/massive_edit_modules.php:654
#: ../../godmode/massive/massive_edit_modules.php:723
@@ -6723,28 +6862,28 @@ msgstr "Oui"
#: ../../godmode/massive/massive_edit_modules.php:1125
#: ../../godmode/alerts/alert_view.php:135
#: ../../godmode/alerts/alert_view.php:265
-#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390
+#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389
#: ../../godmode/reporting/reporting_builder.php:1086
#: ../../godmode/reporting/visual_console_builder.wizard.php:393
#: ../../godmode/reporting/visual_console_builder.wizard.php:492
#: ../../godmode/servers/modificar_server.php:78
-#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373
-#: ../../include/functions_reporting_html.php:1664
+#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366
+#: ../../include/functions_reporting_html.php:1673
#: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304
#: ../../include/functions_snmp.php:382
#: ../../include/class/EventSound.class.php:348
#: ../../include/class/SnmpConsole.class.php:402
-#: ../../include/functions_events.php:4971
#: ../../include/functions_events.php:4976
+#: ../../include/functions_events.php:4981
#: ../../operation/users/user_edit.php:434
-#: ../../operation/netflow/nf_live_view.php:350
+#: ../../operation/netflow/nf_live_view.php:359
msgid "No"
msgstr "Non"
#: ../../enterprise/meta/advanced/metasetup.password.php:114
#: ../../enterprise/meta/include/functions_meta.php:387
#: ../../enterprise/godmode/setup/setup.php:329
-#: ../../include/functions_config.php:498
+#: ../../include/functions_config.php:506
msgid "Min. size password"
msgstr "Taille minimale du mot de passe"
@@ -6756,7 +6895,7 @@ msgstr " Caractères"
#: ../../enterprise/meta/advanced/metasetup.password.php:126
#: ../../enterprise/meta/include/functions_meta.php:417
#: ../../enterprise/godmode/setup/setup.php:347
-#: ../../include/functions_config.php:502
+#: ../../include/functions_config.php:510
msgid "Password expiration"
msgstr "Expiration du mot de passe"
@@ -6772,7 +6911,7 @@ msgstr " Jours"
#: ../../enterprise/meta/advanced/metasetup.password.php:138
#: ../../enterprise/meta/include/functions_meta.php:437
#: ../../enterprise/godmode/setup/setup.php:395
-#: ../../include/functions_config.php:510
+#: ../../include/functions_config.php:518
msgid "User blocked if login fails"
msgstr "Utilisateur bloqué en cas d'erreur de connexion"
@@ -6784,7 +6923,7 @@ msgstr " Minutes"
#: ../../enterprise/meta/advanced/metasetup.password.php:150
#: ../../enterprise/meta/include/functions_meta.php:447
#: ../../enterprise/godmode/setup/setup.php:413
-#: ../../include/functions_config.php:514
+#: ../../include/functions_config.php:522
msgid "Number of failed login attempts"
msgstr "Nombre de tentatives de connexion infructueuses"
@@ -6800,56 +6939,56 @@ msgstr " Tentatives"
#: ../../enterprise/meta/advanced/metasetup.password.php:162
#: ../../enterprise/meta/include/functions_meta.php:469
#: ../../enterprise/godmode/setup/setup.php:451
-#: ../../include/functions_config.php:534
+#: ../../include/functions_config.php:542
msgid "Compare previous password"
msgstr "Comparer mot de passe précédent"
#: ../../enterprise/meta/advanced/metasetup.password.php:174
#: ../../enterprise/meta/include/functions_meta.php:457
#: ../../enterprise/godmode/setup/setup.php:441
-#: ../../include/functions_config.php:530
+#: ../../include/functions_config.php:538
msgid "Enable password history"
msgstr "Activer historique de mot de passe"
#: ../../enterprise/meta/advanced/metasetup.password.php:192
#: ../../enterprise/meta/include/functions_meta.php:480
#: ../../enterprise/godmode/setup/setup.php:431
-#: ../../include/functions_config.php:526
+#: ../../include/functions_config.php:534
msgid "Apply password policy to admin users"
msgstr "Appliquer la politique de mot de passe aux administrateurs"
#: ../../enterprise/meta/advanced/metasetup.password.php:199
#: ../../enterprise/meta/include/functions_meta.php:427
#: ../../enterprise/godmode/setup/setup.php:385
-#: ../../include/functions_config.php:506
+#: ../../include/functions_config.php:514
msgid "Force change password on first login"
msgstr "Forcer le changement mot de passe lors de la première connexion"
#: ../../enterprise/meta/advanced/metasetup.password.php:206
#: ../../enterprise/meta/include/functions_meta.php:397
#: ../../enterprise/godmode/setup/setup.php:365
-#: ../../include/functions_config.php:518
+#: ../../include/functions_config.php:526
msgid "Password must have numbers"
msgstr "Le mot de passe doit contenir des chiffres"
#: ../../enterprise/meta/advanced/metasetup.password.php:213
#: ../../enterprise/meta/include/functions_meta.php:407
#: ../../enterprise/godmode/setup/setup.php:375
-#: ../../include/functions_config.php:522
+#: ../../include/functions_config.php:530
msgid "Password must have symbols"
msgstr "Le mot de passe doit contenir des symboles"
#: ../../enterprise/meta/advanced/metasetup.password.php:220
#: ../../enterprise/meta/include/functions_meta.php:491
#: ../../enterprise/godmode/setup/setup.php:463
-#: ../../include/functions_config.php:538
+#: ../../include/functions_config.php:546
msgid "Activate reset password"
msgstr "Activer la réinitialisation du mot de passe"
#: ../../enterprise/meta/advanced/metasetup.password.php:228
#: ../../enterprise/meta/include/functions_meta.php:501
#: ../../enterprise/godmode/setup/setup.php:473
-#: ../../include/functions_config.php:542
+#: ../../include/functions_config.php:550
msgid "Exclusion word list for passwords"
msgstr "Liste de mots exclus pour les mots de passe"
@@ -6919,56 +7058,56 @@ msgstr ""
"noter que ces paramètres ignoreront cette configuration de la console."
#: ../../enterprise/meta/advanced/metasetup.mail.php:117
-#: ../../godmode/setup/setup_general.php:725
+#: ../../godmode/setup/setup_general.php:751
msgid "Mail configuration"
msgstr "Configuration du courriel"
#: ../../enterprise/meta/advanced/metasetup.mail.php:122
-#: ../../include/functions_config.php:398
+#: ../../include/functions_config.php:406
msgid "From dir"
msgstr "À partir du répertoire"
#: ../../enterprise/meta/advanced/metasetup.mail.php:127
-#: ../../godmode/setup/setup_general.php:756
-#: ../../include/functions_config.php:402
+#: ../../godmode/setup/setup_general.php:782
+#: ../../include/functions_config.php:410
msgid "From name"
msgstr "À partir d'un nom"
#: ../../enterprise/meta/advanced/metasetup.mail.php:132
-#: ../../include/functions_config.php:394
+#: ../../include/functions_config.php:402
msgid "Server SMTP"
msgstr "Serveur SMTP"
#: ../../enterprise/meta/advanced/metasetup.mail.php:137
-#: ../../include/functions_config.php:406
+#: ../../include/functions_config.php:414
msgid "Port SMTP"
msgstr "Port SMTP"
#: ../../enterprise/meta/advanced/metasetup.mail.php:142
-#: ../../godmode/setup/setup_general.php:817
-#: ../../include/functions_config.php:410
+#: ../../godmode/setup/setup_general.php:843
+#: ../../include/functions_config.php:418
msgid "Encryption"
msgstr "Encodage"
#: ../../enterprise/meta/advanced/metasetup.mail.php:148
#: ../../godmode/gis_maps/configure_gis_map.php:586
-#: ../../godmode/setup/setup_general.php:823
+#: ../../godmode/setup/setup_general.php:849
#: ../../godmode/reporting/create_container.php:291
#: ../../godmode/reporting/create_container.php:310
-#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087
-#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106
+#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088
+#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130
msgid "none"
msgstr "aucun"
#: ../../enterprise/meta/advanced/metasetup.mail.php:155
-#: ../../godmode/setup/setup_general.php:792
-#: ../../include/functions_config.php:414
+#: ../../godmode/setup/setup_general.php:818
+#: ../../include/functions_config.php:422
msgid "Email user"
msgstr "Utilisateur du courriel"
#: ../../enterprise/meta/advanced/metasetup.mail.php:160
-#: ../../godmode/setup/setup_general.php:803
-#: ../../include/functions_config.php:418
+#: ../../godmode/setup/setup_general.php:829
+#: ../../include/functions_config.php:426
msgid "Email password"
msgstr "Mot de passe du courriel"
@@ -6992,11 +7131,11 @@ msgstr "Configuration des mots de passe"
#: ../../enterprise/meta/general/main_header.php:143
#: ../../enterprise/meta/general/main_menu.php:260
#: ../../enterprise/operation/log/elasticsearch_interface.php:30
-#: ../../enterprise/operation/log/log_viewer.php:399
-#: ../../enterprise/operation/log/log_viewer.php:439
-#: ../../enterprise/operation/log/log_viewer.php:498
+#: ../../enterprise/operation/log/log_viewer.php:397
+#: ../../enterprise/operation/log/log_viewer.php:437
+#: ../../enterprise/operation/log/log_viewer.php:496
#: ../../enterprise/operation/menu.php:162
-#: ../../operation/agentes/ver_agente.php:1893
+#: ../../operation/agentes/ver_agente.php:1889
msgid "Log viewer"
msgstr "Visualiseur de journaux"
@@ -7004,12 +7143,12 @@ msgstr "Visualiseur de journaux"
#: ../../enterprise/godmode/menu.php:132
#: ../../enterprise/include/functions_setup.php:67
#: ../../enterprise/include/functions_setup.php:119
-#: ../../operation/agentes/datos_agente.php:180
+#: ../../operation/agentes/datos_agente.php:181
msgid "History database"
msgstr "Base de Données de l'historique"
#: ../../enterprise/meta/advanced/metasetup.php:100
-#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360
+#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358
#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274
msgid "Authentication"
msgstr "Authentification"
@@ -7026,7 +7165,7 @@ msgstr "Configuration de la performance"
#: ../../enterprise/meta/advanced/metasetup.php:126
#: ../../enterprise/meta/advanced/metasetup.php:225
-#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439
+#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437
#: ../../godmode/setup/file_manager.php:47
#: ../../godmode/setup/file_manager.php:60
msgid "File manager"
@@ -7043,7 +7182,7 @@ msgid "Mail"
msgstr "Email"
#: ../../enterprise/meta/advanced/metasetup.php:150
-#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389
+#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387
#: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325
msgid "Notifications"
msgstr "Notifications"
@@ -7115,8 +7254,8 @@ msgstr "Mise à jour en ligne en ligne"
#: ../../godmode/update_manager/update_manager.php:57
#: ../../godmode/update_manager/update_manager.php:87
#: ../../godmode/agentes/configurar_agente.php:405
-#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338
-#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389
+#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336
+#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389
#: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67
#: ../../godmode/setup/gis_step_2.php:100 ../../godmode/setup/gis_step_2.php:104
#: ../../godmode/module_library/module_library_view.php:48
@@ -7169,37 +7308,19 @@ msgstr "Appliquer les politiques"
#: ../../enterprise/operation/agentes/ver_agente.php:254
#: ../../include/functions_networkmap.php:1303
#: ../../include/functions_maps.php:42
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:346
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:349
#: ../../operation/tree.php:128 ../../operation/search_results.php:172
#: ../../operation/agentes/estado_agente.php:387
-#: ../../operation/agentes/ver_agente.php:1860 ../../operation/search_main.php:73
+#: ../../operation/agentes/ver_agente.php:1856 ../../operation/search_main.php:73
msgid "Policies"
msgstr "Politiques"
-#: ../../enterprise/meta/advanced/policymanager.apply.php:200
-#: ../../enterprise/godmode/servers/new_HA_cluster.php:86
-#: ../../enterprise/godmode/servers/HA_cluster.php:97
-#: ../../enterprise/godmode/servers/manage_export.php:69
-#: ../../enterprise/godmode/servers/manage_export_form.php:85
-#: ../../enterprise/godmode/servers/list_satellite.php:37
-#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225
-#: ../../godmode/reporting/visual_console_builder.wizard.php:353
-#: ../../godmode/servers/modificar_server.php:59
-#: ../../godmode/servers/modificar_server.php:218
-#: ../../godmode/servers/modificar_server.php:271
-#: ../../godmode/servers/plugin_registration.php:73
-#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355
-#: ../../godmode/servers/plugin.php:802 ../../mobile/include/functions_web.php:28
-#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370
-msgid "Servers"
-msgstr "Serveurs"
-
#: ../../enterprise/meta/advanced/policymanager.apply.php:213
#: ../../enterprise/meta/advanced/policymanager.queue.php:311
-#: ../../enterprise/godmode/policies/policy_queue.php:754
+#: ../../enterprise/godmode/policies/policy_queue.php:758
#: ../../enterprise/godmode/policies/policy_agents.php:964
#: ../../enterprise/godmode/policies/policy_agents.php:1348
-#: ../../include/functions_visual_map_editor.php:641
+#: ../../include/functions_visual_map_editor.php:637
msgid "Apply"
msgstr "Appliquer"
@@ -7295,8 +7416,8 @@ msgstr "Erreur de suppression"
#: ../../enterprise/godmode/policies/policy_alerts.php:137
#: ../../enterprise/godmode/policies/policy_modules.php:529
#: ../../enterprise/godmode/setup/setup_metaconsole.php:147
-#: ../../godmode/users/user_list.php:448
-#: ../../godmode/agentes/configurar_agente.php:2188
+#: ../../godmode/users/user_list.php:449
+#: ../../godmode/agentes/configurar_agente.php:2251
#: ../../godmode/agentes/modificar_agente.php:227
#: ../../godmode/massive/massive_enable_disable_alerts.php:102
#: ../../godmode/alerts/alert_list.php:382
@@ -7308,7 +7429,7 @@ msgstr "Activé correctement"
#: ../../enterprise/godmode/policies/policy_alerts.php:138
#: ../../enterprise/godmode/policies/policy_modules.php:530
#: ../../enterprise/godmode/setup/setup_metaconsole.php:148
-#: ../../godmode/agentes/configurar_agente.php:2189
+#: ../../godmode/agentes/configurar_agente.php:2252
#: ../../godmode/agentes/modificar_agente.php:228
#: ../../godmode/massive/massive_enable_disable_alerts.php:102
#: ../../godmode/alerts/alert_list.php:383
@@ -7320,8 +7441,8 @@ msgstr "Erreur d'activation"
#: ../../enterprise/godmode/policies/policy_alerts.php:163
#: ../../enterprise/godmode/policies/policy_modules.php:546
#: ../../enterprise/godmode/setup/setup_metaconsole.php:156
-#: ../../godmode/users/user_list.php:442
-#: ../../godmode/agentes/configurar_agente.php:2213
+#: ../../godmode/users/user_list.php:443
+#: ../../godmode/agentes/configurar_agente.php:2276
#: ../../godmode/agentes/modificar_agente.php:270
#: ../../godmode/massive/massive_enable_disable_alerts.php:124
#: ../../godmode/alerts/alert_list.php:418
@@ -7396,29 +7517,30 @@ msgstr "%s édition des éléments de la Métaconsole"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714
#: ../../enterprise/include/functions_reporting_csv.php:1208
-#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/graph_builder.graph_editor.php:347
#: ../../godmode/reporting/reporting_builder.item_editor.php:1290
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.elements.php:310
#: ../../godmode/reporting/visual_console_builder.wizard.php:469
#: ../../include/functions_visual_map_editor.php:67
-#: ../../include/functions_visual_map_editor.php:193
-#: ../../include/functions_visual_map_editor.php:777
-#: ../../include/functions_visual_map_editor.php:1392
-#: ../../include/functions_visual_map.php:4210
-#: ../../include/rest-api/models/VisualConsole/Item.php:1942
-#: ../../include/rest-api/models/VisualConsole/Item.php:2136
+#: ../../include/functions_visual_map_editor.php:189
+#: ../../include/functions_visual_map_editor.php:817
+#: ../../include/functions_visual_map_editor.php:1450
+#: ../../include/functions_visual_map.php:4219
+#: ../../include/rest-api/models/VisualConsole/Item.php:1947
+#: ../../include/rest-api/models/VisualConsole/Item.php:2139
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:329
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447
#: ../../include/lib/Dashboard/Widgets/module_icon.php:347
#: ../../include/lib/Dashboard/Widgets/module_value.php:322
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314
#: ../../include/lib/Dashboard/Widgets/module_status.php:338
-#: ../../operation/visual_console/view.php:356
+#: ../../operation/visual_console/view.php:358
msgid "Label"
msgstr "Étiquette"
@@ -7508,12 +7630,12 @@ msgstr "Port de la BD"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:227
#: ../../extensions/quick_shell.php:539
#: ../../godmode/agentes/module_manager_editor.php:750
-#: ../../godmode/agentes/agent_manager.php:905
-#: ../../godmode/massive/massive_edit_agents.php:1159
+#: ../../godmode/agentes/agent_manager.php:912
+#: ../../godmode/massive/massive_edit_agents.php:1175
#: ../../godmode/massive/massive_add_action_alerts.php:251
-#: ../../include/functions_visual_map_editor.php:893
-#: ../../operation/agentes/status_monitor.php:1022
-#: ../../operation/events/events.php:2271
+#: ../../include/functions_visual_map_editor.php:941
+#: ../../operation/agentes/status_monitor.php:1024
+#: ../../operation/events/events.php:2325
msgid "Advanced options"
msgstr "Options avancées"
@@ -7623,7 +7745,7 @@ msgstr "Synchronisation de la base de données"
#: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132
#: ../../operation/search_agents.php:133
#: ../../operation/agentes/ver_agente.php:1375
-#: ../../operation/agentes/ver_agente.php:1831
+#: ../../operation/agentes/ver_agente.php:1827
msgid "Manage"
msgstr "Gérer"
@@ -7666,7 +7788,7 @@ msgstr "Erreur de création du lien"
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50
#: ../../godmode/modules/manage_nc_groups.php:108
#: ../../godmode/users/profile_list.php:278
-#: ../../godmode/users/configure_user.php:530
+#: ../../godmode/users/configure_user.php:479
#: ../../godmode/agentes/configurar_agente.php:888
#: ../../godmode/agentes/planned_downtime.editor.php:660
#: ../../godmode/snmpconsole/snmp_alert.php:302
@@ -7675,7 +7797,7 @@ msgstr "Erreur de création du lien"
#: ../../godmode/alerts/configure_alert_template.php:553
#: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83
#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57
-#: ../../include/functions_alerts.php:2754
+#: ../../include/functions_alerts.php:2755
#: ../../include/class/EventSound.class.php:103
#: ../../include/class/EventSound.class.php:134
#: ../../include/class/CalendarManager.class.php:537
@@ -7695,7 +7817,7 @@ msgstr "Problème de modification du lien"
#: ../../enterprise/meta/advanced/links.php:69
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126
-#: ../../enterprise/godmode/policies/policy_modules.php:1265
+#: ../../enterprise/godmode/policies/policy_modules.php:1310
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138
@@ -7712,21 +7834,21 @@ msgstr "Problème de modification du lien"
#: ../../enterprise/tools/ipam/ipam_massive.php:47
#: ../../godmode/modules/manage_nc_groups.php:142
#: ../../godmode/users/profile_list.php:261
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
-#: ../../godmode/agentes/configurar_agente.php:1198
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
+#: ../../godmode/agentes/configurar_agente.php:1214
#: ../../godmode/agentes/planned_downtime.editor.php:662
-#: ../../godmode/netflow/nf_edit_form.php:140
+#: ../../godmode/netflow/nf_edit_form.php:172
#: ../../godmode/snmpconsole/snmp_alert.php:444
#: ../../godmode/snmpconsole/snmp_filters.php:110
#: ../../godmode/massive/massive_edit_modules.php:184
#: ../../godmode/alerts/configure_alert_command.php:149
-#: ../../godmode/alerts/alert_templates.php:161
+#: ../../godmode/alerts/alert_templates.php:165
#: ../../godmode/alerts/configure_alert_template.php:571
#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319
#: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39
#: ../../godmode/setup/links.php:76
-#: ../../godmode/events/event_edit_filter.php:242
-#: ../../include/functions_alerts.php:2754
+#: ../../godmode/events/event_edit_filter.php:244
+#: ../../include/functions_alerts.php:2755
#: ../../include/class/CalendarManager.class.php:534
#: ../../include/class/CalendarManager.class.php:891
#: ../../include/functions_planned_downtimes.php:125
@@ -7784,7 +7906,7 @@ msgstr "Appliquer les politiques"
#: ../../enterprise/include/class/CommandCenter.class.php:145
#: ../../godmode/netflow/nf_item_list.php:49
#: ../../operation/agentes/ver_agente.php:1390
-#: ../../operation/agentes/ver_agente.php:1835
+#: ../../operation/agentes/ver_agente.php:1831
msgid "Main"
msgstr "Principal"
@@ -7860,41 +7982,49 @@ msgstr "Collections"
#: ../../enterprise/operation/agentes/tag_view.php:787
#: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230
#: ../../extensions/insert_data.php:235
-#: ../../godmode/agentes/status_monitor_custom_fields.php:113
-#: ../../godmode/agentes/status_monitor_custom_fields.php:150
+#: ../../godmode/agentes/status_monitor_custom_fields.php:133
+#: ../../godmode/agentes/status_monitor_custom_fields.php:170
#: ../../godmode/events/custom_events.php:113
-#: ../../mobile/operation/modules.php:715 ../../mobile/operation/modules.php:718
-#: ../../mobile/operation/modules.php:719 ../../mobile/operation/modules.php:720
-#: ../../mobile/operation/modules.php:721 ../../mobile/operation/modules.php:722
-#: ../../mobile/operation/modules.php:723 ../../mobile/operation/modules.php:724
-#: ../../mobile/operation/modules.php:725 ../../mobile/operation/modules.php:727
-#: ../../mobile/operation/modules.php:730 ../../mobile/operation/modules.php:731
-#: ../../mobile/operation/modules.php:732 ../../mobile/operation/modules.php:733
-#: ../../mobile/operation/modules.php:734 ../../mobile/operation/modules.php:735
-#: ../../mobile/operation/modules.php:736 ../../mobile/operation/modules.php:737
-#: ../../mobile/operation/modules.php:853
-#: ../../include/functions_reporting_html.php:2357
-#: ../../include/functions_reporting_html.php:2836
-#: ../../include/functions_reporting_html.php:2840
-#: ../../include/functions_reporting_html.php:2841
-#: ../../include/functions_reporting_html.php:2845
-#: ../../include/functions_reporting_html.php:2850
-#: ../../include/functions_reporting_html.php:2855
-#: ../../include/functions_reporting_html.php:2859
+#: ../../mobile/operation/modules.php:726 ../../mobile/operation/modules.php:730
+#: ../../mobile/operation/modules.php:731 ../../mobile/operation/modules.php:732
+#: ../../mobile/operation/modules.php:733 ../../mobile/operation/modules.php:734
+#: ../../mobile/operation/modules.php:735 ../../mobile/operation/modules.php:737
+#: ../../mobile/operation/modules.php:740 ../../mobile/operation/modules.php:741
+#: ../../mobile/operation/modules.php:742 ../../mobile/operation/modules.php:743
+#: ../../mobile/operation/modules.php:744 ../../mobile/operation/modules.php:745
+#: ../../mobile/operation/modules.php:749 ../../mobile/operation/modules.php:750
+#: ../../mobile/operation/modules.php:751 ../../mobile/operation/modules.php:752
+#: ../../mobile/operation/modules.php:753 ../../mobile/operation/modules.php:754
+#: ../../mobile/operation/modules.php:755 ../../mobile/operation/modules.php:756
+#: ../../mobile/operation/modules.php:758 ../../mobile/operation/modules.php:761
+#: ../../mobile/operation/modules.php:762 ../../mobile/operation/modules.php:763
+#: ../../mobile/operation/modules.php:764 ../../mobile/operation/modules.php:765
+#: ../../mobile/operation/modules.php:766 ../../mobile/operation/modules.php:767
+#: ../../mobile/operation/modules.php:768 ../../mobile/operation/modules.php:912
+#: ../../mobile/operation/module_data.php:164
+#: ../../include/functions_reporting_html.php:2378
#: ../../include/functions_reporting_html.php:2864
-#: ../../include/functions_reporting_html.php:2871
-#: ../../include/functions_reporting_html.php:2921
-#: ../../include/functions_reporting_html.php:2995
-#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412
-#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301
-#: ../../include/functions_reporting.php:4729
-#: ../../include/functions_reporting.php:4770
+#: ../../include/functions_reporting_html.php:2868
+#: ../../include/functions_reporting_html.php:2869
+#: ../../include/functions_reporting_html.php:2873
+#: ../../include/functions_reporting_html.php:2878
+#: ../../include/functions_reporting_html.php:2883
+#: ../../include/functions_reporting_html.php:2887
+#: ../../include/functions_reporting_html.php:2892
+#: ../../include/functions_reporting_html.php:2899
+#: ../../include/functions_reporting_html.php:2949
+#: ../../include/functions_reporting_html.php:3023
+#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028
+#: ../../include/ajax/custom_fields.php:412
+#: ../../include/functions_graph.php:3514 ../../include/functions_netflow.php:301
+#: ../../include/functions_reporting.php:4738
+#: ../../include/functions_reporting.php:4779
#: ../../include/functions_events.php:218 ../../include/functions_events.php:301
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1590
+#: ../../operation/agentes/status_monitor.php:1592
#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:38
+#: ../../operation/search_modules.php:41
msgid "Data"
msgstr "Données"
@@ -7954,7 +8084,7 @@ msgstr "Collection créée correctement"
#: ../../enterprise/godmode/agentes/collections.editor.php:74
#: ../../enterprise/godmode/agentes/collections.editor.php:463
#: ../../enterprise/include/functions_collection.php:186
-#: ../../operation/agentes/ver_agente.php:1679
+#: ../../operation/agentes/ver_agente.php:1675
msgid "Files"
msgstr "Fichiers"
@@ -8060,7 +8190,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collections.editor.php:179
#: ../../enterprise/godmode/agentes/collections.editor.php:245
#: ../../godmode/servers/plugin.php:171
-#: ../../include/functions_filemanager.php:776
+#: ../../include/functions_filemanager.php:791
msgid "Edit file"
msgstr "Modifier le fichier"
@@ -8151,27 +8281,28 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037
#: ../../enterprise/godmode/wizards/consoletask_js.php:41
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410
-#: ../../enterprise/operation/log/log_viewer.php:1195
-#: ../../enterprise/operation/log/log_viewer.php:1210
+#: ../../enterprise/operation/log/log_viewer.php:1193
+#: ../../enterprise/operation/log/log_viewer.php:1208
#: ../../enterprise/operation/services/services.treeview_services.php:410
#: ../../extensions/insert_data.php:279
-#: ../../godmode/agentes/planned_downtime.editor.php:2011
+#: ../../godmode/agentes/planned_downtime.editor.php:2007
#: ../../godmode/alerts/configure_alert_template.php:1506
#: ../../godmode/alerts/configure_alert_template.php:1590
-#: ../../godmode/setup/news.php:431
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5162
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:737
-#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585
-#: ../../operation/agentes/interface_traffic_graph_win.php:436
-#: ../../operation/agentes/datos_agente.php:312
-#: ../../operation/agentes/estado_monitores.php:464
+#: ../../godmode/setup/news.php:430
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5171
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:730
+#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601
+#: ../../operation/agentes/interface_traffic_graph_win.php:445
+#: ../../operation/agentes/datos_agente.php:314
+#: ../../operation/agentes/estado_monitores.php:461
#: ../../operation/network/network_report.php:457
#: ../../operation/network/network_usage_map.php:294
-#: ../../operation/netflow/nf_live_view.php:865
+#: ../../operation/netflow/nf_live_view.php:976
+#: ../../operation/search_modules.php:353
#: ../../operation/reporting/reporting_viewer.php:360
#: ../../operation/reporting/reporting_viewer.php:379
#: ../../operation/reporting/graph_viewer.php:466
-#: ../../operation/events/events.php:3223
+#: ../../operation/events/events.php:3282
msgid "Choose time"
msgstr "Définir temps"
@@ -8183,28 +8314,29 @@ msgstr "Définir temps"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411
#: ../../enterprise/include/lib/Metaconsole/Node.php:539
-#: ../../enterprise/operation/log/log_viewer.php:1196
-#: ../../enterprise/operation/log/log_viewer.php:1211
+#: ../../enterprise/operation/log/log_viewer.php:1194
+#: ../../enterprise/operation/log/log_viewer.php:1209
#: ../../enterprise/operation/services/services.treeview_services.php:411
#: ../../extensions/insert_data.php:280
-#: ../../godmode/agentes/planned_downtime.editor.php:2012
+#: ../../godmode/agentes/planned_downtime.editor.php:2008
#: ../../godmode/alerts/configure_alert_template.php:1507
#: ../../godmode/alerts/configure_alert_template.php:1591
-#: ../../godmode/setup/news.php:432
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5163
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:738
-#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586
-#: ../../operation/agentes/interface_traffic_graph_win.php:437
-#: ../../operation/agentes/datos_agente.php:313
-#: ../../operation/agentes/estado_monitores.php:465
+#: ../../godmode/setup/news.php:431
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5172
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:731
+#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602
+#: ../../operation/agentes/interface_traffic_graph_win.php:446
+#: ../../operation/agentes/datos_agente.php:315
+#: ../../operation/agentes/estado_monitores.php:462
#: ../../operation/network/network_report.php:458
#: ../../operation/network/network_usage_map.php:295
-#: ../../operation/netflow/nf_live_view.php:866
+#: ../../operation/netflow/nf_live_view.php:977
+#: ../../operation/search_modules.php:354
#: ../../operation/reporting/reporting_viewer.php:361
#: ../../operation/reporting/reporting_viewer.php:380
#: ../../operation/reporting/graph_viewer.php:333
#: ../../operation/reporting/graph_viewer.php:467
-#: ../../operation/events/events.php:3224
+#: ../../operation/events/events.php:3283
msgid "Time"
msgstr "Temps"
@@ -8215,28 +8347,29 @@ msgstr "Temps"
#: ../../enterprise/godmode/wizards/consoletask_js.php:43
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412
-#: ../../enterprise/operation/log/log_viewer.php:1197
-#: ../../enterprise/operation/log/log_viewer.php:1212
+#: ../../enterprise/operation/log/log_viewer.php:1195
+#: ../../enterprise/operation/log/log_viewer.php:1210
#: ../../enterprise/operation/services/services.treeview_services.php:412
#: ../../extensions/insert_data.php:281
-#: ../../godmode/agentes/planned_downtime.editor.php:2013
+#: ../../godmode/agentes/planned_downtime.editor.php:2009
#: ../../godmode/alerts/configure_alert_template.php:1508
#: ../../godmode/alerts/configure_alert_template.php:1592
-#: ../../godmode/setup/news.php:433
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5164
-#: ../../include/functions_html.php:2319
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:739
-#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587
-#: ../../operation/agentes/interface_traffic_graph_win.php:438
-#: ../../operation/agentes/datos_agente.php:314
-#: ../../operation/agentes/estado_monitores.php:466
+#: ../../godmode/setup/news.php:432
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5173
+#: ../../include/functions_html.php:2334
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:732
+#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603
+#: ../../operation/agentes/interface_traffic_graph_win.php:447
+#: ../../operation/agentes/datos_agente.php:316
+#: ../../operation/agentes/estado_monitores.php:463
#: ../../operation/network/network_report.php:459
#: ../../operation/network/network_usage_map.php:296
-#: ../../operation/netflow/nf_live_view.php:867
+#: ../../operation/netflow/nf_live_view.php:978
+#: ../../operation/search_modules.php:355
#: ../../operation/reporting/reporting_viewer.php:362
#: ../../operation/reporting/reporting_viewer.php:381
#: ../../operation/reporting/graph_viewer.php:468
-#: ../../operation/events/events.php:3225
+#: ../../operation/events/events.php:3284
msgid "Hour"
msgstr "Heure"
@@ -8247,28 +8380,29 @@ msgstr "Heure"
#: ../../enterprise/godmode/wizards/consoletask_js.php:44
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413
-#: ../../enterprise/operation/log/log_viewer.php:1198
-#: ../../enterprise/operation/log/log_viewer.php:1213
+#: ../../enterprise/operation/log/log_viewer.php:1196
+#: ../../enterprise/operation/log/log_viewer.php:1211
#: ../../enterprise/operation/services/services.treeview_services.php:413
#: ../../extensions/insert_data.php:282
-#: ../../godmode/agentes/planned_downtime.editor.php:2014
+#: ../../godmode/agentes/planned_downtime.editor.php:2010
#: ../../godmode/alerts/configure_alert_template.php:1509
#: ../../godmode/alerts/configure_alert_template.php:1593
-#: ../../godmode/setup/news.php:434
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5165
-#: ../../include/functions_html.php:2320
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:740
-#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588
-#: ../../operation/agentes/interface_traffic_graph_win.php:439
-#: ../../operation/agentes/datos_agente.php:315
-#: ../../operation/agentes/estado_monitores.php:467
+#: ../../godmode/setup/news.php:433
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5174
+#: ../../include/functions_html.php:2335
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:733
+#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604
+#: ../../operation/agentes/interface_traffic_graph_win.php:448
+#: ../../operation/agentes/datos_agente.php:317
+#: ../../operation/agentes/estado_monitores.php:464
#: ../../operation/network/network_report.php:460
#: ../../operation/network/network_usage_map.php:297
-#: ../../operation/netflow/nf_live_view.php:868
+#: ../../operation/netflow/nf_live_view.php:979
+#: ../../operation/search_modules.php:356
#: ../../operation/reporting/reporting_viewer.php:363
#: ../../operation/reporting/reporting_viewer.php:382
#: ../../operation/reporting/graph_viewer.php:469
-#: ../../operation/events/events.php:3226
+#: ../../operation/events/events.php:3285
msgid "Minute"
msgstr "Minute"
@@ -8279,27 +8413,28 @@ msgstr "Minute"
#: ../../enterprise/godmode/wizards/consoletask_js.php:45
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414
-#: ../../enterprise/operation/log/log_viewer.php:1199
-#: ../../enterprise/operation/log/log_viewer.php:1214
+#: ../../enterprise/operation/log/log_viewer.php:1197
+#: ../../enterprise/operation/log/log_viewer.php:1212
#: ../../enterprise/operation/services/services.treeview_services.php:414
#: ../../extensions/insert_data.php:283
-#: ../../godmode/agentes/planned_downtime.editor.php:2015
+#: ../../godmode/agentes/planned_downtime.editor.php:2011
#: ../../godmode/alerts/configure_alert_template.php:1510
#: ../../godmode/alerts/configure_alert_template.php:1594
-#: ../../godmode/setup/news.php:435
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5166
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:741
-#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589
-#: ../../operation/agentes/interface_traffic_graph_win.php:440
-#: ../../operation/agentes/datos_agente.php:316
-#: ../../operation/agentes/estado_monitores.php:468
+#: ../../godmode/setup/news.php:434
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5175
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:734
+#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605
+#: ../../operation/agentes/interface_traffic_graph_win.php:449
+#: ../../operation/agentes/datos_agente.php:318
+#: ../../operation/agentes/estado_monitores.php:465
#: ../../operation/network/network_report.php:461
#: ../../operation/network/network_usage_map.php:298
-#: ../../operation/netflow/nf_live_view.php:869
+#: ../../operation/netflow/nf_live_view.php:980
+#: ../../operation/search_modules.php:357
#: ../../operation/reporting/reporting_viewer.php:364
#: ../../operation/reporting/reporting_viewer.php:383
#: ../../operation/reporting/graph_viewer.php:470
-#: ../../operation/events/events.php:3227
+#: ../../operation/events/events.php:3286
msgid "Second"
msgstr "Seconde"
@@ -8310,36 +8445,37 @@ msgstr "Seconde"
#: ../../enterprise/godmode/wizards/consoletask_js.php:46
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415
-#: ../../enterprise/operation/log/log_viewer.php:1200
-#: ../../enterprise/operation/log/log_viewer.php:1215
+#: ../../enterprise/operation/log/log_viewer.php:1198
+#: ../../enterprise/operation/log/log_viewer.php:1213
#: ../../enterprise/operation/services/services.treeview_services.php:415
#: ../../extensions/insert_data.php:284
-#: ../../godmode/agentes/planned_downtime.editor.php:2016
+#: ../../godmode/agentes/planned_downtime.editor.php:2012
#: ../../godmode/alerts/configure_alert_template.php:1511
#: ../../godmode/alerts/configure_alert_template.php:1595
-#: ../../godmode/setup/news.php:436
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5167
+#: ../../godmode/setup/news.php:435
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5176
#: ../../include/functions.php:515 ../../include/functions.php:646
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:742
-#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590
-#: ../../operation/agentes/interface_traffic_graph_win.php:441
-#: ../../operation/agentes/datos_agente.php:317
-#: ../../operation/agentes/estado_monitores.php:469
-#: ../../operation/agentes/agent_inventory.php:133
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:735
+#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606
+#: ../../operation/agentes/interface_traffic_graph_win.php:450
+#: ../../operation/agentes/datos_agente.php:319
+#: ../../operation/agentes/estado_monitores.php:466
+#: ../../operation/agentes/agent_inventory.php:141
#: ../../operation/network/network_report.php:462
#: ../../operation/network/network_usage_map.php:299
-#: ../../operation/netflow/nf_live_view.php:870
+#: ../../operation/netflow/nf_live_view.php:981
+#: ../../operation/search_modules.php:358
#: ../../operation/reporting/reporting_viewer.php:365
#: ../../operation/reporting/reporting_viewer.php:384
#: ../../operation/reporting/graph_viewer.php:471
-#: ../../operation/events/events.php:3228
+#: ../../operation/events/events.php:3287
msgid "Now"
msgstr "Maintenant"
#: ../../enterprise/meta/advanced/metasetup.setup.php:78
#: ../../enterprise/godmode/modules/configure_local_component.php:166
#: ../../godmode/modules/manage_network_components_form_common.php:52
-#: ../../godmode/users/configure_user.php:1405
+#: ../../godmode/users/configure_user.php:1454
#: ../../godmode/alerts/alert_commands.php:143
#: ../../godmode/alerts/alert_commands.php:184
#: ../../godmode/alerts/configure_alert_template.php:953
@@ -8364,17 +8500,17 @@ msgstr "Mot de passe de connexion automatique (hash)"
#: ../../enterprise/meta/advanced/metasetup.setup.php:110
#: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248
#: ../../include/functions_reporting_html.php:1142
-#: ../../include/functions_reporting_html.php:2701
+#: ../../include/functions_reporting_html.php:2720
#: ../../include/functions.php:1291
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430
#: ../../include/functions_events.php:2609
-#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833
+#: ../../include/functions_events.php:3167 ../../operation/events/events.php:838
msgid "System"
msgstr "Système"
#: ../../enterprise/meta/advanced/metasetup.setup.php:111
-#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:937
+#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:942
msgid "Database"
msgstr "Base de données"
@@ -8434,7 +8570,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:192
#: ../../enterprise/godmode/setup/setup_auth.php:353
#: ../../godmode/setup/setup_general.php:80
-#: ../../include/functions_visual_map_editor.php:290
+#: ../../include/functions_visual_map_editor.php:286
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271
#: ../../include/functions_register.php:134
msgid "Africa"
@@ -8443,7 +8579,7 @@ msgstr "Afrique"
#: ../../enterprise/meta/advanced/metasetup.setup.php:193
#: ../../enterprise/godmode/setup/setup_auth.php:354
#: ../../godmode/setup/setup_general.php:81
-#: ../../include/functions_visual_map_editor.php:291
+#: ../../include/functions_visual_map_editor.php:287
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272
#: ../../include/functions_register.php:135
msgid "America"
@@ -8452,7 +8588,7 @@ msgstr "Amérique"
#: ../../enterprise/meta/advanced/metasetup.setup.php:194
#: ../../enterprise/godmode/setup/setup_auth.php:355
#: ../../godmode/setup/setup_general.php:82
-#: ../../include/functions_visual_map_editor.php:292
+#: ../../include/functions_visual_map_editor.php:288
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273
#: ../../include/functions_register.php:136
msgid "Antarctica"
@@ -8461,7 +8597,7 @@ msgstr "Antarctique"
#: ../../enterprise/meta/advanced/metasetup.setup.php:195
#: ../../enterprise/godmode/setup/setup_auth.php:356
#: ../../godmode/setup/setup_general.php:83
-#: ../../include/functions_visual_map_editor.php:293
+#: ../../include/functions_visual_map_editor.php:289
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274
#: ../../include/functions_register.php:137
msgid "Arctic"
@@ -8470,7 +8606,7 @@ msgstr "Arctique"
#: ../../enterprise/meta/advanced/metasetup.setup.php:196
#: ../../enterprise/godmode/setup/setup_auth.php:357
#: ../../godmode/setup/setup_general.php:84
-#: ../../include/functions_visual_map_editor.php:294
+#: ../../include/functions_visual_map_editor.php:290
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275
#: ../../include/functions_register.php:138
msgid "Asia"
@@ -8479,7 +8615,7 @@ msgstr "Asie"
#: ../../enterprise/meta/advanced/metasetup.setup.php:197
#: ../../enterprise/godmode/setup/setup_auth.php:358
#: ../../godmode/setup/setup_general.php:85
-#: ../../include/functions_visual_map_editor.php:295
+#: ../../include/functions_visual_map_editor.php:291
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276
#: ../../include/functions_register.php:139
msgid "Atlantic"
@@ -8488,7 +8624,7 @@ msgstr "Atlantique"
#: ../../enterprise/meta/advanced/metasetup.setup.php:198
#: ../../enterprise/godmode/setup/setup_auth.php:359
#: ../../godmode/setup/setup_general.php:86
-#: ../../include/functions_visual_map_editor.php:296
+#: ../../include/functions_visual_map_editor.php:292
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277
#: ../../include/functions_register.php:140
msgid "Australia"
@@ -8497,7 +8633,7 @@ msgstr "Australie"
#: ../../enterprise/meta/advanced/metasetup.setup.php:199
#: ../../enterprise/godmode/setup/setup_auth.php:360
#: ../../godmode/setup/setup_general.php:87
-#: ../../include/functions_visual_map_editor.php:297
+#: ../../include/functions_visual_map_editor.php:293
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278
#: ../../include/functions_register.php:141
msgid "Europe"
@@ -8506,7 +8642,7 @@ msgstr "Europe"
#: ../../enterprise/meta/advanced/metasetup.setup.php:200
#: ../../enterprise/godmode/setup/setup_auth.php:361
#: ../../godmode/setup/setup_general.php:88
-#: ../../include/functions_visual_map_editor.php:298
+#: ../../include/functions_visual_map_editor.php:294
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279
#: ../../include/functions_register.php:142
msgid "Indian"
@@ -8515,7 +8651,7 @@ msgstr "Indien"
#: ../../enterprise/meta/advanced/metasetup.setup.php:201
#: ../../enterprise/godmode/setup/setup_auth.php:362
#: ../../godmode/setup/setup_general.php:89
-#: ../../include/functions_visual_map_editor.php:299
+#: ../../include/functions_visual_map_editor.php:295
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280
#: ../../include/functions_register.php:143
msgid "Pacific"
@@ -8524,7 +8660,7 @@ msgstr "Pacifique"
#: ../../enterprise/meta/advanced/metasetup.setup.php:202
#: ../../enterprise/godmode/setup/setup_auth.php:363
#: ../../godmode/setup/setup_general.php:90
-#: ../../include/functions_visual_map_editor.php:300
+#: ../../include/functions_visual_map_editor.php:296
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281
#: ../../include/functions_register.php:144
msgid "UTC"
@@ -8537,7 +8673,6 @@ msgstr "Modifier le fuseau horaire"
#: ../../enterprise/meta/advanced/metasetup.setup.php:232
#: ../../enterprise/meta/include/functions_meta.php:161
-#: ../../godmode/setup/setup_general.php:434
#: ../../include/functions_register.php:164
#: ../../include/functions_config.php:283
msgid "Timezone setup"
@@ -8582,9 +8717,9 @@ msgstr "Forcer l’utilisation d’une URL publique définie)."
#: ../../enterprise/meta/advanced/metasetup.setup.php:306
#: ../../godmode/setup/setup_sflow.php:75
-#: ../../godmode/setup/setup_netflow.php:75
-#: ../../include/functions_config.php:1560
-#: ../../include/functions_config.php:1603
+#: ../../godmode/setup/setup_netflow.php:71
+#: ../../include/functions_config.php:1572
+#: ../../include/functions_config.php:1615
msgid "Disable custom live view filters"
msgstr "Désactiver les filtres personnalisés d'affichage en temps réel"
@@ -8646,7 +8781,7 @@ msgstr "Activer la mise à jour de Warp"
#: ../../enterprise/meta/advanced/metasetup.setup.php:437
#: ../../enterprise/meta/include/functions_meta.php:276
#: ../../enterprise/godmode/setup/setup.php:106
-#: ../../include/functions_config.php:442
+#: ../../include/functions_config.php:450
msgid "Size of collection"
msgstr "Taille de la collection"
@@ -8707,34 +8842,38 @@ msgstr "Emplacement du journal : pandora_console/log/audit.log"
#: ../../enterprise/meta/advanced/metasetup.setup.php:598
#: ../../enterprise/meta/include/functions_meta.php:326
#: ../../godmode/setup/setup_general.php:698
-#: ../../include/functions_config.php:386
+#: ../../include/functions_config.php:390
msgid "Enable console report"
msgstr "Activer le rapport de console"
#: ../../enterprise/meta/advanced/metasetup.setup.php:605
#: ../../enterprise/meta/include/functions_meta.php:346
+#: ../../godmode/setup/setup_general.php:708
+#: ../../include/functions_config.php:394
msgid "Check conexion interval"
msgstr "Vérifier l’intervalle de conexion"
#: ../../enterprise/meta/advanced/metasetup.setup.php:616
+#: ../../godmode/setup/setup_general.php:719
msgid ""
"If there are any "In process" events with a specific Extra ID and a "
"New event with that Extra ID is received, it will be created as "In "
"process" instead."
msgstr ""
-"S’il y a des événements « En cours » avec un ID supplémentaire spécifique et "
-"qu’un nouvel événement avec cet ID supplémentaire est reçu, il sera créé en "
-"tant que « En cours » à la place."
+"S’il y a quelques "En processus" événements avec un Extra ID "
+"spécifique et un Nouveau événement avec ledit Extra ID est recevu, il sera "
+"créé en tant que "En processus" au lieu."
#: ../../enterprise/meta/advanced/metasetup.setup.php:639
#: ../../enterprise/meta/include/functions_meta.php:336
+#: ../../godmode/setup/setup_general.php:724
msgid "Keep In process status for new events with extra ID"
msgstr ""
-"Conserver l’état en cours pour les nouveaux événements avec ID supplémentaire"
+"Maintenir l’état En processus pour des nouveaux événements avec un ID extra"
#: ../../enterprise/meta/advanced/policymanager.sync.php:247
#: ../../enterprise/meta/include/functions_groups_meta.php:174
-#: ../../godmode/groups/group_list.php:664
+#: ../../godmode/groups/group_list.php:665
#, php-format
msgid "Error connecting to %s"
msgstr "Erreur de connexion à %s"
@@ -8795,23 +8934,23 @@ msgstr "%s alertes de politique supprimées"
#: ../../enterprise/include/functions_log.php:279
#: ../../enterprise/include/functions_log.php:282
#: ../../enterprise/include/class/LogSource.class.php:602
-#: ../../enterprise/operation/log/log_viewer.php:793
+#: ../../enterprise/operation/log/log_viewer.php:791
#: ../../godmode/massive/massive_copy_modules.php:144
#: ../../godmode/reporting/reporting_builder.item_editor.php:1677
-#: ../../godmode/events/event_edit_filter.php:797
+#: ../../godmode/events/event_edit_filter.php:799
#: ../../godmode/events/custom_events.php:107
#: ../../include/functions_events.php:212 ../../include/functions_events.php:283
-#: ../../include/functions_events.php:4554
-#: ../../include/functions_events.php:4636
+#: ../../include/functions_events.php:4559
+#: ../../include/functions_events.php:4641
#: ../../operation/agentes/log_sources_status.php:56
#: ../../operation/agentes/pandora_networkmap.editor.php:425
#: ../../operation/agentes/pandora_networkmap.view.php:173
-#: ../../operation/events/events.php:1886
+#: ../../operation/events/events.php:1940
msgid "Source"
msgstr "Source"
#: ../../enterprise/meta/advanced/policymanager.sync.php:308
-#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:610
+#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:611
msgid "This metaconsole"
msgstr "Cette Métaconsole"
@@ -8821,26 +8960,26 @@ msgstr "Cette Métaconsole"
#: ../../enterprise/extensions/resource_exportation/functions.php:35
#: ../../enterprise/godmode/agentes/collection_manager.php:260
#: ../../enterprise/godmode/agentes/plugins_manager.php:213
-#: ../../enterprise/godmode/policies/policy_queue.php:286
-#: ../../enterprise/godmode/policies/policy_queue.php:685
+#: ../../enterprise/godmode/policies/policy_queue.php:288
+#: ../../enterprise/godmode/policies/policy_queue.php:687
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462
#: ../../enterprise/include/functions_policies.php:4043
#: ../../enterprise/operation/agentes/policy_view.php:67
#: ../../enterprise/operation/agentes/collection_view.php:83
-#: ../../godmode/agentes/status_monitor_custom_fields.php:73
-#: ../../godmode/agentes/status_monitor_custom_fields.php:140
+#: ../../godmode/agentes/status_monitor_custom_fields.php:93
+#: ../../godmode/agentes/status_monitor_custom_fields.php:160
#: ../../godmode/agentes/inventory_manager.php:232
#: ../../godmode/agentes/module_manager.php:619
#: ../../godmode/alerts/alert_view.php:154
-#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999
-#: ../../operation/agentes/alerts_status.php:249
+#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:1022
#: ../../operation/agentes/alerts_status.php:250
-#: ../../operation/agentes/status_monitor.php:1531
+#: ../../operation/agentes/alerts_status.php:251
+#: ../../operation/agentes/status_monitor.php:1533
msgid "Policy"
msgstr "Politique"
@@ -8889,12 +9028,12 @@ msgstr "Exécuté :"
#: ../../enterprise/operation/agentes/wux_console_view.php:342
#: ../../enterprise/operation/agentes/wux_console_view.php:363
#: ../../godmode/setup/performance.php:193
-#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199
+#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208
msgid "ago"
msgstr "il y a"
#: ../../enterprise/meta/advanced/metasetup.performance.php:112
-#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125
+#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125
#: ../../godmode/setup/setup.php:279
msgid "Performance"
msgstr "Performance"
@@ -8912,13 +9051,13 @@ msgstr "Utiliser des statistiques en temps réel"
#: ../../enterprise/meta/advanced/metasetup.performance.php:139
#: ../../enterprise/meta/include/functions_meta.php:2030
-#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:842
+#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:854
msgid "Max. days before delete audit events"
msgstr "Nombre de jours maximum avant la suppression d'événements d'audit"
#: ../../enterprise/meta/advanced/metasetup.performance.php:154
#: ../../enterprise/meta/include/functions_meta.php:2040
-#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:882
+#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:894
msgid "Default hours for event view"
msgstr "Heures par défaut pour la visualisation des événements"
@@ -8945,26 +9084,26 @@ msgid "maximum number of events to be displayed per node"
msgstr "nombre maximale d’événements à montrer par noeud"
#: ../../enterprise/meta/advanced/metasetup.performance.php:211
-#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:944
+#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:956
msgid "Row limit in csv log"
msgstr "Limite de ligne dans le journal csv"
#: ../../enterprise/meta/advanced/metasetup.performance.php:226
#: ../../enterprise/meta/include/functions_meta.php:2103
-#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:918
+#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:930
msgid "Max. macro data fields"
msgstr "Nombre maximum de champs macro de données"
#: ../../enterprise/meta/advanced/metasetup.performance.php:241
#: ../../enterprise/meta/include/functions_meta.php:2113
-#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:874
+#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:886
msgid "Limit of events per query"
msgstr "Limite d’événements par requête"
#: ../../enterprise/meta/advanced/metasetup.performance.php:255
#: ../../enterprise/meta/include/functions_meta.php:2123
#: ../../godmode/setup/performance.php:338
-#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850
+#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:862
msgid "Max. days before purge"
msgstr "Nombre de jours maximum avant le nettoyage"
@@ -9022,7 +9161,7 @@ msgid "To manage collections you must activate centralized management"
msgstr "Pour gérer les collections, vous devez activer la gestion centralisée"
#: ../../enterprise/meta/advanced/collections.php:227
-#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493
+#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494
msgid "Search by username, fullname or email"
msgstr "Rechercher par nom d'utilisateur, nom complet ou courriel"
@@ -9037,7 +9176,7 @@ msgstr "Erreur : le répertoire principal de la collection n'existe pas."
#: ../../enterprise/include/functions_groups.php:81
#: ../../enterprise/operation/agentes/ver_agente.php:210
#: ../../godmode/agentes/configurar_agente.php:716
-#: ../../operation/agentes/ver_agente.php:1856
+#: ../../operation/agentes/ver_agente.php:1852
msgid "Collection"
msgstr "Collection"
@@ -9051,7 +9190,7 @@ msgstr "Nom abrégé"
#: ../../enterprise/meta/advanced/collections.php:442
#: ../../enterprise/godmode/agentes/collections.php:537
-#: ../../operation/agentes/status_monitor.php:2257
+#: ../../operation/agentes/status_monitor.php:2259
msgid "Are you sure to delete?"
msgstr "Êtes-vous sûr(e) de vouloir le supprimer ?"
@@ -9105,12 +9244,12 @@ msgid "There are no collections defined yet."
msgstr "Aucune collection définie jusqu'à présent."
#: ../../enterprise/meta/advanced/policymanager.queue.php:58
-#: ../../enterprise/godmode/policies/policy_queue.php:96
+#: ../../enterprise/godmode/policies/policy_queue.php:98
msgid "Operation successfully deleted from the queue"
msgstr "Opération supprimée correctement de la file d'attente"
#: ../../enterprise/meta/advanced/policymanager.queue.php:59
-#: ../../enterprise/godmode/policies/policy_queue.php:97
+#: ../../enterprise/godmode/policies/policy_queue.php:99
msgid "Operation cannot be deleted from the queue"
msgstr "Impossible de supprimer l'opération de la file d'attente"
@@ -9118,42 +9257,42 @@ msgstr "Impossible de supprimer l'opération de la file d'attente"
#: ../../enterprise/meta/advanced/policymanager.queue.php:259
#: ../../enterprise/meta/include/functions_autoprovision.php:698
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501
-#: ../../enterprise/godmode/policies/policy_queue.php:311
-#: ../../enterprise/godmode/policies/policy_queue.php:687
+#: ../../enterprise/godmode/policies/policy_queue.php:313
+#: ../../enterprise/godmode/policies/policy_queue.php:689
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176
#: ../../enterprise/include/functions_reporting_csv.php:1064
#: ../../enterprise/include/class/CommandCenter.class.php:453
#: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4642
-#: ../../include/functions_reporting_html.php:2460
-#: ../../include/functions_reporting_html.php:4959
-#: ../../include/functions_menu.php:675
-#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:78
-#: ../../general/main_menu.php:85
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4651
+#: ../../include/functions_reporting_html.php:2481
+#: ../../include/functions_reporting_html.php:4987
+#: ../../include/functions_menu.php:679
+#: ../../include/class/ExternalTools.class.php:571 ../../general/main_menu.php:79
+#: ../../general/main_menu.php:86
msgid "Operation"
msgstr "Opération"
#: ../../enterprise/meta/advanced/policymanager.queue.php:218
-#: ../../enterprise/godmode/policies/policy_queue.php:305
+#: ../../enterprise/godmode/policies/policy_queue.php:307
msgid "Apply (database and files)"
msgstr "Appliquer (base de données et fichiers)"
#: ../../enterprise/meta/advanced/policymanager.queue.php:219
#: ../../enterprise/meta/advanced/policymanager.queue.php:315
-#: ../../enterprise/godmode/policies/policy_queue.php:306
-#: ../../enterprise/godmode/policies/policy_queue.php:758
+#: ../../enterprise/godmode/policies/policy_queue.php:308
+#: ../../enterprise/godmode/policies/policy_queue.php:762
msgid "Apply (only database)"
msgstr "Appliquer (seulement base de données)"
#: ../../enterprise/meta/advanced/policymanager.queue.php:229
-#: ../../enterprise/godmode/policies/policy_queue.php:330
+#: ../../enterprise/godmode/policies/policy_queue.php:332
msgid "Complete"
msgstr "Compléter"
#: ../../enterprise/meta/advanced/policymanager.queue.php:230
-#: ../../enterprise/godmode/policies/policy_queue.php:331
+#: ../../enterprise/godmode/policies/policy_queue.php:333
msgid "Incomplete"
msgstr "Inachevé"
@@ -9164,13 +9303,13 @@ msgstr "Inachevé"
#: ../../enterprise/godmode/agentes/collection_manager.php:94
#: ../../enterprise/godmode/agentes/collection_manager.php:95
#: ../../enterprise/godmode/agentes/collections.php:458
-#: ../../enterprise/godmode/policies/policy_modules.php:1494
-#: ../../enterprise/godmode/policies/policy_queue.php:356
+#: ../../enterprise/godmode/policies/policy_modules.php:1539
+#: ../../enterprise/godmode/policies/policy_queue.php:358
#: ../../enterprise/godmode/policies/policies.php:341
#: ../../enterprise/godmode/policies/policy_linking.php:152
#: ../../enterprise/godmode/policies/policy_external_alerts.php:393
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274
#: ../../enterprise/godmode/setup/setup_acl.php:495
#: ../../enterprise/include/class/SAPView.class.php:409
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928
@@ -9180,18 +9319,18 @@ msgstr "Inachevé"
#: ../../enterprise/operation/services/services.treeview_services.php:164
#: ../../enterprise/operation/services/services.treeview_services.php:187
#: ../../enterprise/operation/services/services.list.php:482
-#: ../../extensions/agents_modules.php:665 ../../extensions/module_groups.php:305
+#: ../../extensions/agents_modules.php:673 ../../extensions/module_groups.php:305
#: ../../godmode/modules/manage_network_templates_form.php:277
#: ../../godmode/modules/manage_network_templates_form.php:337
-#: ../../godmode/modules/manage_network_components.php:697
-#: ../../godmode/groups/group_list.php:799 ../../godmode/users/user_list.php:521
-#: ../../godmode/users/user_list.php:522
+#: ../../godmode/modules/manage_network_components.php:700
+#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:522
+#: ../../godmode/users/user_list.php:523
#: ../../godmode/agentes/modificar_agente.php:397
#: ../../godmode/agentes/modificar_agente.php:412
#: ../../godmode/agentes/modificar_agente.php:413
#: ../../godmode/agentes/planned_downtime.list.php:647
#: ../../godmode/netflow/nf_item_list.php:174
-#: ../../godmode/netflow/nf_edit_form.php:238
+#: ../../godmode/netflow/nf_edit_form.php:283
#: ../../godmode/snmpconsole/snmp_alert.php:1797
#: ../../godmode/snmpconsole/snmp_filters.php:216
#: ../../godmode/snmpconsole/snmp_filters.php:314
@@ -9199,32 +9338,33 @@ msgstr "Inachevé"
#: ../../godmode/reporting/map_builder.php:384
#: ../../godmode/reporting/graphs.php:283
#: ../../godmode/reporting/visual_console_favorite.php:204
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1120
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1122
#: ../../godmode/reporting/reporting_builder.php:766
-#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652
-#: ../../include/functions_ui.php:3697
-#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339
+#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652
+#: ../../include/functions_ui.php:3745
+#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:341
#: ../../operation/agentes/estado_agente.php:444
#: ../../operation/agentes/graphs.php:270
#: ../../operation/agentes/interface_view.functions.php:134
-#: ../../operation/agentes/status_monitor.php:1034
-#: ../../operation/agentes/estado_monitores.php:626
+#: ../../operation/agentes/status_monitor.php:1036
+#: ../../operation/agentes/estado_monitores.php:620
+#: ../../operation/agentes/agent_inventory.php:165
#: ../../operation/network/network_report.php:205
#: ../../operation/network/network_usage_map.php:249
#: ../../operation/network/network_usage_map.php:250
-#: ../../operation/netflow/nf_live_view.php:273
-#: ../../operation/netflow/nf_live_view.php:605
-#: ../../operation/netflow/nf_live_view.php:606
+#: ../../operation/netflow/nf_live_view.php:282
+#: ../../operation/netflow/nf_live_view.php:678
+#: ../../operation/netflow/nf_live_view.php:679
#: ../../operation/incidents/list_integriaims_incidents.php:470
-#: ../../operation/inventory/inventory.php:704
+#: ../../operation/inventory/inventory.php:705
#: ../../operation/reporting/graph_viewer.php:399
msgid "Filter"
msgstr "Filtre"
#: ../../enterprise/meta/advanced/policymanager.queue.php:246
#: ../../enterprise/meta/agentsearch.php:111
-#: ../../godmode/alerts/alert_templates.php:357
-#: ../../godmode/alerts/alert_templates.php:358
+#: ../../godmode/alerts/alert_templates.php:361
+#: ../../godmode/alerts/alert_templates.php:362
msgid "Show Options"
msgstr "Afficher les options"
@@ -9242,21 +9382,21 @@ msgstr "Afficher les options"
#: ../../enterprise/include/class/CSVImportAgents.class.php:157
#: ../../enterprise/include/class/SAPView.class.php:226
#: ../../enterprise/include/functions_events.php:216
-#: ../../enterprise/operation/log/log_viewer.php:749
-#: ../../godmode/modules/manage_network_components.php:775
+#: ../../enterprise/operation/log/log_viewer.php:747
+#: ../../godmode/modules/manage_network_components.php:778
#: ../../godmode/agentes/agent_manager.php:551
#: ../../godmode/agentes/module_manager.php:623
-#: ../../godmode/massive/massive_edit_agents.php:757
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1215
+#: ../../godmode/massive/massive_edit_agents.php:774
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1217
#: ../../godmode/reporting/reporting_builder.item_editor.php:1238
#: ../../godmode/reporting/reporting_builder.item_editor.php:1260
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3695
-#: ../../godmode/events/event_edit_filter.php:930
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3704
+#: ../../godmode/events/event_edit_filter.php:932
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1065
-#: ../../include/functions_reporting_html.php:2350
+#: ../../include/functions_reporting_html.php:2371
#: ../../include/class/AgentWizard.class.php:1282
-#: ../../operation/inventory/inventory.php:490
-#: ../../operation/events/events.php:1953
+#: ../../operation/inventory/inventory.php:492
+#: ../../operation/events/events.php:2007
msgid "Server"
msgstr "Serveur"
@@ -9266,11 +9406,11 @@ msgstr "Serveur"
#: ../../enterprise/meta/monitoring/group_view.php:212
#: ../../enterprise/meta/include/functions_autoprovision.php:497
#: ../../enterprise/godmode/agentes/collections.agents.php:62
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123
#: ../../enterprise/godmode/agentes/collections.data.php:155
#: ../../enterprise/godmode/agentes/collections.data.php:321
#: ../../enterprise/godmode/agentes/collections.editor.php:83
-#: ../../enterprise/godmode/policies/policy_queue.php:686
+#: ../../enterprise/godmode/policies/policy_queue.php:688
#: ../../enterprise/godmode/policies/policies.php:438
#: ../../enterprise/godmode/policies/policies.php:603
#: ../../enterprise/godmode/policies/policy_agents.php:719
@@ -9287,8 +9427,8 @@ msgstr "Serveur"
#: ../../enterprise/operation/services/massive/services.create.php:985
#: ../../enterprise/operation/services/massive/service.create.elements.php:379
#: ../../enterprise/operation/services/services.service_map.php:148
-#: ../../extensions/agents_modules.php:470
-#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213
+#: ../../extensions/agents_modules.php:478
+#: ../../extensions/agents_modules.php:865 ../../godmode/groups/tactical.php:213
#: ../../godmode/agentes/planned_downtime.list.php:84
#: ../../godmode/agentes/planned_downtime.list.php:109
#: ../../godmode/massive/massive_standby_alerts.php:204
@@ -9305,34 +9445,34 @@ msgstr "Serveur"
#: ../../godmode/reporting/reporting_builder.item_editor.php:2126
#: ../../godmode/reporting/visual_console_builder.wizard.php:430
#: ../../mobile/include/functions_web.php:23
-#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81
-#: ../../mobile/operation/agent.php:155
-#: ../../include/functions_reporting_html.php:2094
-#: ../../include/functions_reporting_html.php:2566
-#: ../../include/functions_reporting_html.php:3349
-#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685
-#: ../../include/functions_html.php:5914
+#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81
+#: ../../mobile/operation/agent.php:161
+#: ../../include/functions_reporting_html.php:2115
+#: ../../include/functions_reporting_html.php:2587
+#: ../../include/functions_reporting_html.php:3377
+#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693
+#: ../../include/functions_html.php:5938
#: ../../include/functions_massive_operations.php:217
-#: ../../include/class/Diagnostics.class.php:1184
#: ../../include/class/Diagnostics.class.php:1188
#: ../../include/class/Diagnostics.class.php:1192
#: ../../include/class/Diagnostics.class.php:1196
-#: ../../include/class/NetworkMap.class.php:3439
+#: ../../include/class/Diagnostics.class.php:1200
+#: ../../include/class/NetworkMap.class.php:3445
#: ../../include/class/AgentsAlerts.class.php:252
#: ../../include/class/AgentsAlerts.class.php:567
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:340
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:345
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:432
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:347
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:352
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:445
#: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98
#: ../../operation/search_results.php:81
#: ../../operation/agentes/interface_view.functions.php:78
#: ../../operation/agentes/group_view.php:184
-#: ../../operation/agentes/group_view.php:234
+#: ../../operation/agentes/group_view.php:237
msgid "Agents"
msgstr "Agents"
#: ../../enterprise/meta/advanced/policymanager.queue.php:260
-#: ../../enterprise/godmode/policies/policy_queue.php:688
+#: ../../enterprise/godmode/policies/policy_queue.php:690
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712
#: ../../enterprise/include/class/Omnishell.class.php:408
#: ../../enterprise/include/functions_ipam.php:1425
@@ -9342,18 +9482,18 @@ msgid "Progress"
msgstr "En cours"
#: ../../enterprise/meta/advanced/policymanager.queue.php:298
-#: ../../enterprise/godmode/policies/policy_queue.php:728
+#: ../../enterprise/godmode/policies/policy_queue.php:730
msgid "Policy "
msgstr "Politique "
#: ../../enterprise/meta/advanced/policymanager.queue.php:339
-#: ../../enterprise/godmode/policies/policy_queue.php:788
-#: ../../enterprise/godmode/policies/policy_queue.php:797
+#: ../../enterprise/godmode/policies/policy_queue.php:792
+#: ../../enterprise/godmode/policies/policy_queue.php:801
msgid "Policy applying timeout"
msgstr "Temps d’attente de l’application de la politique"
#: ../../enterprise/meta/advanced/policymanager.queue.php:353
-#: ../../enterprise/godmode/policies/policy_queue.php:816
+#: ../../enterprise/godmode/policies/policy_queue.php:820
msgid "Delete from queue"
msgstr "Supprimer de la file d'attente"
@@ -9431,17 +9571,17 @@ msgstr "Vider la file"
#: ../../enterprise/include/functions_services.php:1666
#: ../../enterprise/include/functions_events.php:80
#: ../../enterprise/operation/agentes/tag_view.php:693
-#: ../../enterprise/operation/log/log_viewer.php:770
+#: ../../enterprise/operation/log/log_viewer.php:768
#: ../../enterprise/tools/ipam/ipam_network.php:425
#: ../../enterprise/tools/ipam/ipam_ajax.php:382
#: ../../extensions/insert_data.php:194
#: ../../godmode/modules/manage_inventory_modules.php:317
-#: ../../godmode/agentes/status_monitor_custom_fields.php:77
-#: ../../godmode/agentes/status_monitor_custom_fields.php:141
+#: ../../godmode/agentes/status_monitor_custom_fields.php:97
+#: ../../godmode/agentes/status_monitor_custom_fields.php:161
#: ../../godmode/agentes/module_manager_editor_prediction.php:134
#: ../../godmode/agentes/planned_downtime.list.php:420
-#: ../../godmode/agentes/module_manager_editor_common.php:1475
-#: ../../godmode/agentes/module_manager_editor_common.php:1534
+#: ../../godmode/agentes/module_manager_editor_common.php:1485
+#: ../../godmode/agentes/module_manager_editor_common.php:1544
#: ../../godmode/gis_maps/configure_gis_map.php:592
#: ../../godmode/massive/massive_copy_modules.php:131
#: ../../godmode/massive/massive_copy_modules.php:295
@@ -9457,55 +9597,55 @@ msgstr "Vider la file"
#: ../../godmode/reporting/create_container.php:473
#: ../../godmode/reporting/create_container.php:657
#: ../../godmode/reporting/create_container.php:744
-#: ../../godmode/reporting/graph_builder.graph_editor.php:212
-#: ../../godmode/reporting/reporting_builder.item_editor.php:211
-#: ../../godmode/reporting/reporting_builder.item_editor.php:890
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1168
+#: ../../godmode/reporting/graph_builder.graph_editor.php:345
+#: ../../godmode/reporting/reporting_builder.item_editor.php:212
+#: ../../godmode/reporting/reporting_builder.item_editor.php:891
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1170
#: ../../godmode/reporting/reporting_builder.item_editor.php:1735
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4093
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4611
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4635
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4102
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4644
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.wizard.php:463
#: ../../godmode/reporting/visual_console_builder.wizard.php:789
#: ../../godmode/reporting/visual_console_builder.wizard.php:812
#: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93
-#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597
-#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335
-#: ../../mobile/operation/events.php:841
-#: ../../include/functions_visual_map_editor.php:422
-#: ../../include/functions_visual_map_editor.php:455
+#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608
+#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225
+#: ../../mobile/operation/events.php:870
+#: ../../include/functions_visual_map_editor.php:416
+#: ../../include/functions_visual_map_editor.php:449
#: ../../include/functions_reporting_html.php:548
#: ../../include/functions_reporting_html.php:947
#: ../../include/functions_reporting_html.php:1059
#: ../../include/functions_reporting_html.php:1067
-#: ../../include/functions_reporting_html.php:2016
-#: ../../include/functions_reporting_html.php:2353
-#: ../../include/functions_reporting_html.php:2458
-#: ../../include/functions_reporting_html.php:3312
-#: ../../include/functions_reporting_html.php:3447
-#: ../../include/functions_reporting_html.php:3741
-#: ../../include/functions_reporting_html.php:3822
-#: ../../include/functions_reporting_html.php:3830
-#: ../../include/functions_reporting_html.php:3839
-#: ../../include/functions_reporting_html.php:3851
-#: ../../include/functions_reporting_html.php:4011
-#: ../../include/functions_reporting_html.php:4135
-#: ../../include/functions_reporting_html.php:4229
-#: ../../include/functions_reporting_html.php:4956
-#: ../../include/functions_reporting_html.php:5004
-#: ../../include/functions_reporting_html.php:5043
-#: ../../include/functions_reporting_html.php:5371
-#: ../../include/functions_reporting_html.php:5411
-#: ../../include/functions_reporting_html.php:5661
-#: ../../include/ajax/heatmap.ajax.php:252
-#: ../../include/ajax/heatmap.ajax.php:291
-#: ../../include/ajax/heatmap.ajax.php:326
+#: ../../include/functions_reporting_html.php:2032
+#: ../../include/functions_reporting_html.php:2374
+#: ../../include/functions_reporting_html.php:2479
+#: ../../include/functions_reporting_html.php:3340
+#: ../../include/functions_reporting_html.php:3475
+#: ../../include/functions_reporting_html.php:3769
+#: ../../include/functions_reporting_html.php:3850
+#: ../../include/functions_reporting_html.php:3858
+#: ../../include/functions_reporting_html.php:3867
+#: ../../include/functions_reporting_html.php:3879
+#: ../../include/functions_reporting_html.php:4039
+#: ../../include/functions_reporting_html.php:4163
+#: ../../include/functions_reporting_html.php:4257
+#: ../../include/functions_reporting_html.php:4984
+#: ../../include/functions_reporting_html.php:5032
+#: ../../include/functions_reporting_html.php:5071
+#: ../../include/functions_reporting_html.php:5399
+#: ../../include/functions_reporting_html.php:5439
+#: ../../include/functions_reporting_html.php:5689
+#: ../../include/ajax/heatmap.ajax.php:294
+#: ../../include/ajax/heatmap.ajax.php:419
+#: ../../include/ajax/heatmap.ajax.php:454
#: ../../include/ajax/alert_list.ajax.php:459
-#: ../../include/functions_inventory.php:393
-#: ../../include/functions_inventory.php:1063
-#: ../../include/functions_inventory.php:1119
-#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229
+#: ../../include/functions_inventory.php:402
+#: ../../include/functions_inventory.php:1173
+#: ../../include/functions_inventory.php:1229
+#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281
@@ -9514,22 +9654,24 @@ msgstr "Vider la file"
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368
#: ../../include/functions_reports.php:1332
-#: ../../include/class/NetworkMap.class.php:2979
-#: ../../include/class/NetworkMap.class.php:3031
-#: ../../include/class/NetworkMap.class.php:3363
+#: ../../include/class/NetworkMap.class.php:2985
+#: ../../include/class/NetworkMap.class.php:3037
+#: ../../include/class/NetworkMap.class.php:3369
#: ../../include/class/AgentsAlerts.class.php:430
-#: ../../include/class/AgentsAlerts.class.php:981
-#: ../../include/functions_reporting.php:7332
+#: ../../include/class/AgentsAlerts.class.php:982
+#: ../../include/functions_reporting.php:7341
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:341
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442
#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250
#: ../../include/lib/Dashboard/Widgets/module_icon.php:359
#: ../../include/lib/Dashboard/Widgets/module_value.php:334
@@ -9540,20 +9682,20 @@ msgstr "Vider la file"
#: ../../include/lib/Dashboard/Widgets/module_status.php:350
#: ../../include/lib/Dashboard/Widgets/single_graph.php:301
#: ../../include/lib/Dashboard/Widgets/top_n.php:206
-#: ../../include/functions_snmp_browser.php:1809
+#: ../../include/functions_snmp_browser.php:1818
#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48
#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/estado_agente.php:1023
+#: ../../operation/agentes/estado_agente.php:1030
#: ../../operation/agentes/interface_view.functions.php:499
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1536
+#: ../../operation/agentes/status_monitor.php:1538
#: ../../operation/agentes/estado_monitores.php:123
#: ../../operation/agentes/ver_agente.php:1187
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269
#: ../../operation/search_alerts.php:34
-#: ../../operation/inventory/inventory.php:628
-#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688
+#: ../../operation/inventory/inventory.php:630
+#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742
msgid "Agent"
msgstr "Agent"
@@ -9575,14 +9717,13 @@ msgstr "Agent"
#: ../../extensions/api_checker.php:231 ../../extensions/users_connected.php:178
#: ../../godmode/reporting/reporting_builder.item_editor.php:70
#: ../../godmode/reporting/visual_console_builder.elements.php:847
-#: ../../include/functions_visual_map_editor.php:1455
-#: ../../include/functions_reporting_html.php:3329
-#: ../../include/functions_reporting_html.php:3662
-#: ../../include/ajax/heatmap.ajax.php:333
+#: ../../include/functions_visual_map_editor.php:1513
+#: ../../include/functions_reporting_html.php:3357
+#: ../../include/functions_reporting_html.php:3690
+#: ../../include/ajax/heatmap.ajax.php:461
#: ../../include/class/AuditLog.class.php:223
#: ../../operation/network/network_report.php:272
-#: ../../operation/inventory/inventory.php:1000
-#: ../../operation/inventory/inventory.php:1294
+#: ../../operation/inventory/inventory.php:1246
msgid "IP"
msgstr "Adresse IP"
@@ -9604,43 +9745,43 @@ msgstr "État des agents"
#: ../../enterprise/operation/services/services.treeview_services.php:321
#: ../../enterprise/operation/services/services.list.php:205
#: ../../enterprise/operation/services/services.table_services.php:141
-#: ../../godmode/groups/group_list.php:1114
+#: ../../godmode/groups/group_list.php:1126
#: ../../godmode/agentes/module_manager_editor_common.php:476
-#: ../../godmode/agentes/module_manager_editor_common.php:559
-#: ../../godmode/netflow/nf_edit_form.php:245
+#: ../../godmode/agentes/module_manager_editor_common.php:564
+#: ../../godmode/netflow/nf_edit_form.php:290
#: ../../godmode/massive/massive_copy_modules.php:115
#: ../../godmode/massive/massive_copy_modules.php:275
#: ../../godmode/massive/massive_delete_modules.php:418
#: ../../godmode/massive/massive_delete_modules.php:439
#: ../../godmode/massive/massive_edit_modules.php:385
#: ../../godmode/massive/massive_edit_modules.php:471
-#: ../../godmode/setup/setup_visuals.php:1013
-#: ../../godmode/setup/setup_visuals.php:1035
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3830
+#: ../../godmode/setup/setup_visuals.php:1017
+#: ../../godmode/setup/setup_visuals.php:1039
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3839
#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69
-#: ../../include/functions_reporting_html.php:2573
+#: ../../include/functions_reporting_html.php:2594
#: ../../include/functions.php:1087 ../../include/functions.php:1327
#: ../../include/functions.php:1334 ../../include/functions.php:1367
-#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329
-#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432
+#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339
+#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:4852
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578
#: ../../include/functions_massive_operations.php:146
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:315
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:398
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:432
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:729
-#: ../../include/functions_events.php:3218 ../../operation/tree.php:208
-#: ../../operation/tree.php:298 ../../operation/tree.php:533
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:401
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:436
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:722
+#: ../../include/functions_events.php:3223 ../../operation/tree.php:208
+#: ../../operation/tree.php:299 ../../operation/tree.php:535
#: ../../operation/agentes/estado_agente.php:273
-#: ../../operation/agentes/status_monitor.php:564
-#: ../../operation/agentes/group_view.php:244
-#: ../../operation/agentes/group_view.php:249
-#: ../../operation/agentes/estado_monitores.php:518
+#: ../../operation/agentes/status_monitor.php:563
+#: ../../operation/agentes/group_view.php:247
+#: ../../operation/agentes/group_view.php:252
+#: ../../operation/agentes/estado_monitores.php:515
#: ../../operation/agentes/tactical.php:199
-#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150
+#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159
msgid "Normal"
msgstr "Normal"
@@ -9677,24 +9818,24 @@ msgstr "Normal"
#: ../../enterprise/operation/services/services.table_services.php:143
#: ../../extensions/module_groups.php:50
#: ../../godmode/modules/manage_network_components_form_wizard.php:418
-#: ../../godmode/groups/group_list.php:1094
+#: ../../godmode/groups/group_list.php:1106
#: ../../godmode/massive/massive_copy_modules.php:117
#: ../../godmode/massive/massive_copy_modules.php:277
#: ../../godmode/massive/massive_delete_modules.php:420
#: ../../godmode/massive/massive_delete_modules.php:441
#: ../../godmode/massive/massive_edit_modules.php:387
#: ../../godmode/massive/massive_edit_modules.php:473
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3832
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3841
#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71
#: ../../include/functions_reporting_html.php:867
-#: ../../include/functions_reporting_html.php:2574
-#: ../../include/functions_reporting_html.php:4871
+#: ../../include/functions_reporting_html.php:2595
+#: ../../include/functions_reporting_html.php:4899
#: ../../include/functions.php:1095 ../../include/functions.php:1331
#: ../../include/functions.php:1332 ../../include/functions.php:1334
-#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938
-#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355
-#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418
+#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966
+#: ../../include/functions_graph.php:3363 ../../include/functions_graph.php:3365
+#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564
#: ../../include/functions_massive_operations.php:148
#: ../../include/class/AgentWizard.class.php:1404
#: ../../include/class/AgentWizard.class.php:4161
@@ -9703,18 +9844,18 @@ msgstr "Normal"
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:400
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:434
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:709
-#: ../../include/functions_events.php:3226 ../../operation/tree.php:210
-#: ../../operation/tree.php:300 ../../operation/tree.php:513
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:403
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:438
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:702
+#: ../../include/functions_events.php:3231 ../../operation/tree.php:210
+#: ../../operation/tree.php:301 ../../operation/tree.php:515
#: ../../operation/agentes/estado_agente.php:275
-#: ../../operation/agentes/status_monitor.php:566
-#: ../../operation/agentes/group_view.php:246
-#: ../../operation/agentes/group_view.php:251
-#: ../../operation/agentes/estado_monitores.php:516
+#: ../../operation/agentes/status_monitor.php:565
+#: ../../operation/agentes/group_view.php:249
+#: ../../operation/agentes/group_view.php:254
+#: ../../operation/agentes/estado_monitores.php:513
#: ../../operation/agentes/tactical.php:197
-#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148
+#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157
msgid "Critical"
msgstr "Critique"
@@ -9739,15 +9880,16 @@ msgstr "Vue des champs personnalisés"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:170
#: ../../enterprise/godmode/policies/policies.php:314
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:736
-#: ../../extensions/agents_modules.php:439
+#: ../../extensions/agents_modules.php:447
#: ../../godmode/agentes/modificar_agente.php:333
#: ../../godmode/agentes/planned_downtime.editor.php:1197
#: ../../godmode/reporting/reporting_builder.item_editor.php:1667
-#: ../../include/functions_html.php:1575
-#: ../../include/class/NetworkMap.class.php:3427
+#: ../../include/functions_html.php:1581
+#: ../../include/class/NetworkMap.class.php:3433
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254
#: ../../operation/agentes/estado_agente.php:310
#: ../../operation/agentes/interface_view.functions.php:61
-#: ../../operation/agentes/status_monitor.php:845
+#: ../../operation/agentes/status_monitor.php:844
msgid "Recursion"
msgstr "Récursion"
@@ -9760,21 +9902,21 @@ msgstr "Récursion"
#: ../../godmode/massive/massive_delete_modules.php:443
#: ../../godmode/massive/massive_edit_modules.php:389
#: ../../godmode/massive/massive_edit_modules.php:475
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3834
-#: ../../godmode/events/event_edit_filter.php:350
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3843
+#: ../../godmode/events/event_edit_filter.php:352
#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333
#: ../../include/functions_massive_operations.php:150
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258
#: ../../include/lib/Dashboard/Widgets/events_list.php:319
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:403
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:437
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:734
-#: ../../include/functions_events.php:3174 ../../operation/tree.php:538
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:406
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:441
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:727
+#: ../../include/functions_events.php:3179 ../../operation/tree.php:540
#: ../../operation/agentes/estado_agente.php:277
-#: ../../operation/agentes/status_monitor.php:568
-#: ../../operation/events/events.php:1739
+#: ../../operation/agentes/status_monitor.php:567
+#: ../../operation/events/events.php:1793
msgid "Not normal"
msgstr "Anormal"
@@ -9785,30 +9927,30 @@ msgstr "Anormal"
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124
#: ../../enterprise/operation/agentes/tag_view.php:136
#: ../../enterprise/operation/services/services.treeview_services.php:316
-#: ../../godmode/groups/group_list.php:1109
+#: ../../godmode/groups/group_list.php:1121
#: ../../godmode/massive/massive_copy_modules.php:120
#: ../../godmode/massive/massive_copy_modules.php:280
#: ../../godmode/massive/massive_delete_modules.php:423
#: ../../godmode/massive/massive_delete_modules.php:444
#: ../../godmode/massive/massive_edit_modules.php:390
#: ../../godmode/massive/massive_edit_modules.php:476
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3835
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3844
#: ../../mobile/operation/modules.php:75
#: ../../include/functions_reporting_html.php:660
-#: ../../include/functions_reporting_html.php:2577
-#: ../../include/functions_reporting_html.php:4678
-#: ../../include/ajax/module.php:1950
+#: ../../include/functions_reporting_html.php:2598
+#: ../../include/functions_reporting_html.php:4706
+#: ../../include/ajax/module.php:1978
#: ../../include/functions_massive_operations.php:151
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:402
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:436
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:724
-#: ../../operation/tree.php:212 ../../operation/tree.php:302
-#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278
-#: ../../operation/agentes/status_monitor.php:570
-#: ../../operation/agentes/group_view.php:243
-#: ../../operation/agentes/group_view.php:248
-#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:405
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:440
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:717
+#: ../../operation/tree.php:212 ../../operation/tree.php:303
+#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278
+#: ../../operation/agentes/status_monitor.php:569
+#: ../../operation/agentes/group_view.php:246
+#: ../../operation/agentes/group_view.php:251
+#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161
msgid "Not init"
msgstr "Non initialisé"
@@ -9824,14 +9966,14 @@ msgstr "Module d’état"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:230
#: ../../enterprise/meta/monitoring/custom_fields_view.php:231
#: ../../enterprise/include/ajax/log_viewer.ajax.php:410
-#: ../../enterprise/operation/log/log_viewer.php:994
-#: ../../enterprise/operation/log/log_viewer.php:2026
-#: ../../enterprise/operation/log/log_viewer.php:2065
-#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864
+#: ../../enterprise/operation/log/log_viewer.php:992
+#: ../../enterprise/operation/log/log_viewer.php:2024
+#: ../../enterprise/operation/log/log_viewer.php:2063
+#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865
#: ../../include/class/AuditLog.class.php:167
-#: ../../include/class/AuditLog.class.php:445
-#: ../../include/class/AuditLog.class.php:485
-#: ../../operation/events/events.php:1871
+#: ../../include/class/AuditLog.class.php:457
+#: ../../include/class/AuditLog.class.php:497
+#: ../../operation/events/events.php:1925
msgid "Save filter"
msgstr "Sauvegarder le filtre"
@@ -9840,21 +9982,20 @@ msgstr "Sauvegarder le filtre"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:245
#: ../../enterprise/include/ajax/log_viewer.ajax.php:709
#: ../../enterprise/include/ajax/log_viewer.ajax.php:727
-#: ../../enterprise/operation/log/log_viewer.php:979
-#: ../../enterprise/operation/log/log_viewer.php:2078
-#: ../../enterprise/operation/log/log_viewer.php:2115
+#: ../../enterprise/operation/log/log_viewer.php:977
+#: ../../enterprise/operation/log/log_viewer.php:2076
+#: ../../enterprise/operation/log/log_viewer.php:2113
#: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168
-#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173
+#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202
#: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518
-#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583
-#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159
-#: ../../include/class/AuditLog.class.php:502
-#: ../../include/class/AuditLog.class.php:539
+#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584
+#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159
+#: ../../include/class/AuditLog.class.php:514
+#: ../../include/class/AuditLog.class.php:551
#: ../../operation/agentes/estado_agente.php:455
-#: ../../operation/agentes/status_monitor.php:1045
-#: ../../operation/netflow/nf_live_view.php:277
-#: ../../operation/events/sound_events.php:184
-#: ../../operation/events/events.php:1862
+#: ../../operation/agentes/status_monitor.php:1047
+#: ../../operation/netflow/nf_live_view.php:286
+#: ../../operation/events/events.php:1916
msgid "Load filter"
msgstr "Charger le filtre"
@@ -9868,8 +10009,8 @@ msgid "Custom Fields Data"
msgstr "Données des champs personnalisés"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:295
-#: ../../godmode/events/event_edit_filter.php:780
-#: ../../operation/events/events.php:1969
+#: ../../godmode/events/event_edit_filter.php:782
+#: ../../operation/events/events.php:2023
msgid "Module search"
msgstr "Rechercher module"
@@ -9878,8 +10019,8 @@ msgstr "Rechercher module"
#: ../../enterprise/include/class/DeploymentCenter.class.php:1569
#: ../../enterprise/include/class/AgentRepository.class.php:873
#: ../../enterprise/include/class/Omnishell.class.php:1359
-#: ../../enterprise/include/class/LogSource.class.php:745
-#: ../../godmode/users/configure_user.php:1024
+#: ../../enterprise/include/class/LogSource.class.php:742
+#: ../../godmode/users/configure_user.php:1072
#: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299
#: ../../operation/agentes/interface_view.functions.php:172
msgid "Show"
@@ -9888,11 +10029,11 @@ msgstr "Afficher"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:321
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565
#: ../../enterprise/include/functions_ipam.php:339
-#: ../../enterprise/operation/log/log_viewer.php:968
+#: ../../enterprise/operation/log/log_viewer.php:966
#: ../../enterprise/operation/reporting/custom_reporting.php:100
#: ../../godmode/modules/manage_network_templates.php:290
#: ../../godmode/agentes/planned_downtime.list.php:1000
-#: ../../include/graphs/functions_flot.php:382
+#: ../../include/graphs/functions_flot.php:383
#: ../../include/class/ModuleTemplates.class.php:904
#: ../../operation/network/network_report.php:230
#: ../../operation/incidents/list_integriaims_incidents.php:480
@@ -9903,170 +10044,170 @@ msgstr "Exporter un fichier en CSV"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:361
#: ../../enterprise/include/class/DatabaseHA.class.php:217
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1883
-#: ../../include/functions_ui.php:3741
+#: ../../include/functions_ui.php:3789
msgid "Processing"
msgstr "Traitement en cours"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:386
-#: ../../mobile/operation/groups.php:153
-#: ../../include/functions_reporting_html.php:5843
+#: ../../mobile/operation/groups.php:192
+#: ../../include/functions_reporting_html.php:5871
#: ../../include/functions_agents.php:3955
msgid "Agents critical"
msgstr "Agents en état critique"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:399
-#: ../../include/functions_reporting_html.php:5846
+#: ../../include/functions_reporting_html.php:5874
#: ../../include/functions_agents.php:3965
msgid "Agents warning"
msgstr "Agents en état d'alerte"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:412
-#: ../../include/functions_reporting_html.php:5852
+#: ../../include/functions_reporting_html.php:5880
#: ../../include/functions_agents.php:3945
#: ../../include/functions_agents.php:3999
msgid "Agents ok"
msgstr "Agents en état OK"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:425
-#: ../../mobile/operation/groups.php:156
-#: ../../include/functions_reporting_html.php:5855
+#: ../../mobile/operation/groups.php:195
+#: ../../include/functions_reporting_html.php:5883
#: ../../include/functions_agents.php:3975
msgid "Agents unknown"
msgstr "Agents inconnus"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:438
-#: ../../mobile/operation/groups.php:150
-#: ../../include/functions_reporting_html.php:5861
+#: ../../mobile/operation/groups.php:189
+#: ../../include/functions_reporting_html.php:5889
#: ../../include/functions_agents.php:3989
msgid "Agents not init"
msgstr "Agents non initialisés"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:464
-#: ../../include/functions_reporting.php:12227
-#: ../../include/functions_groups.php:2794
+#: ../../include/functions_reporting.php:12300
+#: ../../include/functions_groups.php:2819
msgid "Monitor critical"
msgstr "Moniteur en état critique"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:475
-#: ../../include/functions_reporting.php:12231
-#: ../../include/functions_groups.php:2798
+#: ../../include/functions_reporting.php:12304
+#: ../../include/functions_groups.php:2823
msgid "Monitor warning"
msgstr "Moniteur en état d'alerte"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:486
-#: ../../include/functions_reporting.php:12238
-#: ../../include/functions_groups.php:2805
+#: ../../include/functions_reporting.php:12311
+#: ../../include/functions_groups.php:2830
msgid "Monitor normal"
msgstr "Moniteur en état normal"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:497
-#: ../../include/functions_reporting.php:12242
-#: ../../include/functions_groups.php:2809
+#: ../../include/functions_reporting.php:12315
+#: ../../include/functions_groups.php:2834
msgid "Monitor unknown"
msgstr "Moniteur inconnu"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:508
-#: ../../include/functions_reporting.php:12249
-#: ../../include/functions_groups.php:2816
+#: ../../include/functions_reporting.php:12322
+#: ../../include/functions_groups.php:2841
msgid "Monitor not init"
msgstr "Moniteur non initialisé"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:523
-#: ../../include/functions_reporting_html.php:5870
-#: ../../include/functions_reporting_html.php:5875
+#: ../../include/functions_reporting_html.php:5898
+#: ../../include/functions_reporting_html.php:5903
msgid "Agents by status"
msgstr "Agents par état"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:531
-#: ../../include/functions_reporting.php:12269
-#: ../../include/functions_reporting.php:12275
-#: ../../include/functions_groups.php:2836
-#: ../../include/functions_groups.php:2842
+#: ../../include/functions_reporting.php:12342
+#: ../../include/functions_reporting.php:12348
+#: ../../include/functions_groups.php:2861
+#: ../../include/functions_groups.php:2867
msgid "Monitors by status"
msgstr "Moniteurs par état"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:545
#: ../../enterprise/operation/services/services.treeview_services.php:299
-#: ../../godmode/groups/group_list.php:1092
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:707
-#: ../../operation/tree.php:511
+#: ../../godmode/groups/group_list.php:1104
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:700
+#: ../../operation/tree.php:513
msgid "Critical agents"
msgstr "Agents critiques"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:555
#: ../../enterprise/operation/services/services.treeview_services.php:304
-#: ../../godmode/groups/group_list.php:1097
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:712
-#: ../../operation/tree.php:516
+#: ../../godmode/groups/group_list.php:1109
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:705
+#: ../../operation/tree.php:518
msgid "Warning agents"
msgstr "Agents d'alerte"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:565
#: ../../enterprise/operation/services/services.treeview_services.php:319
-#: ../../godmode/groups/group_list.php:1112
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:727
-#: ../../operation/tree.php:531
+#: ../../godmode/groups/group_list.php:1124
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:720
+#: ../../operation/tree.php:533
msgid "Normal agents"
msgstr "Agents normaux"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:575
#: ../../enterprise/operation/services/services.treeview_services.php:309
-#: ../../godmode/groups/group_list.php:1102
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:717
-#: ../../operation/tree.php:521
+#: ../../godmode/groups/group_list.php:1114
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:710
+#: ../../operation/tree.php:523
msgid "Unknown agents"
msgstr "Agents inconnus"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:585
#: ../../enterprise/operation/services/services.treeview_services.php:314
-#: ../../godmode/groups/group_list.php:1107
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:722
-#: ../../operation/tree.php:526
+#: ../../godmode/groups/group_list.php:1119
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:715
+#: ../../operation/tree.php:528
msgid "Not init agents"
msgstr "Agents non initialisés"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:614
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:300
-#: ../../godmode/groups/group_list.php:1093 ../../mobile/operation/groups.php:171
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:708
-#: ../../operation/tree.php:512
+#: ../../godmode/groups/group_list.php:1105 ../../mobile/operation/groups.php:210
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:701
+#: ../../operation/tree.php:514
msgid "Critical modules"
msgstr "Modules en état critique"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:625
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:305
-#: ../../godmode/groups/group_list.php:1098 ../../mobile/operation/groups.php:168
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:713
-#: ../../operation/tree.php:517
+#: ../../godmode/groups/group_list.php:1110 ../../mobile/operation/groups.php:207
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:706
+#: ../../operation/tree.php:519
msgid "Warning modules"
msgstr "Modules en état d'alerte"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:636
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:320
-#: ../../godmode/groups/group_list.php:1113 ../../mobile/operation/groups.php:165
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:728
-#: ../../operation/tree.php:532
+#: ../../godmode/groups/group_list.php:1125 ../../mobile/operation/groups.php:204
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:721
+#: ../../operation/tree.php:534
msgid "Normal modules"
msgstr "Modules normaux"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:647
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:310
-#: ../../godmode/groups/group_list.php:1103 ../../mobile/operation/groups.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:718
-#: ../../operation/tree.php:522
+#: ../../godmode/groups/group_list.php:1115 ../../mobile/operation/groups.php:198
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:711
+#: ../../operation/tree.php:524
msgid "Unknown modules"
msgstr "Modules inconnus"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:658
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:315
-#: ../../godmode/groups/group_list.php:1108 ../../mobile/operation/groups.php:162
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:723
-#: ../../operation/tree.php:527
+#: ../../godmode/groups/group_list.php:1120 ../../mobile/operation/groups.php:201
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:716
+#: ../../operation/tree.php:529
msgid "Not init modules"
msgstr "Modules non initialisés"
@@ -10098,7 +10239,7 @@ msgstr "Aucune recherche personnalisée n’est définie."
#: ../../enterprise/meta/monitoring/custom_fields_view.php:1167
#: ../../enterprise/meta/event/custom_events.php:245
#: ../../enterprise/include/functions_login.php:114
-#: ../../godmode/agentes/status_monitor_custom_fields.php:253
+#: ../../godmode/agentes/status_monitor_custom_fields.php:273
#: ../../godmode/events/custom_events.php:233
#: ../../include/class/TreeGroupEdition.class.php:164
msgid "Confirm"
@@ -10107,9 +10248,9 @@ msgstr "Confirmer "
#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227
#: ../../godmode/agentes/configurar_agente.php:835
-#: ../../godmode/agentes/modificar_agente.php:1025
-#: ../../include/class/SnmpConsole.class.php:781
-#: ../../operation/agentes/estado_agente.php:1317
+#: ../../godmode/agentes/modificar_agente.php:1036
+#: ../../include/class/SnmpConsole.class.php:783
+#: ../../operation/agentes/estado_agente.php:1326
#: ../../operation/snmpconsole/snmp_statistics.php:195
msgid "Create agent"
msgstr "Créer un agent"
@@ -10195,18 +10336,18 @@ msgstr "Créer une alerte"
#: ../../enterprise/include/functions_services.php:1779
#: ../../enterprise/include/functions_events.php:90
#: ../../enterprise/operation/agentes/policy_view.php:259
-#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195
+#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195
#: ../../godmode/agentes/module_manager_editor_prediction.php:135
#: ../../godmode/agentes/planned_downtime.list.php:425
#: ../../godmode/agentes/planned_downtime.editor.php:1445
-#: ../../godmode/agentes/module_manager_editor_common.php:1481
-#: ../../godmode/agentes/module_manager_editor_common.php:1535
+#: ../../godmode/agentes/module_manager_editor_common.php:1491
+#: ../../godmode/agentes/module_manager_editor_common.php:1545
#: ../../godmode/massive/massive_standby_alerts.php:224
#: ../../godmode/massive/massive_standby_alerts.php:259
#: ../../godmode/massive/massive_enable_disable_alerts.php:196
#: ../../godmode/massive/massive_enable_disable_alerts.php:231
-#: ../../godmode/massive/massive_edit_agents.php:682
-#: ../../godmode/massive/massive_edit_agents.php:1147
+#: ../../godmode/massive/massive_edit_agents.php:699
+#: ../../godmode/massive/massive_edit_agents.php:1164
#: ../../godmode/alerts/alert_list.list.php:566
#: ../../godmode/alerts/alert_list.list.php:817
#: ../../godmode/alerts/alert_view.php:97
@@ -10215,41 +10356,41 @@ msgstr "Créer une alerte"
#: ../../godmode/reporting/create_container.php:490
#: ../../godmode/reporting/create_container.php:662
#: ../../godmode/reporting/create_container.php:745
-#: ../../godmode/reporting/graph_builder.graph_editor.php:213
-#: ../../godmode/reporting/reporting_builder.item_editor.php:212
-#: ../../godmode/reporting/reporting_builder.item_editor.php:891
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1191
+#: ../../godmode/reporting/graph_builder.graph_editor.php:346
+#: ../../godmode/reporting/reporting_builder.item_editor.php:213
+#: ../../godmode/reporting/reporting_builder.item_editor.php:892
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1193
#: ../../godmode/reporting/reporting_builder.item_editor.php:1792
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4098
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4614
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4638
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4107
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4623
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4647
#: ../../godmode/reporting/visual_console_builder.elements.php:121
#: ../../godmode/reporting/visual_console_builder.wizard.php:462
#: ../../godmode/reporting/visual_console_builder.wizard.php:821
-#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338
-#: ../../include/functions_visual_map_editor.php:497
+#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332
+#: ../../include/functions_visual_map_editor.php:491
#: ../../include/functions_reporting_html.php:549
#: ../../include/functions_reporting_html.php:948
-#: ../../include/functions_reporting_html.php:2017
-#: ../../include/functions_reporting_html.php:2354
-#: ../../include/functions_reporting_html.php:2459
-#: ../../include/functions_reporting_html.php:3448
-#: ../../include/functions_reporting_html.php:3823
-#: ../../include/functions_reporting_html.php:3831
-#: ../../include/functions_reporting_html.php:3840
-#: ../../include/functions_reporting_html.php:3852
-#: ../../include/functions_reporting_html.php:4012
-#: ../../include/functions_reporting_html.php:4141
-#: ../../include/functions_reporting_html.php:4235
-#: ../../include/functions_reporting_html.php:4957
-#: ../../include/functions_reporting_html.php:5005
+#: ../../include/functions_reporting_html.php:2033
+#: ../../include/functions_reporting_html.php:2375
+#: ../../include/functions_reporting_html.php:2480
+#: ../../include/functions_reporting_html.php:3476
+#: ../../include/functions_reporting_html.php:3851
+#: ../../include/functions_reporting_html.php:3859
+#: ../../include/functions_reporting_html.php:3868
+#: ../../include/functions_reporting_html.php:3880
+#: ../../include/functions_reporting_html.php:4040
+#: ../../include/functions_reporting_html.php:4169
+#: ../../include/functions_reporting_html.php:4263
+#: ../../include/functions_reporting_html.php:4985
+#: ../../include/functions_reporting_html.php:5033
#: ../../include/ajax/alert_list.ajax.php:292
#: ../../include/ajax/alert_list.ajax.php:317
#: ../../include/ajax/alert_list.ajax.php:480
-#: ../../include/functions_inventory.php:1064
-#: ../../include/functions_inventory.php:1120
-#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393
-#: ../../include/functions_ui.php:7411
+#: ../../include/functions_inventory.php:1174
+#: ../../include/functions_inventory.php:1230
+#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463
+#: ../../include/functions_ui.php:7488
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299
@@ -10258,17 +10399,19 @@ msgstr "Créer une alerte"
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385
#: ../../include/functions_reports.php:1363
#: ../../include/class/AgentsAlerts.class.php:432
-#: ../../include/class/AgentsAlerts.class.php:910
-#: ../../include/functions_reporting.php:7333
+#: ../../include/class/AgentsAlerts.class.php:911
+#: ../../include/functions_reporting.php:7342
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:359
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441
#: ../../include/lib/Dashboard/Widgets/module_icon.php:377
#: ../../include/lib/Dashboard/Widgets/module_value.php:352
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254
@@ -10276,16 +10419,16 @@ msgstr "Créer une alerte"
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344
#: ../../include/lib/Dashboard/Widgets/module_status.php:368
#: ../../include/lib/Dashboard/Widgets/single_graph.php:319
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:736
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:729
#: ../../include/lib/Dashboard/Widgets/top_n.php:221
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
#: ../../operation/agentes/estado_monitores.php:125
-#: ../../operation/agentes/agent_inventory.php:116
+#: ../../operation/agentes/agent_inventory.php:118
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/search_alerts.php:35
-#: ../../operation/inventory/inventory.php:634
-#: ../../operation/search_modules.php:32
+#: ../../operation/inventory/inventory.php:636
+#: ../../operation/search_modules.php:35
msgid "Module"
msgstr "Module"
@@ -10301,18 +10444,18 @@ msgstr "Module"
#: ../../godmode/alerts/alert_list.list.php:570
#: ../../godmode/alerts/alert_view.php:101
#: ../../godmode/alerts/alert_list.builder.php:151
-#: ../../godmode/reporting/reporting_builder.item_editor.php:216
-#: ../../godmode/reporting/reporting_builder.item_editor.php:896
-#: ../../mobile/operation/alerts.php:342
-#: ../../include/functions_reporting_html.php:3449
-#: ../../include/functions_reporting_html.php:3452
+#: ../../godmode/reporting/reporting_builder.item_editor.php:217
+#: ../../godmode/reporting/reporting_builder.item_editor.php:897
+#: ../../mobile/operation/alerts.php:349
+#: ../../include/functions_reporting_html.php:3477
+#: ../../include/functions_reporting_html.php:3480
#: ../../include/functions_cron.php:691
#: ../../include/ajax/alert_list.ajax.php:293
#: ../../include/ajax/alert_list.ajax.php:318
-#: ../../include/functions_treeview.php:399
-#: ../../include/functions_treeview.php:440
+#: ../../include/functions_treeview.php:403
+#: ../../include/functions_treeview.php:444
#: ../../include/class/AgentsAlerts.class.php:359
-#: ../../include/class/AgentsAlerts.class.php:983
+#: ../../include/class/AgentsAlerts.class.php:984
#: ../../operation/search_alerts.php:36
msgid "Template"
msgstr "Modèle"
@@ -10392,8 +10535,8 @@ msgstr "Créer une nouvelle action"
#: ../../godmode/alerts/configure_alert_action.php:287
#: ../../godmode/alerts/alert_view.php:367
#: ../../godmode/alerts/alert_list.builder.php:169
-#: ../../include/functions_reporting_html.php:3710
-#: ../../include/functions_reporting_html.php:5493
+#: ../../include/functions_reporting_html.php:3738
+#: ../../include/functions_reporting_html.php:5521
#: ../../include/ajax/alert_list.ajax.php:540
#: ../../include/ajax/custom_fields.php:413
#: ../../include/class/AgentsAlerts.class.php:398
@@ -10414,8 +10557,8 @@ msgstr "Configuration avancée"
#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117
-#: ../../godmode/agentes/module_manager.php:1027
-#: ../../operation/snmpconsole/snmp_browser.php:633
+#: ../../godmode/agentes/module_manager.php:1041
+#: ../../operation/snmpconsole/snmp_browser.php:692
msgid "Create module"
msgstr "Créer un module"
@@ -10454,11 +10597,11 @@ msgstr "Caractères non valides trouvés dans le nom du module"
#: ../../enterprise/godmode/policies/policy.php:158
#: ../../enterprise/godmode/setup/setup_acl.php:664
#: ../../enterprise/include/functions_reporting.php:60
-#: ../../enterprise/include/functions_reporting.php:8008
-#: ../../enterprise/include/functions_reporting.php:8034
-#: ../../godmode/reporting/visual_console_builder.php:830
-#: ../../include/functions_menu.php:589
-#: ../../operation/visual_console/view.php:202
+#: ../../enterprise/include/functions_reporting.php:8017
+#: ../../enterprise/include/functions_reporting.php:8043
+#: ../../godmode/reporting/visual_console_builder.php:838
+#: ../../include/functions_menu.php:593
+#: ../../operation/visual_console/view.php:204
#: ../../operation/visual_console/legacy_view.php:171
msgid "Wizard"
msgstr "Assistant"
@@ -10473,8 +10616,8 @@ msgstr "Gérer les modules"
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720
#: ../../enterprise/meta/agentsearch.php:52
#: ../../enterprise/meta/agentsearch.php:58
-#: ../../godmode/events/event_edit_filter.php:447
-#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946
+#: ../../godmode/events/event_edit_filter.php:449
+#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000
msgid "Agent search"
msgstr "Rechercher agent"
@@ -10488,18 +10631,22 @@ msgstr "Sélectionner l'agent où le module sera créé"
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744
#: ../../godmode/snmpconsole/snmp_alert.php:1688
#: ../../godmode/alerts/configure_alert_action.php:432
-#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241
-#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148
-#: ../../mobile/operation/alerts.php:199 ../../mobile/operation/visualmap.php:256
+#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241
+#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128
+#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199
+#: ../../mobile/operation/visualmap.php:256
#: ../../mobile/operation/visualmaps.php:189
-#: ../../mobile/operation/module_graph.php:364
-#: ../../mobile/operation/module_graph.php:377
-#: ../../mobile/operation/events.php:913 ../../mobile/operation/tactical.php:102
+#: ../../mobile/operation/module_data.php:130
+#: ../../mobile/operation/module_graph.php:365
+#: ../../mobile/operation/module_graph.php:378
+#: ../../mobile/operation/events.php:957
+#: ../../mobile/operation/server_status.php:232
+#: ../../mobile/operation/tactical.php:102
msgid "Back"
msgstr "Retour"
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326
-#: ../../godmode/agentes/module_manager.php:1146
+#: ../../godmode/agentes/module_manager.php:1162
msgid "Create Module"
msgstr "Créer un module"
@@ -10576,14 +10723,14 @@ msgstr "Veuillez définir un intervalle"
#: ../../godmode/modules/manage_network_components_form_wizard.php:336
#: ../../godmode/massive/massive_delete_modules.php:323
#: ../../godmode/massive/massive_edit_modules.php:309
-#: ../../include/ajax/module.php:1000
+#: ../../include/ajax/module.php:1023
msgid "Module type"
msgstr "Type de module"
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146
#: ../../mobile/include/functions_web.php:24
-#: ../../include/functions_reporting_html.php:5412
-#: ../../include/functions_reporting_html.php:5566
+#: ../../include/functions_reporting_html.php:5440
+#: ../../include/functions_reporting_html.php:5594
msgid "Monitor"
msgstr "Moniteur"
@@ -10598,7 +10745,7 @@ msgstr "Vérification web"
#: ../../enterprise/include/functions_reporting_csv.php:763
#: ../../enterprise/operation/agentes/tag_view.php:174
#: ../../enterprise/operation/agentes/ver_agente.php:53
-#: ../../extensions/agents_modules.php:448
+#: ../../extensions/agents_modules.php:456
#: ../../godmode/modules/manage_network_components_form_common.php:111
#: ../../godmode/agentes/module_manager_editor_common.php:292
#: ../../godmode/massive/massive_edit_modules.php:904
@@ -10606,15 +10753,17 @@ msgstr "Vérification web"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1720
#: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184
#: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294
-#: ../../include/functions_reporting_html.php:1768
-#: ../../include/ajax/heatmap.ajax.php:193
-#: ../../include/ajax/heatmap.ajax.php:263
-#: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085
-#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600
+#: ../../mobile/operation/server_status.php:174
+#: ../../mobile/operation/server_status.php:175
+#: ../../include/functions_reporting_html.php:1777
+#: ../../include/ajax/heatmap.ajax.php:222
+#: ../../include/ajax/heatmap.ajax.php:305
+#: ../../include/ajax/heatmap.ajax.php:430 ../../include/functions_graph.php:5095
+#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1607
#: ../../include/lib/Dashboard/Widgets/heatmap.php:324
-#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103
-#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:859
-#: ../../operation/agentes/estado_monitores.php:592
+#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103
+#: ../../operation/heatmap.php:105 ../../operation/agentes/status_monitor.php:858
+#: ../../operation/agentes/estado_monitores.php:590
#: ../../operation/agentes/ver_agente.php:1175
msgid "Module group"
msgstr "Groupe de modules"
@@ -10634,14 +10783,14 @@ msgstr "Assistant étape par étape"
#: ../../enterprise/godmode/agentes/plugins_manager.php:130
#: ../../enterprise/godmode/policies/policy_plugins.php:126
#: ../../godmode/modules/manage_network_components_form_common.php:53
-#: ../../godmode/users/configure_user.php:1406
-#: ../../godmode/netflow/nf_edit_form.php:251
+#: ../../godmode/users/configure_user.php:1455
+#: ../../godmode/netflow/nf_edit_form.php:296
#: ../../godmode/alerts/alert_commands.php:159
#: ../../godmode/alerts/alert_commands.php:196
#: ../../godmode/alerts/configure_alert_template.php:966
#: ../../godmode/alerts/configure_alert_template.php:1011
#: ../../godmode/alerts/configure_alert_template.php:1169
-#: ../../operation/netflow/nf_live_view.php:563
+#: ../../operation/netflow/nf_live_view.php:636
msgid "Advanced"
msgstr "Avancé"
@@ -10652,7 +10801,7 @@ msgstr "Cliquez sur Créer pour continuer"
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380
#: ../../enterprise/meta/monitoring/wizard/wizard.php:150
-#: ../../godmode/reporting/graph_builder.graph_editor.php:423
+#: ../../godmode/reporting/graph_builder.graph_editor.php:438
msgid "Please, select a module"
msgstr "Veuillez sélectionner un module"
@@ -10662,7 +10811,7 @@ msgstr "Veuillez sélectionner un module"
#: ../../enterprise/include/class/Omnishell.class.php:975
#: ../../enterprise/include/class/Omnishell.class.php:1056
#: ../../enterprise/include/class/DB2.app.php:862
-#: ../../enterprise/include/class/SAP.app.php:924
+#: ../../enterprise/include/class/SAP.app.php:925
#: ../../enterprise/include/class/Aws.cloud.php:1467
#: ../../enterprise/include/class/MySQL.app.php:938
#: ../../enterprise/include/class/Oracle.app.php:970
@@ -10670,8 +10819,8 @@ msgstr "Veuillez sélectionner un module"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:336
#: ../../godmode/alerts/configure_alert_template.php:1216
#: ../../godmode/wizards/HostDevices.class.php:1617
-#: ../../include/class/CustomNetScan.class.php:758
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244
+#: ../../include/class/CustomNetScan.class.php:757
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245
msgid "Finish"
msgstr "Terminer"
@@ -10705,8 +10854,8 @@ msgstr "Vide"
#: ../../enterprise/godmode/agentes/collections.data.php:241
#: ../../enterprise/godmode/agentes/collections.data.php:272
#: ../../enterprise/godmode/agentes/collections.data.php:336
-#: ../../include/functions_events.php:3268
-#: ../../include/functions_events.php:3542
+#: ../../include/functions_events.php:3273
+#: ../../include/functions_events.php:3547
msgid "New"
msgstr "Nouveau"
@@ -10726,18 +10875,18 @@ msgid "Please, select an agent"
msgstr "Veuillez sélectionner un agent"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:154
-#: ../../enterprise/godmode/policies/policy_modules.php:1764
+#: ../../enterprise/godmode/policies/policy_modules.php:1809
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195
#: ../../enterprise/include/class/CommandCenter.class.php:465
-#: ../../enterprise/operation/log/log_viewer.php:1051
-#: ../../enterprise/operation/log/log_viewer.php:1073
+#: ../../enterprise/operation/log/log_viewer.php:1049
+#: ../../enterprise/operation/log/log_viewer.php:1071
#: ../../enterprise/operation/services/services.treeview_services.php:197
-#: ../../godmode/groups/group_list.php:744
+#: ../../godmode/groups/group_list.php:745
#: ../../godmode/massive/massive_copy_modules.php:235
#: ../../godmode/massive/massive_operations.php:384
#: ../../godmode/massive/massive_add_profiles.php:292
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:602
-#: ../../include/functions_events.php:4282 ../../operation/tree.php:374
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:595
+#: ../../include/functions_events.php:4287 ../../operation/tree.php:376
#: ../../operation/reporting/reporting_viewer.php:340
#: ../../operation/reporting/graph_viewer.php:430
#: ../../general/ui/agents_list.php:146
@@ -10746,10 +10895,10 @@ msgstr "Chargement en cours"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:156
#: ../../enterprise/meta/include/functions_wizard_meta.php:642
-#: ../../godmode/tag/edit_tag.php:212
-#: ../../include/class/TipsWindow.class.php:726
-#: ../../include/class/TipsWindow.class.php:893
-#: ../../include/functions_reporting.php:7470
+#: ../../godmode/tag/edit_tag.php:216
+#: ../../include/class/TipsWindow.class.php:746
+#: ../../include/class/TipsWindow.class.php:913
+#: ../../include/functions_reporting.php:7479
#: ../../include/lib/Dashboard/Widgets/url.php:216
msgid "Url"
msgstr "URL"
@@ -10773,24 +10922,25 @@ msgstr "Un autre agent existe déjà avec le même nom"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:161
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476
-#: ../../godmode/agentes/module_manager_editor_common.php:673
-#: ../../godmode/agentes/module_manager_editor_common.php:675
+#: ../../godmode/agentes/module_manager_editor_common.php:678
+#: ../../godmode/agentes/module_manager_editor_common.php:680
#, php-format
msgid "Agent interval x %s"
msgstr "Agent intervalle x %s"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:365
msgid ""
-"This feature will be removed in version 771 and its\n"
+"This feature will be removed in version 773 and its\n"
" functions transferred to different metaconsole tools "
"( bulk operations, agent alert editing, etc).\n"
" The current functions of the wizard is minimal and we do "
"not recommend its use."
msgstr ""
-"Cette fonctionnalité sera supprimée dans la version 771 et ses\n"
-" fonctions seront transférées vers différents outils de la "
-"Métaconsole (opérations en masse, édition des alertes de l’agent, etc.).\n"
-" Les fonctions actuelles de l’assistant sont minimes et "
+"Cette fonctionnalité disparaîtra dans la version 773 et ses\n"
+" Fonctions transférées aux différentes aux différents "
+"outils de la Métaconsole (opérations en bloc, édition d’alerte des agents, "
+"etc.).\n"
+" Les fonctions actuelles de l’assistant sont minimales et "
"nous ne recommandons pas son utilisation."
#: ../../enterprise/meta/monitoring/group_view.php:59
@@ -10799,9 +10949,10 @@ msgstr "Vue du groupe"
#: ../../enterprise/meta/monitoring/group_view.php:64
#: ../../godmode/groups/group_list.php:324
+#: ../../godmode/users/configure_user.php:61
#: ../../godmode/users/user_management.php:40
#: ../../godmode/massive/massive_edit_users.php:276
-#: ../../operation/users/user_edit.php:471
+#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471
#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176
msgid "Group view"
msgstr "Affichage du groupe"
@@ -10848,9 +10999,9 @@ msgid "% Monitors Not init"
msgstr "% moniteurs non initialisés"
#: ../../enterprise/meta/monitoring/group_view.php:203
-#: ../../godmode/agentes/modificar_agente.php:1016
-#: ../../operation/agentes/estado_agente.php:1309
-#: ../../operation/agentes/group_view.php:600
+#: ../../godmode/agentes/modificar_agente.php:1028
+#: ../../operation/agentes/estado_agente.php:1318
+#: ../../operation/agentes/group_view.php:603
msgid "There are no defined agents"
msgstr "Aucun agent défini"
@@ -10865,15 +11016,15 @@ msgstr "Groupe ou étiquette"
#: ../../enterprise/meta/monitoring/group_view.php:232
#: ../../enterprise/operation/services/services.treeview_services.php:291
-#: ../../godmode/groups/group_list.php:1084
-#: ../../include/functions_reporting_html.php:2562
-#: ../../include/functions_reporting_html.php:2572
-#: ../../include/functions_inventory.php:511
-#: ../../include/functions_inventory.php:654
-#: ../../include/functions_alerts.php:3386
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:699
-#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241
-#: ../../operation/agentes/agent_inventory.php:266
+#: ../../godmode/groups/group_list.php:1096
+#: ../../include/functions_reporting_html.php:2583
+#: ../../include/functions_reporting_html.php:2593
+#: ../../include/functions_inventory.php:520
+#: ../../include/functions_inventory.php:663
+#: ../../include/functions_alerts.php:3387
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:692
+#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244
+#: ../../operation/agentes/agent_inventory.php:321
msgid "Total"
msgstr "Total"
@@ -10882,18 +11033,18 @@ msgstr "Total"
#: ../../godmode/alerts/alert_list.list.php:645
#: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324
#: ../../include/functions.php:1284 ../../include/functions_agents.php:2998
-#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417
-#: ../../include/class/AgentsAlerts.class.php:956
-#: ../../include/class/SnmpConsole.class.php:841
-#: ../../include/functions_reporting.php:13143
-#: ../../include/functions_events.php:2942
-#: ../../include/functions_events.php:3142
-#: ../../operation/agentes/group_view.php:252
+#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460
+#: ../../include/class/AgentsAlerts.class.php:957
+#: ../../include/class/SnmpConsole.class.php:843
+#: ../../include/functions_reporting.php:13216
+#: ../../include/functions_events.php:2947
+#: ../../include/functions_events.php:3147
+#: ../../operation/agentes/group_view.php:255
msgid "Alert fired"
msgstr "Alerte déclenchée"
#: ../../enterprise/meta/monitoring/group_view.php:367
-#: ../../operation/agentes/group_view.php:343
+#: ../../operation/agentes/group_view.php:346
#, php-format
msgid ""
"This %s installation are using the secondary groups feature. For this reason, "
@@ -10905,9 +11056,11 @@ msgstr ""
#: ../../enterprise/meta/monitoring/tactical.php:46
#: ../../enterprise/meta/general/main_header.php:103
#: ../../enterprise/meta/general/main_menu.php:205
+#: ../../godmode/users/configure_user.php:62
#: ../../godmode/users/user_management.php:41
#: ../../godmode/massive/massive_edit_users.php:277
#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97
+#: ../../include/auth/mysql.php:810
#: ../../include/lib/Dashboard/Widgets/tactical.php:176
#: ../../include/lib/Dashboard/Widgets/tactical.php:533
#: ../../operation/users/user_edit.php:472
@@ -10931,14 +11084,14 @@ msgstr "Rapport de l'état"
#: ../../enterprise/meta/general/main_menu.php:271
#: ../../enterprise/include/class/CommandCenter.class.php:1087
#: ../../enterprise/tools/ipam/ipam_network.php:427
-#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246
+#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245
#: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25
-#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908
-#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219
+#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:952
+#: ../../include/functions.php:4193 ../../include/ajax/events.php:2220
#: ../../include/functions_reports.php:876
#: ../../include/functions_reports.php:880
#: ../../include/functions_reports.php:884 ../../operation/menu.php:518
-#: ../../operation/events/events.php:1613
+#: ../../operation/events/events.php:1667
msgid "Events"
msgstr "Événements"
@@ -10962,14 +11115,14 @@ msgstr "Afficher les événements"
#: ../../enterprise/meta/event/custom_events.php:42
#: ../../godmode/netflow/nf_edit.php:211
-#: ../../godmode/netflow/nf_edit_form.php:69
+#: ../../godmode/netflow/nf_edit_form.php:80
#: ../../godmode/snmpconsole/snmp_filters.php:37
#: ../../godmode/events/event_filter.php:230
#: ../../include/ajax/custom_fields.php:654
msgid "Create filter"
msgstr "Créer un filtre"
-#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241
+#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240
#: ../../godmode/events/events.php:83
msgid "Event responses"
msgstr "Réponses des événements"
@@ -10979,24 +11132,23 @@ msgstr "Réponses des événements"
#: ../../enterprise/meta/event/custom_events.php:72
#: ../../enterprise/meta/event/custom_events.php:90
#: ../../godmode/agentes/fields_manager.php:59
-#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103
-#: ../../godmode/massive/massive_edit_agents.php:1251
+#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103
+#: ../../godmode/massive/massive_edit_agents.php:1267
#: ../../godmode/reporting/reporting_builder.item_editor.php:76
-#: ../../include/functions_reporting_html.php:1620
-#: ../../include/functions_events.php:4440
+#: ../../include/functions_reporting_html.php:1629
+#: ../../include/functions_events.php:4445
#: ../../operation/agentes/status_monitor.php:64
#: ../../operation/agentes/status_monitor.php:87
-#: ../../operation/agentes/status_monitor.php:293
-#: ../../operation/agentes/status_monitor.php:316
-#: ../../operation/agentes/ver_agente.php:1565
-#: ../../operation/agentes/ver_agente.php:1823
-#: ../../operation/inventory/inventory.php:1009
-#: ../../operation/inventory/inventory.php:1303
+#: ../../operation/agentes/status_monitor.php:292
+#: ../../operation/agentes/status_monitor.php:315
+#: ../../operation/agentes/ver_agente.php:1561
+#: ../../operation/agentes/ver_agente.php:1819
+#: ../../operation/inventory/inventory.php:1255
msgid "Custom fields"
msgstr "Champs personnalisés"
#: ../../enterprise/meta/event/custom_events.php:77
-#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790
+#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791
msgid "Responses"
msgstr "Réponses"
@@ -11011,25 +11163,25 @@ msgid "Fields"
msgstr "Champs"
#: ../../enterprise/meta/event/custom_events.php:173
-#: ../../godmode/agentes/status_monitor_custom_fields.php:168
+#: ../../godmode/agentes/status_monitor_custom_fields.php:188
#: ../../godmode/events/custom_events.php:127
msgid "Fields available"
msgstr "Champs disponibles"
#: ../../enterprise/meta/event/custom_events.php:175
-#: ../../godmode/agentes/status_monitor_custom_fields.php:190
+#: ../../godmode/agentes/status_monitor_custom_fields.php:210
#: ../../godmode/events/custom_events.php:150
msgid "Fields selected"
msgstr "Champs sélectionnés"
#: ../../enterprise/meta/event/custom_events.php:185
-#: ../../godmode/agentes/status_monitor_custom_fields.php:175
+#: ../../godmode/agentes/status_monitor_custom_fields.php:195
#: ../../godmode/events/custom_events.php:134
msgid "Add fields to select"
msgstr "Ajouter champs à sélectionner"
#: ../../enterprise/meta/event/custom_events.php:195
-#: ../../godmode/agentes/status_monitor_custom_fields.php:184
+#: ../../godmode/agentes/status_monitor_custom_fields.php:204
#: ../../godmode/events/custom_events.php:144
msgid "Delete fields to select"
msgstr "Supprimer champs pour sélectionner"
@@ -11040,7 +11192,7 @@ msgid "Show event fields"
msgstr "Afficher champs d'événement"
#: ../../enterprise/meta/event/custom_events.php:244
-#: ../../godmode/agentes/status_monitor_custom_fields.php:252
+#: ../../godmode/agentes/status_monitor_custom_fields.php:272
#: ../../godmode/events/custom_events.php:232
msgid "There must be at least one custom field. Timestamp will be set by default"
msgstr ""
@@ -11098,9 +11250,9 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007
#: ../../enterprise/include/functions_ipam.php:1665
#: ../../godmode/reporting/reporting_builder.list_items.php:442
-#: ../../godmode/reporting/reporting_builder.list_items.php:738
-#: ../../godmode/reporting/graph_builder.graph_editor.php:217
-#: ../../godmode/reporting/graph_builder.graph_editor.php:354
+#: ../../godmode/reporting/reporting_builder.list_items.php:739
+#: ../../godmode/reporting/graph_builder.graph_editor.php:267
+#: ../../godmode/reporting/graph_builder.graph_editor.php:350
msgid "Sort"
msgstr "Classer"
@@ -11191,7 +11343,7 @@ msgstr "Erreur Nom dupliqué"
#: ../../godmode/users/profile_list.php:61
#: ../../godmode/users/configure_profile.php:54
#: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276
-#: ../../godmode/users/configure_user.php:245
+#: ../../godmode/users/configure_user.php:183
#: ../../operation/users/user_edit_header.php:89
msgid "User management"
msgstr "Gestion des utilisateurs"
@@ -11201,7 +11353,7 @@ msgstr "Gestion des utilisateurs"
#: ../../godmode/users/profile_list.php:72
#: ../../godmode/users/configure_profile.php:65
#: ../../godmode/users/user_list.php:262
-#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159
+#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159
msgid "Profile management"
msgstr "Gestion des profils"
@@ -11236,11 +11388,10 @@ msgstr "Gestion des utilisateurs"
#: ../../godmode/groups/tactical.php:179
#: ../../godmode/agentes/agent_manager.php:373
#: ../../godmode/reporting/reporting_builder.item_editor.php:69
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3993
-#: ../../include/functions_reporting_html.php:1592
-#: ../../include/functions_reporting_html.php:1756
-#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999
-#: ../../operation/inventory/inventory.php:1293
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4002
+#: ../../include/functions_reporting_html.php:1601
+#: ../../include/functions_reporting_html.php:1765
+#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245
msgid "Alias"
msgstr "Alias"
@@ -11252,18 +11403,18 @@ msgstr "Alias"
#: ../../enterprise/include/functions_reporting_csv.php:725
#: ../../godmode/agentes/agent_manager.php:401
#: ../../godmode/servers/modificar_server.php:95
-#: ../../include/functions_reporting_html.php:1596
-#: ../../include/functions_reporting_html.php:4139
-#: ../../include/functions_reporting_html.php:4233
-#: ../../include/functions_treeview.php:643
-#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290
+#: ../../include/functions_reporting_html.php:1605
+#: ../../include/functions_reporting_html.php:4167
+#: ../../include/functions_reporting_html.php:4261
+#: ../../include/functions_treeview.php:647
+#: ../../include/functions_events.php:4377 ../../operation/gis_maps/ajax.php:290
msgid "IP Address"
msgstr "Adresse IP"
#: ../../enterprise/meta/include/functions_wizard_meta.php:236
#: ../../enterprise/meta/include/functions_wizard_meta.php:682
#: ../../enterprise/godmode/modules/configure_local_component.php:515
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206
#: ../../enterprise/godmode/setup/setup_log_collector.php:89
#: ../../enterprise/include/functions_metaconsole.php:1339
#: ../../enterprise/include/functions_metaconsole.php:1372
@@ -11272,7 +11423,7 @@ msgstr "Adresse IP"
#: ../../enterprise/include/functions_metaconsole.php:1471
#: ../../enterprise/include/functions_metaconsole.php:1502
#: ../../enterprise/include/functions_metaconsole.php:1535
-#: ../../godmode/agentes/module_manager_editor_web.php:179
+#: ../../godmode/agentes/module_manager_editor_web.php:182
msgid "Check"
msgstr "Vérifier"
@@ -11286,9 +11437,9 @@ msgstr "Vérifier"
#: ../../godmode/alerts/configure_alert_template.php:246
#: ../../godmode/alerts/configure_alert_template.php:250
#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268
-#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740
+#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741
#: ../../include/functions_reports.php:783
-#: ../../include/functions_reporting.php:10176
+#: ../../include/functions_reporting.php:10185
msgid "General"
msgstr "Général"
@@ -11314,7 +11465,7 @@ msgstr "Annuler les modifications"
#: ../../enterprise/meta/include/functions_wizard_meta.php:492
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753
#: ../../godmode/agentes/module_manager_editor_wmi.php:57
-#: ../../godmode/agentes/module_manager_editor_network.php:103
+#: ../../godmode/agentes/module_manager_editor_network.php:104
#: ../../godmode/massive/massive_edit_modules.php:832
msgid "Auto"
msgstr "Automatique"
@@ -11322,7 +11473,7 @@ msgstr "Automatique"
#: ../../enterprise/meta/include/functions_wizard_meta.php:493
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754
#: ../../godmode/agentes/module_manager_editor_wmi.php:58
-#: ../../godmode/agentes/module_manager_editor_network.php:104
+#: ../../godmode/agentes/module_manager_editor_network.php:105
#: ../../godmode/massive/massive_edit_modules.php:833
msgid "Force primary key"
msgstr "Forcer clé principale"
@@ -11337,8 +11488,8 @@ msgstr "Forcer clé principale"
#: ../../enterprise/meta/general/login_page.php:267
#: ../../enterprise/extensions/disabled/check_acls.php:47
#: ../../enterprise/extensions/disabled/check_acls.php:132
-#: ../../enterprise/godmode/setup/setup_auth.php:1130
-#: ../../enterprise/godmode/setup/setup_auth.php:1162
+#: ../../enterprise/godmode/setup/setup_auth.php:1347
+#: ../../enterprise/godmode/setup/setup_auth.php:1379
#: ../../enterprise/godmode/servers/manage_export_form.php:155
#: ../../enterprise/include/functions_tasklist.php:172
#: ../../enterprise/include/class/DB2.app.php:509
@@ -11349,23 +11500,22 @@ msgstr "Forcer clé principale"
#: ../../godmode/update_manager/update_manager.history.php:43
#: ../../godmode/setup/setup_ehorus.php:97
#: ../../godmode/setup/setup_integria.php:292
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3525
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3534
#: ../../godmode/events/custom_events.php:97
-#: ../../mobile/include/user.class.php:392
-#: ../../mobile/operation/tactical.php:349
-#: ../../include/functions_reporting_html.php:6011
+#: ../../mobile/operation/tactical.php:350
+#: ../../include/functions_reporting_html.php:6045
#: ../../include/functions.php:3109 ../../include/functions_cron.php:498
-#: ../../include/functions_config.php:731 ../../include/functions_config.php:751
+#: ../../include/functions_config.php:743 ../../include/functions_config.php:763
#: ../../include/class/CredentialStore.class.php:817
-#: ../../include/class/CredentialStore.class.php:1300
+#: ../../include/class/CredentialStore.class.php:1301
#: ../../include/class/AuditLog.class.php:110
#: ../../include/class/AuditLog.class.php:240
#: ../../include/functions_events.php:202 ../../include/functions_events.php:253
-#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:857
-#: ../../operation/users/user_edit.php:910
+#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:854
+#: ../../operation/users/user_edit.php:907
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265
-#: ../../general/logon_ok.php:255 ../../general/login_page.php:276
+#: ../../general/logon_ok.php:300 ../../general/login_page.php:276
#: ../../general/login_page.php:335
msgid "User"
msgstr "Utilisateur"
@@ -11379,8 +11529,8 @@ msgstr "Utilisateur"
#: ../../enterprise/meta/general/login_page.php:284
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851
#: ../../enterprise/godmode/setup/setup_module_library.php:57
-#: ../../enterprise/godmode/setup/setup_auth.php:1136
-#: ../../enterprise/godmode/setup/setup_auth.php:1168
+#: ../../enterprise/godmode/setup/setup_auth.php:1353
+#: ../../enterprise/godmode/setup/setup_auth.php:1385
#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250
#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59
#: ../../enterprise/godmode/servers/manage_export_form.php:161
@@ -11396,22 +11546,21 @@ msgstr "Utilisateur"
#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532
#: ../../extensions/api_checker.php:260
#: ../../godmode/modules/manage_network_components_form_wmi.php:49
-#: ../../godmode/users/configure_user.php:1126
+#: ../../godmode/users/configure_user.php:1190
#: ../../godmode/users/user_management.php:280
#: ../../godmode/agentes/module_manager_editor_wmi.php:148
#: ../../godmode/massive/massive_edit_modules.php:923
#: ../../godmode/setup/setup_ehorus.php:104
-#: ../../godmode/setup/setup_integria.php:306
-#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484
-#: ../../include/functions_config.php:735 ../../include/functions_config.php:755
+#: ../../godmode/setup/setup_integria.php:306 ../../include/functions_ui.php:7561
+#: ../../include/functions_config.php:747 ../../include/functions_config.php:767
#: ../../include/class/CredentialStore.class.php:974
#: ../../include/class/CredentialStore.class.php:1024
-#: ../../include/class/CredentialStore.class.php:1301
-#: ../../include/class/CredentialStore.class.php:1324
-#: ../../include/class/CredentialStore.class.php:1346
+#: ../../include/class/CredentialStore.class.php:1302
+#: ../../include/class/CredentialStore.class.php:1328
+#: ../../include/class/CredentialStore.class.php:1352
#: ../../include/class/AgentWizard.class.php:690
-#: ../../operation/users/user_edit.php:863
-#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290
+#: ../../operation/users/user_edit.php:860
+#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290
#: ../../general/login_page.php:351
msgid "Password"
msgstr "Mot de passe"
@@ -11425,14 +11574,14 @@ msgid "Response"
msgstr "Réponse"
#: ../../enterprise/meta/include/functions_wizard_meta.php:593
-#: ../../godmode/agentes/module_manager_editor_web.php:213
+#: ../../godmode/agentes/module_manager_editor_web.php:216
msgid "Check type"
msgstr "Vérifier le type"
#: ../../enterprise/meta/include/functions_wizard_meta.php:610
#: ../../enterprise/meta/include/functions_wizard_meta.php:667
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066
-#: ../../enterprise/include/functions_enterprise.php:447
+#: ../../enterprise/include/functions_enterprise.php:457
#: ../../godmode/agentes/module_manager_editor_web.php:92
#: ../../godmode/massive/massive_edit_modules.php:1156
msgid "Web checks"
@@ -11452,47 +11601,47 @@ msgstr "Supprimer vérification"
#: ../../enterprise/meta/include/functions_wizard_meta.php:674
#: ../../enterprise/godmode/modules/configure_local_component.php:506
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217
-#: ../../godmode/agentes/module_manager_editor_web.php:168
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218
+#: ../../godmode/agentes/module_manager_editor_web.php:171
msgid "Load basic"
msgstr "Charger les bases"
#: ../../enterprise/meta/include/functions_wizard_meta.php:680
-#: ../../godmode/agentes/module_manager_editor_web.php:177
+#: ../../godmode/agentes/module_manager_editor_web.php:180
msgid "Load a basic structure on Web Checks"
msgstr "Charger une structure de base sur les contrôles web"
#: ../../enterprise/meta/include/functions_wizard_meta.php:688
-#: ../../godmode/agentes/module_manager_editor_web.php:188
+#: ../../godmode/agentes/module_manager_editor_web.php:191
msgid "Check the correct structure of the WebCheck"
msgstr "Vérifiez la structure correcte du WebCheck"
#: ../../enterprise/meta/include/functions_wizard_meta.php:695
-#: ../../godmode/agentes/module_manager_editor_web.php:267
+#: ../../godmode/agentes/module_manager_editor_web.php:270
msgid "First line must be \"task_begin\""
msgstr "La première ligne doit être « task_begin »."
#: ../../enterprise/meta/include/functions_wizard_meta.php:696
-#: ../../godmode/agentes/module_manager_editor_web.php:268
+#: ../../godmode/agentes/module_manager_editor_web.php:271
msgid "Webchecks configuration is empty"
msgstr "La configuration des Webchecks est vide."
#: ../../enterprise/meta/include/functions_wizard_meta.php:697
#: ../../enterprise/meta/include/functions_wizard_meta.php:698
-#: ../../godmode/agentes/module_manager_editor_web.php:269
-#: ../../godmode/agentes/module_manager_editor_web.php:270
+#: ../../godmode/agentes/module_manager_editor_web.php:272
+#: ../../godmode/agentes/module_manager_editor_web.php:273
msgid "Last line must be \"task_end\""
msgstr "La dernière ligne doit être « task_end »."
#: ../../enterprise/meta/include/functions_wizard_meta.php:699
#: ../../enterprise/godmode/modules/configure_local_component.php:525
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256
-#: ../../godmode/agentes/module_manager_editor_web.php:271
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257
+#: ../../godmode/agentes/module_manager_editor_web.php:274
msgid "There is a line with a unknown token 'token_fail'."
msgstr "Une ligne contient un token inconnu « token_fail »."
#: ../../enterprise/meta/include/functions_wizard_meta.php:700
-#: ../../godmode/agentes/module_manager_editor_web.php:273
+#: ../../godmode/agentes/module_manager_editor_web.php:276
msgid "Web checks are built correctly"
msgstr "Contrôles web établis correctement"
@@ -11525,42 +11674,41 @@ msgstr "Contrôles web établis correctement"
#: ../../enterprise/operation/agentes/tag_view.php:784
#: ../../enterprise/tools/ipam/ipam_list.php:724
#: ../../godmode/modules/manage_network_components_form_common.php:143
-#: ../../godmode/agentes/status_monitor_custom_fields.php:93
-#: ../../godmode/agentes/status_monitor_custom_fields.php:145
+#: ../../godmode/agentes/status_monitor_custom_fields.php:113
+#: ../../godmode/agentes/status_monitor_custom_fields.php:165
#: ../../godmode/agentes/inventory_manager.php:236
#: ../../godmode/agentes/agent_manager.php:503
-#: ../../godmode/agentes/module_manager_editor_common.php:1067
+#: ../../godmode/agentes/module_manager_editor_common.php:1077
#: ../../godmode/agentes/module_manager.php:637
-#: ../../godmode/massive/massive_edit_agents.php:714
+#: ../../godmode/massive/massive_edit_agents.php:731
#: ../../godmode/massive/massive_edit_modules.php:769
-#: ../../godmode/setup/setup_visuals.php:1919
-#: ../../godmode/setup/setup_visuals.php:2001
+#: ../../godmode/setup/setup_visuals.php:1934
+#: ../../godmode/setup/setup_visuals.php:2016
#: ../../godmode/wizards/HostDevices.class.php:799
#: ../../godmode/wizards/DiscoveryTaskList.class.php:599
-#: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659
-#: ../../mobile/operation/modules.php:851
-#: ../../include/functions_reporting_html.php:3712
-#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83
-#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417
+#: ../../mobile/operation/modules.php:668 ../../mobile/operation/modules.php:670
+#: ../../mobile/operation/modules.php:910
+#: ../../include/functions_reporting_html.php:3740
+#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83
+#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494
#: ../../include/class/CustomNetScan.class.php:526
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:376
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:387
#: ../../include/lib/Dashboard/Widgets/single_graph.php:347
#: ../../include/lib/Dashboard/Widgets/top_n.php:236
#: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45
#: ../../operation/search_agents.php:51
-#: ../../operation/agentes/estado_agente.php:1035
-#: ../../operation/agentes/status_monitor.php:1560
-#: ../../operation/agentes/estado_generalagente.php:458
+#: ../../operation/agentes/status_monitor.php:1562
+#: ../../operation/agentes/estado_generalagente.php:429
#: ../../operation/network/network_usage_map.php:114
-#: ../../operation/netflow/nf_live_view.php:389
-#: ../../operation/inventory/inventory.php:1006
-#: ../../operation/inventory/inventory.php:1300
-#: ../../operation/search_modules.php:35
-#: ../../operation/events/sound_events.php:219
+#: ../../operation/netflow/nf_live_view.php:462
+#: ../../operation/inventory/inventory.php:1252
+#: ../../operation/search_modules.php:38
+#: ../../operation/events/sound_events.php:249
msgid "Interval"
msgstr "Intervalle"
@@ -11574,9 +11722,9 @@ msgstr "Intervalle"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868
#: ../../enterprise/include/functions_reporting_csv.php:2791
#: ../../godmode/modules/manage_network_components_form_common.php:323
-#: ../../godmode/agentes/module_manager_editor_common.php:1327
+#: ../../godmode/agentes/module_manager_editor_common.php:1337
#: ../../godmode/massive/massive_edit_modules.php:940
-#: ../../include/functions_reporting_html.php:3713
+#: ../../include/functions_reporting_html.php:3741
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498
msgid "Unit"
msgstr "Unité"
@@ -11599,7 +11747,7 @@ msgstr "Communauté SNMP"
#: ../../enterprise/include/class/DeploymentCenter.class.php:1344
#: ../../enterprise/include/class/DeploymentCenter.class.php:1354
#: ../../extensions/api_checker.php:331
-#: ../../godmode/wizards/HostDevices.class.php:1508
+#: ../../godmode/wizards/HostDevices.class.php:1504
msgid "Credentials"
msgstr "Identifiants"
@@ -11624,9 +11772,10 @@ msgstr "Identifiants"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268
#: ../../godmode/alerts/alert_view.php:272
#: ../../godmode/reporting/reporting_builder.item_editor.php:1483
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2574
-#: ../../include/functions_reporting_html.php:5008
-#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1539
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2583
+#: ../../include/functions_reporting_html.php:5036
+#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912
+#: ../../include/functions_reporting.php:1539
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439
@@ -11654,9 +11803,10 @@ msgstr "Minimum"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268
#: ../../godmode/alerts/alert_view.php:272
#: ../../godmode/reporting/reporting_builder.item_editor.php:1485
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2567
-#: ../../include/functions_reporting_html.php:5007
-#: ../../include/functions_ui.php:2869 ../../include/functions_reporting.php:1535
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2576
+#: ../../include/functions_reporting_html.php:5035
+#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912
+#: ../../include/functions_reporting.php:1535
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448
@@ -11686,8 +11836,8 @@ msgstr "Maximum"
#: ../../godmode/modules/manage_network_components_form_wizard.php:444
#: ../../godmode/agentes/module_manager_editor_common.php:477
#: ../../godmode/agentes/module_manager_editor_common.php:485
-#: ../../godmode/agentes/module_manager_editor_common.php:560
-#: ../../godmode/agentes/module_manager_editor_common.php:569
+#: ../../godmode/agentes/module_manager_editor_common.php:565
+#: ../../godmode/agentes/module_manager_editor_common.php:574
#: ../../godmode/massive/massive_edit_modules.php:625
#: ../../godmode/massive/massive_edit_modules.php:716
msgid "Inverse interval"
@@ -11696,13 +11846,13 @@ msgstr "Intervalle inverse"
#: ../../enterprise/meta/include/functions_wizard_meta.php:996
#: ../../enterprise/meta/include/functions_wizard_meta.php:1081
#: ../../enterprise/meta/include/functions_wizard_meta.php:1314
-#: ../../include/ajax/module.php:1004
+#: ../../include/ajax/module.php:1027
msgid "Thresholds"
msgstr "Seuils"
#: ../../enterprise/meta/include/functions_wizard_meta.php:1087
#: ../../enterprise/meta/include/functions_wizard_meta.php:1619
-#: ../../godmode/agentes/module_manager_editor_web.php:238
+#: ../../godmode/agentes/module_manager_editor_web.php:241
msgid "Proxy URL"
msgstr "URL du proxy"
@@ -11727,7 +11877,7 @@ msgid "Alerts in module"
msgstr "Alertes dans le module"
#: ../../enterprise/meta/include/functions_wizard_meta.php:1376
-#: ../../include/functions_reporting_html.php:5372
+#: ../../include/functions_reporting_html.php:5400
msgid "Alert description"
msgstr "Description de l'alerte"
@@ -11762,7 +11912,7 @@ msgstr "Erreur de création des alertes ; l'opération a été annulée."
#: ../../enterprise/meta/include/functions_wizard_meta.php:2064
#: ../../enterprise/meta/include/functions_wizard_meta.php:2159
-#: ../../enterprise/godmode/policies/policy_modules.php:933
+#: ../../enterprise/godmode/policies/policy_modules.php:937
msgid "Successfully added module."
msgstr "Module ajouté correctement"
@@ -11838,7 +11988,7 @@ msgstr "Tous les jours"
#: ../../enterprise/include/ajax/ipam.ajax.php:521
#: ../../enterprise/tools/ipam/ipam_editor.php:364
#: ../../godmode/alerts/alert_templates.php:71
-#: ../../include/functions_config.php:1684
+#: ../../include/functions_config.php:1696
msgid "Days"
msgstr "Jours"
@@ -11853,7 +12003,7 @@ msgid "and"
msgstr "et"
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263
#: ../../godmode/snmpconsole/snmp_alert.php:1589
@@ -11879,8 +12029,8 @@ msgstr "Seuil de temps"
#: ../../godmode/alerts/alert_list.list.php:733
#: ../../godmode/alerts/alert_templates.php:94
#: ../../include/functions_reporting_html.php:148
-#: ../../include/functions_reporting_html.php:3202
-#: ../../include/functions_reporting_html.php:4013
+#: ../../include/functions_reporting_html.php:3230
+#: ../../include/functions_reporting_html.php:4041
#: ../../include/rest-api/index.php:375
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513
@@ -11906,10 +12056,10 @@ msgstr "De"
#: ../../godmode/alerts/alert_templates.php:96
#: ../../godmode/alerts/alert_list.builder.php:126
#: ../../include/functions_reporting_html.php:149
-#: ../../include/functions_reporting_html.php:3207
+#: ../../include/functions_reporting_html.php:3235
#: ../../include/ajax/alert_list.ajax.php:527
#: ../../include/class/AgentsAlerts.class.php:321
-#: ../../include/functions_reporting.php:14866
+#: ../../include/functions_reporting.php:14939
#: ../../operation/reporting/reporting_viewer.php:272
msgid "to"
msgstr "pour"
@@ -11933,9 +12083,9 @@ msgstr "Identifiant de l'événement"
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587
#: ../../include/functions_reporting_html.php:1307
#: ../../include/functions_reporting_html.php:1315
-#: ../../include/functions_reporting_html.php:5304
+#: ../../include/functions_reporting_html.php:5332
#: ../../include/functions_events.php:200 ../../include/functions_events.php:2529
-#: ../../include/functions_events.php:4901
+#: ../../include/functions_events.php:4906
msgid "Event name"
msgstr "Nom de l'événement"
@@ -11943,15 +12093,15 @@ msgstr "Nom de l'événement"
#: ../../enterprise/include/functions_reporting_csv.php:921
#: ../../enterprise/include/class/Omnishell.class.php:642
#: ../../enterprise/include/functions_ipam.php:2114
-#: ../../godmode/agentes/modificar_agente.php:690
+#: ../../godmode/agentes/modificar_agente.php:700
#: ../../godmode/agentes/agent_manager.php:357
-#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849
-#: ../../include/functions_reporting_html.php:3659
-#: ../../include/functions_treeview.php:607
+#: ../../mobile/operation/modules.php:608 ../../mobile/operation/modules.php:908
+#: ../../include/functions_reporting_html.php:3687
+#: ../../include/functions_treeview.php:611
#: ../../include/class/SatelliteAgent.class.php:513
#: ../../include/lib/Group.php:550 ../../include/functions_events.php:201
#: ../../include/functions_events.php:247 ../../include/functions_events.php:2534
-#: ../../operation/events/events.php:2669
+#: ../../operation/events/events.php:2723
msgid "Agent name"
msgstr "Nom de l'agent"
@@ -11966,38 +12116,39 @@ msgstr "Nom de l'agent"
#: ../../enterprise/include/class/LogSource.class.php:604
#: ../../enterprise/operation/agentes/tag_view.php:789
#: ../../godmode/update_manager/update_manager.history.php:44
-#: ../../godmode/agentes/status_monitor_custom_fields.php:117
-#: ../../godmode/agentes/status_monitor_custom_fields.php:151
-#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100
-#: ../../mobile/operation/modules.php:661 ../../mobile/operation/modules.php:852
-#: ../../mobile/operation/events.php:804
+#: ../../godmode/agentes/status_monitor_custom_fields.php:137
+#: ../../godmode/agentes/status_monitor_custom_fields.php:171
+#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100
+#: ../../mobile/operation/modules.php:672 ../../mobile/operation/modules.php:911
+#: ../../mobile/operation/module_data.php:165
+#: ../../mobile/operation/events.php:833
#: ../../include/functions_reporting_html.php:1062
#: ../../include/functions_reporting_html.php:1070
#: ../../include/functions_reporting_html.php:1310
#: ../../include/functions_reporting_html.php:1317
-#: ../../include/functions_reporting_html.php:2646
-#: ../../include/functions_reporting_html.php:5306
+#: ../../include/functions_reporting_html.php:2665
+#: ../../include/functions_reporting_html.php:5334
#: ../../include/ajax/events_extended.php:90
#: ../../include/ajax/custom_fields.php:415
-#: ../../include/functions_inventory.php:143
-#: ../../include/functions_inventory.php:177
-#: ../../include/functions_inventory.php:379
-#: ../../include/functions_inventory.php:399
-#: ../../include/functions_inventory.php:585
+#: ../../include/functions_inventory.php:144
+#: ../../include/functions_inventory.php:178
+#: ../../include/functions_inventory.php:388
+#: ../../include/functions_inventory.php:408
+#: ../../include/functions_inventory.php:594
#: ../../include/functions_netflow.php:278
#: ../../include/class/SnmpConsole.class.php:279
#: ../../include/functions_events.php:205 ../../include/functions_events.php:262
#: ../../include/functions_events.php:2539
-#: ../../include/functions_events.php:4914
+#: ../../include/functions_events.php:4919
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1598
-#: ../../operation/agentes/estado_generalagente.php:751
+#: ../../operation/agentes/status_monitor.php:1600
+#: ../../operation/agentes/estado_generalagente.php:720
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/messages/message_list.php:196
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263
-#: ../../operation/search_modules.php:39
+#: ../../operation/search_modules.php:42
msgid "Timestamp"
msgstr "Horodatage"
@@ -12007,12 +12158,12 @@ msgstr "Horodatage"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406
#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127
#: ../../enterprise/include/functions_events.php:60
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3025
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
#: ../../godmode/events/event_filter.php:146
-#: ../../godmode/events/event_edit_filter.php:352
+#: ../../godmode/events/event_edit_filter.php:354
#: ../../include/lib/Dashboard/Widgets/events_list.php:332
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267
-#: ../../include/functions_events.php:206 ../../operation/events/events.php:1749
+#: ../../include/functions_events.php:206 ../../operation/events/events.php:1803
msgid "Event type"
msgstr "Type d'événement"
@@ -12021,20 +12172,20 @@ msgstr "Type d'événement"
#: ../../enterprise/include/functions_reporting_csv.php:923
#: ../../enterprise/operation/agentes/tag_view.php:217
#: ../../godmode/modules/manage_network_templates_form.php:231
-#: ../../godmode/modules/manage_network_components.php:774
+#: ../../godmode/modules/manage_network_components.php:777
#: ../../godmode/modules/manage_network_components_form_wizard.php:272
#: ../../godmode/agentes/agent_template.php:274
-#: ../../godmode/agentes/status_monitor_custom_fields.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:143
+#: ../../godmode/agentes/status_monitor_custom_fields.php:105
+#: ../../godmode/agentes/status_monitor_custom_fields.php:163
#: ../../godmode/alerts/alert_list.list.php:104
-#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848
-#: ../../include/ajax/heatmap.ajax.php:239
-#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001
+#: ../../mobile/operation/modules.php:602 ../../mobile/operation/modules.php:604
+#: ../../mobile/operation/modules.php:907 ../../include/ajax/heatmap.ajax.php:281
+#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024
#: ../../include/ajax/custom_fields.php:411
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558
-#: ../../operation/agentes/status_monitor.php:902
-#: ../../operation/agentes/status_monitor.php:1548
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559
+#: ../../operation/agentes/status_monitor.php:901
+#: ../../operation/agentes/status_monitor.php:1550
msgid "Module name"
msgstr "Nom du module"
@@ -12045,14 +12196,14 @@ msgstr "Nom du module"
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:380
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422
#: ../../godmode/alerts/configure_alert_template.php:1602
-#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174
+#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200
#: ../../include/functions_snmp.php:324
#: ../../include/class/SnmpConsole.class.php:280
#: ../../include/class/SnmpConsole.class.php:352
#: ../../include/class/SnmpConsole.class.php:506
#: ../../include/class/SnmpConsole.class.php:507
#: ../../include/functions_events.php:208 ../../include/functions_events.php:271
-#: ../../operation/agentes/estado_monitores.php:517
+#: ../../operation/agentes/estado_monitores.php:514
msgid "Alert"
msgstr "Alerte"
@@ -12063,35 +12214,35 @@ msgstr "Alerte"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867
#: ../../enterprise/include/functions_reporting.php:2020
#: ../../enterprise/include/functions_events.php:70
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3007
#: ../../godmode/events/event_filter.php:148
-#: ../../godmode/events/event_edit_filter.php:372
+#: ../../godmode/events/event_edit_filter.php:374
#: ../../godmode/events/custom_events.php:104
-#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679
-#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982
-#: ../../mobile/operation/events.php:983
+#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708
+#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026
+#: ../../mobile/operation/events.php:1027
#: ../../include/functions_reporting_html.php:1060
#: ../../include/functions_reporting_html.php:1068
#: ../../include/functions_reporting_html.php:1308
#: ../../include/functions_reporting_html.php:1316
-#: ../../include/functions_reporting_html.php:2644
+#: ../../include/functions_reporting_html.php:2663
#: ../../include/functions_snmp.php:335
#: ../../include/class/SnmpConsole.class.php:363
#: ../../include/class/SnmpConsole.class.php:483
#: ../../include/lib/Dashboard/Widgets/events_list.php:404
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396
#: ../../include/functions_events.php:209 ../../include/functions_events.php:274
-#: ../../include/functions_events.php:4982 ../../operation/events/events.php:1850
+#: ../../include/functions_events.php:4987 ../../operation/events/events.php:1904
msgid "Severity"
msgstr "Sévérité"
#: ../../enterprise/meta/include/functions_events_meta.php:102
-#: ../../godmode/events/event_edit_filter.php:829
+#: ../../godmode/events/event_edit_filter.php:831
#: ../../godmode/events/custom_events.php:105
-#: ../../godmode/wizards/HostDevices.class.php:960
+#: ../../godmode/wizards/HostDevices.class.php:956
#: ../../include/class/CustomNetScan.class.php:474
#: ../../include/functions_events.php:210 ../../include/functions_events.php:277
-#: ../../include/functions_events.php:3622 ../../operation/events/events.php:1906
+#: ../../include/functions_events.php:3627 ../../operation/events/events.php:1960
msgid "Comment"
msgstr "Commentaire"
@@ -12102,7 +12253,7 @@ msgstr "Commentaire"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971
#: ../../enterprise/godmode/setup/setup_auth.php:253
#: ../../enterprise/godmode/setup/setup_auth.php:603
-#: ../../enterprise/godmode/setup/setup_auth.php:1413
+#: ../../enterprise/godmode/setup/setup_auth.php:1630
#: ../../enterprise/include/functions_reporting_csv.php:763
#: ../../enterprise/operation/agentes/tag_view.php:241
#: ../../enterprise/operation/agentes/tag_view.php:781
@@ -12114,27 +12265,27 @@ msgstr "Commentaire"
#: ../../godmode/massive/massive_edit_modules.php:491
#: ../../godmode/massive/massive_edit_modules.php:1062
#: ../../godmode/reporting/reporting_builder.item_editor.php:85
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3964
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3973
#: ../../godmode/events/custom_events.php:106
-#: ../../mobile/operation/events.php:845
-#: ../../include/functions_reporting_html.php:1772
-#: ../../include/functions_reporting_html.php:3715
+#: ../../mobile/operation/events.php:874
+#: ../../include/functions_reporting_html.php:1781
+#: ../../include/functions_reporting_html.php:3743
#: ../../include/functions_treeview.php:152
#: ../../include/functions_profile.php:205
#: ../../include/lib/Dashboard/Widgets/events_list.php:461
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:342
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:345
#: ../../include/functions_events.php:211 ../../include/functions_events.php:280
-#: ../../include/functions_events.php:5080 ../../operation/tree.php:67
-#: ../../operation/users/user_edit.php:1000
-#: ../../operation/agentes/status_monitor.php:878
-#: ../../operation/agentes/group_view.php:240
+#: ../../include/functions_events.php:5085 ../../operation/tree.php:67
+#: ../../operation/users/user_edit.php:997
+#: ../../operation/agentes/status_monitor.php:877
+#: ../../operation/agentes/group_view.php:243
#: ../../operation/agentes/alerts_status.functions.php:146
#: ../../general/first_task/tags.php:22
msgid "Tags"
msgstr "Étiquettes"
#: ../../enterprise/meta/include/functions_events_meta.php:114
-#: ../../include/functions_events.php:213 ../../include/functions_events.php:4626
+#: ../../include/functions_events.php:213 ../../include/functions_events.php:4631
msgid "Extra id"
msgstr "Identifiant supplémentaire"
@@ -12142,13 +12293,13 @@ msgstr "Identifiant supplémentaire"
#: ../../godmode/setup/setup_integria.php:464
#: ../../godmode/setup/setup_integria.php:598
#: ../../godmode/events/custom_events.php:109
-#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214
-#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936
+#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214
+#: ../../include/functions_events.php:289 ../../include/functions_events.php:4941
#: ../../operation/incidents/integriaims_export_csv.php:89
#: ../../operation/incidents/configure_integriaims_incident.php:339
#: ../../operation/incidents/list_integriaims_incidents.php:360
#: ../../operation/incidents/list_integriaims_incidents.php:593
-#: ../../operation/events/events.php:2026
+#: ../../operation/events/events.php:2080
msgid "Owner"
msgstr "Propriétaire"
@@ -12161,7 +12312,7 @@ msgstr "Horodatage ACK"
#: ../../enterprise/meta/include/functions_events_meta.php:126
#: ../../godmode/events/custom_events.php:111
#: ../../include/functions_events.php:216 ../../include/functions_events.php:295
-#: ../../include/functions_events.php:4614 ../../operation/events/events.php:3239
+#: ../../include/functions_events.php:4619 ../../operation/events/events.php:3298
msgid "Instructions"
msgstr "Instructions"
@@ -12177,11 +12328,11 @@ msgid "Server name"
msgstr "Nom du serveur"
#: ../../enterprise/meta/include/functions_events_meta.php:138
-#: ../../include/functions_reporting_html.php:5216
+#: ../../include/functions_reporting_html.php:5244
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172
#: ../../include/lib/Dashboard/Widgets/module_status.php:175
#: ../../include/lib/Dashboard/Widgets/module_status.php:610
-#: ../../include/functions_events.php:219 ../../operation/tree.php:315
+#: ../../include/functions_events.php:219 ../../operation/tree.php:317
msgid "Module status"
msgstr "État du module"
@@ -12225,8 +12376,8 @@ msgstr "Aller à la wiki de Pandora FMS"
#: ../../enterprise/meta/include/process_reset_pass.php:58
#: ../../enterprise/meta/include/reset_pass.php:58
#: ../../enterprise/godmode/modules/configure_local_component.php:657
-#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624
-#: ../../include/class/ManageNetScanScripts.class.php:698
+#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667
+#: ../../include/class/ManageNetScanScripts.class.php:694
msgid "Help"
msgstr "Aide"
@@ -12247,8 +12398,8 @@ msgid "Change password"
msgstr "Modifier le mot de passe"
#: ../../enterprise/meta/include/process_reset_pass.php:123
-#: ../../enterprise/meta/index.php:691
-#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856
+#: ../../enterprise/meta/index.php:692
+#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857
msgid "Passwords must be the same"
msgstr "Les mots de passe doivent être identiques."
@@ -12273,8 +12424,7 @@ msgstr "MÉTACONSOLE"
#: ../../enterprise/meta/general/login_page.php:316
#: ../../enterprise/include/process_reset_pass.php:239
#: ../../enterprise/include/reset_pass.php:213
-#: ../../enterprise/include/reset_pass.php:320
-#: ../../include/functions_menu.php:955 ../../general/login_page.php:460
+#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460
msgid "Build"
msgstr "Générer"
@@ -12336,7 +12486,7 @@ msgstr "Opérations utilisateur"
#: ../../enterprise/meta/include/functions_agents_meta.php:661
#: ../../enterprise/extensions/disabled/check_acls.php:50
#: ../../enterprise/extensions/disabled/check_acls.php:137
-#: ../../include/functions_menu.php:567
+#: ../../include/functions_menu.php:569
msgid "Agents management"
msgstr "Gestion des agents"
@@ -12352,7 +12502,7 @@ msgid "No admin user"
msgstr "Aucun utilisateur administrateur"
#: ../../enterprise/meta/include/functions_meta.php:71
-#: ../../include/functions_config.php:438
+#: ../../include/functions_config.php:446
msgid "Activate Metaconsole"
msgstr "Activer la Métaconsole"
@@ -12400,26 +12550,26 @@ msgstr "Port ElasticSearch"
#: ../../enterprise/meta/include/functions_meta.php:533
#: ../../enterprise/godmode/setup/setup_log_collector.php:64
-#: ../../include/functions_config.php:1625
+#: ../../include/functions_config.php:1637
msgid "Number of logs viewed"
msgstr "Nombre de journaux visionnés"
#: ../../enterprise/meta/include/functions_meta.php:554
-#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:559
+#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:567
#: ../../include/class/CredentialStore.class.php:1162
-#: ../../include/class/CredentialStore.class.php:1455
+#: ../../include/class/CredentialStore.class.php:1464
#: ../../include/class/AgentWizard.class.php:925
msgid "Authentication method"
msgstr "Méthode d'authentification"
#: ../../enterprise/meta/include/functions_meta.php:564
-#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691
+#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703
msgid "Fallback to local authentication"
msgstr "Repli à l'authentification locale"
#: ../../enterprise/meta/include/functions_meta.php:574
#: ../../enterprise/meta/include/functions_meta.php:798
-#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563
+#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571
msgid "Autocreate remote users"
msgstr "Créer des utilisateurs à distance"
@@ -12427,8 +12577,8 @@ msgstr "Créer des utilisateurs à distance"
#: ../../enterprise/godmode/setup/setup_auth.php:55
#: ../../enterprise/godmode/setup/setup_auth.php:325
#: ../../enterprise/godmode/setup/setup_auth.php:457
-#: ../../enterprise/godmode/setup/setup_auth.php:1250
-#: ../../include/functions_config.php:567
+#: ../../enterprise/godmode/setup/setup_auth.php:1467
+#: ../../include/functions_config.php:575
msgid "Autocreate profile"
msgstr "Créer profil automatiquement"
@@ -12436,8 +12586,8 @@ msgstr "Créer profil automatiquement"
#: ../../enterprise/godmode/setup/setup_auth.php:61
#: ../../enterprise/godmode/setup/setup_auth.php:331
#: ../../enterprise/godmode/setup/setup_auth.php:463
-#: ../../enterprise/godmode/setup/setup_auth.php:1256
-#: ../../include/functions_config.php:571
+#: ../../enterprise/godmode/setup/setup_auth.php:1473
+#: ../../include/functions_config.php:579
msgid "Autocreate profile group"
msgstr "Créer groupe de profil automatiquement"
@@ -12445,29 +12595,29 @@ msgstr "Créer groupe de profil automatiquement"
#: ../../enterprise/godmode/setup/setup_auth.php:68
#: ../../enterprise/godmode/setup/setup_auth.php:340
#: ../../enterprise/godmode/setup/setup_auth.php:472
-#: ../../enterprise/godmode/setup/setup_auth.php:1280
-#: ../../include/functions_config.php:575
+#: ../../enterprise/godmode/setup/setup_auth.php:1497
+#: ../../include/functions_config.php:583
msgid "Autocreate profile tags"
msgstr "Créer étiquettes de profil automatiquement"
#: ../../enterprise/meta/include/functions_meta.php:614
#: ../../enterprise/godmode/setup/setup_auth.php:346
-#: ../../include/functions_config.php:579
+#: ../../include/functions_config.php:587
msgid "Automatically assigned no hierarchy"
msgstr "Pas de hiérarchie attribué automatiquement"
#: ../../enterprise/meta/include/functions_meta.php:624
-#: ../../enterprise/godmode/setup/setup_auth.php:662
-#: ../../enterprise/godmode/setup/setup_auth.php:1477
-#: ../../include/functions_config.php:587
+#: ../../enterprise/godmode/setup/setup_auth.php:668
+#: ../../enterprise/godmode/setup/setup_auth.php:1694
+#: ../../include/functions_config.php:595
msgid "Autocreate blacklist"
msgstr "Créer liste noire automatiquement"
#: ../../enterprise/meta/include/functions_meta.php:634
#: ../../enterprise/meta/include/functions_meta.php:941
-#: ../../godmode/users/configure_user.php:1493
-#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:799
-#: ../../operation/users/user_edit.php:544
+#: ../../godmode/users/configure_user.php:1546
+#: ../../godmode/setup/setup_auth.php:392 ../../include/functions_config.php:811
+#: ../../operation/users/user_edit.php:537
msgid "Double authentication"
msgstr "Double authentification"
@@ -12477,7 +12627,7 @@ msgstr "2FA_all_users"
#: ../../enterprise/meta/include/functions_meta.php:656
#: ../../enterprise/meta/include/functions_meta.php:954
-#: ../../include/functions_config.php:807 ../../include/functions_config.php:813
+#: ../../include/functions_config.php:819 ../../include/functions_config.php:825
msgid "Session timeout"
msgstr "Session expirée"
@@ -12485,7 +12635,7 @@ msgstr "Session expirée"
#: ../../enterprise/meta/include/functions_meta.php:1148
#: ../../enterprise/godmode/setup/setup_auth.php:82
#: ../../enterprise/godmode/setup/setup_auth.php:441
-#: ../../include/functions_config.php:704 ../../include/functions_config.php:820
+#: ../../include/functions_config.php:716 ../../include/functions_config.php:832
msgid "Save Password"
msgstr "Enregistrer le mot de passe"
@@ -12494,58 +12644,58 @@ msgid "Timezone visual"
msgstr "Visualisation du fuseau horaire"
#: ../../enterprise/meta/include/functions_meta.php:692
-#: ../../enterprise/godmode/setup/setup_auth.php:670
-#: ../../enterprise/godmode/setup/setup_auth.php:1485
-#: ../../include/functions_config.php:591
+#: ../../enterprise/godmode/setup/setup_auth.php:676
+#: ../../enterprise/godmode/setup/setup_auth.php:1702
+#: ../../include/functions_config.php:599
msgid "Active directory server"
msgstr "Serveur de répertoire actif"
#: ../../enterprise/meta/include/functions_meta.php:702
-#: ../../enterprise/godmode/setup/setup_auth.php:676
-#: ../../enterprise/godmode/setup/setup_auth.php:1502
-#: ../../include/functions_config.php:595
+#: ../../enterprise/godmode/setup/setup_auth.php:682
+#: ../../enterprise/godmode/setup/setup_auth.php:1719
+#: ../../include/functions_config.php:603
msgid "Active directory port"
msgstr "Port de répertoire actif"
#: ../../enterprise/meta/include/functions_meta.php:712
#: ../../enterprise/meta/include/functions_meta.php:996
-#: ../../enterprise/godmode/setup/setup_auth.php:682
-#: ../../enterprise/godmode/setup/setup_auth.php:1519
-#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:599
-#: ../../include/functions_config.php:635
+#: ../../enterprise/godmode/setup/setup_auth.php:688
+#: ../../enterprise/godmode/setup/setup_auth.php:1736
+#: ../../godmode/setup/setup_auth.php:146 ../../include/functions_config.php:607
+#: ../../include/functions_config.php:647
msgid "Start TLS"
msgstr "Lancer TLS"
#: ../../enterprise/meta/include/functions_meta.php:722
#: ../../enterprise/godmode/setup/setup_auth.php:446
-#: ../../enterprise/godmode/setup/setup_auth.php:1239
-#: ../../include/functions_config.php:603
+#: ../../enterprise/godmode/setup/setup_auth.php:1456
+#: ../../include/functions_config.php:615
msgid "Advanced Config AD"
msgstr "Configuration AD avancée"
#: ../../enterprise/meta/include/functions_meta.php:732
-#: ../../enterprise/godmode/setup/setup_auth.php:688
-#: ../../enterprise/godmode/setup/setup_auth.php:1525
-#: ../../include/functions_config.php:611
+#: ../../enterprise/godmode/setup/setup_auth.php:694
+#: ../../enterprise/godmode/setup/setup_auth.php:1742
+#: ../../include/functions_config.php:623
msgid "Domain"
msgstr "Domaine"
#: ../../enterprise/meta/include/functions_meta.php:742
#: ../../enterprise/godmode/setup/setup_auth.php:506
-#: ../../enterprise/godmode/setup/setup_auth.php:1314
-#: ../../include/functions_config.php:615
+#: ../../enterprise/godmode/setup/setup_auth.php:1531
+#: ../../include/functions_config.php:627
msgid "Advanced Permisions AD"
msgstr "Permissions AD avancées"
#: ../../enterprise/meta/include/functions_meta.php:752
#: ../../enterprise/godmode/setup/setup_auth.php:151
-#: ../../include/functions_config.php:619
+#: ../../include/functions_config.php:631
msgid "Advanced Permissions LDAP"
msgstr "Permissions LDAP avancées"
#: ../../enterprise/meta/include/functions_meta.php:762
#: ../../enterprise/godmode/setup/setup_auth.php:128
-#: ../../include/functions_config.php:607
+#: ../../include/functions_config.php:619
msgid "Advanced Config LDAP"
msgstr "Configuration LDAP avancée"
@@ -12553,47 +12703,47 @@ msgstr "Configuration LDAP avancée"
#: ../../enterprise/meta/include/functions_meta.php:784
#: ../../enterprise/godmode/setup/setup_auth.php:430
#: ../../enterprise/godmode/setup/setup_auth.php:478
-#: ../../enterprise/godmode/setup/setup_auth.php:1286
+#: ../../enterprise/godmode/setup/setup_auth.php:1503
msgid "Auto enable node access"
msgstr "Activer automatiquement l'accès noeud"
#: ../../enterprise/meta/include/functions_meta.php:811
-#: ../../include/functions_config.php:759
+#: ../../include/functions_config.php:771
msgid "Saml path"
msgstr "Chemin SAML"
#: ../../enterprise/meta/include/functions_meta.php:824
-#: ../../include/functions_config.php:763
+#: ../../include/functions_config.php:775
msgid "Saml source"
msgstr "Source Saml"
#: ../../enterprise/meta/include/functions_meta.php:837
-#: ../../include/functions_config.php:767
+#: ../../include/functions_config.php:779
msgid "Saml user id parameter"
msgstr "Paramètre de l'ID de l'utilisateur Saml"
#: ../../enterprise/meta/include/functions_meta.php:850
-#: ../../include/functions_config.php:771
+#: ../../include/functions_config.php:783
msgid "Saml mail parameter"
msgstr "Paramètre email Saml"
#: ../../enterprise/meta/include/functions_meta.php:863
-#: ../../include/functions_config.php:775
+#: ../../include/functions_config.php:787
msgid "Saml group name parameter"
msgstr "Paramètre nom de group Saml"
#: ../../enterprise/meta/include/functions_meta.php:876
-#: ../../include/functions_config.php:779
+#: ../../include/functions_config.php:791
msgid "Saml attr type parameter"
msgstr "Paramètre type attr Saml"
#: ../../enterprise/meta/include/functions_meta.php:889
-#: ../../include/functions_config.php:783
+#: ../../include/functions_config.php:795
msgid "Saml profiles and tags parameter"
msgstr "Paramètre d'étiquettes et profils Saml"
#: ../../enterprise/meta/include/functions_meta.php:902
-#: ../../include/functions_config.php:795
+#: ../../include/functions_config.php:807
msgid "Saml profile and tag separator"
msgstr "Séparateur d'etiquettes et profils Saml"
@@ -12602,42 +12752,42 @@ msgid "SAML profile parameters"
msgstr "Paramètres de profils SAML"
#: ../../enterprise/meta/include/functions_meta.php:928
-#: ../../include/functions_config.php:791
+#: ../../include/functions_config.php:803
msgid "Saml tag parameter"
msgstr "Paramètre d'etiquettes Saml"
#: ../../enterprise/meta/include/functions_meta.php:966
-#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623
+#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635
msgid "LDAP server"
msgstr "Serveur LDAP"
#: ../../enterprise/meta/include/functions_meta.php:976
-#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:627
+#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:639
msgid "LDAP port"
msgstr "Port LDAP"
#: ../../enterprise/meta/include/functions_meta.php:986
-#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:631
+#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:643
msgid "LDAP version"
msgstr "Version LDAP"
#: ../../enterprise/meta/include/functions_meta.php:1006
-#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:639
+#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:651
msgid "Base DN"
msgstr "Base DN"
#: ../../enterprise/meta/include/functions_meta.php:1016
-#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:643
+#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:655
msgid "Login attribute"
msgstr "Attribut de connexion"
#: ../../enterprise/meta/include/functions_meta.php:1026
-#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:647
+#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:659
msgid "Admin LDAP login"
msgstr "Connexion LDAP administrateur"
#: ../../enterprise/meta/include/functions_meta.php:1036
-#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:651
+#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:663
msgid "Admin LDAP password"
msgstr "Mot de passe LDAP administrateur"
@@ -12647,22 +12797,22 @@ msgid "Ldap search timeout (secs)"
msgstr "Délai de recherche Ldap (secondes)"
#: ../../enterprise/meta/include/functions_meta.php:1056
-#: ../../include/functions_config.php:715
+#: ../../include/functions_config.php:727
msgid "LDAP secondary enabled"
msgstr "LDAP secondaire activé"
#: ../../enterprise/meta/include/functions_meta.php:1065
-#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:659
+#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:671
msgid "Secondary LDAP server"
msgstr "Serveur LDAP secondaire"
#: ../../enterprise/meta/include/functions_meta.php:1075
-#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:663
+#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:675
msgid "Secondary LDAP port"
msgstr "Port LDAP secondaire"
#: ../../enterprise/meta/include/functions_meta.php:1085
-#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:667
+#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:679
msgid "Secondary LDAP version"
msgstr "Version LDAP secondaire"
@@ -12672,39 +12822,39 @@ msgid "Secondary start TLS"
msgstr "Démarrage secondaire TLS"
#: ../../enterprise/meta/include/functions_meta.php:1105
-#: ../../include/functions_config.php:675
+#: ../../include/functions_config.php:687
msgid "Secondary base DN"
msgstr "DN de base secondaire"
#: ../../enterprise/meta/include/functions_meta.php:1115
-#: ../../include/functions_config.php:679
+#: ../../include/functions_config.php:691
msgid "Secondary login attribute"
msgstr "Attribut de connexion secondaire"
#: ../../enterprise/meta/include/functions_meta.php:1125
-#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:683
+#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:695
msgid "Admin secondary LDAP login"
msgstr "Connexion LDAP secondaire d’administrateur"
#: ../../enterprise/meta/include/functions_meta.php:1135
-#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:687
+#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:699
msgid "Admin secondary LDAP password"
msgstr "Mot de passe LDAP secondaire d’administrateur"
#: ../../enterprise/meta/include/functions_meta.php:1168
#: ../../enterprise/godmode/setup/setup_auth.php:112
-#: ../../include/functions_config.php:695
+#: ../../include/functions_config.php:707
msgid "Login user attribute"
msgstr "Identifier attribut d'utilisateur"
#: ../../enterprise/meta/include/functions_meta.php:1178
-#: ../../include/functions_config.php:711
+#: ../../include/functions_config.php:723
msgid "Save profile"
msgstr "Enregistrer le profil"
#: ../../enterprise/meta/include/functions_meta.php:1189
#: ../../enterprise/godmode/setup/setup_auth.php:94
-#: ../../include/functions_config.php:699
+#: ../../include/functions_config.php:711
msgid "LDAP function"
msgstr "Fonction LDAP"
@@ -12716,9 +12866,9 @@ msgstr "Hôte %s"
#: ../../enterprise/meta/include/functions_meta.php:1211
#: ../../enterprise/meta/include/functions_meta.php:1265
#: ../../enterprise/meta/include/functions_meta.php:1319
-#: ../../enterprise/godmode/setup/setup_auth.php:1118
-#: ../../enterprise/godmode/setup/setup_auth.php:1150
-#: ../../include/functions_config.php:723 ../../include/functions_config.php:743
+#: ../../enterprise/godmode/setup/setup_auth.php:1335
+#: ../../enterprise/godmode/setup/setup_auth.php:1367
+#: ../../include/functions_config.php:735 ../../include/functions_config.php:755
msgid "MySQL port"
msgstr "Port MySQL"
@@ -12727,10 +12877,10 @@ msgstr "Port MySQL"
#: ../../enterprise/meta/include/functions_meta.php:1329
#: ../../enterprise/meta/include/functions_meta.php:2167
#: ../../enterprise/godmode/setup/setup_history.php:210
-#: ../../enterprise/godmode/setup/setup_auth.php:1124
-#: ../../enterprise/godmode/setup/setup_auth.php:1156
-#: ../../include/functions_config.php:727 ../../include/functions_config.php:747
-#: ../../include/functions_config.php:1655
+#: ../../enterprise/godmode/setup/setup_auth.php:1341
+#: ../../enterprise/godmode/setup/setup_auth.php:1373
+#: ../../include/functions_config.php:739 ../../include/functions_config.php:759
+#: ../../include/functions_config.php:1667
msgid "Database name"
msgstr "Nom de la base de données"
@@ -12739,13 +12889,13 @@ msgid "Babel Enterprise host"
msgstr "Hôte de Babel Enterprise"
#: ../../enterprise/meta/include/functions_meta.php:1309
-#: ../../enterprise/godmode/setup/setup_auth.php:1144
-#: ../../include/functions_config.php:739
+#: ../../enterprise/godmode/setup/setup_auth.php:1361
+#: ../../include/functions_config.php:751
msgid "Integria host"
msgstr "Hôte d'Integria IMS"
#: ../../enterprise/meta/include/functions_meta.php:1374
-#: ../../include/functions_config.php:981
+#: ../../include/functions_config.php:993
msgid "Timestamp or time comparation"
msgstr "Horodatage ou comparaison temporelle"
@@ -12762,7 +12912,7 @@ msgid "Graph color (max)"
msgstr "Couleur du graphique (max.)"
#: ../../enterprise/meta/include/functions_meta.php:1439
-#: ../../include/functions_config.php:1029
+#: ../../include/functions_config.php:1041
msgid "Data precision for reports"
msgstr "Précision de données pour rapports"
@@ -12779,8 +12929,8 @@ msgid "type mode zoom charts"
msgstr "Type mode zoom graphiques"
#: ../../enterprise/meta/include/functions_meta.php:1604
-#: ../../include/functions_config.php:1270
-#: ../../include/functions_config.php:1274
+#: ../../include/functions_config.php:1286
+#: ../../include/functions_config.php:1290
msgid "Random background"
msgstr "Arrière-plan aléatoire"
@@ -12789,7 +12939,7 @@ msgid "Type of charts"
msgstr "Type de graphiques"
#: ../../enterprise/meta/include/functions_meta.php:1664
-#: ../../include/functions_config.php:1078
+#: ../../include/functions_config.php:1090
msgid "Custom logo collapsed"
msgstr "Le logo personnalisé s'est effondré"
@@ -12798,32 +12948,32 @@ msgid "Custom logo (white background)"
msgstr "Logo personnalisé (fond blanc)"
#: ../../enterprise/meta/include/functions_meta.php:1694
-#: ../../include/functions_config.php:1086
+#: ../../include/functions_config.php:1098
msgid "Custom logo login"
msgstr "Logo personnalisé sur écran de connexion"
#: ../../enterprise/meta/include/functions_meta.php:1704
-#: ../../include/functions_config.php:1090
+#: ../../include/functions_config.php:1102
msgid "Custom splash login"
msgstr "Splash personnalisé sur écran de connexion"
#: ../../enterprise/meta/include/functions_meta.php:1734
-#: ../../include/functions_config.php:1126
+#: ../../include/functions_config.php:1138
msgid "Custom title1 login"
msgstr "Titre1 personnalisé sur écran de connexion"
#: ../../enterprise/meta/include/functions_meta.php:1744
-#: ../../include/functions_config.php:1130
+#: ../../include/functions_config.php:1142
msgid "Custom title2 login"
msgstr "Titre2 personnalisé sur écran de connexion"
#: ../../enterprise/meta/include/functions_meta.php:1754
-#: ../../include/functions_config.php:1118
+#: ../../include/functions_config.php:1130
msgid "Meta custom title header"
msgstr "Entête du titre personnalisé Meta"
#: ../../enterprise/meta/include/functions_meta.php:1764
-#: ../../include/functions_config.php:1122
+#: ../../include/functions_config.php:1134
msgid "Meta custom subtitle header"
msgstr "Entête du sous-titre personnalisé Meta"
@@ -12840,42 +12990,42 @@ msgid "Custom copyright notice"
msgstr "Avis de droit d’auteur personnalisé"
#: ../../enterprise/meta/include/functions_meta.php:1863
-#: ../../include/functions_config.php:1062
+#: ../../include/functions_config.php:1074
msgid "Font path"
msgstr "Chemin de la police"
#: ../../enterprise/meta/include/functions_meta.php:1873
-#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1532
msgid "Use data multiplier"
msgstr "Utiliser de mutiplicateur de données"
#: ../../enterprise/meta/include/functions_meta.php:1885
-#: ../../include/functions_config.php:1472
+#: ../../include/functions_config.php:1488
msgid "Custom report info"
msgstr "Information du rapport personnalisé"
#: ../../enterprise/meta/include/functions_meta.php:1895
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122
-#: ../../include/functions_config.php:1488
+#: ../../include/functions_config.php:1504
msgid "Font family"
msgstr "Type de police"
#: ../../enterprise/meta/include/functions_meta.php:1935
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157
-#: ../../godmode/setup/setup_visuals.php:1582
-#: ../../include/functions_config.php:1504
+#: ../../godmode/setup/setup_visuals.php:1597
+#: ../../include/functions_config.php:1520
msgid "Footer"
msgstr "Pied de page"
#: ../../enterprise/meta/include/functions_meta.php:1970
-#: ../../include/functions_config.php:1194
+#: ../../include/functions_config.php:1206
msgid "Use the legacy Visual Console"
msgstr "utiliser la Console visuelle Legacy"
#: ../../enterprise/meta/include/functions_meta.php:1981
-#: ../../include/functions_config.php:1198
+#: ../../include/functions_config.php:1210
msgid "Default expiration of the Visual Console item's cache"
msgstr "Expiration par défaut du caché de l'élément de la Console visuelle"
@@ -12884,7 +13034,7 @@ msgid "Realtime stats"
msgstr "Statistiques en temps réel"
#: ../../enterprise/meta/include/functions_meta.php:2050
-#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:894
+#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:906
msgid "Use agent access graph"
msgstr "Utiliser le graphique d'accès pour agent"
@@ -12905,36 +13055,36 @@ msgid "Node address default"
msgstr "Adresse du noeud par défaut"
#: ../../enterprise/meta/include/functions_meta.php:2153
-#: ../../include/functions_config.php:1642
+#: ../../include/functions_config.php:1654
msgid "Active and historical database cannot be the same."
msgstr ""
"Les bases de données actives et historiques ne peuvent pas être identiques."
#: ../../enterprise/meta/include/functions_meta.php:2157
#: ../../enterprise/godmode/setup/setup_history.php:178
-#: ../../include/functions_config.php:1647
+#: ../../include/functions_config.php:1659
msgid "Host"
msgstr "Hôte"
#: ../../enterprise/meta/include/functions_meta.php:2173
-#: ../../include/functions_config.php:1660
+#: ../../include/functions_config.php:1672
msgid "Enable history database"
msgstr "Activer la base de données de l'historique"
#: ../../enterprise/meta/include/functions_meta.php:2178
-#: ../../include/functions_config.php:1664
+#: ../../include/functions_config.php:1676
msgid "Enable history event"
msgstr "Activer historique d'événements"
#: ../../enterprise/meta/include/functions_meta.php:2183
#: ../../enterprise/godmode/setup/setup_history.php:226
-#: ../../include/functions_config.php:1672
+#: ../../include/functions_config.php:1684
msgid "Database user"
msgstr "Utilisateur de la base de données"
#: ../../enterprise/meta/include/functions_meta.php:2188
#: ../../enterprise/godmode/setup/setup_history.php:242
-#: ../../include/functions_config.php:1676
+#: ../../include/functions_config.php:1688
msgid "Database password"
msgstr "Mot de passe de la base de données"
@@ -12947,45 +13097,45 @@ msgid "Database advanced"
msgstr "Base de données avancée"
#: ../../enterprise/meta/include/functions_meta.php:2231
-#: ../../include/functions_config.php:1705
+#: ../../include/functions_config.php:1717
msgid "Event Days"
msgstr "Jours d'événements"
#: ../../enterprise/meta/include/functions_meta.php:2249
#: ../../enterprise/godmode/servers/new_HA_cluster.php:143
-#: ../../include/functions_config.php:1737
+#: ../../include/functions_config.php:1749
msgid "Delay"
msgstr "Retard"
#: ../../enterprise/meta/include/functions_meta.php:2282
-#: ../../include/functions_config.php:1769
+#: ../../include/functions_config.php:1781
msgid "Historical database purge"
msgstr "Purge de la base de données historique"
#: ../../enterprise/meta/include/functions_meta.php:2291
-#: ../../include/functions_config.php:1777
+#: ../../include/functions_config.php:1789
msgid "Historical database partitions"
msgstr "Partitions de base de données historiques"
#: ../../enterprise/meta/include/functions_meta.php:2300
-#: ../../include/functions_config.php:1785
+#: ../../include/functions_config.php:1797
msgid "Historical database events purge"
msgstr "Purge des événements de base de données historiques"
#: ../../enterprise/meta/include/functions_meta.php:2309
-#: ../../include/functions_config.php:1801
+#: ../../include/functions_config.php:1813
msgid "Historical database string purge"
msgstr "Purge de la chaîne de la base de données historique"
#: ../../enterprise/meta/include/functions_meta.php:2524
#: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323
-#: ../../godmode/menu.php:478
+#: ../../godmode/menu.php:476
msgid "DB interface"
msgstr "Interface de la BD"
#: ../../enterprise/meta/include/functions_meta.php:2598
#: ../../enterprise/include/functions_policies.php:935
-#: ../../include/functions_reporting.php:7569
+#: ../../include/functions_reporting.php:7578
#, php-format
msgid "Failed to connect to node %s"
msgstr "Connection avec le noeud %s échoué"
@@ -12999,7 +13149,6 @@ msgstr "Groupes de composants"
#: ../../enterprise/meta/include/functions_components_meta.php:88
#: ../../enterprise/meta/include/functions_components_meta.php:139
#: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175
-#: ../../godmode/menu.php:181
msgid "Local components"
msgstr "Composants locaux"
@@ -13022,13 +13171,13 @@ msgstr "Gestion des plugins"
#: ../../godmode/modules/manage_inventory_modules.php:45
#: ../../godmode/modules/manage_inventory_modules.php:58
#: ../../godmode/modules/manage_inventory_modules_form.php:49
-#: ../../godmode/menu.php:187
+#: ../../godmode/menu.php:186
msgid "Inventory modules"
msgstr "Modules d'inventaire"
#: ../../enterprise/meta/include/functions_components_meta.php:124
#: ../../enterprise/meta/include/functions_components_meta.php:164
-#: ../../godmode/servers/plugin_registration.php:109
+#: ../../godmode/servers/plugin_registration.php:105
#: ../../godmode/servers/plugin.php:346
msgid "Plugin registration"
msgstr "Enregistrement du plugin"
@@ -13063,32 +13212,32 @@ msgstr "%s - le Système de supervision flexible"
#: ../../enterprise/godmode/setup/setup.php:602
#: ../../enterprise/include/class/CommandCenter.class.php:475
#: ../../enterprise/include/functions_login.php:165
-#: ../../enterprise/include/functions_login.php:580
+#: ../../enterprise/include/functions_login.php:584
#: ../../enterprise/include/lib/Metaconsole/Node.php:541
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151
-#: ../../godmode/users/configure_user.php:2067
-#: ../../godmode/users/configure_user.php:2136
+#: ../../godmode/users/configure_user.php:2119
+#: ../../godmode/users/configure_user.php:2188
#: ../../godmode/massive/massive_edit_plugins.php:856
#: ../../godmode/massive/massive_edit_plugins.php:857
#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292
#: ../../include/ajax/double_auth.ajax.php:270
#: ../../include/ajax/double_auth.ajax.php:368
#: ../../include/ajax/double_auth.ajax.php:414
-#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2273
-#: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306
+#: ../../include/ajax/double_auth.ajax.php:531 ../../include/ajax/events.php:2274
+#: ../../include/functions_menu.php:897 ../../include/functions_ui.php:306
#: ../../include/class/SatelliteAgent.class.php:831
-#: ../../include/class/Diagnostics.class.php:1855
-#: ../../include/functions_events.php:2966
-#: ../../include/functions_events.php:3166 ../../index.php:1555
-#: ../../operation/users/user_edit.php:1241
-#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168
+#: ../../include/class/Diagnostics.class.php:1859
+#: ../../include/functions_events.php:2971
+#: ../../include/functions_events.php:3171 ../../index.php:1557
+#: ../../operation/users/user_edit.php:1238
+#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168
#: ../../general/mysqlerr.php:28 ../../general/login_page.php:566
msgid "Error"
msgstr "Erreur"
#: ../../enterprise/meta/include/functions_alerts_meta.php:137
#: ../../enterprise/meta/include/functions_alerts_meta.php:168
-#: ../../godmode/menu.php:282
+#: ../../godmode/menu.php:280
msgid "Commands"
msgstr "Commandes"
@@ -13106,8 +13255,8 @@ msgid "User to reset password"
msgstr "Utilisateur pour remettre le mot de passe"
#: ../../enterprise/meta/include/reset_pass.php:103
-#: ../../enterprise/meta/index.php:757
-#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928
+#: ../../enterprise/meta/index.php:758
+#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929
msgid "Reset password"
msgstr "Réinitialiser le mot de passe"
@@ -13117,8 +13266,8 @@ msgstr "Réinitialiser le mot de passe"
#: ../../enterprise/include/process_reset_pass.php:174
#: ../../enterprise/include/reset_pass.php:295
#: ../../enterprise/include/reset_pass.php:298
-#: ../../include/functions_config.php:2678
-#: ../../include/functions_config.php:2730 ../../general/login_page.php:527
+#: ../../include/functions_config.php:2698
+#: ../../include/functions_config.php:2750 ../../general/login_page.php:527
#: ../../general/login_page.php:530
msgid "ONE TOOL TO RULE THEM ALL"
msgstr "UN SEUL OUTIL POUR LES GOUVERNER TOUS"
@@ -13126,7 +13275,7 @@ msgstr "UN SEUL OUTIL POUR LES GOUVERNER TOUS"
#: ../../enterprise/meta/include/reset_pass.php:147
#: ../../enterprise/meta/general/login_page.php:335
#: ../../enterprise/include/reset_pass.php:285
-#: ../../include/functions_config.php:2734
+#: ../../include/functions_config.php:2754
msgid "COMMAND CENTER"
msgstr "CENTRE DE COMMANDE"
@@ -13207,21 +13356,19 @@ msgstr "Erreur en éliminant la relation"
msgid "Relation deleted successfully"
msgstr "Relation éliminée correctement"
-#: ../../enterprise/meta/index.php:221 ../../index.php:1492
+#: ../../enterprise/meta/index.php:221 ../../index.php:1494
#: ../../operation/visual_console/legacy_public_view.php:57
#: ../../operation/visual_console/public_view.php:38
#: ../../operation/agentes/stat_win.php:92
#: ../../operation/gis_maps/public_console.php:277
-#: ../../operation/events/sound_events.php:168
msgid "Connection with server has been lost"
msgstr "Connexion avec le serveur perdue"
-#: ../../enterprise/meta/index.php:222 ../../index.php:1493
+#: ../../enterprise/meta/index.php:222 ../../index.php:1495
#: ../../operation/visual_console/legacy_public_view.php:58
#: ../../operation/visual_console/public_view.php:39
#: ../../operation/agentes/stat_win.php:93
#: ../../operation/gis_maps/public_console.php:278
-#: ../../operation/events/sound_events.php:169
msgid ""
"Connection to the server has been lost. Please check your internet connection "
"or contact with administrator."
@@ -13247,57 +13394,57 @@ msgstr "Connexion expirée"
msgid "Login error"
msgstr "Erreur de connexion"
-#: ../../enterprise/meta/index.php:682 ../../index.php:845
+#: ../../enterprise/meta/index.php:683 ../../index.php:846
msgid "Password changed successfully"
msgstr "Mot de passe changé correctement"
-#: ../../enterprise/meta/index.php:688 ../../index.php:851
+#: ../../enterprise/meta/index.php:689 ../../index.php:852
msgid "Failed to change password"
msgstr "Erreur de modification du mot de passe"
-#: ../../enterprise/meta/index.php:702 ../../index.php:868
+#: ../../enterprise/meta/index.php:703 ../../index.php:869
msgid "Too much time since password change request"
msgstr ""
"Trop de temps s'est écoulé depuis la demande de changement du mot de passe"
-#: ../../enterprise/meta/index.php:709 ../../index.php:875
+#: ../../enterprise/meta/index.php:710 ../../index.php:876
msgid "This user has not requested a password change"
msgstr "Cet utilisateur n'a pas demandé de changement de mot de passe"
-#: ../../enterprise/meta/index.php:725 ../../index.php:902
+#: ../../enterprise/meta/index.php:726 ../../index.php:903
msgid "Id user cannot be empty"
msgstr "L'identifiant de l'utilisateur ne peut pas être vide."
-#: ../../enterprise/meta/index.php:733 ../../index.php:910
+#: ../../enterprise/meta/index.php:734 ../../index.php:911
msgid "Error in reset password request"
msgstr "Erreur de réinitialisation du mot de passe"
-#: ../../enterprise/meta/index.php:741 ../../index.php:918
+#: ../../enterprise/meta/index.php:742 ../../index.php:919
msgid "This user doesn't have a valid email address"
msgstr "Cet utilisateur n'a pas d'adresse courriel valide."
-#: ../../enterprise/meta/index.php:758 ../../index.php:929
+#: ../../enterprise/meta/index.php:759 ../../index.php:930
msgid "This is an automatically sent message for user "
msgstr "Ceci est un message envoyé automatiquement à l'utilisateur "
-#: ../../enterprise/meta/index.php:761 ../../index.php:932
+#: ../../enterprise/meta/index.php:762 ../../index.php:933
msgid "Please click the link below to reset your password"
msgstr ""
"Veuillez cliquer sur le lien ci-dessous pour réinitialiser le mot de passe."
-#: ../../enterprise/meta/index.php:763 ../../index.php:934
+#: ../../enterprise/meta/index.php:764 ../../index.php:935
msgid "Reset your password"
msgstr "Réinitialiser le mot de passe"
-#: ../../enterprise/meta/index.php:767 ../../index.php:938
+#: ../../enterprise/meta/index.php:768 ../../index.php:939
msgid "Please do not reply to this email."
msgstr "Veuillez ne pas répondre à ce courriel."
-#: ../../enterprise/meta/index.php:773 ../../index.php:943
+#: ../../enterprise/meta/index.php:774 ../../index.php:944
msgid "Error at sending the email"
msgstr "Erreur lors de l'envoi du courriel"
-#: ../../enterprise/meta/index.php:933
+#: ../../enterprise/meta/index.php:934
#, php-format
msgid ""
"System is not centralised, please go to %s to perform a database merge process."
@@ -13305,17 +13452,17 @@ msgstr ""
"Le système n'est pas centralisé, allez vers %s pour effectuer le processus "
"d'unification"
-#: ../../enterprise/meta/index.php:1001
+#: ../../enterprise/meta/index.php:1002
#, php-format
msgid "There are nodes with different MR than this (%d):"
msgstr "Il existe des nœuds avec un MR différent de celui-ci (%d):"
-#: ../../enterprise/meta/index.php:1010 ../../index.php:1237
+#: ../../enterprise/meta/index.php:1011 ../../index.php:1238
msgid "Please keep all environment updated to same version."
msgstr "Veuillez garder tout l’environnement à jour vers la même version."
-#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170
-#: ../../index.php:1340
+#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172
+#: ../../index.php:1341
msgid "Sorry! I can't find the page!"
msgstr "Désolé ! La page est introuvable !"
@@ -13334,22 +13481,21 @@ msgstr "Agents trouvés"
#: ../../enterprise/operation/agentes/policy_view.php:400
#: ../../enterprise/operation/agentes/tag_view.php:703
#: ../../enterprise/operation/agentes/ver_agente.php:95
-#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:576
+#: ../../extensions/users_connected.php:180 ../../godmode/users/user_list.php:577
#: ../../godmode/agentes/planned_downtime.editor.php:1359
-#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417
-#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422
-#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006
-#: ../../include/functions_treeview.php:671
-#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46
+#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418
+#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423
+#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483
+#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675
+#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46
#: ../../operation/search_agents.php:58
#: ../../operation/agentes/log_sources_status.php:58
-#: ../../operation/agentes/estado_agente.php:1055
+#: ../../operation/agentes/estado_agente.php:1063
#: ../../operation/agentes/ver_agente.php:1046
-#: ../../operation/agentes/estado_generalagente.php:464
+#: ../../operation/agentes/estado_generalagente.php:435
#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349
#: ../../operation/gis_maps/ajax.php:466
-#: ../../operation/inventory/inventory.php:1007
-#: ../../operation/inventory/inventory.php:1301
+#: ../../operation/inventory/inventory.php:1253
msgid "Last contact"
msgstr "Dernier contact"
@@ -13358,8 +13504,8 @@ msgid "There are no agents included in this group"
msgstr "Aucun agent inclus dans ce groupe"
#: ../../enterprise/meta/agentsearch.php:320
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:650
-#: ../../operation/tree.php:468
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:643
+#: ../../operation/tree.php:470
msgid "Policies found"
msgstr "Politiques trouvées"
@@ -13392,21 +13538,24 @@ msgstr "Il n'y a pas des politiques inclues dans ce groupe"
msgid "%s %s - %s - MR %s"
msgstr "%s %s - %s - MR %s"
-#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459
+#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460
msgid "Page generated at"
msgstr "Page générée à"
#: ../../enterprise/meta/general/metaconsole_no_activated.php:12
#: ../../enterprise/meta/general/noaccesssaml.php:130
-#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266
-#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218
-#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117
+#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284
+#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218
+#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68
+#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119
#: ../../mobile/operation/alerts.php:176 ../../mobile/operation/visualmap.php:185
#: ../../mobile/operation/visualmaps.php:159
-#: ../../mobile/operation/module_graph.php:255
-#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79
-#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16
-#: ../../general/noaccess2.php:18
+#: ../../mobile/operation/module_data.php:107
+#: ../../mobile/operation/module_graph.php:256
+#: ../../mobile/operation/events.php:773
+#: ../../mobile/operation/server_status.php:209
+#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130
+#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18
msgid "You don't have access to this page"
msgstr "Vous n'avez pas accès à cette page"
@@ -13464,8 +13613,8 @@ msgstr "Rafraîchissement automatique désactivé"
#: ../../enterprise/meta/general/header.php:266
#: ../../enterprise/meta/general/main_header.php:535
#: ../../mobile/include/functions_web.php:34
-#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460
-#: ../../mobile/operation/home.php:148 ../../general/header.php:443
+#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:527
+#: ../../mobile/operation/home.php:167 ../../general/header.php:443
#: ../../general/header.php:445
msgid "Logout"
msgstr "Déconnexion"
@@ -13482,7 +13631,7 @@ msgid "Please navigate to %s"
msgstr "Veuillez naviguer jusqu’à %s"
#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69
-#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64
+#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69
msgid "You will be automatically redirected when all tasks finish"
msgstr "Vous serez redirigé automatiquement quand tous les taches sont finis"
@@ -13490,8 +13639,8 @@ msgstr "Vous serez redirigé automatiquement quand tous les taches sont finis"
#: ../../enterprise/meta/general/main_menu.php:199
#: ../../enterprise/operation/services/services.treeview_services.php:60
#: ../../godmode/groups/group_list.php:347
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:178
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:768
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:173
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:761
#: ../../operation/tree.php:137 ../../operation/menu.php:179
msgid "Tree view"
msgstr "Vue arborescente"
@@ -13516,7 +13665,7 @@ msgstr "Vue des moniteurs"
#: ../../enterprise/meta/general/main_menu.php:312
#: ../../enterprise/meta/general/main_menu.php:313
#: ../../enterprise/mobile/include/functions_web.php:15
-#: ../../include/functions_reporting.php:15831
+#: ../../include/functions_reporting.php:15908
#: ../../include/functions_groups.php:139 ../../operation/search_results.php:133
msgid "Reports"
msgstr "Rapports"
@@ -13534,7 +13683,7 @@ msgstr "Modèles de rapport"
#: ../../enterprise/meta/general/main_header.php:200
#: ../../enterprise/meta/general/main_menu.php:340
#: ../../enterprise/include/functions_reporting.php:124
-#: ../../include/functions_menu.php:584
+#: ../../include/functions_menu.php:586
msgid "Templates wizard"
msgstr "Assistant de modèles"
@@ -13562,7 +13711,8 @@ msgstr "Assistant de modèles"
#: ../../enterprise/operation/services/services.treeview_services.php:73
#: ../../enterprise/operation/services/services.list.php:70
#: ../../enterprise/operation/services/services.table_services.php:67
-#: ../../operation/agentes/ver_agente.php:1668
+#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123
+#: ../../operation/agentes/ver_agente.php:1664
#: ../../general/first_task/service_list.php:38
#: ../../general/first_task/service_list.php:41
msgid "Services"
@@ -13577,7 +13727,7 @@ msgstr "Écrans"
#: ../../enterprise/meta/general/main_header.php:240
#: ../../enterprise/meta/general/main_menu.php:436
-#: ../../enterprise/include/functions_enterprise.php:443
+#: ../../enterprise/include/functions_enterprise.php:453
#: ../../include/class/OrderInterpreter.class.php:233
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515
@@ -13604,8 +13754,8 @@ msgstr "Console visuelle de l'assistant"
#: ../../enterprise/meta/general/main_header.php:275
#: ../../enterprise/meta/general/logon_ok.php:44
#: ../../enterprise/meta/general/main_menu.php:473
-#: ../../enterprise/include/functions_enterprise.php:439
-#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371
+#: ../../enterprise/include/functions_enterprise.php:449
+#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369
#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290
#: ../../include/functions_reports.php:925
#: ../../include/functions_reports.php:929
@@ -13661,7 +13811,7 @@ msgid "Command Center"
msgstr "Centre de commande"
#: ../../enterprise/meta/general/main_header.php:369
-#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406
+#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404
#: ../../godmode/setup/license.php:59
msgid "License"
msgstr "Licence"
@@ -13676,8 +13826,8 @@ msgstr "Metasetup"
#: ../../enterprise/meta/general/main_header.php:448
#: ../../enterprise/meta/general/main_menu.php:720
#: ../../enterprise/meta/general/main_menu.php:755
-#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428
-#: ../../godmode/menu.php:550 ../../general/links_menu.php:17
+#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426
+#: ../../godmode/menu.php:548 ../../general/links_menu.php:17
msgid "Links"
msgstr "Liens"
@@ -13712,9 +13862,9 @@ msgstr "Journaux d’audit"
#: ../../godmode/reporting/graph_container.php:118
#: ../../godmode/reporting/graphs.php:129
#: ../../godmode/reporting/reporting_builder.php:557
-#: ../../godmode/reporting/reporting_builder.php:3597
-#: ../../godmode/reporting/reporting_builder.php:3695
-#: ../../godmode/reporting/reporting_builder.php:3723
+#: ../../godmode/reporting/reporting_builder.php:3614
+#: ../../godmode/reporting/reporting_builder.php:3712
+#: ../../godmode/reporting/reporting_builder.php:3740
#: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450
#: ../../operation/reporting/reporting_viewer.php:218
#: ../../operation/reporting/custom_reporting.php:23
@@ -13775,39 +13925,40 @@ msgstr ""
#: ../../include/functions_reports.php:905
#: ../../include/functions_reports.php:909
#: ../../include/functions_reporting.php:3124
-#: ../../operation/agentes/ver_agente.php:1450
-#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203
-#: ../../operation/inventory/inventory.php:301
+#: ../../operation/agentes/ver_agente.php:1451
+#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203
+#: ../../operation/inventory/inventory.php:303
msgid "Inventory"
msgstr "Inventaire"
#: ../../enterprise/meta/general/main_menu.php:277
-#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604
+#: ../../include/ajax/events.php:2321 ../../operation/events/sound_events.php:197
+#: ../../operation/events/events.php:1658
msgid "Events list"
msgstr "Liste des événements"
#: ../../enterprise/meta/general/main_menu.php:285
-#: ../../operation/events/events.php:1516
+#: ../../operation/events/events.php:1570
msgid "Sound Console"
msgstr "Console sonore"
#: ../../enterprise/meta/general/main_menu.php:286
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376
-#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141
-#: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493
-#: ../../operation/users/user_edit.php:874
-#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571
-#: ../../operation/events/events.php:1517
+#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494
+#: ../../operation/users/user_edit.php:871
+#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571
+#: ../../operation/events/sound_events.php:368
+#: ../../operation/events/events.php:1571
msgid "Start"
msgstr "Démarrer"
#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573
-#: ../../operation/events/events.php:1519
+#: ../../operation/events/events.php:1573
msgid "No alert"
msgstr "Pas d’alerte"
#: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574
-#: ../../operation/events/events.php:1520
+#: ../../operation/events/events.php:1574
msgid "Silence alarm"
msgstr "Arrêter l’alarme"
@@ -13841,7 +13992,7 @@ msgstr "Correlation d'alertes"
#: ../../enterprise/meta/general/main_menu.php:504
#: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:286
-#: ../../include/functions_events.php:4548
+#: ../../include/functions_events.php:4553
msgid "Alert details"
msgstr "Détails de l'alerte"
@@ -13854,7 +14005,7 @@ msgstr "Détails de l'alerte"
msgid "Centralised management"
msgstr "Gestion centralisée"
-#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204
+#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203
#: ../../godmode/massive/massive_operations.php:313
#: ../../godmode/massive/massive_operations.php:336
#: ../../godmode/massive/massive_operations.php:342
@@ -13872,12 +14023,12 @@ msgstr "Outil de fusion"
msgid "List of Links"
msgstr "Liste des liens"
-#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426
+#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424
msgid "System audit log"
msgstr "Journaux d'audit du système"
#: ../../enterprise/meta/general/main_menu.php:869
-#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608
+#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606
msgid "About"
msgstr "À propos"
@@ -13895,18 +14046,18 @@ msgid "Authentication code"
msgstr "Code d'authentification"
#: ../../enterprise/meta/general/login_page.php:185
-#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393
+#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393
msgid "Check code"
msgstr "Code de vérification"
#: ../../enterprise/meta/general/login_page.php:229
#: ../../enterprise/meta/general/login_page.php:288
-#: ../../mobile/include/user.class.php:404
+#: ../../mobile/include/user.class.php:470
msgid "Login"
msgstr "Se connecter"
#: ../../enterprise/meta/general/login_page.php:245
-#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316
+#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316
msgid "Login with SAML"
msgstr "Connexion avec SAML"
@@ -13998,15 +14149,15 @@ msgstr "Ou désactivez %s Enterprise"
#: ../../enterprise/godmode/reporting/aws_view.php:181
#: ../../enterprise/godmode/wizards/Cloud.class.php:330
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239
-#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858
+#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887
#: ../../include/ajax/alert_list.ajax.php:280
#: ../../include/ajax/alert_list.ajax.php:306
#: ../../include/class/SnmpConsole.class.php:456
#: ../../include/class/SnmpConsole.class.php:514
-#: ../../include/class/SnmpConsole.class.php:854
-#: ../../operation/agentes/alerts_status.php:302
-#: ../../operation/agentes/alerts_status.php:441
-#: ../../operation/agentes/alerts_status.php:455
+#: ../../include/class/SnmpConsole.class.php:856
+#: ../../operation/agentes/alerts_status.php:301
+#: ../../operation/agentes/alerts_status.php:444
+#: ../../operation/agentes/alerts_status.php:458
msgid "Validate"
msgstr "Valider"
@@ -14091,7 +14242,7 @@ msgstr "Veuillez contacter %s pour renouveler votre licence."
#: ../../enterprise/load_enterprise.php:931
#: ../../enterprise/load_enterprise.php:1072
-#: ../../godmode/users/configure_user.php:1008
+#: ../../godmode/users/configure_user.php:1056
msgid "Renew"
msgstr "Renouveler"
@@ -14174,7 +14325,7 @@ msgstr "Gestion des systèmes"
#: ../../enterprise/extensions/disabled/check_acls.php:150
#: ../../enterprise/godmode/setup/setup_metaconsole.php:276
#: ../../enterprise/godmode/servers/HA_cluster.php:182
-#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767
+#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768
#: ../../operation/search_users.php:62
msgid "Admin"
msgstr "Administrateur"
@@ -14221,7 +14372,7 @@ msgstr "Vue VMware"
#: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34
#: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253
#: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38
-#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39
+#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39
#: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56
#: ../../include/class/EventSound.class.php:226
#: ../../include/class/Diagnostics.class.php:159
@@ -14232,7 +14383,7 @@ msgstr "Outils d'administration"
#: ../../extensions/extension_uploader.php:43
#: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145
#: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99
-#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537
+#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535
msgid "Extension manager"
msgstr "Gestionnaire d'extension"
@@ -14287,7 +14438,7 @@ msgstr "Séparateur"
#: ../../enterprise/extensions/csv_import_group/main.php:131
#: ../../enterprise/include/class/CSVImportAgents.class.php:208
-#: ../../include/functions_filemanager.php:899
+#: ../../include/functions_filemanager.php:919
msgid "Go"
msgstr "Exécuter"
@@ -14466,24 +14617,24 @@ msgstr "Hôte ESX"
#: ../../enterprise/operation/agentes/tag_view.php:1137
#: ../../enterprise/operation/agentes/tag_view.php:1143
#: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571
-#: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634
-#: ../../include/functions.php:1416 ../../include/functions.php:1455
-#: ../../include/functions_modules.php:2905
+#: ../../mobile/operation/modules.php:622 ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416
+#: ../../include/functions.php:1455 ../../include/functions_modules.php:2905
#: ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:4235
-#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246
-#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664
+#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320
+#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687
#: ../../include/lib/Module.php:603 ../../include/functions_events.php:64
#: ../../include/functions_events.php:116 ../../include/functions_events.php:179
-#: ../../operation/agentes/status_monitor.php:1791
-#: ../../operation/agentes/status_monitor.php:1797
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/pandora_networkmap.view.php:1848
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/search_modules.php:115 ../../operation/search_modules.php:142
-#: ../../operation/events/events.php:633 ../../operation/events/events.php:710
-#: ../../operation/events/events.php:736
+#: ../../operation/agentes/status_monitor.php:1793
+#: ../../operation/agentes/status_monitor.php:1799
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/pandora_networkmap.view.php:1849
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/search_modules.php:118 ../../operation/search_modules.php:145
+#: ../../operation/events/events.php:638 ../../operation/events/events.php:715
+#: ../../operation/events/events.php:741
msgid "NORMAL"
msgstr "NORMAL"
@@ -14496,24 +14647,24 @@ msgstr "NORMAL"
#: ../../enterprise/operation/agentes/tag_view.php:1153
#: ../../enterprise/operation/agentes/tag_view.php:1159
#: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642
-#: ../../include/functions.php:1404 ../../include/functions.php:1436
-#: ../../include/functions_modules.php:2899
+#: ../../mobile/operation/modules.php:628 ../../mobile/operation/modules.php:653
+#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404
+#: ../../include/functions.php:1436 ../../include/functions_modules.php:2899
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:4239
-#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252
-#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634
+#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326
+#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657
#: ../../include/lib/Module.php:587 ../../include/functions_events.php:67
#: ../../include/functions_events.php:120 ../../include/functions_events.php:164
-#: ../../operation/agentes/status_monitor.php:1805
-#: ../../operation/agentes/status_monitor.php:1818
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/pandora_networkmap.view.php:1842
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/search_modules.php:121 ../../operation/search_modules.php:150
-#: ../../operation/events/events.php:608 ../../operation/events/events.php:716
-#: ../../operation/events/events.php:741
+#: ../../operation/agentes/status_monitor.php:1807
+#: ../../operation/agentes/status_monitor.php:1820
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/pandora_networkmap.view.php:1843
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/search_modules.php:124 ../../operation/search_modules.php:153
+#: ../../operation/events/events.php:613 ../../operation/events/events.php:721
+#: ../../operation/events/events.php:746
msgid "CRITICAL"
msgstr "CRITIQUE"
@@ -14527,25 +14678,25 @@ msgstr "CRITIQUE"
#: ../../enterprise/operation/agentes/tag_view.php:1169
#: ../../enterprise/operation/agentes/tag_view.php:1175
#: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587
-#: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650
-#: ../../include/functions.php:1407 ../../include/functions.php:1443
-#: ../../include/functions_modules.php:2902
+#: ../../mobile/operation/modules.php:634 ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407
+#: ../../include/functions.php:1443 ../../include/functions_modules.php:2902
#: ../../include/functions_modules.php:2919
#: ../../include/functions_modules.php:4243
-#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240
-#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642
-#: ../../include/class/NetworkMap.class.php:2949 ../../include/lib/Module.php:591
+#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314
+#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665
+#: ../../include/class/NetworkMap.class.php:2955 ../../include/lib/Module.php:591
#: ../../include/functions_events.php:78 ../../include/functions_events.php:112
#: ../../include/functions_events.php:182
-#: ../../operation/agentes/status_monitor.php:1826
-#: ../../operation/agentes/status_monitor.php:1839
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1845
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:127 ../../operation/search_modules.php:158
-#: ../../operation/events/events.php:638 ../../operation/events/events.php:704
-#: ../../operation/events/events.php:758
+#: ../../operation/agentes/status_monitor.php:1828
+#: ../../operation/agentes/status_monitor.php:1841
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1846
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:130 ../../operation/search_modules.php:161
+#: ../../operation/events/events.php:643 ../../operation/events/events.php:709
+#: ../../operation/events/events.php:763
msgid "WARNING"
msgstr "ATTENTION"
@@ -14561,31 +14712,31 @@ msgstr "ATTENTION"
#: ../../enterprise/operation/agentes/tag_view.php:1169
#: ../../enterprise/operation/agentes/tag_view.php:1175
#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
-#: ../../include/functions.php:1420 ../../include/functions.php:1446
-#: ../../include/functions_modules.php:2911
+#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420
+#: ../../include/functions.php:1446 ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:2919
-#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259
-#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648
+#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333
+#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671
#: ../../include/lib/Module.php:594 ../../include/functions_events.php:81
#: ../../include/functions_events.php:125 ../../include/functions_events.php:185
-#: ../../operation/agentes/status_monitor.php:1847
-#: ../../operation/agentes/status_monitor.php:1860
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:133 ../../operation/search_modules.php:142
-#: ../../operation/search_modules.php:150 ../../operation/search_modules.php:158
-#: ../../operation/events/events.php:644 ../../operation/events/events.php:723
-#: ../../operation/events/events.php:763
+#: ../../operation/agentes/status_monitor.php:1849
+#: ../../operation/agentes/status_monitor.php:1862
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:136 ../../operation/search_modules.php:145
+#: ../../operation/search_modules.php:153 ../../operation/search_modules.php:161
+#: ../../operation/events/events.php:649 ../../operation/events/events.php:728
+#: ../../operation/events/events.php:768
msgid "UNKNOWN"
msgstr "INCONNU"
@@ -14809,7 +14960,7 @@ msgid "Power Status: "
msgstr "État : "
#: ../../enterprise/extensions/vmware/vmware_manager.php:269
-#: ../../operation/agentes/pandora_networkmap.view.php:1881
+#: ../../operation/agentes/pandora_networkmap.view.php:1882
msgid "Status: "
msgstr "État : "
@@ -14822,7 +14973,7 @@ msgid "Export agents"
msgstr "Exporter des agents"
#: ../../enterprise/extensions/resource_exportation/functions.php:46
-#: ../../enterprise/include/functions_reporting.php:8156
+#: ../../enterprise/include/functions_reporting.php:8165
#: ../../extensions/resource_exportation.php:456
#: ../../extensions/resource_exportation.php:468
#: ../../operation/agentes/exportdata.php:464
@@ -14942,12 +15093,12 @@ msgstr "État d'alerte"
#: ../../godmode/modules/manage_network_components_form_common.php:217
#: ../../godmode/modules/manage_network_components_form_wizard.php:387
#: ../../godmode/modules/manage_network_components_form_wizard.php:421
-#: ../../godmode/agentes/module_manager_editor_common.php:1141
+#: ../../godmode/agentes/module_manager_editor_common.php:1151
#: ../../godmode/massive/massive_edit_modules.php:580
#: ../../godmode/massive/massive_edit_modules.php:671
#: ../../godmode/massive/massive_edit_modules.php:900
#: ../../godmode/alerts/configure_alert_template.php:870
-#: ../../include/functions_reporting_html.php:5528
+#: ../../include/functions_reporting_html.php:5556
#: ../../include/functions_treeview.php:91
#: ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:676
@@ -14966,12 +15117,12 @@ msgstr "Min."
#: ../../godmode/modules/manage_network_components_form_common.php:226
#: ../../godmode/modules/manage_network_components_form_wizard.php:389
#: ../../godmode/modules/manage_network_components_form_wizard.php:430
-#: ../../godmode/agentes/module_manager_editor_common.php:1142
+#: ../../godmode/agentes/module_manager_editor_common.php:1152
#: ../../godmode/massive/massive_edit_modules.php:595
#: ../../godmode/massive/massive_edit_modules.php:686
#: ../../godmode/massive/massive_edit_modules.php:902
#: ../../godmode/alerts/configure_alert_template.php:883
-#: ../../include/functions_reporting_html.php:5529
+#: ../../include/functions_reporting_html.php:5557
#: ../../include/functions_treeview.php:91
#: ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:675
@@ -14988,7 +15139,7 @@ msgstr "Max."
#: ../../godmode/modules/manage_network_components_form_common.php:183
#: ../../godmode/modules/manage_network_components_form_common.php:235
#: ../../godmode/agentes/module_manager_editor_common.php:504
-#: ../../godmode/agentes/module_manager_editor_common.php:596
+#: ../../godmode/agentes/module_manager_editor_common.php:601
#: ../../godmode/massive/massive_edit_modules.php:610
#: ../../godmode/massive/massive_edit_modules.php:701
#: ../../include/functions_treeview.php:89
@@ -15005,7 +15156,7 @@ msgstr "Chaîne"
#: ../../godmode/modules/manage_network_components_form_wizard.php:400
#: ../../godmode/modules/manage_network_components_form_wizard.php:448
#: ../../godmode/agentes/module_manager_editor_common.php:478
-#: ../../godmode/agentes/module_manager_editor_common.php:561
+#: ../../godmode/agentes/module_manager_editor_common.php:566
#: ../../godmode/massive/massive_edit_modules.php:645
#: ../../godmode/massive/massive_edit_modules.php:737
msgid "Percentage"
@@ -15021,12 +15172,14 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:350
#: ../../godmode/modules/manage_network_components_form_common.php:201
#: ../../godmode/modules/manage_network_components_form_wizard.php:412
+#: ../../godmode/agentes/module_manager_editor_common.php:528
msgid "Change to critical status after"
msgstr "Passer à l’état critique après"
#: ../../enterprise/godmode/modules/configure_local_component.php:359
#: ../../godmode/modules/manage_network_components_form_common.php:210
#: ../../godmode/modules/manage_network_components_form_wizard.php:414
+#: ../../godmode/agentes/module_manager_editor_common.php:530
msgid "intervals in warning status."
msgstr "intervalles dans l’état de l’avertissement."
@@ -15046,7 +15199,7 @@ msgstr "État critique"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873
#: ../../godmode/modules/manage_network_components_form_common.php:254
-#: ../../godmode/agentes/module_manager_editor_common.php:1191
+#: ../../godmode/agentes/module_manager_editor_common.php:1201
#: ../../godmode/massive/massive_edit_modules.php:945
msgid "FF threshold"
msgstr "Seuil du FF"
@@ -15054,7 +15207,7 @@ msgstr "Seuil du FF"
#: ../../enterprise/godmode/modules/configure_local_component.php:406
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941
#: ../../godmode/modules/manage_network_components_form_common.php:257
-#: ../../godmode/agentes/module_manager_editor_common.php:1314
+#: ../../godmode/agentes/module_manager_editor_common.php:1324
#: ../../godmode/massive/massive_edit_modules.php:1009
msgid "Keep counters"
msgstr "Conserver les compteurs"
@@ -15064,7 +15217,7 @@ msgstr "Conserver les compteurs"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900
#: ../../godmode/modules/manage_network_components_form_common.php:271
-#: ../../godmode/agentes/module_manager_editor_common.php:1195
+#: ../../godmode/agentes/module_manager_editor_common.php:1205
#: ../../godmode/massive/massive_edit_modules.php:953
#: ../../godmode/massive/massive_edit_modules.php:968
msgid "All state changing"
@@ -15075,7 +15228,7 @@ msgstr "Tous les changements d'état"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910
#: ../../godmode/modules/manage_network_components_form_common.php:287
-#: ../../godmode/agentes/module_manager_editor_common.php:1196
+#: ../../godmode/agentes/module_manager_editor_common.php:1206
#: ../../godmode/massive/massive_edit_modules.php:952
#: ../../godmode/massive/massive_edit_modules.php:978
msgid "Each state changing"
@@ -15085,7 +15238,7 @@ msgstr "Chaque changement d'état"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911
#: ../../godmode/modules/manage_network_components_form_common.php:288
-#: ../../godmode/agentes/module_manager_editor_common.php:1228
+#: ../../godmode/agentes/module_manager_editor_common.php:1238
#: ../../godmode/massive/massive_edit_modules.php:979
msgid "To normal"
msgstr "À l'état normal"
@@ -15094,7 +15247,7 @@ msgstr "À l'état normal"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921
#: ../../godmode/modules/manage_network_components_form_common.php:297
-#: ../../godmode/agentes/module_manager_editor_common.php:1229
+#: ../../godmode/agentes/module_manager_editor_common.php:1239
#: ../../godmode/massive/massive_edit_modules.php:989
msgid "To warning"
msgstr "À l'état d'alerte"
@@ -15103,7 +15256,7 @@ msgstr "À l'état d'alerte"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931
#: ../../godmode/modules/manage_network_components_form_common.php:306
-#: ../../godmode/agentes/module_manager_editor_common.php:1230
+#: ../../godmode/agentes/module_manager_editor_common.php:1240
#: ../../godmode/massive/massive_edit_modules.php:999
msgid "To critical"
msgstr "À l'état critique"
@@ -15113,15 +15266,16 @@ msgstr "À l'état critique"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966
#: ../../enterprise/include/functions_reporting_csv.php:2225
#: ../../godmode/modules/manage_network_components_form_common.php:316
-#: ../../godmode/agentes/module_manager_editor_common.php:619
+#: ../../godmode/agentes/module_manager_editor_common.php:624
#: ../../godmode/massive/massive_edit_modules.php:1057
-#: ../../include/functions_reporting.php:4664
+#: ../../mobile/operation/modules.php:860
+#: ../../include/functions_reporting.php:4673
msgid "Historical data"
msgstr "Historique des données"
#: ../../enterprise/godmode/modules/configure_local_component.php:462
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963
-#: ../../godmode/agentes/module_manager_editor_common.php:1282
+#: ../../godmode/agentes/module_manager_editor_common.php:1292
#: ../../godmode/massive/massive_edit_modules.php:1043
msgid "FF timeout"
msgstr "FF délai"
@@ -15144,9 +15298,9 @@ msgstr "Cette valeur peut être réglée que dans les modules asynchrones."
#: ../../enterprise/godmode/modules/configure_local_component.php:473
#: ../../enterprise/include/functions_reporting_csv.php:1251
#: ../../godmode/modules/manage_network_components_form_common.php:319
-#: ../../godmode/agentes/module_manager_editor_common.php:1105
+#: ../../godmode/agentes/module_manager_editor_common.php:1115
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480
-#: ../../include/functions_reporting.php:7102
+#: ../../include/functions_reporting.php:7111
msgid "Min. Value"
msgstr "Valeur minimale"
@@ -15158,9 +15312,9 @@ msgstr "Toute valeur inférieure à ce nombre est refusée"
#: ../../enterprise/godmode/modules/configure_local_component.php:478
#: ../../enterprise/include/functions_reporting_csv.php:1306
#: ../../godmode/modules/manage_network_components_form_common.php:321
-#: ../../godmode/agentes/module_manager_editor_common.php:1106
+#: ../../godmode/agentes/module_manager_editor_common.php:1116
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492
-#: ../../include/functions_reporting.php:7098
+#: ../../include/functions_reporting.php:7107
msgid "Max. Value"
msgstr "Valeur maximale"
@@ -15172,9 +15326,9 @@ msgstr "Toute valeur supérieure à ce nombre est refusée"
#: ../../enterprise/godmode/modules/configure_local_component.php:485
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716
#: ../../godmode/modules/manage_network_components_form_plugin.php:49
-#: ../../godmode/modules/manage_network_components_form_network.php:178
+#: ../../godmode/modules/manage_network_components_form_network.php:210
#: ../../godmode/modules/manage_network_components_form_wmi.php:55
-#: ../../godmode/agentes/module_manager_editor_common.php:1328
+#: ../../godmode/agentes/module_manager_editor_common.php:1338
#: ../../godmode/massive/massive_edit_modules.php:795
#: ../../godmode/setup/snmp_wizard.php:43
msgid "Post process"
@@ -15189,24 +15343,24 @@ msgid "Check the correct structure of the data configuration"
msgstr "Vérifier la structure correcte de la configuration des données"
#: ../../enterprise/godmode/modules/configure_local_component.php:518
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250
msgid "First line must be \"module_begin\""
msgstr "La première ligne doit être « module_begin »."
#: ../../enterprise/godmode/modules/configure_local_component.php:519
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251
msgid "Data configuration is empty"
msgstr "La configuration de données est vide."
#: ../../enterprise/godmode/modules/configure_local_component.php:520
#: ../../enterprise/godmode/modules/configure_local_component.php:524
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256
msgid "Last line must be \"module_end\""
msgstr "La dernière ligne doit être « module_end »."
#: ../../enterprise/godmode/modules/configure_local_component.php:521
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253
msgid ""
"Name is missed. Please add a line with \"module_name yourmodulename\" to data "
"configuration"
@@ -15215,7 +15369,7 @@ msgstr ""
"» à la configuration des données"
#: ../../enterprise/godmode/modules/configure_local_component.php:522
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254
msgid ""
"Type is missed. Please add a line with \"module_type yourmoduletype\" to data "
"configuration"
@@ -15224,24 +15378,24 @@ msgstr ""
"yourmoduletype » à la configuration des données."
#: ../../enterprise/godmode/modules/configure_local_component.php:523
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255
msgid "Type is wrong. Please set a correct type"
msgstr "Le type est incorrect. Veuillez choisir un type correct."
#: ../../enterprise/godmode/modules/configure_local_component.php:526
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258
msgid "Error in the syntax, please check the data configuration."
msgstr "Erreur dans la syntaxe, veuillez vérifier la configuration de données."
#: ../../enterprise/godmode/modules/configure_local_component.php:527
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259
msgid "Data configuration are built correctly"
msgstr "Configuration des données établie correctement"
#: ../../enterprise/godmode/modules/configure_local_component.php:535
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
#: ../../godmode/modules/manage_network_components_form_common.php:334
-#: ../../godmode/agentes/module_manager_editor_common.php:1044
+#: ../../godmode/agentes/module_manager_editor_common.php:1053
#: ../../godmode/massive/massive_edit_modules.php:1107
msgid "Critical instructions"
msgstr "Instructions état critique"
@@ -15256,7 +15410,7 @@ msgstr "Instructions lorsque l'état est critique"
#: ../../enterprise/godmode/modules/configure_local_component.php:540
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
#: ../../godmode/modules/manage_network_components_form_common.php:338
-#: ../../godmode/agentes/module_manager_editor_common.php:1043
+#: ../../godmode/agentes/module_manager_editor_common.php:1054
#: ../../godmode/massive/massive_edit_modules.php:1111
msgid "Warning instructions"
msgstr "Instructions état d'alerte"
@@ -15271,7 +15425,7 @@ msgstr "Instructions lorsque l'état est en alerte"
#: ../../enterprise/godmode/modules/configure_local_component.php:545
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
#: ../../godmode/modules/manage_network_components_form_common.php:342
-#: ../../godmode/agentes/module_manager_editor_common.php:1020
+#: ../../godmode/agentes/module_manager_editor_common.php:1030
#: ../../godmode/massive/massive_edit_modules.php:1115
msgid "Unknown instructions"
msgstr "Instructions état inconnu"
@@ -15286,7 +15440,7 @@ msgstr "Instructions lorsque l'état est inconnu"
#: ../../enterprise/godmode/modules/configure_local_component.php:554
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984
#: ../../godmode/modules/manage_network_components_form_common.php:353
-#: ../../godmode/agentes/module_manager_editor_common.php:745
+#: ../../godmode/agentes/module_manager_editor_common.php:755
#: ../../godmode/massive/massive_edit_modules.php:1075
#: ../../godmode/module_library/module_library_view.php:123
msgid "Category"
@@ -15294,13 +15448,13 @@ msgstr "Catégorie"
#: ../../enterprise/godmode/modules/configure_local_component.php:573
#: ../../godmode/modules/manage_network_components_form_common.php:373
-#: ../../godmode/agentes/module_manager_editor_common.php:782
+#: ../../godmode/agentes/module_manager_editor_common.php:792
msgid "Tags available"
msgstr "Étiquettes disponibles"
#: ../../enterprise/godmode/modules/configure_local_component.php:591
#: ../../godmode/modules/manage_network_components_form_common.php:391
-#: ../../godmode/agentes/module_manager_editor_common.php:862
+#: ../../godmode/agentes/module_manager_editor_common.php:872
msgid "Add tags to module"
msgstr "Ajouter des étiquettes au module"
@@ -15312,7 +15466,7 @@ msgstr "Supprimer les étiquettes du module"
#: ../../enterprise/godmode/modules/configure_local_component.php:593
#: ../../enterprise/godmode/setup/setup_auth.php:196
#: ../../enterprise/godmode/setup/setup_auth.php:551
-#: ../../enterprise/godmode/setup/setup_auth.php:1359
+#: ../../enterprise/godmode/setup/setup_auth.php:1576
#: ../../godmode/modules/manage_network_components_form_common.php:393
msgid "Tags selected"
msgstr "Étiquettes sélectionnées"
@@ -15323,48 +15477,48 @@ msgstr "Macros"
#: ../../enterprise/godmode/modules/configure_local_component.php:651
#: ../../godmode/servers/plugin.php:573
-#: ../../include/class/ManageNetScanScripts.class.php:644
+#: ../../include/class/ManageNetScanScripts.class.php:640
msgid "Default value"
msgstr "Valeur par défaut"
#: ../../enterprise/godmode/modules/configure_local_component.php:667
-#: ../../godmode/servers/plugin.php:628
-#: ../../include/class/ManageNetScanScripts.class.php:732
+#: ../../godmode/servers/plugin.php:632
+#: ../../include/class/ManageNetScanScripts.class.php:728
msgid "Add macro"
msgstr "Ajouter une macro"
#: ../../enterprise/godmode/modules/configure_local_component.php:675
-#: ../../include/class/ManageNetScanScripts.class.php:750
+#: ../../include/class/ManageNetScanScripts.class.php:746
msgid "Delete macro"
msgstr "Effacer une macro"
#: ../../enterprise/godmode/modules/configure_local_component.php:993
#: ../../godmode/modules/manage_network_components_form_common.php:717
-#: ../../godmode/agentes/module_manager_editor_common.php:2263
+#: ../../godmode/agentes/module_manager_editor_common.php:2273
msgid "Normal Status"
msgstr "État normal"
#: ../../enterprise/godmode/modules/configure_local_component.php:994
#: ../../godmode/modules/manage_network_components_form_common.php:718
-#: ../../godmode/agentes/module_manager_editor_common.php:2264
+#: ../../godmode/agentes/module_manager_editor_common.php:2274
msgid "Warning Status"
msgstr "État d'alerte"
#: ../../enterprise/godmode/modules/configure_local_component.php:995
#: ../../godmode/modules/manage_network_components_form_common.php:719
-#: ../../godmode/agentes/module_manager_editor_common.php:2265
+#: ../../godmode/agentes/module_manager_editor_common.php:2275
msgid "Critical Status"
msgstr "État critique"
#: ../../enterprise/godmode/modules/configure_local_component.php:998
#: ../../godmode/modules/manage_network_components_form_common.php:721
-#: ../../godmode/agentes/module_manager_editor_common.php:2268
+#: ../../godmode/agentes/module_manager_editor_common.php:2278
msgid "Please introduce a maximum warning higher than the minimun warning"
msgstr "Veuillez introduire une alerte maximale supérieure à l'alerte minimale"
#: ../../enterprise/godmode/modules/configure_local_component.php:1000
#: ../../godmode/modules/manage_network_components_form_common.php:722
-#: ../../godmode/agentes/module_manager_editor_common.php:2269
+#: ../../godmode/agentes/module_manager_editor_common.php:2279
msgid "Please introduce a maximum critical higher than the minimun critical"
msgstr ""
"Veuillez introduire un état critique maximal supérieur à l'état critique "
@@ -15375,7 +15529,7 @@ msgid "Please introduce a positicve percentage value"
msgstr "Veuillez introduire une valeur de pourcentage positicve"
#: ../../enterprise/godmode/modules/local_components.php:140
-#: ../../godmode/modules/manage_network_components.php:195
+#: ../../godmode/modules/manage_network_components.php:196
#: ../../godmode/alerts/configure_alert_template.php:208
#, php-format
msgid "Successfully created from %s"
@@ -15396,9 +15550,9 @@ msgstr "Créé correctement à partir de %s"
#: ../../enterprise/tools/ipam/ipam_action.php:164
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51
#: ../../godmode/modules/manage_nc_groups.php:109
-#: ../../godmode/modules/manage_network_components.php:198
-#: ../../godmode/modules/manage_network_components.php:436
-#: ../../godmode/users/configure_user.php:531
+#: ../../godmode/modules/manage_network_components.php:199
+#: ../../godmode/modules/manage_network_components.php:438
+#: ../../godmode/users/configure_user.php:480
#: ../../godmode/agentes/configurar_agente.php:361
#: ../../godmode/agentes/configurar_agente.php:883
#: ../../godmode/agentes/planned_downtime.editor.php:650
@@ -15407,8 +15561,8 @@ msgstr "Créé correctement à partir de %s"
#: ../../godmode/alerts/configure_alert_template.php:544
#: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84
#: ../../godmode/setup/gis.php:49
-#: ../../godmode/reporting/reporting_builder.item_editor.php:6025
-#: ../../include/functions_alerts.php:2755
+#: ../../godmode/reporting/reporting_builder.item_editor.php:6028
+#: ../../include/functions_alerts.php:2756
#: ../../include/functions_planned_downtimes.php:113
#: ../../include/functions_planned_downtimes.php:845
#: ../../operation/agentes/pandora_networkmap.php:140
@@ -15430,14 +15584,14 @@ msgstr ""
"lecture seule. Allez dans %s pour les gérer."
#: ../../enterprise/godmode/modules/local_components.php:339
-#: ../../godmode/modules/manage_network_components.php:447
+#: ../../godmode/modules/manage_network_components.php:449
#: ../../include/class/ManageNetScanScripts.class.php:228
msgid "Created successfully"
msgstr "Créé correctement"
#: ../../enterprise/godmode/modules/local_components.php:407
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127
-#: ../../enterprise/godmode/policies/policy_modules.php:1266
+#: ../../enterprise/godmode/policies/policy_modules.php:1311
#: ../../enterprise/godmode/policies/policies.php:212
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139
@@ -15448,22 +15602,22 @@ msgstr "Créé correctement"
#: ../../enterprise/include/ajax/servers.ajax.php:368
#: ../../enterprise/tools/ipam/ipam_action.php:277
#: ../../enterprise/tools/ipam/ipam_massive.php:48
-#: ../../godmode/modules/manage_network_components.php:535
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
+#: ../../godmode/modules/manage_network_components.php:538
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
#: ../../godmode/agentes/planned_downtime.editor.php:652
#: ../../godmode/alerts/configure_alert_command.php:150
-#: ../../godmode/alerts/alert_templates.php:162
+#: ../../godmode/alerts/alert_templates.php:166
#: ../../godmode/alerts/configure_alert_template.php:572
#: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320
-#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755
+#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2756
#: ../../include/functions_planned_downtimes.php:123
#: ../../operation/agentes/pandora_networkmap.php:216
-#: ../../operation/agentes/pandora_networkmap.php:515
+#: ../../operation/agentes/pandora_networkmap.php:516
msgid "Could not be updated"
msgstr "Erreur de mise à jour"
#: ../../enterprise/godmode/modules/local_components.php:415
-#: ../../godmode/modules/manage_network_components.php:544
+#: ../../godmode/modules/manage_network_components.php:547
#: ../../include/class/ManageNetScanScripts.class.php:315
msgid "Updated successfully"
msgstr "Mis à jour correctement"
@@ -15472,7 +15626,7 @@ msgstr "Mis à jour correctement"
#: ../../godmode/modules/manage_nc_groups.php:218
#: ../../godmode/modules/manage_inventory_modules.php:234
#: ../../godmode/modules/manage_inventory_modules.php:267
-#: ../../godmode/modules/manage_network_components.php:588
+#: ../../godmode/modules/manage_network_components.php:591
#: ../../godmode/modules/manage_network_templates.php:114
msgid "Successfully multiple deleted"
msgstr "Données multiples supprimées correctement"
@@ -15481,14 +15635,14 @@ msgstr "Données multiples supprimées correctement"
#: ../../godmode/modules/manage_nc_groups.php:219
#: ../../godmode/modules/manage_inventory_modules.php:235
#: ../../godmode/modules/manage_inventory_modules.php:268
-#: ../../godmode/modules/manage_network_components.php:589
+#: ../../godmode/modules/manage_network_components.php:592
#: ../../godmode/modules/manage_network_templates.php:115
msgid "Not deleted. Error deleting multiple data"
msgstr "Erreur de suppression de données multiples"
#: ../../enterprise/godmode/modules/local_components.php:567
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902
-#: ../../godmode/modules/manage_network_components.php:677
+#: ../../godmode/modules/manage_network_components.php:680
msgid "Free Search"
msgstr "Recherche libre"
@@ -15497,15 +15651,15 @@ msgid "Search by name, description or data, list matches."
msgstr "Rechercher liste de concordances par nom, description ou données"
#: ../../enterprise/godmode/modules/local_components.php:732
-#: ../../enterprise/godmode/policies/policy_modules.php:1636
+#: ../../enterprise/godmode/policies/policy_modules.php:1681
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:595
#: ../../enterprise/include/class/NetworkConfigManager.class.php:628
-#: ../../godmode/modules/manage_network_components.php:841
-#: ../../godmode/agentes/module_manager.php:961
+#: ../../godmode/modules/manage_network_components.php:844
+#: ../../godmode/agentes/module_manager.php:975
#: ../../godmode/snmpconsole/snmp_alert.php:1984
#: ../../godmode/snmpconsole/snmp_alert.php:1985
#: ../../godmode/alerts/alert_actions.php:461
-#: ../../godmode/alerts/alert_templates.php:458
+#: ../../godmode/alerts/alert_templates.php:462
#: ../../godmode/reporting/reporting_builder.php:1194
msgid "Duplicate"
msgstr "Dupliquer"
@@ -15582,7 +15736,7 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wizard.php:661
#: ../../godmode/agentes/planned_downtime.list.php:737
#: ../../godmode/agentes/planned_downtime.editor.php:951
-#: ../../include/functions_reporting_html.php:6372
+#: ../../include/functions_reporting_html.php:6406
msgid "Execution"
msgstr "Exécution"
@@ -15670,8 +15824,8 @@ msgstr "Lacer script"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643
@@ -15701,20 +15855,20 @@ msgstr "Lacer script"
#: ../../godmode/massive/massive_edit_users.php:462
#: ../../godmode/massive/massive_edit_users.php:470
#: ../../godmode/massive/massive_edit_users.php:507
-#: ../../godmode/massive/massive_edit_users.php:609
-#: ../../godmode/massive/massive_edit_users.php:628
-#: ../../godmode/massive/massive_edit_users.php:635
-#: ../../godmode/massive/massive_edit_agents.php:677
-#: ../../godmode/massive/massive_edit_agents.php:703
-#: ../../godmode/massive/massive_edit_agents.php:739
-#: ../../godmode/massive/massive_edit_agents.php:763
-#: ../../godmode/massive/massive_edit_agents.php:880
-#: ../../godmode/massive/massive_edit_agents.php:927
-#: ../../godmode/massive/massive_edit_agents.php:1020
-#: ../../godmode/massive/massive_edit_agents.php:1073
-#: ../../godmode/massive/massive_edit_agents.php:1115
-#: ../../godmode/massive/massive_edit_agents.php:1143
-#: ../../godmode/massive/massive_edit_agents.php:1237
+#: ../../godmode/massive/massive_edit_users.php:610
+#: ../../godmode/massive/massive_edit_users.php:629
+#: ../../godmode/massive/massive_edit_users.php:636
+#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:720
+#: ../../godmode/massive/massive_edit_agents.php:756
+#: ../../godmode/massive/massive_edit_agents.php:780
+#: ../../godmode/massive/massive_edit_agents.php:897
+#: ../../godmode/massive/massive_edit_agents.php:944
+#: ../../godmode/massive/massive_edit_agents.php:1037
+#: ../../godmode/massive/massive_edit_agents.php:1090
+#: ../../godmode/massive/massive_edit_agents.php:1132
+#: ../../godmode/massive/massive_edit_agents.php:1159
+#: ../../godmode/massive/massive_edit_agents.php:1253
#: ../../godmode/massive/massive_edit_modules.php:630
#: ../../godmode/massive/massive_edit_modules.php:652
#: ../../godmode/massive/massive_edit_modules.php:721
@@ -15736,28 +15890,27 @@ msgstr "Lacer script"
#: ../../godmode/massive/massive_edit_modules.php:1095
#: ../../godmode/massive/massive_edit_modules.php:1123
#: ../../godmode/massive/massive_edit_modules.php:1227
-#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978
-#: ../../include/functions_html.php:2116
+#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989
+#: ../../include/functions_html.php:2127
msgid "No change"
msgstr "Aucune modification"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683
-#: ../../godmode/agentes/agent_manager.php:636
+#: ../../godmode/agentes/agent_manager.php:638
#: ../../godmode/reporting/reporting_builder.item_editor.php:73
-#: ../../include/functions_events.php:5061
-#: ../../operation/agentes/estado_generalagente.php:504
-#: ../../operation/inventory/inventory.php:1003
-#: ../../operation/inventory/inventory.php:1297
+#: ../../include/functions_events.php:5066
+#: ../../operation/agentes/estado_generalagente.php:475
+#: ../../operation/inventory/inventory.php:1249
msgid "Secondary groups"
msgstr "Groupes secondaires"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730
-#: ../../godmode/massive/massive_edit_agents.php:825
+#: ../../godmode/massive/massive_edit_agents.php:842
msgid "Add secondary groups"
msgstr "Ajouter des groupes secondaires"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737
-#: ../../godmode/massive/massive_edit_agents.php:851
+#: ../../godmode/massive/massive_edit_agents.php:868
msgid "Remove secondary groups"
msgstr "Supprimer des groupes secondaires"
@@ -15768,7 +15921,7 @@ msgstr "Ajouter une politique"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435
-#: ../../operation/agentes/estado_agente.php:1063
+#: ../../operation/agentes/estado_agente.php:1071
msgid "Op"
msgstr "Op"
@@ -15850,13 +16003,13 @@ msgstr "Il n’y a pas de configuration automatique définie"
#: ../../enterprise/include/functions_HA_cluster.php:61
#: ../../enterprise/include/lib/Metaconsole/Node.php:1114
#: ../../enterprise/include/lib/Metaconsole/Node.php:1115
-#: ../../godmode/users/user_list.php:845
+#: ../../godmode/users/user_list.php:846
#: ../../godmode/massive/massive_edit_users.php:529
-#: ../../godmode/alerts/alert_list.list.php:1170
+#: ../../godmode/alerts/alert_list.list.php:1169
#: ../../include/class/SatelliteAgent.class.php:1195
-#: ../../include/class/TipsWindow.class.php:456
-#: ../../include/class/TipsWindow.class.php:734
-#: ../../include/class/TipsWindow.class.php:901
+#: ../../include/class/TipsWindow.class.php:468
+#: ../../include/class/TipsWindow.class.php:754
+#: ../../include/class/TipsWindow.class.php:921
#: ../../operation/users/user_edit_notifications.php:64
msgid "Enable"
msgstr "Activer"
@@ -15868,14 +16021,14 @@ msgstr "Activer"
#: ../../enterprise/include/functions_HA_cluster.php:58
#: ../../enterprise/include/lib/Metaconsole/Node.php:1140
#: ../../enterprise/include/lib/Metaconsole/Node.php:1141
-#: ../../godmode/users/user_list.php:840
+#: ../../godmode/users/user_list.php:841
#: ../../godmode/massive/massive_edit_users.php:518
-#: ../../godmode/alerts/alert_list.list.php:1143 ../../include/functions.php:3413
+#: ../../godmode/alerts/alert_list.list.php:1142 ../../include/functions.php:3413
#: ../../include/class/SatelliteAgent.class.php:1195
msgid "Disable"
msgstr "Désactiver"
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226
msgid "Add new configuration definition"
msgstr "Ajouter une nouvelle définition de configuration"
@@ -15899,10 +16052,10 @@ msgstr "Gestionnaire de configuration réseau"
#: ../../enterprise/godmode/agentes/plugins_manager.php:212
#: ../../enterprise/godmode/policies/policy_plugins.php:185
#: ../../enterprise/godmode/policies/policies.php:607
-#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322
+#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320
#: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282
-#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764
-#: ../../godmode/servers/plugin.php:806
+#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756
+#: ../../godmode/servers/plugin.php:798
msgid "Plugins"
msgstr "Plugins"
@@ -15929,12 +16082,12 @@ msgid "Show files"
msgstr "Afficher les fichiers"
#: ../../enterprise/godmode/agentes/collection_manager.php:251
-#: ../../enterprise/operation/log/log_viewer.php:1477
-#: ../../enterprise/operation/log/log_viewer.php:1485
+#: ../../enterprise/operation/log/log_viewer.php:1475
+#: ../../enterprise/operation/log/log_viewer.php:1483
#: ../../godmode/reporting/reporting_builder.php:1268
-#: ../../include/functions_reporting.php:3199
-#: ../../operation/agentes/agent_inventory.php:280
-#: ../../operation/inventory/inventory.php:776
+#: ../../include/functions_reporting.php:3208
+#: ../../operation/agentes/agent_inventory.php:334
+#: ../../operation/inventory/inventory.php:1005
msgid "No data found."
msgstr "Aucune donnée retrouvée"
@@ -15943,9 +16096,9 @@ msgstr "Aucune donnée retrouvée"
#: ../../godmode/agentes/inventory_manager.php:232
#: ../../godmode/snmpconsole/snmp_alert.php:1891
#: ../../godmode/reporting/reporting_builder.list_items.php:373
-#: ../../godmode/reporting/graph_builder.graph_editor.php:211
+#: ../../godmode/reporting/graph_builder.graph_editor.php:344
#: ../../include/ajax/alert_list.ajax.php:285
-#: ../../operation/agentes/status_monitor.php:1531
+#: ../../operation/agentes/status_monitor.php:1533
msgid "P."
msgstr "P."
@@ -15961,7 +16114,7 @@ msgid "Capacity planning"
msgstr "Planification de la capacité"
#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186
#: ../../enterprise/godmode/services/services.elements.php:95
#: ../../enterprise/godmode/services/services.elements.php:184
#: ../../enterprise/include/functions_visual_map_editor.php:30
@@ -15972,7 +16125,8 @@ msgstr "Planification de la capacité"
#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288
#: ../../enterprise/include/functions_reporting.php:6152
#: ../../enterprise/include/functions_services.php:1712
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4118
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4127
+#: ../../mobile/operation/services.php:267
#: ../../include/lib/Dashboard/Widgets/service_map.php:318
msgid "Service"
msgstr "Service"
@@ -15989,59 +16143,59 @@ msgstr "Moyenne synthétique"
msgid "Trending module"
msgstr "Module tendance"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138
msgid "Fixed value"
msgstr "Valeur fixe"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141
msgid "Add module to operation as add"
msgstr "Ajouter un module à l'opération comme somme"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142
msgid "Add module to operations as deduct"
msgstr "Ajouter un module à l'opération comme soustraction"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143
msgid "Add module to operations as multiplicate "
msgstr "Ajouter un module à l'opération comme multiplication "
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
msgid "Add module to operations as divide"
msgstr "Ajouter un module à l'opération comme division"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145
msgid "Remove selected modules"
msgstr "Supprimer les modules sélectionnés"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148
msgid "Add module to average operation"
msgstr "Ajouter un module à l'opération moyenne"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149
msgid "Remove selected modules from operations stack"
msgstr "Supprimer les modules sélectionnés des opérations en attente"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160
msgid "Move down selected modules"
msgstr "Déplacer les modules sélectionnés vers le bas"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161
msgid "Move up selected modules"
msgstr "Déplacer les modules sélectionnés vers le haut"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197
msgid "Select Service"
msgstr "Sélectionner un service"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214
msgid "Netflow filter"
msgstr "Filtre Netflow"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223
msgid "Select filter"
msgstr "Sélectionner un filtre"
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238
msgid "Percentual value"
msgstr "Valeur en pourcentage"
@@ -16083,7 +16237,7 @@ msgstr "Erreur : le répertoire de la collection n'existe pas."
#: ../../enterprise/godmode/agentes/collections.editor.php:96
msgid "Collection files"
-msgstr "Fichiers de collecte"
+msgstr "Fichiers de collection"
#: ../../enterprise/godmode/agentes/collections.editor.php:101
msgid "Edit files"
@@ -16159,15 +16313,19 @@ msgstr "Configuration manuelle"
msgid "No component was found"
msgstr "Aucun composant a été trouvé"
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132
+msgid "Macro value"
+msgstr "Valeur de la macro"
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171
msgid "Show configuration data"
msgstr "Afficher les données de configuration"
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182
msgid "Hide configuration data"
msgstr "Cacher les données de configuration"
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190
msgid "Data configuration"
msgstr "Configuration des données"
@@ -16209,7 +16367,7 @@ msgid "Add Modules"
msgstr "Ajouter des modules"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83
-#: ../../godmode/agentes/module_manager.php:1247
+#: ../../godmode/agentes/module_manager.php:1268
msgid "Delete module"
msgstr "Supprimer le module"
@@ -16253,8 +16411,8 @@ msgstr ""
"spécifiez le chemin d’accès complet %s."
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231
-#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718
-#: ../../include/class/TipsWindow.class.php:885
+#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:738
+#: ../../include/class/TipsWindow.class.php:905
#: ../../operation/search_users.php:47
msgid "Profile"
msgstr "Profil"
@@ -16276,7 +16434,7 @@ msgid "Only Selenium 3."
msgstr "Seulement Sélénium 3."
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286
-#: ../../godmode/agentes/module_manager_editor_common.php:1206
+#: ../../godmode/agentes/module_manager_editor_common.php:1216
msgid "Change all states"
msgstr "Modifier tous les états"
@@ -16302,15 +16460,15 @@ msgstr "Collez votre test de sélénium, exporté au format HTML, ici"
#: ../../enterprise/tools/ipam/ipam_excel.php:220
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:419
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:792
-#: ../../godmode/groups/configure_group.php:234
+#: ../../godmode/groups/configure_group.php:253
#: ../../godmode/agentes/agent_manager.php:195
-#: ../../godmode/agentes/module_manager_editor_common.php:744
-#: ../../godmode/massive/massive_edit_agents.php:812
+#: ../../godmode/agentes/module_manager_editor_common.php:754
+#: ../../godmode/massive/massive_edit_agents.php:829
msgid "Custom ID"
msgstr "Identifiant personnalisé"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497
-#: ../../godmode/agentes/module_manager.php:902
+#: ../../godmode/agentes/module_manager.php:916
msgid ""
"The policy modules of data type will only update their intervals when policy "
"is applied."
@@ -16320,7 +16478,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961
-#: ../../godmode/agentes/module_manager_editor_common.php:1281
+#: ../../godmode/agentes/module_manager_editor_common.php:1291
#: ../../godmode/massive/massive_edit_modules.php:1029
msgid "FF interval"
msgstr "Intervalle FF"
@@ -16333,7 +16491,7 @@ msgstr "Intervalle de flip-flop d'exécution de module (en secondes)."
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057
-#: ../../godmode/agentes/module_manager_editor_common.php:1410
+#: ../../godmode/agentes/module_manager_editor_common.php:1420
#: ../../godmode/massive/massive_edit_modules.php:1150
msgid "Retries"
msgstr "Tentatives"
@@ -16347,7 +16505,7 @@ msgstr "Nombre de tentatives que le module tente d'éxécuter."
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619
#: ../../enterprise/godmode/policies/policy_modules.php:418
#: ../../godmode/agentes/module_manager_editor.php:762
-#: ../../godmode/agentes/module_manager_editor_common.php:1444
+#: ../../godmode/agentes/module_manager_editor_common.php:1454
msgid "Custom macros"
msgstr "Macros personnalisées"
@@ -16373,13 +16531,15 @@ msgstr "Éditeur de cartes réseau vide"
#: ../../enterprise/operation/services/services.table_services.php:63
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104
#: ../../godmode/gis_maps/configure_gis_map.php:116
-#: ../../godmode/reporting/visual_console_builder.php:865
+#: ../../godmode/reporting/visual_console_builder.php:873
#: ../../godmode/reporting/map_builder.php:129
#: ../../godmode/reporting/visual_console_favorite.php:126
-#: ../../operation/visual_console/view.php:247
+#: ../../operation/visual_console/view.php:249
+#: ../../operation/visual_console/legacy_view.php:215
+#: ../../operation/agentes/networkmap.dinamic.php:146
#: ../../operation/agentes/pandora_networkmap.editor.php:232
-#: ../../operation/agentes/pandora_networkmap.php:681
-#: ../../operation/agentes/pandora_networkmap.view.php:2409
+#: ../../operation/agentes/pandora_networkmap.php:682
+#: ../../operation/agentes/pandora_networkmap.view.php:2410
#: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47
#: ../../operation/gis_maps/render_view.php:189
msgid "Topology maps"
@@ -16388,15 +16548,15 @@ msgstr "Cartes de topologie"
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108
#: ../../operation/agentes/pandora_networkmap.editor.php:236
-#: ../../operation/agentes/pandora_networkmap.php:685
-#: ../../operation/agentes/pandora_networkmap.view.php:2311
+#: ../../operation/agentes/pandora_networkmap.php:686
+#: ../../operation/agentes/pandora_networkmap.view.php:2312
msgid "Networkmap"
msgstr "Carte de réseau"
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115
#: ../../operation/agentes/pandora_networkmap.editor.php:274
-#: ../../operation/agentes/pandora_networkmap.view.php:2317
+#: ../../operation/agentes/pandora_networkmap.view.php:2318
msgid "Not found networkmap."
msgstr "Aucune carte de réseau retrouvée"
@@ -16504,7 +16664,7 @@ msgstr "Créer un nouveau module d’analyse Web"
#: ../../enterprise/godmode/policies/policy_alerts.php:75
#: ../../enterprise/godmode/policies/configure_policy.php:92
#: ../../enterprise/godmode/policies/policy_modules.php:488
-#: ../../enterprise/godmode/policies/policy_queue.php:218
+#: ../../enterprise/godmode/policies/policy_queue.php:220
#: ../../enterprise/godmode/policies/policies.php:275
#: ../../enterprise/godmode/policies/policy_linking.php:127
#: ../../enterprise/godmode/policies/policy_external_alerts.php:329
@@ -16540,7 +16700,7 @@ msgstr "Impossible de l'ajouter à la liste de plugins à supprimer."
#: ../../enterprise/godmode/policies/policy_plugins.php:70
#: ../../enterprise/godmode/policies/policy_alerts.php:270
-#: ../../enterprise/godmode/policies/policy_modules.php:1332
+#: ../../enterprise/godmode/policies/policy_modules.php:1377
#: ../../enterprise/godmode/policies/policy_external_alerts.php:162
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:177
#: ../../enterprise/godmode/policies/policy_collections.php:122
@@ -16551,7 +16711,7 @@ msgstr "Suppression annulée correctement"
#: ../../enterprise/godmode/policies/policy_plugins.php:71
#: ../../enterprise/godmode/policies/policy_alerts.php:271
-#: ../../enterprise/godmode/policies/policy_modules.php:1333
+#: ../../enterprise/godmode/policies/policy_modules.php:1378
#: ../../enterprise/godmode/policies/policy_external_alerts.php:163
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:180
#: ../../enterprise/godmode/policies/policy_collections.php:123
@@ -16573,7 +16733,7 @@ msgid "There are no defined plugins"
msgstr "Aucun plugin défini"
#: ../../enterprise/godmode/policies/policy_alerts.php:105
-#: ../../enterprise/godmode/policies/policy_modules.php:611
+#: ../../enterprise/godmode/policies/policy_modules.php:615
#: ../../enterprise/godmode/policies/policies.php:256
#: ../../enterprise/godmode/policies/policy_linking.php:51
#: ../../enterprise/godmode/policies/policy_external_alerts.php:87
@@ -16587,7 +16747,7 @@ msgstr "Cette politique est en application et ne peut pas être modifiée"
#: ../../enterprise/godmode/policies/policy_alerts.php:164
#: ../../enterprise/godmode/policies/policy_modules.php:547
#: ../../enterprise/godmode/setup/setup_metaconsole.php:157
-#: ../../godmode/agentes/configurar_agente.php:2214
+#: ../../godmode/agentes/configurar_agente.php:2277
#: ../../godmode/agentes/modificar_agente.php:271
#: ../../godmode/massive/massive_enable_disable_alerts.php:124
#: ../../godmode/alerts/alert_list.php:419
@@ -16674,8 +16834,8 @@ msgstr "Toujours"
#: ../../enterprise/godmode/policies/policy_external_alerts.php:510
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443
#: ../../godmode/alerts/alert_list.list.php:724
-#: ../../include/class/Diagnostics.class.php:1204
#: ../../include/class/Diagnostics.class.php:1208
+#: ../../include/class/Diagnostics.class.php:1212
msgid "On"
msgstr "Actif"
@@ -16687,7 +16847,7 @@ msgid "Until"
msgstr "Jusqu'à"
#: ../../enterprise/godmode/policies/policy_alerts.php:577
-#: ../../enterprise/godmode/policies/policy_modules.php:1653
+#: ../../enterprise/godmode/policies/policy_modules.php:1698
#: ../../enterprise/godmode/policies/policy_external_alerts.php:583
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303
#: ../../enterprise/godmode/policies/policy_agents.php:1192
@@ -16700,12 +16860,12 @@ msgid "There is not alerts configured in this policy."
msgstr "Aucune alerte externe n’est configurée dans cette politique."
#: ../../enterprise/godmode/policies/policy_alerts.php:695
-#: ../../godmode/alerts/alert_list.list.php:1197
+#: ../../godmode/alerts/alert_list.list.php:1196
msgid "Set off standby"
msgstr "Déconfigurer le mode veille"
#: ../../enterprise/godmode/policies/policy_alerts.php:704
-#: ../../godmode/alerts/alert_list.list.php:1224
+#: ../../godmode/alerts/alert_list.list.php:1223
msgid "Set standby"
msgstr "Configurer mode veille"
@@ -16724,9 +16884,9 @@ msgstr "Ajouter alertes"
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:476
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544
#: ../../godmode/snmpconsole/snmp_alert.php:2020
-#: ../../godmode/alerts/alert_list.list.php:995
-#: ../../godmode/alerts/alert_list.list.php:1006
-#: ../../godmode/alerts/alert_list.list.php:1270
+#: ../../godmode/alerts/alert_list.list.php:994
+#: ../../godmode/alerts/alert_list.list.php:1005
+#: ../../godmode/alerts/alert_list.list.php:1269
msgid "Add action"
msgstr "Ajouter une action"
@@ -16787,42 +16947,42 @@ msgid "Could not be added module(s). You must select a policy"
msgstr ""
"Impossible d'ajouter le(s) module(s). Vous devez sélectionner une politique."
-#: ../../enterprise/godmode/policies/policy_modules.php:593
+#: ../../enterprise/godmode/policies/policy_modules.php:597
#, php-format
msgid "Successfully added module(s) (%s/%s) to policy %s"
msgstr "Module(s) (%s/%s) ajouté(s) correctement à la politique %s."
-#: ../../enterprise/godmode/policies/policy_modules.php:599
+#: ../../enterprise/godmode/policies/policy_modules.php:603
#, php-format
msgid "Could not be added module(s) (%s/%s) to policy %s"
msgstr "Impossible d'ajouter le(s) module(s) (%s/%s) à la politique %s"
-#: ../../enterprise/godmode/policies/policy_modules.php:635
+#: ../../enterprise/godmode/policies/policy_modules.php:639
msgid "To define plugins please use plugin configuration tab."
msgstr ""
"Pour définir les plugins, veuillez utiliser l’onglet de configuration des "
"plugins."
-#: ../../enterprise/godmode/policies/policy_modules.php:934
+#: ../../enterprise/godmode/policies/policy_modules.php:938
msgid "Could not be added module."
msgstr "Impossible d'ajouter ce module"
-#: ../../enterprise/godmode/policies/policy_modules.php:1281
+#: ../../enterprise/godmode/policies/policy_modules.php:1326
msgid ""
"The module type in Data configuration is empty, take from combo box of form."
msgstr ""
"Le type de module dans la configuration de données est vide. Choisissez-en un "
"de la liste déroulante du formulaire."
-#: ../../enterprise/godmode/policies/policy_modules.php:1285
+#: ../../enterprise/godmode/policies/policy_modules.php:1330
msgid ""
"The module name in Data configuration is empty, take from text field of form."
msgstr ""
"Le nom du module dans la configuration de données est vide. Choisissez-en un "
"du champ de texte du formulaire."
-#: ../../enterprise/godmode/policies/policy_modules.php:1315
-#: ../../enterprise/godmode/policies/policy_modules.php:1328
+#: ../../enterprise/godmode/policies/policy_modules.php:1360
+#: ../../enterprise/godmode/policies/policy_modules.php:1373
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:171
msgid ""
"Successfully added to delete pending modules. Will be deleted in the next "
@@ -16831,95 +16991,95 @@ msgstr ""
"Ajouté correctement aux modules en attente de suppression. Il sera supprimé "
"dans la suivante application de la politique."
-#: ../../enterprise/godmode/policies/policy_modules.php:1319
+#: ../../enterprise/godmode/policies/policy_modules.php:1364
msgid "Could not be added to deleted all modules."
msgstr "Impossible de l'ajouter à la liste de suppression des modules"
-#: ../../enterprise/godmode/policies/policy_modules.php:1379
-#: ../../godmode/agentes/configurar_agente.php:2127
+#: ../../enterprise/godmode/policies/policy_modules.php:1424
+#: ../../godmode/agentes/configurar_agente.php:2190
#: ../../include/functions_reports.php:975
#, php-format
msgid "copy of %s"
msgstr "copie de %s"
-#: ../../enterprise/godmode/policies/policy_modules.php:1397
-#: ../../godmode/agentes/configurar_agente.php:2141
+#: ../../enterprise/godmode/policies/policy_modules.php:1442
+#: ../../godmode/agentes/configurar_agente.php:2204
#, php-format
msgid "copy of %s (%d)"
msgstr "copie de %s (%d)"
-#: ../../enterprise/godmode/policies/policy_modules.php:1427
+#: ../../enterprise/godmode/policies/policy_modules.php:1472
msgid "Successfully duplicate the module."
msgstr "Module dupliqué correctement"
-#: ../../enterprise/godmode/policies/policy_modules.php:1428
-#: ../../operation/agentes/pandora_networkmap.php:540
+#: ../../enterprise/godmode/policies/policy_modules.php:1473
+#: ../../operation/agentes/pandora_networkmap.php:541
msgid "Could not be duplicated"
msgstr "Duplication impossible"
-#: ../../enterprise/godmode/policies/policy_modules.php:1482
-#: ../../operation/agentes/estado_monitores.php:610
+#: ../../enterprise/godmode/policies/policy_modules.php:1527
+#: ../../operation/agentes/estado_monitores.php:608
msgid "Show in hierachy mode"
msgstr "Affichage en mode hiérarchique"
-#: ../../enterprise/godmode/policies/policy_modules.php:1577
+#: ../../enterprise/godmode/policies/policy_modules.php:1622
msgid "Local component"
msgstr "Composant local"
-#: ../../enterprise/godmode/policies/policy_modules.php:1590
-#: ../../enterprise/godmode/policies/policy_modules.php:1591
+#: ../../enterprise/godmode/policies/policy_modules.php:1635
+#: ../../enterprise/godmode/policies/policy_modules.php:1636
msgid "Disabled module"
msgstr "Module désactivé"
-#: ../../enterprise/godmode/policies/policy_modules.php:1598
-#: ../../enterprise/godmode/policies/policy_modules.php:1599
+#: ../../enterprise/godmode/policies/policy_modules.php:1643
+#: ../../enterprise/godmode/policies/policy_modules.php:1644
msgid "Enabled module"
msgstr "Module activé"
-#: ../../enterprise/godmode/policies/policy_modules.php:1609
-#: ../../enterprise/godmode/policies/policy_modules.php:1610
-#: ../../godmode/agentes/module_manager.php:940
+#: ../../enterprise/godmode/policies/policy_modules.php:1654
+#: ../../enterprise/godmode/policies/policy_modules.php:1655
+#: ../../godmode/agentes/module_manager.php:954
msgid "Enable module"
msgstr "Activer le module"
-#: ../../enterprise/godmode/policies/policy_modules.php:1619
-#: ../../enterprise/godmode/policies/policy_modules.php:1620
-#: ../../godmode/agentes/module_manager.php:949
+#: ../../enterprise/godmode/policies/policy_modules.php:1664
+#: ../../enterprise/godmode/policies/policy_modules.php:1665
+#: ../../godmode/agentes/module_manager.php:963
msgid "Disable module"
msgstr "Module désactivé"
-#: ../../enterprise/godmode/policies/policy_modules.php:1719
+#: ../../enterprise/godmode/policies/policy_modules.php:1764
msgid "There are no defined modules"
msgstr "Aucun module défini"
-#: ../../enterprise/godmode/policies/policy_modules.php:1840
+#: ../../enterprise/godmode/policies/policy_modules.php:1885
#: ../../godmode/agentes/module_manager_editor.php:868
msgid "No module name provided"
msgstr "Aucun nom de module fourni"
-#: ../../enterprise/godmode/policies/policy_modules.php:1841
+#: ../../enterprise/godmode/policies/policy_modules.php:1886
#: ../../godmode/agentes/module_manager_editor.php:878
msgid "No target IP provided"
msgstr "Aucune cible IP fournie"
-#: ../../enterprise/godmode/policies/policy_modules.php:1842
+#: ../../enterprise/godmode/policies/policy_modules.php:1887
#: ../../godmode/agentes/module_manager_editor.php:888
msgid "No SNMP OID provided"
msgstr "Aucun OID SNMP fourni"
-#: ../../enterprise/godmode/policies/policy_modules.php:2008
+#: ../../enterprise/godmode/policies/policy_modules.php:2053
msgid "Are you sure to copy modules into policy?\\n"
msgstr "Êtes-vous sûr(e) de vouloir copier les modules à la politique ?"
-#: ../../enterprise/godmode/policies/policy_modules.php:2028
+#: ../../enterprise/godmode/policies/policy_modules.php:2071
msgid "Please select any module to copy"
msgstr "Veuillez sélectionner un module à copier."
-#: ../../enterprise/godmode/policies/policy_queue.php:63
+#: ../../enterprise/godmode/policies/policy_queue.php:65
msgid "No policies with this id"
msgstr "Aucune politique avec cet ID"
-#: ../../enterprise/godmode/policies/policy_queue.php:78
+#: ../../enterprise/godmode/policies/policy_queue.php:80
#: ../../enterprise/godmode/policies/policy_agents.php:61
msgid ""
"Starting with Pandora FMS version 760, assigning an entire group to a policy "
@@ -16929,122 +17089,122 @@ msgstr ""
"stratégie l’appliquera automatiquement à tous les nouveaux agents ajoutés à ce "
"groupe."
-#: ../../enterprise/godmode/policies/policy_queue.php:146
+#: ../../enterprise/godmode/policies/policy_queue.php:148
#, php-format
msgid "%s: Operations successfully deleted from the queue"
msgstr "%s : opérations supprimées correctement de la file d'attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:153
+#: ../../enterprise/godmode/policies/policy_queue.php:155
msgid "Operations successfully deleted from the queue"
msgstr "Opérations supprimées correctement de la file d'attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:154
+#: ../../enterprise/godmode/policies/policy_queue.php:156
msgid "Operations cannot be deleted from the queue"
msgstr "Impossible de supprimer les opérations de la file d'attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:261
+#: ../../enterprise/godmode/policies/policy_queue.php:263
#, php-format
msgid "Some nodes (%s) are unreachebles. Some information may be missing."
msgstr ""
"Certains nœuds (%s) sont inaccessibles. Certaines informations peuvent être "
"manquantes."
-#: ../../enterprise/godmode/policies/policy_queue.php:418
+#: ../../enterprise/godmode/policies/policy_queue.php:420
msgid "Update pending"
msgstr "Mise à jour en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:424
+#: ../../enterprise/godmode/policies/policy_queue.php:426
msgid "Update pending agents"
msgstr "Mettre à jour les agents en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:447
+#: ../../enterprise/godmode/policies/policy_queue.php:449
#: ../../enterprise/godmode/policies/policy_agents.php:1135
#: ../../enterprise/godmode/policies/policy_agents.php:1477
msgid "Add to apply queue"
msgstr "Ajouter à la file d'attente pour l'appliquer"
-#: ../../enterprise/godmode/policies/policy_queue.php:453
+#: ../../enterprise/godmode/policies/policy_queue.php:455
msgid "Add to apply queue only for database"
msgstr ""
"Ajouter à la file d'application, seulement pour les changements dans la base "
"de données"
-#: ../../enterprise/godmode/policies/policy_queue.php:464
+#: ../../enterprise/godmode/policies/policy_queue.php:466
msgid "Update pending groups"
msgstr "Mettre à jour les groupes en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:478
+#: ../../enterprise/godmode/policies/policy_queue.php:480
msgid "Link pending modules"
msgstr "Associer les modules en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:486
+#: ../../enterprise/godmode/policies/policy_queue.php:488
msgid "Will be linked in the next policy application"
msgstr "Il sera associé lors de la prochaine application de la politique"
-#: ../../enterprise/godmode/policies/policy_queue.php:492
+#: ../../enterprise/godmode/policies/policy_queue.php:494
msgid "Unlink pending modules"
msgstr "Dissocier les modules en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:498
+#: ../../enterprise/godmode/policies/policy_queue.php:500
msgid "Will be unlinked in the next policy application"
msgstr "Ils seront dissociés lors de la prochaine application de la politique."
-#: ../../enterprise/godmode/policies/policy_queue.php:503
+#: ../../enterprise/godmode/policies/policy_queue.php:505
msgid "Delete pending"
msgstr "Suppression en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:509
+#: ../../enterprise/godmode/policies/policy_queue.php:511
msgid "Delete pending agents"
msgstr "Supprimer les agents en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:517
-#: ../../enterprise/godmode/policies/policy_queue.php:532
-#: ../../enterprise/godmode/policies/policy_queue.php:547
-#: ../../enterprise/godmode/policies/policy_queue.php:562
-#: ../../enterprise/godmode/policies/policy_queue.php:577
-#: ../../enterprise/godmode/policies/policy_queue.php:592
-#: ../../enterprise/godmode/policies/policy_queue.php:607
-#: ../../enterprise/godmode/policies/policy_queue.php:622
+#: ../../enterprise/godmode/policies/policy_queue.php:519
+#: ../../enterprise/godmode/policies/policy_queue.php:534
+#: ../../enterprise/godmode/policies/policy_queue.php:549
+#: ../../enterprise/godmode/policies/policy_queue.php:564
+#: ../../enterprise/godmode/policies/policy_queue.php:579
+#: ../../enterprise/godmode/policies/policy_queue.php:594
+#: ../../enterprise/godmode/policies/policy_queue.php:609
+#: ../../enterprise/godmode/policies/policy_queue.php:624
msgid "Will be deleted in the next policy application"
msgstr "Ils seront supprimés lors de la prochaine application de la politique."
-#: ../../enterprise/godmode/policies/policy_queue.php:524
+#: ../../enterprise/godmode/policies/policy_queue.php:526
msgid "Delete pending groups"
msgstr "Supprimer les groupes en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:539
+#: ../../enterprise/godmode/policies/policy_queue.php:541
msgid "Delete pending modules"
msgstr "Supprimer les modules en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:554
+#: ../../enterprise/godmode/policies/policy_queue.php:556
msgid "Delete pending inventory modules"
msgstr "Supprimer les modules d'inventaire en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:569
+#: ../../enterprise/godmode/policies/policy_queue.php:571
msgid "Delete pending alerts"
msgstr "Supprimer les alertes en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:584
+#: ../../enterprise/godmode/policies/policy_queue.php:586
msgid "Delete pending external alerts"
msgstr "Supprimer les alertes externes en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:599
+#: ../../enterprise/godmode/policies/policy_queue.php:601
msgid "Delete pending file collections"
msgstr "Supprimer les collections de fichiers en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:614
+#: ../../enterprise/godmode/policies/policy_queue.php:616
msgid "Delete pending plugins"
msgstr "Supprimer les plugins en attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:628
+#: ../../enterprise/godmode/policies/policy_queue.php:630
msgid "Advices"
msgstr "Conseils"
-#: ../../enterprise/godmode/policies/policy_queue.php:633
+#: ../../enterprise/godmode/policies/policy_queue.php:635
msgid "Queue summary"
msgstr "Résumé des files d'attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:634
+#: ../../enterprise/godmode/policies/policy_queue.php:636
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:186
#: ../../godmode/snmpconsole/snmp_alert.php:1812
#: ../../godmode/alerts/alert_list.list.php:260
@@ -17052,28 +17212,28 @@ msgstr "Résumé des files d'attente"
msgid "Toggle filter(s)"
msgstr "Filtre(s) de bascul"
-#: ../../enterprise/godmode/policies/policy_queue.php:710
+#: ../../enterprise/godmode/policies/policy_queue.php:712
#: ../../enterprise/godmode/policies/policy_linking.php:203
#: ../../include/functions_massive_operations.php:189
-#: ../../include/lib/Dashboard/Widget.php:603
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544
-#: ../../include/functions_events.php:4908
+#: ../../include/lib/Dashboard/Widget.php:604
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545
+#: ../../include/functions_events.php:4913
msgid "Node"
msgstr "Noeud"
-#: ../../enterprise/godmode/policies/policy_queue.php:838
+#: ../../enterprise/godmode/policies/policy_queue.php:842
msgid "Empty queue"
msgstr "Vider la file d'attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:852
+#: ../../enterprise/godmode/policies/policy_queue.php:856
msgid "This operation could take a long time"
msgstr "Cette opération pourrait prendre du temps"
-#: ../../enterprise/godmode/policies/policy_queue.php:864
+#: ../../enterprise/godmode/policies/policy_queue.php:868
msgid "Apply all queues"
msgstr "Appliquer toutes les files d'attente"
-#: ../../enterprise/godmode/policies/policy_queue.php:877
+#: ../../enterprise/godmode/policies/policy_queue.php:881
msgid "Clear all items"
msgstr "Effacer tous les éléments"
@@ -17405,7 +17565,7 @@ msgstr "Agents dans la politique"
#: ../../enterprise/godmode/policies/policy_agents.php:851
#: ../../enterprise/godmode/setup/setup_auth.php:252
#: ../../enterprise/godmode/setup/setup_auth.php:602
-#: ../../enterprise/godmode/setup/setup_auth.php:1412
+#: ../../enterprise/godmode/setup/setup_auth.php:1629
#: ../../extensions/files_repo/files_repo_form.php:54
#: ../../extensions/module_groups.php:350
#: ../../godmode/reporting/visual_console_builder.wizard.php:368
@@ -17419,12 +17579,12 @@ msgstr "Agents dans la politique"
#: ../../include/lib/Dashboard/Widgets/events_list.php:431
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:341
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:350
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:372
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:344
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:353
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:375
#: ../../include/lib/Dashboard/Widgets/tactical.php:331
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301
-#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:719
+#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:720
msgid "Groups"
msgstr "Groupes"
@@ -17443,10 +17603,10 @@ msgstr "Groupes dans la politique"
#: ../../enterprise/godmode/policies/policy_agents.php:959
#: ../../godmode/agentes/configurar_agente.php:623
#: ../../godmode/agentes/configurar_agente.php:762
-#: ../../godmode/agentes/agent_manager.php:862
-#: ../../godmode/massive/massive_edit_agents.php:966
+#: ../../godmode/agentes/agent_manager.php:870
+#: ../../godmode/massive/massive_edit_agents.php:983
#: ../../godmode/reporting/reporting_builder.item_editor.php:79
-#: ../../godmode/servers/servers.build_table.php:260
+#: ../../godmode/servers/servers.build_table.php:273
#: ../../operation/agentes/estado_generalagente.php:313
msgid "Remote configuration"
msgstr "Configuration à distance"
@@ -17464,7 +17624,7 @@ msgstr "R."
#: ../../enterprise/operation/agentes/policy_view.php:167
#: ../../enterprise/operation/agentes/policy_view.php:258
#: ../../enterprise/operation/agentes/policy_view.php:263
-#: ../../mobile/operation/agents.php:406
+#: ../../mobile/operation/agents.php:407
#: ../../include/ajax/alert_list.ajax.php:286
#: ../../include/ajax/alert_list.ajax.php:311
#: ../../include/class/AuditLog.class.php:130
@@ -17483,7 +17643,7 @@ msgstr "U."
#: ../../enterprise/godmode/policies/policy_agents.php:1348
#: ../../enterprise/godmode/admin_access_logs.php:54
#: ../../godmode/reporting/visual_console_builder.elements.php:134
-#: ../../mobile/operation/agents.php:407
+#: ../../mobile/operation/agents.php:408
#: ../../include/class/AuditLog.class.php:130
msgid "A."
msgstr "A."
@@ -17569,16 +17729,20 @@ msgstr "Assistant de l'agent"
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
+#: ../../godmode/snmpconsole/snmp_filters.php:59
#: ../../include/class/CredentialStore.class.php:965
#: ../../include/class/SnmpConsole.class.php:221
#: ../../operation/snmpconsole/snmp_statistics.php:104
+#: ../../operation/snmpconsole/snmp_browser.php:92
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
#: ../../operation/menu.php:259
msgid "SNMP"
msgstr "SNMP"
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304
#: ../../godmode/setup/snmp_wizard.php:42
#: ../../include/functions_snmp_browser.php:556
msgid "OID"
@@ -17594,13 +17758,13 @@ msgstr "OID personnalisé"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232
#: ../../enterprise/include/functions_reporting_csv.php:2437
#: ../../enterprise/include/functions_reporting_csv.php:2451
-#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2349
+#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2358
#: ../../include/functions_reports.php:847
-#: ../../include/class/TipsWindow.class.php:455
-#: ../../include/class/TipsWindow.class.php:730
-#: ../../include/class/TipsWindow.class.php:897
-#: ../../include/functions_reporting.php:7509
+#: ../../include/class/TipsWindow.class.php:467
+#: ../../include/class/TipsWindow.class.php:750
+#: ../../include/class/TipsWindow.class.php:917
+#: ../../include/functions_reporting.php:7518
#: ../../include/lib/Dashboard/Widgets/post.php:214
msgid "Text"
msgstr "Texte"
@@ -17608,8 +17772,8 @@ msgstr "Texte"
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44
#: ../../enterprise/operation/snmpconsole/snmp_view.php:82
#: ../../enterprise/operation/menu.php:151
-#: ../../include/class/SnmpConsole.class.php:915
-#: ../../include/class/SnmpConsole.class.php:916
+#: ../../include/class/SnmpConsole.class.php:917
+#: ../../include/class/SnmpConsole.class.php:918
msgid "SNMP trap editor"
msgstr "Éditeur de déroutements SNMP"
@@ -17878,7 +18042,7 @@ msgid "Failed: create the alerts for this modules, please check."
msgstr "Erreur de création des alertes pour ces modules. Veuillez les vérifier."
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127
#: ../../enterprise/include/ajax/policy.ajax.php:263
#: ../../godmode/massive/massive_standby_alerts.php:218
#: ../../godmode/massive/massive_add_alerts.php:280
@@ -17889,8 +18053,9 @@ msgstr "Modèle d'alerte"
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2200
#: ../../include/functions_alerts.php:673
msgid "Regular expression"
msgstr "Expression régulière"
@@ -17973,8 +18138,9 @@ msgstr " politique"
#: ../../enterprise/godmode/setup/setup_auth.php:341
#: ../../enterprise/godmode/setup/setup_auth.php:473
#: ../../enterprise/godmode/setup/setup_auth.php:639
-#: ../../enterprise/godmode/setup/setup_auth.php:1281
-#: ../../enterprise/godmode/setup/setup_auth.php:1451
+#: ../../enterprise/godmode/setup/setup_auth.php:1197
+#: ../../enterprise/godmode/setup/setup_auth.php:1498
+#: ../../enterprise/godmode/setup/setup_auth.php:1668
#: ../../enterprise/godmode/setup/setup_acl.php:487
#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719
#: ../../enterprise/include/functions_tasklist.php:606
@@ -17994,30 +18160,30 @@ msgstr " politique"
#: ../../godmode/massive/massive_copy_modules.php:178
#: ../../godmode/massive/massive_delete_modules.php:407
#: ../../godmode/massive/massive_delete_modules.php:521
-#: ../../godmode/massive/massive_edit_agents.php:650
-#: ../../godmode/massive/massive_edit_agents.php:1153
+#: ../../godmode/massive/massive_edit_agents.php:667
+#: ../../godmode/massive/massive_edit_agents.php:1170
#: ../../godmode/massive/massive_add_action_alerts.php:217
#: ../../godmode/massive/massive_edit_modules.php:411
#: ../../godmode/massive/massive_edit_modules.php:497
#: ../../godmode/reporting/create_container.php:674
-#: ../../godmode/events/event_edit_filter.php:510
-#: ../../godmode/events/event_edit_filter.php:526
-#: ../../include/functions_visual_map_editor.php:498
-#: ../../include/functions_visual_map_editor.php:1454
-#: ../../include/functions_visual_map_editor.php:1548
+#: ../../godmode/events/event_edit_filter.php:512
+#: ../../godmode/events/event_edit_filter.php:528
+#: ../../include/functions_visual_map_editor.php:492
+#: ../../include/functions_visual_map_editor.php:1512
+#: ../../include/functions_visual_map_editor.php:1606
#: ../../include/ajax/visual_console_builder.ajax.php:1186
-#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2327
-#: ../../include/functions_html.php:2328 ../../include/functions_html.php:2329
-#: ../../include/functions_html.php:2330 ../../include/functions_html.php:2331
-#: ../../include/functions_html.php:2333 ../../include/functions_html.php:2334
-#: ../../include/functions_html.php:2335 ../../include/functions_html.php:2336
-#: ../../include/functions_html.php:2337 ../../include/functions_html.php:2352
-#: ../../include/functions_html.php:2374 ../../include/functions_html.php:2396
-#: ../../include/functions_html.php:2418 ../../include/functions_html.php:2440
+#: ../../include/functions_profile.php:390 ../../include/functions_html.php:2342
+#: ../../include/functions_html.php:2343 ../../include/functions_html.php:2344
+#: ../../include/functions_html.php:2345 ../../include/functions_html.php:2346
+#: ../../include/functions_html.php:2348 ../../include/functions_html.php:2349
+#: ../../include/functions_html.php:2350 ../../include/functions_html.php:2351
+#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2367
+#: ../../include/functions_html.php:2389 ../../include/functions_html.php:2411
+#: ../../include/functions_html.php:2433 ../../include/functions_html.php:2455
#: ../../include/lib/Dashboard/Widgets/events_list.php:340
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275
-#: ../../operation/events/events.php:1999 ../../operation/events/events.php:2017
-#: ../../operation/events/events.php:3028
+#: ../../operation/events/events.php:2053 ../../operation/events/events.php:2071
+#: ../../operation/events/events.php:3087
msgid "Any"
msgstr "Tous"
@@ -18032,7 +18198,7 @@ msgstr "Aux politiques"
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365
#: ../../godmode/massive/massive_add_alerts.php:324
-#: ../../godmode/massive/massive_edit_agents.php:1391
+#: ../../godmode/massive/massive_edit_agents.php:1407
#: ../../godmode/massive/massive_delete_alerts.php:389
msgid ""
"Unsucessful sending the data, please contact with your administrator or make "
@@ -18060,7 +18226,7 @@ msgstr "Pas de politiques de destin à copier"
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211
#: ../../godmode/massive/massive_delete_modules.php:372
#: ../../godmode/massive/massive_edit_modules.php:356
-#: ../../include/functions_reporting_html.php:1776
+#: ../../include/functions_reporting_html.php:1785
msgid "Agent group"
msgstr "Groupe d'agent"
@@ -18079,8 +18245,8 @@ msgid "When select agents"
msgstr "Lorsque des agents sont sélectionnés"
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265
-#: ../../extensions/agents_modules.php:489
-#: ../../extensions/agents_modules.php:493
+#: ../../extensions/agents_modules.php:497
+#: ../../extensions/agents_modules.php:501
#: ../../godmode/agentes/planned_downtime.editor.php:1235
#: ../../godmode/massive/massive_delete_action_alerts.php:246
#: ../../godmode/massive/massive_delete_modules.php:555
@@ -18089,12 +18255,12 @@ msgstr "Lorsque des agents sont sélectionnés"
#: ../../godmode/massive/massive_add_action_alerts.php:225
#: ../../godmode/massive/massive_edit_modules.php:528
#: ../../godmode/reporting/reporting_builder.item_editor.php:1923
-#: ../../include/functions_html.php:5947
+#: ../../include/functions_html.php:5971
msgid "Show common modules"
msgstr "Afficher les modules communs"
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266
-#: ../../extensions/agents_modules.php:490
+#: ../../extensions/agents_modules.php:498
#: ../../godmode/agentes/planned_downtime.editor.php:1236
#: ../../godmode/massive/massive_delete_action_alerts.php:247
#: ../../godmode/massive/massive_delete_modules.php:556
@@ -18103,7 +18269,7 @@ msgstr "Afficher les modules communs"
#: ../../godmode/massive/massive_add_action_alerts.php:226
#: ../../godmode/massive/massive_edit_modules.php:529
#: ../../godmode/reporting/reporting_builder.item_editor.php:1924
-#: ../../include/functions_html.php:5948
+#: ../../include/functions_html.php:5972
msgid "Show all modules"
msgstr "Afficher tous les modules"
@@ -18135,7 +18301,7 @@ msgstr "Opérations massives"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30
#: ../../godmode/snmpconsole/snmp_alert.php:41
#: ../../include/class/SnmpConsole.class.php:315
-#: ../../include/class/SnmpConsole.class.php:1379
+#: ../../include/class/SnmpConsole.class.php:1381
msgid "Cold start (0)"
msgstr "Démarrage zéro (0)"
@@ -18143,7 +18309,7 @@ msgstr "Démarrage zéro (0)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31
#: ../../godmode/snmpconsole/snmp_alert.php:42
#: ../../include/class/SnmpConsole.class.php:316
-#: ../../include/class/SnmpConsole.class.php:1383
+#: ../../include/class/SnmpConsole.class.php:1385
msgid "Warm start (1)"
msgstr "Démarrage (1)"
@@ -18151,7 +18317,7 @@ msgstr "Démarrage (1)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32
#: ../../godmode/snmpconsole/snmp_alert.php:43
#: ../../include/class/SnmpConsole.class.php:317
-#: ../../include/class/SnmpConsole.class.php:1387
+#: ../../include/class/SnmpConsole.class.php:1389
msgid "Link down (2)"
msgstr "Lien interrompu (2)"
@@ -18159,7 +18325,7 @@ msgstr "Lien interrompu (2)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33
#: ../../godmode/snmpconsole/snmp_alert.php:44
#: ../../include/class/SnmpConsole.class.php:318
-#: ../../include/class/SnmpConsole.class.php:1391
+#: ../../include/class/SnmpConsole.class.php:1393
msgid "Link up (3)"
msgstr "Lien actif (3)"
@@ -18167,7 +18333,7 @@ msgstr "Lien actif (3)"
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34
#: ../../godmode/snmpconsole/snmp_alert.php:45
#: ../../include/class/SnmpConsole.class.php:319
-#: ../../include/class/SnmpConsole.class.php:1395
+#: ../../include/class/SnmpConsole.class.php:1397
msgid "Authentication failure (4)"
msgstr "Erreur d'authentification (4)"
@@ -18177,14 +18343,15 @@ msgstr "Erreur d'authentification (4)"
#: ../../enterprise/godmode/setup/setup_acl.php:534
#: ../../enterprise/include/class/Aws.cloud.php:347
#: ../../extensions/api_checker.php:303
-#: ../../godmode/groups/configure_group.php:249
+#: ../../godmode/groups/configure_group.php:268
+#: ../../godmode/users/configure_user.php:65
#: ../../godmode/users/user_management.php:44
#: ../../godmode/snmpconsole/snmp_alert.php:46
#: ../../godmode/massive/massive_edit_users.php:279
-#: ../../include/functions_graph.php:3543
+#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553
#: ../../include/class/SnmpConsole.class.php:320
-#: ../../include/class/SnmpConsole.class.php:1372
-#: ../../include/class/SnmpConsole.class.php:1399
+#: ../../include/class/SnmpConsole.class.php:1374
+#: ../../include/class/SnmpConsole.class.php:1401
#: ../../operation/users/user_edit.php:474
#: ../../operation/gis_maps/render_view.php:168
msgid "Other"
@@ -18203,12 +18370,12 @@ msgid "Unsuccessfully deleted alerts (%s / %s)"
msgstr "Erreur de suppression des alertes (%s / %s)"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237
msgid "You must select a SNMP alert"
msgstr "Sélectionnez une alerte SNMP"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263
msgid ""
"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single "
"value, each Custom OIDs/Datas."
@@ -18217,8 +18384,8 @@ msgstr ""
"(IP), Valeur unique, chaque OID personnalisés/Données."
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310
#: ../../godmode/snmpconsole/snmp_alert.php:863
#: ../../godmode/snmpconsole/snmp_alert.php:1757
#: ../../include/functions_snmp.php:433
@@ -18231,30 +18398,34 @@ msgid "SNMP Alerts to be deleted"
msgstr "Alertes SNMP à supprimer"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414
msgid "No snmp alert found."
msgstr "Aucune alerte snmp trouvée."
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
#, php-format
msgid "Successfully updated alerts (%s / %s)"
msgstr "Alertes (%s / %s) mises à jour correctement"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224
#, php-format
msgid "Unsuccessfully updated alerts (%s / %s)"
msgstr "Erreur de mise à jour des alertes (%s / %s)"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+msgid "At least one parameter must be modified"
+msgstr "Modifiez au moins un paramètre"
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282
msgid "SNMP Alerts to be edit"
msgstr "Alertes SNMP à modifier"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306
#: ../../godmode/snmpconsole/snmp_alert.php:783
msgid "Custom Value/OID"
msgstr "Valeur/OID personnalisée"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308
#: ../../godmode/snmpconsole/snmp_trap_generator.php:138
#: ../../godmode/snmpconsole/snmp_alert.php:814
#: ../../godmode/snmpconsole/snmp_alert.php:1896
@@ -18262,38 +18433,38 @@ msgstr "Valeur/OID personnalisée"
msgid "SNMP Agent"
msgstr "Agent SNMP"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312
#: ../../godmode/snmpconsole/snmp_alert.php:884
msgid "Single value"
msgstr "Valeur unique"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314
#: ../../godmode/snmpconsole/snmp_alert.php:1537
#: ../../godmode/alerts/configure_alert_template.php:744
msgid "Min. number of alerts"
msgstr "Nombre minimum d'alertes"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316
#: ../../godmode/snmpconsole/snmp_alert.php:1554
#: ../../godmode/alerts/configure_alert_template.php:784
msgid "Max. number of alerts"
msgstr "Nombre maximum d'alertes"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331
#: ../../godmode/snmpconsole/snmp_alert.php:1583
msgid "Other value"
msgstr "Autre valeur"
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337
#: ../../godmode/snmpconsole/snmp_alert.php:1651
#: ../../godmode/snmpconsole/snmp_alert.php:1891
#: ../../godmode/reporting/reporting_builder.list_items.php:373
-#: ../../godmode/reporting/reporting_builder.list_items.php:717
-#: ../../godmode/reporting/graph_builder.graph_editor.php:331
+#: ../../godmode/reporting/reporting_builder.list_items.php:718
+#: ../../godmode/reporting/graph_builder.graph_editor.php:244
#: ../../godmode/reporting/visual_console_builder.elements.php:123
-#: ../../include/functions_visual_map_editor.php:920
+#: ../../include/functions_visual_map_editor.php:968
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246
-#: ../../include/rest-api/models/VisualConsole/Item.php:2024
+#: ../../include/rest-api/models/VisualConsole/Item.php:2027
msgid "Position"
msgstr "Position"
@@ -18305,16 +18476,16 @@ msgstr "Modules non utilisés"
msgid "Modules used"
msgstr "Modules utilisés"
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90
msgid "Success: remove the alerts."
msgstr "Alertes supprimées correctement"
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90
msgid "Failed: remove the alerts for this modules, please check."
msgstr ""
"Erreur de suppression des alertes pour ces modules. Veuillez les vérifier."
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143
msgid "Modules agents in policy"
msgstr "Modules des agents dans la politique"
@@ -18325,23 +18496,25 @@ msgstr "Dynamique min."
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270
-#: ../../godmode/modules/manage_network_components_form_network.php:82
-#: ../../godmode/agentes/module_manager_editor_network.php:196
+#: ../../godmode/modules/manage_network_components_form_network.php:85
+#: ../../godmode/agentes/module_manager_editor_network.php:197
+#: ../../godmode/massive/massive_edit_modules.php:811
#: ../../include/class/CredentialStore.class.php:1094
-#: ../../include/class/CredentialStore.class.php:1369
+#: ../../include/class/CredentialStore.class.php:1378
#: ../../include/class/AgentWizard.class.php:796
msgid "SNMP community"
msgstr "Communauté SNMP"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742
-#: ../../godmode/agentes/module_manager_editor_network.php:198
+#: ../../godmode/agentes/module_manager_editor_network.php:199
#: ../../godmode/massive/massive_edit_modules.php:821
msgid "SNMP OID"
msgstr "OID SNMP"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757
+#: ../../godmode/modules/manage_network_components_form_network.php:53
#: ../../godmode/agentes/module_manager_editor_wmi.php:97
-#: ../../godmode/agentes/module_manager_editor_network.php:81
+#: ../../godmode/agentes/module_manager_editor_network.php:82
#: ../../godmode/massive/massive_edit_modules.php:836
#: ../../include/class/AgentWizard.class.php:633
#: ../../include/functions_snmp_browser.php:709
@@ -18351,55 +18524,55 @@ msgstr "Adresse IP cible"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288
-#: ../../godmode/modules/manage_network_components_form_network.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:197
+#: ../../godmode/modules/manage_network_components_form_network.php:66
+#: ../../godmode/agentes/module_manager_editor_network.php:198
#: ../../godmode/massive/massive_edit_modules.php:854
-#: ../../godmode/wizards/HostDevices.class.php:1220
+#: ../../godmode/wizards/HostDevices.class.php:1216
#: ../../include/class/CredentialStore.class.php:1106
-#: ../../include/class/CredentialStore.class.php:1382
+#: ../../include/class/CredentialStore.class.php:1391
#: ../../include/class/AgentWizard.class.php:818
msgid "SNMP version"
msgstr "Version SNMP"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322
-#: ../../godmode/modules/manage_network_components_form_network.php:96
-#: ../../godmode/agentes/module_manager_editor_network.php:377
+#: ../../godmode/modules/manage_network_components_form_network.php:127
+#: ../../godmode/agentes/module_manager_editor_network.php:378
#: ../../godmode/massive/massive_edit_modules.php:867
-#: ../../godmode/wizards/HostDevices.class.php:1298
+#: ../../godmode/wizards/HostDevices.class.php:1294
#: ../../include/functions_snmp_browser.php:839
msgid "Auth user"
msgstr "Utilisateur de l'authentification"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338
-#: ../../godmode/modules/manage_network_components_form_network.php:105
-#: ../../godmode/agentes/module_manager_editor_network.php:390
+#: ../../godmode/modules/manage_network_components_form_network.php:107
+#: ../../godmode/agentes/module_manager_editor_network.php:391
#: ../../godmode/massive/massive_edit_modules.php:876
-#: ../../godmode/wizards/HostDevices.class.php:1340
+#: ../../godmode/wizards/HostDevices.class.php:1336
#: ../../include/functions_snmp_browser.php:851
msgid "Auth password"
msgstr "Authentification de mot de passe"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
-#: ../../godmode/agentes/module_manager_editor_network.php:390
-#: ../../godmode/agentes/module_manager_editor_network.php:412
+#: ../../godmode/agentes/module_manager_editor_network.php:391
+#: ../../godmode/agentes/module_manager_editor_network.php:415
#: ../../godmode/massive/massive_edit_modules.php:876
#: ../../godmode/massive/massive_edit_modules.php:880
-#: ../../godmode/wizards/HostDevices.class.php:1342
-#: ../../godmode/wizards/HostDevices.class.php:1373
+#: ../../godmode/wizards/HostDevices.class.php:1338
+#: ../../godmode/wizards/HostDevices.class.php:1369
msgid "The pass length must be eight character minimum."
msgstr "La longueur minimale du mot de passe est de huit caractères."
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360
-#: ../../godmode/modules/manage_network_components_form_network.php:123
-#: ../../godmode/agentes/module_manager_editor_network.php:410
+#: ../../godmode/modules/manage_network_components_form_network.php:149
+#: ../../godmode/agentes/module_manager_editor_network.php:413
#: ../../godmode/massive/massive_edit_modules.php:878
-#: ../../godmode/wizards/HostDevices.class.php:1356
+#: ../../godmode/wizards/HostDevices.class.php:1352
#: ../../include/class/CredentialStore.class.php:1196
-#: ../../include/class/CredentialStore.class.php:1489
+#: ../../include/class/CredentialStore.class.php:1498
#: ../../include/class/AgentWizard.class.php:954
#: ../../include/functions_snmp_browser.php:870
msgid "Privacy method"
@@ -18407,24 +18580,24 @@ msgstr "Méthode de confidentialité"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363
-#: ../../godmode/modules/manage_network_components_form_network.php:126
-#: ../../godmode/agentes/module_manager_editor_network.php:411
+#: ../../godmode/modules/manage_network_components_form_network.php:152
+#: ../../godmode/agentes/module_manager_editor_network.php:414
#: ../../godmode/massive/massive_edit_modules.php:879
-#: ../../godmode/wizards/HostDevices.class.php:1361
+#: ../../godmode/wizards/HostDevices.class.php:1357
#: ../../include/class/CredentialStore.class.php:1205
-#: ../../include/class/CredentialStore.class.php:1498
+#: ../../include/class/CredentialStore.class.php:1507
#: ../../include/functions_snmp_browser.php:873
msgid "DES"
msgstr "DES"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364
-#: ../../godmode/modules/manage_network_components_form_network.php:127
-#: ../../godmode/agentes/module_manager_editor_network.php:411
+#: ../../godmode/modules/manage_network_components_form_network.php:153
+#: ../../godmode/agentes/module_manager_editor_network.php:414
#: ../../godmode/massive/massive_edit_modules.php:879
-#: ../../godmode/wizards/HostDevices.class.php:1362
+#: ../../godmode/wizards/HostDevices.class.php:1358
#: ../../include/class/CredentialStore.class.php:1204
-#: ../../include/class/CredentialStore.class.php:1496
+#: ../../include/class/CredentialStore.class.php:1505
#: ../../include/functions_snmp_browser.php:874
msgid "AES"
msgstr "AES"
@@ -18432,11 +18605,11 @@ msgstr "AES"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379
#: ../../godmode/modules/manage_network_components_form_network.php:136
-#: ../../godmode/agentes/module_manager_editor_network.php:412
+#: ../../godmode/agentes/module_manager_editor_network.php:415
#: ../../godmode/massive/massive_edit_modules.php:880
-#: ../../godmode/wizards/HostDevices.class.php:1371
+#: ../../godmode/wizards/HostDevices.class.php:1367
#: ../../include/class/CredentialStore.class.php:1213
-#: ../../include/class/CredentialStore.class.php:1510
+#: ../../include/class/CredentialStore.class.php:1519
#: ../../include/class/AgentWizard.class.php:968
#: ../../include/functions_snmp_browser.php:886
msgid "Privacy pass"
@@ -18444,47 +18617,47 @@ msgstr "Mot de passe privé"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396
-#: ../../godmode/modules/manage_network_components_form_network.php:148
-#: ../../godmode/agentes/module_manager_editor_network.php:432
+#: ../../godmode/modules/manage_network_components_form_network.php:180
+#: ../../godmode/agentes/module_manager_editor_network.php:437
#: ../../godmode/massive/massive_edit_modules.php:882
-#: ../../godmode/wizards/HostDevices.class.php:1325
+#: ../../godmode/wizards/HostDevices.class.php:1321
#: ../../include/functions_snmp_browser.php:898
msgid "Auth method"
msgstr "Méthode d'authentification"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399
-#: ../../godmode/modules/manage_network_components_form_network.php:151
-#: ../../godmode/agentes/module_manager_editor_network.php:435
+#: ../../godmode/modules/manage_network_components_form_network.php:183
+#: ../../godmode/agentes/module_manager_editor_network.php:440
#: ../../godmode/massive/massive_edit_modules.php:883
-#: ../../godmode/wizards/HostDevices.class.php:1330
-#: ../../include/class/Diagnostics.class.php:2203
+#: ../../godmode/wizards/HostDevices.class.php:1326
+#: ../../include/class/Diagnostics.class.php:2207
#: ../../include/class/CredentialStore.class.php:1170
-#: ../../include/class/CredentialStore.class.php:1462
+#: ../../include/class/CredentialStore.class.php:1471
#: ../../include/functions_snmp_browser.php:901
msgid "MD5"
msgstr "MD5"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400
-#: ../../godmode/modules/manage_network_components_form_network.php:152
-#: ../../godmode/agentes/module_manager_editor_network.php:436
+#: ../../godmode/modules/manage_network_components_form_network.php:184
+#: ../../godmode/agentes/module_manager_editor_network.php:441
#: ../../godmode/massive/massive_edit_modules.php:883
-#: ../../godmode/wizards/HostDevices.class.php:1331
+#: ../../godmode/wizards/HostDevices.class.php:1327
#: ../../include/class/CredentialStore.class.php:1171
-#: ../../include/class/CredentialStore.class.php:1464
+#: ../../include/class/CredentialStore.class.php:1473
#: ../../include/functions_snmp_browser.php:902
msgid "SHA"
msgstr "SHA"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415
-#: ../../godmode/modules/manage_network_components_form_network.php:161
-#: ../../godmode/agentes/module_manager_editor_network.php:449
+#: ../../godmode/modules/manage_network_components_form_network.php:162
+#: ../../godmode/agentes/module_manager_editor_network.php:454
#: ../../godmode/massive/massive_edit_modules.php:884
-#: ../../godmode/wizards/HostDevices.class.php:1309
+#: ../../godmode/wizards/HostDevices.class.php:1305
#: ../../include/class/CredentialStore.class.php:1125
-#: ../../include/class/CredentialStore.class.php:1414
+#: ../../include/class/CredentialStore.class.php:1423
#: ../../include/class/AgentWizard.class.php:895
#: ../../include/functions_snmp_browser.php:914
msgid "Security level"
@@ -18492,30 +18665,30 @@ msgstr "Niveau de sécurité"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418
-#: ../../godmode/modules/manage_network_components_form_network.php:164
-#: ../../godmode/agentes/module_manager_editor_network.php:452
+#: ../../godmode/modules/manage_network_components_form_network.php:165
+#: ../../godmode/agentes/module_manager_editor_network.php:457
#: ../../godmode/massive/massive_edit_modules.php:887
-#: ../../godmode/wizards/HostDevices.class.php:1314
+#: ../../godmode/wizards/HostDevices.class.php:1310
#: ../../include/functions_snmp_browser.php:917
msgid "Not auth and not privacy method"
msgstr "Méthode sans authentification ni confidentialité"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419
-#: ../../godmode/modules/manage_network_components_form_network.php:165
-#: ../../godmode/agentes/module_manager_editor_network.php:453
+#: ../../godmode/modules/manage_network_components_form_network.php:166
+#: ../../godmode/agentes/module_manager_editor_network.php:458
#: ../../godmode/massive/massive_edit_modules.php:888
-#: ../../godmode/wizards/HostDevices.class.php:1315
+#: ../../godmode/wizards/HostDevices.class.php:1311
#: ../../include/functions_snmp_browser.php:918
msgid "Auth and not privacy method"
msgstr "Méthode avec authentification et sans confidentialité"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420
-#: ../../godmode/modules/manage_network_components_form_network.php:166
-#: ../../godmode/agentes/module_manager_editor_network.php:454
+#: ../../godmode/modules/manage_network_components_form_network.php:167
+#: ../../godmode/agentes/module_manager_editor_network.php:459
#: ../../godmode/massive/massive_edit_modules.php:889
-#: ../../godmode/wizards/HostDevices.class.php:1316
+#: ../../godmode/wizards/HostDevices.class.php:1312
#: ../../include/functions_snmp_browser.php:919
msgid "Auth and privacy method"
msgstr "Méthode avec authentification et méthode de confidentialité"
@@ -18523,13 +18696,13 @@ msgstr "Méthode avec authentification et méthode de confidentialité"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835
#: ../../enterprise/operation/agentes/tag_view.php:157
#: ../../godmode/agentes/module_manager_editor_common.php:301
-#: ../../godmode/agentes/module_manager_editor_common.php:974
+#: ../../godmode/agentes/module_manager_editor_common.php:984
#: ../../godmode/massive/massive_edit_modules.php:907
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3928
-#: ../../include/ajax/heatmap.ajax.php:199 ../../include/functions_graph.php:5035
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3937
+#: ../../include/ajax/heatmap.ajax.php:228 ../../include/functions_graph.php:5045
#: ../../include/functions_treeview.php:115
#: ../../include/lib/Dashboard/Widgets/heatmap.php:334
-#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:573
+#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:572
msgid "Not assigned"
msgstr "Non assigné"
@@ -18539,15 +18712,15 @@ msgstr "Non assigné"
#: ../../godmode/modules/manage_network_components_form_wmi.php:47
#: ../../godmode/agentes/module_manager_editor_wmi.php:128
#: ../../godmode/massive/massive_edit_modules.php:921
-#: ../../include/functions_ui.php:7468
+#: ../../include/functions_ui.php:7545
#: ../../include/class/CredentialStore.class.php:973
-#: ../../include/class/CredentialStore.class.php:1345
+#: ../../include/class/CredentialStore.class.php:1351
#: ../../include/class/AgentWizard.class.php:677
msgid "Username"
msgstr "Nom d'utilisateur"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855
-#: ../../godmode/agentes/module_manager_editor_common.php:1355
+#: ../../godmode/agentes/module_manager_editor_common.php:1365
#: ../../godmode/massive/massive_edit_modules.php:927
msgid "Export target"
msgstr "Exporter cible"
@@ -18579,16 +18752,16 @@ msgid "Linked"
msgstr "Associé"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../godmode/agentes/module_manager.php:847
+#: ../../godmode/agentes/module_manager.php:854
+#: ../../godmode/agentes/module_manager.php:857
#: ../../godmode/massive/massive_edit_modules.php:1082
-#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075
+#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098
msgid "Unlinked"
msgstr "Dissociés"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000
#: ../../godmode/modules/manage_network_components_form_common.php:326
-#: ../../godmode/agentes/module_manager_editor_common.php:1385
+#: ../../godmode/agentes/module_manager_editor_common.php:1395
#: ../../godmode/massive/massive_edit_modules.php:1091
msgid "Discard unknown events"
msgstr "Supprimer événements inconnus"
@@ -18601,7 +18774,7 @@ msgstr ""
"arrêtés"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044
-#: ../../godmode/agentes/module_manager_editor_common.php:1409
+#: ../../godmode/agentes/module_manager_editor_common.php:1419
#: ../../godmode/massive/massive_edit_modules.php:1137
msgid "Timeout"
msgstr "Interruption de session"
@@ -18612,15 +18785,15 @@ msgid "Seconds that agent will wait for the execution of the module."
msgstr "Secondes que l'agent attend pour l'exécution du module."
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070
-#: ../../godmode/modules/manage_network_components_form_network.php:209
-#: ../../godmode/agentes/module_manager_editor_network.php:322
+#: ../../godmode/modules/manage_network_components_form_network.php:227
+#: ../../godmode/agentes/module_manager_editor_network.php:323
#: ../../godmode/massive/massive_edit_modules.php:1163
msgid "TCP send"
msgstr "Envoyer TCP"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073
-#: ../../godmode/modules/manage_network_components_form_network.php:216
-#: ../../godmode/agentes/module_manager_editor_network.php:323
+#: ../../godmode/modules/manage_network_components_form_network.php:234
+#: ../../godmode/agentes/module_manager_editor_network.php:324
#: ../../godmode/massive/massive_edit_modules.php:1166
msgid "TCP receive"
msgstr "Recevoir TCP"
@@ -18652,13 +18825,13 @@ msgstr "Nombre de champs"
#: ../../godmode/agentes/module_manager_editor_plugin.php:49
#: ../../godmode/massive/massive_edit_plugins.php:346
#: ../../godmode/massive/massive_edit_modules.php:1178
-#: ../../godmode/servers/plugin_registration.php:513
+#: ../../godmode/servers/plugin_registration.php:509
msgid "Plugin"
msgstr "Plugin"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103
-#: ../../godmode/modules/manage_network_components_form_network.php:223
-#: ../../godmode/agentes/module_manager_editor_network.php:474
+#: ../../godmode/modules/manage_network_components_form_network.php:241
+#: ../../godmode/agentes/module_manager_editor_network.php:479
#: ../../godmode/massive/massive_edit_plugins.php:480
#: ../../godmode/massive/massive_edit_modules.php:1196
#: ../../godmode/alerts/configure_alert_command.php:266
@@ -18667,7 +18840,7 @@ msgstr "Plugin"
#: ../../godmode/alerts/configure_alert_action.php:271
#: ../../godmode/events/event_responses.editor.php:230
#: ../../godmode/events/event_responses.editor.php:255
-#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994
+#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986
#: ../../include/class/ManageNetScanScripts.class.php:434
#: ../../include/class/ExternalTools.class.php:382
msgid "Command"
@@ -18675,33 +18848,33 @@ msgstr "Commande"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120
#: ../../enterprise/include/class/DeploymentCenter.class.php:1429
-#: ../../godmode/modules/manage_network_components_form_network.php:242
-#: ../../godmode/agentes/module_manager_editor_network.php:501
+#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/agentes/module_manager_editor_network.php:506
#: ../../godmode/massive/massive_edit_modules.php:1213
msgid "Credential identifier"
msgstr "Identifiant des idéntifiants"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135
-#: ../../godmode/modules/manage_network_components_form_network.php:258
-#: ../../godmode/agentes/module_manager_editor_network.php:534
+#: ../../godmode/modules/manage_network_components_form_network.php:276
+#: ../../godmode/agentes/module_manager_editor_network.php:539
#: ../../godmode/massive/massive_edit_modules.php:1228
msgid "Inherited"
msgstr "Hérité"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136
-#: ../../godmode/modules/manage_network_components_form_network.php:259
+#: ../../godmode/modules/manage_network_components_form_network.php:277
#: ../../godmode/massive/massive_edit_modules.php:1229
msgid "Linux"
msgstr "Linux"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137
-#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/modules/manage_network_components_form_network.php:278
#: ../../godmode/massive/massive_edit_modules.php:1230
msgid "Windows"
msgstr "Windows"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140
-#: ../../godmode/modules/manage_network_components_form_network.php:263
+#: ../../godmode/modules/manage_network_components_form_network.php:281
#: ../../godmode/massive/massive_edit_modules.php:1233
msgid "Target OS"
msgstr "Système d’exploitation cible"
@@ -18726,11 +18899,11 @@ msgstr "Contrôle de sécurité correct"
msgid "Security check is fail."
msgstr "Problème de contrôle de sécurité"
-#: ../../enterprise/godmode/admin_access_logs.php:213
+#: ../../enterprise/godmode/admin_access_logs.php:216
msgid "Extended info:"
msgstr "Information supplémentaire :"
-#: ../../enterprise/godmode/admin_access_logs.php:221
+#: ../../enterprise/godmode/admin_access_logs.php:224
msgid "Changes:"
msgstr "Changements :"
@@ -18741,7 +18914,7 @@ msgstr "ACL de groupe"
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:414
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2723
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
msgid "Condition"
msgstr "Condition"
@@ -18780,11 +18953,11 @@ msgstr "Nom de l’alerte"
#: ../../enterprise/operation/agentes/policy_view.php:262
#: ../../godmode/snmpconsole/snmp_alert.php:1912
#: ../../godmode/alerts/alert_view.php:105
-#: ../../include/functions_reporting_html.php:5494
+#: ../../include/functions_reporting_html.php:5522
#: ../../include/ajax/alert_list.ajax.php:295
#: ../../include/ajax/alert_list.ajax.php:320
-#: ../../include/functions_treeview.php:442
-#: ../../include/class/AgentsAlerts.class.php:912
+#: ../../include/functions_treeview.php:446
+#: ../../include/class/AgentsAlerts.class.php:913
msgid "Last fired"
msgstr "Déclenchée pour la dernière fois"
@@ -18793,9 +18966,9 @@ msgstr "Déclenchée pour la dernière fois"
#: ../../enterprise/operation/agentes/policy_view.php:349
#: ../../godmode/alerts/alert_list.list.php:648
#: ../../godmode/alerts/alert_view.php:114 ../../mobile/operation/alerts.php:327
-#: ../../include/functions_ui.php:1420
-#: ../../include/class/AgentsAlerts.class.php:959
-#: ../../include/functions_reporting.php:13152
+#: ../../include/functions_ui.php:1463
+#: ../../include/class/AgentsAlerts.class.php:960
+#: ../../include/functions_reporting.php:13225
msgid "Alert disabled"
msgstr "Alerte désactivée"
@@ -18831,26 +19004,26 @@ msgstr "Générateur d’alertes d’inventaire"
#: ../../enterprise/godmode/alerts/alert_inventory.php:92
#: ../../godmode/agentes/planned_downtime.editor.php:58
-#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1933
-#: ../../include/functions_html.php:1934 ../../include/functions_html.php:2044
-#: ../../include/functions_html.php:2045 ../../include/functions_html.php:2227
-#: ../../include/functions_html.php:2228 ../../include/functions_html.php:6713
-#: ../../include/functions_html.php:6714
+#: ../../godmode/alerts/alert_list.php:517 ../../include/functions_html.php:1944
+#: ../../include/functions_html.php:1945 ../../include/functions_html.php:2055
+#: ../../include/functions_html.php:2056 ../../include/functions_html.php:2235
+#: ../../include/functions_html.php:2236 ../../include/functions_html.php:6741
+#: ../../include/functions_html.php:6742
#: ../../include/class/SnmpConsole.class.php:196
#: ../../operation/snmpconsole/snmp_statistics.php:67
-#: ../../operation/events/events.php:1592
+#: ../../operation/events/events.php:1646
msgid "List"
msgstr "Liste"
#: ../../enterprise/godmode/alerts/alert_inventory.php:111
-#: ../../godmode/reporting/visual_console_builder.php:835
+#: ../../godmode/reporting/visual_console_builder.php:843
#: ../../operation/visual_console/legacy_view.php:179
msgid "Builder"
msgstr "Outil de conception"
#: ../../enterprise/godmode/services/services.massive.meta.php:54
#: ../../enterprise/godmode/services/services.massive.elements.php:106
-#: ../../godmode/massive/massive_edit_agents.php:985
+#: ../../godmode/massive/massive_edit_agents.php:1002
msgid "Not available"
msgstr "Non disponible"
@@ -18954,7 +19127,7 @@ msgstr "Modifier des éléments"
#: ../../enterprise/godmode/services/services.service.php:495
#: ../../enterprise/godmode/services/services.elements.php:894
#: ../../enterprise/operation/services/services.php:193
-#: ../../godmode/reporting/reporting_builder.list_items.php:816
+#: ../../godmode/reporting/reporting_builder.list_items.php:817
msgid "Delete items"
msgstr "Supprimer les éléments"
@@ -19009,7 +19182,7 @@ msgstr "Agent pour stocker des données"
#: ../../enterprise/tools/ipam/ipam_list.php:779
#: ../../godmode/wizards/HostDevices.class.php:808
#: ../../godmode/wizards/DiscoveryTaskList.class.php:717
-#: ../../include/class/CustomNetScan.class.php:535
+#: ../../include/class/CustomNetScan.class.php:537
msgid "Manual"
msgstr "Manuel"
@@ -19104,61 +19277,6 @@ msgstr "Alerte de service inconnue"
msgid "S.L.A. critical service alert"
msgstr "Alerte de service critique S.L.A."
-#: ../../enterprise/godmode/services/services.service.php:1025
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608
-#: ../../enterprise/include/functions_reporting_csv.php:1589
-#: ../../enterprise/include/functions_reporting_csv.php:1635
-#: ../../enterprise/include/functions_reporting_csv.php:1953
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1704
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1756
-#: ../../enterprise/include/class/DatabaseHA.class.php:390
-#: ../../enterprise/include/class/DatabaseHA.class.php:625
-#: ../../enterprise/include/class/DatabaseHA.class.php:727
-#: ../../enterprise/include/class/AgentRepository.class.php:1000
-#: ../../enterprise/include/class/LogSource.class.php:823
-#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142
-#: ../../enterprise/include/class/ManageBackups.class.php:298
-#: ../../enterprise/include/class/ManageBackups.class.php:454
-#: ../../enterprise/include/class/NewDatabaseHA.class.php:182
-#: ../../enterprise/include/class/NewDatabaseHA.class.php:225
-#: ../../enterprise/include/functions_reporting.php:1876
-#: ../../enterprise/include/functions_reporting.php:2949
-#: ../../enterprise/include/functions_reporting.php:3206
-#: ../../enterprise/include/functions_reporting.php:3939
-#: ../../enterprise/include/functions_reporting.php:4208
-#: ../../enterprise/include/functions_reporting.php:4854
-#: ../../enterprise/include/functions_reporting.php:6176
-#: ../../enterprise/include/functions_reporting.php:6214
-#: ../../enterprise/include/functions_services.php:2091
-#: ../../enterprise/include/functions_ux_console.php:483
-#: ../../enterprise/operation/agentes/ux_console_view.php:186
-#: ../../enterprise/operation/agentes/ux_console_view.php:391
-#: ../../enterprise/operation/agentes/wux_console_view.php:407
-#: ../../extensions/module_groups.php:53
-#: ../../godmode/massive/massive_operations.php:415
-#: ../../godmode/setup/setup_general.php:1018
-#: ../../godmode/setup/setup_general.php:1036
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2734
-#: ../../include/functions_reporting_html.php:667
-#: ../../include/functions_reporting_html.php:862
-#: ../../include/functions_reporting_html.php:3569
-#: ../../include/functions_reporting_html.php:4866
-#: ../../include/functions_db.php:1974
-#: ../../include/class/ConfigPEN.class.php:674
-#: ../../include/class/ConfigPEN.class.php:698
-#: ../../include/class/SatelliteAgent.class.php:1105
-#: ../../include/class/HelpFeedBack.class.php:370
-#: ../../include/class/CredentialStore.class.php:1646
-#: ../../include/class/ModuleTemplates.class.php:1359
-#: ../../include/class/WelcomeWindow.class.php:173
-#: ../../include/class/AgentWizard.class.php:6233
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:362
-#: ../../operation/agentes/pandora_networkmap.editor.php:745
-#: ../../operation/snmpconsole/snmp_browser.php:639
-msgid "OK"
-msgstr "OK"
-
#: ../../enterprise/godmode/services/services.service.php:1028
msgid ""
"This change in the service configuration will delete the history of the "
@@ -19184,8 +19302,8 @@ msgstr "Service invalide"
#: ../../enterprise/include/functions_reporting.php:3500
#: ../../enterprise/include/functions_reporting.php:4476
#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1075
-#: ../../include/functions_reporting.php:9702
-#: ../../operation/agentes/pandora_networkmap.php:789
+#: ../../include/functions_reporting.php:9711
+#: ../../operation/agentes/pandora_networkmap.php:790
msgid "Dynamic"
msgstr "Dynamique"
@@ -19381,7 +19499,7 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_history.php:416
msgid ""
"Automatically create partitions on specific database IDB files (tagente_datos, "
-"tagente_datos_string, tevento). Monthly partitions."
+"tagente_datos_string). Monthly partitions."
msgstr ""
"Créez automatiquement des partitions sur des fichiers IDB de base de données "
"spécifiques (tagent_données, tagent_données_string, tevent). Partitions "
@@ -19602,12 +19720,12 @@ msgid "Yes without changing status"
msgstr "Oui sans changer d’état"
#: ../../enterprise/godmode/setup/setup.php:81
-#: ../../include/functions_config.php:430
+#: ../../include/functions_config.php:438
msgid "Forward SNMP traps to agent (if exist)"
msgstr "Transférer les déroutements SNMP vers l'agent (s'il existe)"
#: ../../enterprise/godmode/setup/setup.php:92
-#: ../../include/functions_config.php:434
+#: ../../include/functions_config.php:442
msgid "Use Enterprise ACL System"
msgstr "Utiliser le Système ACL Enterprise"
@@ -19641,7 +19759,7 @@ msgid "Metaconsole DB password"
msgstr "Mot de passe de la BD de la Métaconsole"
#: ../../enterprise/godmode/setup/setup.php:210
-#: ../../include/functions_config.php:470
+#: ../../include/functions_config.php:478
msgid "Activate Log Collector"
msgstr "Activer le collecteur de journaux"
@@ -19766,7 +19884,7 @@ msgid "Port of ElasticSearch server"
msgstr "Port du serveur ElasticSearch"
#: ../../enterprise/godmode/setup/setup_log_collector.php:77
-#: ../../include/functions_config.php:1629
+#: ../../include/functions_config.php:1641
msgid "Days to purge old information"
msgstr "Nombre de jours avant nettoyage d'information ancienne"
@@ -19798,21 +19916,21 @@ msgstr "Fonction PHP"
#: ../../enterprise/include/functions_tasklist.php:283
#: ../../enterprise/include/functions_tasklist.php:370
#: ../../enterprise/operation/reporting/custom_reporting.php:20
-#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306
-#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613
+#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307
+#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613
#: ../../include/functions_cron.php:704 ../../operation/search_users.php:45
msgid "Email"
msgstr "Courriel"
#: ../../enterprise/godmode/setup/setup_auth.php:194
#: ../../enterprise/godmode/setup/setup_auth.php:549
-#: ../../enterprise/godmode/setup/setup_auth.php:1357
+#: ../../enterprise/godmode/setup/setup_auth.php:1574
msgid "Profiles selected"
msgstr "Profils sélectionnés"
#: ../../enterprise/godmode/setup/setup_auth.php:195
#: ../../enterprise/godmode/setup/setup_auth.php:550
-#: ../../enterprise/godmode/setup/setup_auth.php:1358
+#: ../../enterprise/godmode/setup/setup_auth.php:1575
msgid "Groups selected"
msgstr "Groupes sélectionnés"
@@ -19831,15 +19949,15 @@ msgstr "Attributs LDAP"
#: ../../enterprise/godmode/setup/setup_auth.php:256
#: ../../enterprise/godmode/setup/setup_auth.php:553
#: ../../enterprise/godmode/setup/setup_auth.php:605
-#: ../../enterprise/godmode/setup/setup_auth.php:1361
-#: ../../enterprise/godmode/setup/setup_auth.php:1415
+#: ../../enterprise/godmode/setup/setup_auth.php:1578
+#: ../../enterprise/godmode/setup/setup_auth.php:1632
#: ../../godmode/setup/snmp_wizard.php:44
msgid "OP"
msgstr "OP"
#: ../../enterprise/godmode/setup/setup_auth.php:251
#: ../../enterprise/godmode/setup/setup_auth.php:601
-#: ../../enterprise/godmode/setup/setup_auth.php:1411
+#: ../../enterprise/godmode/setup/setup_auth.php:1628
#: ../../enterprise/godmode/setup/setup_acl.php:68
#: ../../godmode/groups/configure_group.php:108
#: ../../godmode/groups/group_list.php:377
@@ -19847,19 +19965,20 @@ msgstr "OP"
#: ../../godmode/users/profile_list.php:332
#: ../../godmode/users/configure_profile.php:86
#: ../../godmode/users/user_list.php:297
-#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165
+#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165
msgid "Profiles"
msgstr "Profils"
#: ../../enterprise/godmode/setup/setup_auth.php:264
#: ../../enterprise/godmode/setup/setup_auth.php:612
-#: ../../enterprise/godmode/setup/setup_auth.php:1422
+#: ../../enterprise/godmode/setup/setup_auth.php:1112
+#: ../../enterprise/godmode/setup/setup_auth.php:1639
msgid "Select profile"
msgstr "Sélectionner un profil"
#: ../../enterprise/godmode/setup/setup_auth.php:309
#: ../../enterprise/godmode/setup/setup_auth.php:650
-#: ../../enterprise/godmode/setup/setup_auth.php:1465
+#: ../../enterprise/godmode/setup/setup_auth.php:1682
msgid "Add new permissions"
msgstr "Ajouter de nouvelles autorisations"
@@ -19872,57 +19991,63 @@ msgid "Change timezone visual"
msgstr "Modifier la visualisation du fuseau horaire"
#: ../../enterprise/godmode/setup/setup_auth.php:478
-#: ../../enterprise/godmode/setup/setup_auth.php:1286
+#: ../../enterprise/godmode/setup/setup_auth.php:1503
msgid "New users will be able to log in to the nodes."
msgstr "Les nouveaux utilisateurs pourront se connecter aux nœuds."
#: ../../enterprise/godmode/setup/setup_auth.php:552
#: ../../enterprise/godmode/setup/setup_auth.php:604
-#: ../../enterprise/godmode/setup/setup_auth.php:1360
-#: ../../enterprise/godmode/setup/setup_auth.php:1414
+#: ../../enterprise/godmode/setup/setup_auth.php:1577
+#: ../../enterprise/godmode/setup/setup_auth.php:1631
msgid "AD Groups"
msgstr "Groupes AD"
-#: ../../enterprise/godmode/setup/setup_auth.php:831
-#: ../../enterprise/godmode/setup/setup_auth.php:947
+#: ../../enterprise/godmode/setup/setup_auth.php:661
+msgid "Recursive group search"
+msgstr "Recherche de groupe récursive"
+
+#: ../../enterprise/godmode/setup/setup_auth.php:837
+#: ../../enterprise/godmode/setup/setup_auth.php:956
+#: ../../enterprise/godmode/setup/setup_auth.php:1067
msgid "You must select a profile from the list of profiles."
msgstr "Vous devez sélectionner un profil de la liste de profils."
-#: ../../enterprise/godmode/setup/setup_auth.php:836
-#: ../../enterprise/godmode/setup/setup_auth.php:952
+#: ../../enterprise/godmode/setup/setup_auth.php:842
+#: ../../enterprise/godmode/setup/setup_auth.php:961
+#: ../../enterprise/godmode/setup/setup_auth.php:1071
msgid "You must select a group from the list of groups."
msgstr "Sélectionnez un groupe dans la liste des groupes."
-#: ../../enterprise/godmode/setup/setup_auth.php:1112
-#: ../../include/functions_config.php:719
+#: ../../enterprise/godmode/setup/setup_auth.php:1329
+#: ../../include/functions_config.php:731
msgid "MySQL host"
msgstr "Hôte MySQL"
-#: ../../enterprise/godmode/setup/setup_auth.php:1175
+#: ../../enterprise/godmode/setup/setup_auth.php:1392
msgid "SimpleSAML path"
msgstr "Chemin SimpleSAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1176
+#: ../../enterprise/godmode/setup/setup_auth.php:1393
msgid "Directory where your 'simplesamlphp' folder is located."
msgstr "Répertoire où se trouve votre dossier 'simplesamlphp'."
-#: ../../enterprise/godmode/setup/setup_auth.php:1182
+#: ../../enterprise/godmode/setup/setup_auth.php:1399
msgid "SAML source"
msgstr "Source Saml"
-#: ../../enterprise/godmode/setup/setup_auth.php:1183
+#: ../../enterprise/godmode/setup/setup_auth.php:1400
msgid "Authsource name, e.g. 'example-userpass'"
msgstr "Nom Authsource, par exemple 'example-userpass'"
-#: ../../enterprise/godmode/setup/setup_auth.php:1190
+#: ../../enterprise/godmode/setup/setup_auth.php:1407
msgid "SAML user id attribute"
msgstr "Attribut d’ID utilisateur SAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1195
+#: ../../enterprise/godmode/setup/setup_auth.php:1412
msgid "SAML mail attribute"
msgstr "Attribut de messagerie SAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1196
+#: ../../enterprise/godmode/setup/setup_auth.php:1413
msgid ""
"SAML field where search for the user email (while autocreate remote users is "
"enabled)"
@@ -19930,11 +20055,11 @@ msgstr ""
"Champ SAML où rechercher l’e-mail de l’utilisateur (alors que la création "
"automatique d’utilisateurs distants est activée)"
-#: ../../enterprise/godmode/setup/setup_auth.php:1203
+#: ../../enterprise/godmode/setup/setup_auth.php:1420
msgid "SAML group name attribute"
msgstr "Attribut de nom de groupe SAML"
-#: ../../enterprise/godmode/setup/setup_auth.php:1204
+#: ../../enterprise/godmode/setup/setup_auth.php:1421
msgid ""
"SAML field where search for the group name (while autocreate remote users is "
"enabled)"
@@ -19942,23 +20067,23 @@ msgstr ""
"Champ SAML où rechercher le nom du groupe (alors que la création automatique "
"d’utilisateurs distants est activée)"
-#: ../../enterprise/godmode/setup/setup_auth.php:1211
+#: ../../enterprise/godmode/setup/setup_auth.php:1428
msgid "Simple attribute / Multivalue attribute"
msgstr "Attribut simple / Attribut à valeurs multiples"
-#: ../../enterprise/godmode/setup/setup_auth.php:1216
+#: ../../enterprise/godmode/setup/setup_auth.php:1433
msgid "SAML profiles and tag attribute"
msgstr "Profils SAML et attribut de l’étiquette"
-#: ../../enterprise/godmode/setup/setup_auth.php:1221
+#: ../../enterprise/godmode/setup/setup_auth.php:1438
msgid "Profile attribute"
msgstr "Attribut de profil"
-#: ../../enterprise/godmode/setup/setup_auth.php:1226
+#: ../../enterprise/godmode/setup/setup_auth.php:1443
msgid "Tag attribute"
msgstr "Attribut d’étiquette"
-#: ../../enterprise/godmode/setup/setup_auth.php:1231
+#: ../../enterprise/godmode/setup/setup_auth.php:1448
msgid "SAML profile and tags prefix"
msgstr "Profil SAML et préfixe des étiquettes"
@@ -20036,7 +20161,7 @@ msgstr "Ajouter un élément personnalisé au profil"
#: ../../godmode/massive/massive_delete_profiles.php:152
#: ../../godmode/massive/massive_add_profiles.php:202
#: ../../include/functions_profile.php:203
-#: ../../operation/users/user_edit.php:998
+#: ../../operation/users/user_edit.php:995
msgid "Profile name"
msgstr "Nom du profil"
@@ -20164,10 +20289,12 @@ msgstr "Groupe cible"
#: ../../godmode/reporting/create_container.php:746
#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195
#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309
-#: ../../include/ajax/heatmap.ajax.php:129
-#: ../../include/ajax/heatmap.ajax.php:310
+#: ../../mobile/operation/server_status.php:185
+#: ../../mobile/operation/server_status.php:186
+#: ../../include/ajax/heatmap.ajax.php:158
+#: ../../include/ajax/heatmap.ajax.php:438
#: ../../include/lib/Dashboard/Widgets/heatmap.php:301
-#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350
+#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353
msgid "Tag"
msgstr "Étiquette"
@@ -20187,8 +20314,8 @@ msgstr "Filtrer par étiquette"
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:313
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:822
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:824
-#: ../../include/functions_snmp_browser.php:1653
-#: ../../include/functions_snmp_browser.php:1660
+#: ../../include/functions_snmp_browser.php:1662
+#: ../../include/functions_snmp_browser.php:1669
msgid "Select all"
msgstr "Tout sélectionner"
@@ -20367,15 +20494,18 @@ msgstr "Assistant du modèle"
#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133
#: ../../enterprise/godmode/reporting/visual_console_template.php:136
#: ../../extensions/resource_exportation.php:459
+#: ../../godmode/users/configure_user.php:59
#: ../../godmode/users/user_management.php:38
#: ../../godmode/massive/massive_edit_users.php:274
-#: ../../godmode/reporting/visual_console_builder.php:869
+#: ../../godmode/reporting/visual_console_builder.php:877
#: ../../godmode/reporting/map_builder.php:133
#: ../../godmode/reporting/visual_console_favorite.php:130
+#: ../../include/auth/mysql.php:807
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360
#: ../../operation/users/user_edit.php:469
-#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299
-#: ../../operation/menu.php:306
+#: ../../operation/visual_console/view.php:253
+#: ../../operation/visual_console/legacy_view.php:219
+#: ../../operation/menu.php:299 ../../operation/menu.php:306
msgid "Visual console"
msgstr "Console visuelle"
@@ -20476,7 +20606,7 @@ msgstr "Éditeur de modèle de graphique"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:155
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61
#: ../../godmode/modules/manage_nc_groups.php:119
-#: ../../godmode/netflow/nf_edit_form.php:119
+#: ../../godmode/netflow/nf_edit_form.php:146
#: ../../godmode/events/event_edit_filter.php:232
msgid "Not updated. Blank name"
msgstr "Erreur de mise à jour. Nom en blanc."
@@ -20495,8 +20625,9 @@ msgstr "Erreur mise à jour du modèle"
#: ../../godmode/reporting/visual_console_builder.wizard.php:173
#: ../../godmode/events/event_responses.editor.php:186
#: ../../include/functions_visual_map_editor.php:97
+#: ../../include/functions_visual_map_editor.php:698
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930
#: ../../include/functions_reports.php:1267
msgid "Width"
msgstr "Largeur"
@@ -20505,18 +20636,18 @@ msgstr "Largeur"
#: ../../godmode/setup/gis_step_2.php:399
#: ../../godmode/reporting/visual_console_builder.wizard.php:175
#: ../../godmode/events/event_responses.editor.php:198
-#: ../../include/functions_visual_map_editor.php:672
+#: ../../include/functions_visual_map_editor.php:712
#: ../../include/functions_reports.php:1283
#: ../../include/functions_reports.php:1383
msgid "Height"
msgstr "Hauteur"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:235
-#: ../../enterprise/operation/log/log_viewer.php:672
+#: ../../enterprise/operation/log/log_viewer.php:670
#: ../../godmode/setup/performance.php:627
#: ../../godmode/reporting/create_container.php:418
#: ../../include/functions.php:2755 ../../include/functions.php:3423
-#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146
+#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146
#: ../../operation/gis_maps/render_view.php:157
msgid "1 hour"
msgstr "1 heure"
@@ -20531,19 +20662,19 @@ msgid "3 hours"
msgstr "3 heures"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:238
-#: ../../include/ajax/module.php:222
+#: ../../include/ajax/module.php:245
msgid "6 hours"
msgstr "6 heures"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:239
-#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223
+#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246
msgid "12 hours"
msgstr "12 heures"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:240
-#: ../../enterprise/operation/log/log_viewer.php:676
+#: ../../enterprise/operation/log/log_viewer.php:674
#: ../../godmode/reporting/create_container.php:422
-#: ../../include/functions.php:2758 ../../include/ajax/module.php:224
+#: ../../include/functions.php:2758 ../../include/ajax/module.php:247
#: ../../include/ajax/graph.ajax.php:150
#: ../../include/class/AuditLog.class.php:211
msgid "1 day"
@@ -20564,9 +20695,9 @@ msgid "Last week"
msgstr "La semaine dernière"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:244
-#: ../../enterprise/operation/log/log_viewer.php:680
+#: ../../enterprise/operation/log/log_viewer.php:678
#: ../../godmode/reporting/create_container.php:426
-#: ../../include/functions.php:2760 ../../include/ajax/module.php:226
+#: ../../include/functions.php:2760 ../../include/ajax/module.php:249
#: ../../include/ajax/graph.ajax.php:154
#: ../../include/class/AuditLog.class.php:213
msgid "15 days"
@@ -20582,12 +20713,12 @@ msgid "2 months"
msgstr "2 mois"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:247
-#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216
+#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216
msgid "6 months"
msgstr "6 mois"
#: ../../enterprise/godmode/reporting/graph_template_editor.php:248
-#: ../../include/functions.php:2764 ../../include/ajax/module.php:230
+#: ../../include/functions.php:2764 ../../include/ajax/module.php:253
msgid "1 year"
msgstr "1 an"
@@ -20617,7 +20748,7 @@ msgstr "1 an"
#: ../../godmode/reporting/visual_console_builder.elements.php:123
#: ../../godmode/reporting/visual_console_builder.wizard.php:246
#: ../../godmode/reporting/graph_builder.main.php:189
-#: ../../include/functions_visual_map_editor.php:786
+#: ../../include/functions_visual_map_editor.php:826
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629
@@ -20650,7 +20781,7 @@ msgstr "Top N"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
#: ../../enterprise/include/functions_reporting_csv.php:950
#: ../../include/functions_reports.php:801
-#: ../../include/functions_reporting.php:3560
+#: ../../include/functions_reporting.php:3569
msgid "Exception"
msgstr "Exception"
@@ -20699,7 +20830,7 @@ msgstr "Dernière valeur"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074
#: ../../godmode/reporting/reporting_builder.item_editor.php:1419
-#: ../../godmode/reporting/reporting_builder.item_editor.php:7472
+#: ../../godmode/reporting/reporting_builder.item_editor.php:7477
msgid ""
"Warning: period 0 reports cannot be used to show information back in time. "
"Information contained in this kind of reports will be always reporting the "
@@ -20720,13 +20851,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:247
#: ../../enterprise/include/functions_reporting_csv.php:1080
-#: ../../include/functions_reporting_html.php:5009
+#: ../../include/functions_reporting_html.php:5037
msgid "Sum"
msgstr "Total"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:259
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:389
-#: ../../include/functions_reporting.php:10584
+#: ../../include/functions_reporting.php:10593
msgid "Rate"
msgstr "Taux"
@@ -20736,25 +20867,25 @@ msgstr "Taux"
#: ../../enterprise/operation/services/services.list.php:764
#: ../../godmode/snmpconsole/snmp_alert.php:2159
#: ../../include/class/ModuleTemplates.class.php:943
-#: ../../operation/events/events.php:2548
+#: ../../operation/events/events.php:2602
msgid "Delete selected"
msgstr "Effacer les éléments sélectionnés"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:310
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2491
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2500
msgid "Group by agent"
msgstr "Regrouper par agent"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:322
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3196
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3205
msgid "Show in the same row"
msgstr "Afficher dans la même rangée"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:323
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3198
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3207
msgid "Show one module per row with all its operations"
msgstr "Afficher un module par rangée avec toutes ses opérations"
@@ -20762,10 +20893,10 @@ msgstr "Afficher un module par rangée avec toutes ses opérations"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015
-#: ../../enterprise/operation/log/log_viewer.php:570
+#: ../../enterprise/operation/log/log_viewer.php:568
#: ../../godmode/netflow/nf_item_list.php:173
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2505
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3219
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2514
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3228
#: ../../include/lib/Dashboard/Widgets/top_n.php:267
msgid "Order"
msgstr "Ordre"
@@ -20775,9 +20906,9 @@ msgstr "Ordre"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441
-#: ../../enterprise/operation/log/log_viewer.php:566
+#: ../../enterprise/operation/log/log_viewer.php:564
#: ../../godmode/reporting/reporting_builder.item_editor.php:64
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2508
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2517
#: ../../include/lib/Dashboard/Widgets/top_n.php:261
msgid "Ascending"
msgstr "Croissant"
@@ -20787,9 +20918,9 @@ msgstr "Croissant"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448
-#: ../../enterprise/operation/log/log_viewer.php:565
+#: ../../enterprise/operation/log/log_viewer.php:563
#: ../../godmode/reporting/reporting_builder.item_editor.php:65
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2515
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2524
#: ../../include/lib/Dashboard/Widgets/top_n.php:262
msgid "Descending"
msgstr "Décroissant"
@@ -20797,30 +20928,30 @@ msgstr "Décroissant"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:344
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2522
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2531
#: ../../include/lib/Dashboard/Widgets/top_n.php:263
msgid "By agent name"
msgstr "Par nom d'agent"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:352
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2534
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2543
#: ../../include/lib/Dashboard/Widgets/top_n.php:249
msgid "Quantity (n)"
msgstr "Quantité (n)"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:364
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2564
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2573
#: ../../include/lib/Dashboard/Widgets/top_n.php:286
-#: ../../operation/agentes/ver_agente.php:1646
+#: ../../operation/agentes/ver_agente.php:1642
msgid "Display"
msgstr "Afficher"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2727
-#: ../../include/functions_reporting.php:3582
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2736
+#: ../../include/functions_reporting.php:3591
msgid "Everything"
msgstr "Tout"
@@ -20836,22 +20967,22 @@ msgstr "<"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:427
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2735
-#: ../../include/functions_reporting_html.php:3582
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2744
+#: ../../include/functions_reporting_html.php:3610
msgid "Not OK"
msgstr "Pas OK"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:435
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2747
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2756
msgid "Show graph"
msgstr "Afficher le graphique"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:447
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2857
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2866
msgid "Show resume"
msgstr "Afficher le résumé"
@@ -20868,7 +20999,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3641
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3650
msgid "Show item in landscape format (only PDF)"
msgstr "Afficher l’élément au format paysage (uniquement PDF)"
@@ -20876,7 +21007,7 @@ msgstr "Afficher l’élément au format paysage (uniquement PDF)"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3650
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3659
msgid "Page break at the end of the item (only PDF)"
msgstr "Saut de page à la fin de l’article (UNIQUEMENT PDF)"
@@ -20889,13 +21020,13 @@ msgid "Page orientation"
msgstr "Orientation de la page"
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93
-#: ../../include/functions_visual_map_editor.php:841
+#: ../../include/functions_visual_map_editor.php:889
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386
msgid "Vertical"
msgstr "Vertical"
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100
-#: ../../include/functions_visual_map_editor.php:842
+#: ../../include/functions_visual_map_editor.php:890
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510
@@ -20931,20 +21062,20 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2837
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2846
msgid "Show address instead module name"
msgstr "Afficher adresse au lieu du nom du module"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2838
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2847
msgid "Show the main address of agent."
msgstr "Afficher l'adresse principale de l'agent"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294
#: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2385
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2394
#: ../../include/functions_reports.php:821
msgid "SQL query"
msgstr "Requête SQL"
@@ -20952,14 +21083,14 @@ msgstr "Requête SQL"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3275
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3284
msgid "Failover mode"
msgstr "Mode de basculement"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3276
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3285
msgid ""
"SLA calculation must be performed taking into account the failover modules "
"assigned to the primary module"
@@ -20970,72 +21101,72 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3295
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3304
msgid "Failover type"
msgstr "Type de basculement"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3300
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3309
msgid "Failover normal"
msgstr "Basculement normal"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3312
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3321
msgid "Failover simple"
msgstr "Basculement simple"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2595
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
msgid "Graph render"
msgstr "Rendu graphique"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2601
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2610
msgid "Avg, max & min"
msgstr "Moyenne, max & min"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2602
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2611
msgid "Max only"
msgstr "Max seulement"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2603
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2612
msgid "Min only"
msgstr "Min seulement"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2613
msgid "Avg only"
msgstr "Moy uniquement"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2688
-#: ../../mobile/operation/module_graph.php:436
-#: ../../operation/agentes/stat_win.php:369
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2697
+#: ../../mobile/operation/module_graph.php:437
+#: ../../operation/agentes/stat_win.php:377
msgid "Time compare (Overlapped)"
msgstr "Comparaison de temps (chevauché)"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2651
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2660
msgid "Full resolution graph (TIP)"
msgstr "Graphique en pleine résolution (TIP)"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2652
-#: ../../operation/agentes/stat_win.php:397
-#: ../../operation/agentes/interface_traffic_graph_win.php:242
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2661
+#: ../../operation/agentes/stat_win.php:405
+#: ../../operation/agentes/interface_traffic_graph_win.php:258
msgid ""
"TIP mode charts do not support average - maximum - minimum series, you can "
"only enable TIP or average, maximum or minimum series"
@@ -21046,15 +21177,15 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2671
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2680
msgid "Show threshold"
msgstr "Afficher le seuil"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2703
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2712
#: ../../godmode/reporting/graph_builder.main.php:250
-#: ../../include/functions.php:4189 ../../include/functions.php:4197
+#: ../../include/functions.php:4215 ../../include/functions.php:4223
msgid "Percentil"
msgstr "Centile"
@@ -21069,19 +21200,19 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2966
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2975
msgid "Show Summary group"
msgstr "Afficher groupe récapitulatif"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3052
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3061
msgid "Event Status"
msgstr "État de l'événement"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3113
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3122
#: ../../operation/agentes/tactical.php:276
msgid "Event graphs"
msgstr "Graphiques d'événements"
@@ -21120,37 +21251,37 @@ msgstr "Période de projection"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2412
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2421
msgid "Serialized header"
msgstr "En-tête sérialisé"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2413
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2422
msgid "The separator character is |"
msgstr "Le caractère séparateur est |"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2449
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2458
msgid "Field separator"
msgstr "Champ séparateur"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2450
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2459
msgid "Separator for different fields in the serialized text chain"
msgstr "Séparateur pour des champs différents dans la chaîne de texte en série"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2470
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2479
msgid "Line separator"
msgstr "Séparateur de ligne"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2471
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2480
msgid ""
"Separator in different lines (composed by fields) of the serialized text chain"
msgstr ""
@@ -21159,13 +21290,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3478
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3487
msgid "Uncompress module"
msgstr "Décompresser le module"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3479
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3488
msgid "Use uncompressed module data."
msgstr "Utiliser des données de module non compressées."
@@ -21245,7 +21376,7 @@ msgstr "Inverse SLA"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3220
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3229
msgid "SLA items sorted by fulfillment value"
msgstr "Éléments SLA classés par valeur d'accomplissement"
@@ -21257,11 +21388,11 @@ msgstr "Affiche seulement des SLA erronés"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3328
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3337
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1439
-#: ../../include/functions_reporting_html.php:4845
-#: ../../include/functions_reporting_html.php:5117
-#: ../../include/functions_reporting_html.php:5273
+#: ../../include/functions_reporting_html.php:4873
+#: ../../include/functions_reporting_html.php:5145
+#: ../../include/functions_reporting_html.php:5301
#: ../../include/functions_netflow.php:1202
#: ../../include/lib/Dashboard/Widgets/tactical.php:299
msgid "Summary"
@@ -21293,17 +21424,17 @@ msgstr "Modifier le modèle"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:215
-#: ../../enterprise/include/functions_reporting.php:8044
-#: ../../enterprise/include/functions_reporting.php:8110
-#: ../../godmode/reporting/reporting_builder.php:3642
+#: ../../enterprise/include/functions_reporting.php:8053
+#: ../../enterprise/include/functions_reporting.php:8119
+#: ../../godmode/reporting/reporting_builder.php:3659
#: ../../operation/reporting/reporting_viewer.php:156
msgid "Item editor"
msgstr "Éditeur d'éléments"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:159
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:202
-#: ../../godmode/reporting/reporting_builder.php:3638
-#: ../../include/functions_menu.php:587
+#: ../../godmode/reporting/reporting_builder.php:3655
+#: ../../include/functions_menu.php:591
#: ../../operation/reporting/reporting_viewer.php:147
msgid "List items"
msgstr "Liste d'éléments"
@@ -21317,9 +21448,9 @@ msgstr "Liste de modèles"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:334
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:361
#: ../../godmode/reporting/reporting_builder.php:561
-#: ../../godmode/reporting/reporting_builder.php:3601
-#: ../../godmode/reporting/reporting_builder.php:3699
-#: ../../godmode/reporting/reporting_builder.php:3727
+#: ../../godmode/reporting/reporting_builder.php:3618
+#: ../../godmode/reporting/reporting_builder.php:3716
+#: ../../godmode/reporting/reporting_builder.php:3744
#: ../../operation/reporting/reporting_viewer.php:222
msgid "Custom reports"
msgstr "Rapports personnalisés"
@@ -21396,12 +21527,12 @@ msgid "Set start and end date"
msgstr "Définir les dates de début et de fin"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:768
-#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:198
+#: ../../include/ajax/module.php:293 ../../operation/agentes/datos_agente.php:200
msgid "Timestamp from:"
msgstr "Horodatage à partir de :"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:786
-#: ../../include/ajax/module.php:290 ../../operation/agentes/datos_agente.php:204
+#: ../../include/ajax/module.php:313 ../../operation/agentes/datos_agente.php:206
msgid "Timestamp to:"
msgstr "Horodatage jusqu'à :"
@@ -21444,9 +21575,9 @@ msgstr "Éditeur d’éléments de modèle de graphique"
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244
-#: ../../godmode/reporting/graph_builder.graph_editor.php:215
-#: ../../godmode/reporting/graph_builder.graph_editor.php:389
-#: ../../include/functions.php:4049
+#: ../../godmode/reporting/graph_builder.graph_editor.php:314
+#: ../../godmode/reporting/graph_builder.graph_editor.php:348
+#: ../../include/functions.php:4075
msgid "Weight"
msgstr "Poids"
@@ -21458,7 +21589,7 @@ msgstr "Poids"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464
-#: ../../enterprise/operation/log/log_viewer.php:540
+#: ../../enterprise/operation/log/log_viewer.php:538
msgid "Exact match"
msgstr "Concordance exacte"
@@ -21552,18 +21683,18 @@ msgstr "Aucune modification n’a été apportée"
#: ../../enterprise/godmode/reporting/mysql_builder.php:244
#: ../../enterprise/include/functions_reporting_csv.php:1134
-#: ../../include/functions_reporting.php:7540
+#: ../../include/functions_reporting.php:7549
msgid "SQL"
msgstr "SQL"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647
-#: ../../godmode/reporting/reporting_builder.php:3749
+#: ../../godmode/reporting/reporting_builder.php:3766
msgid "Successfull action"
msgstr "Action réussie"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648
-#: ../../godmode/servers/modificar_server.php:285
-#: ../../godmode/servers/modificar_server.php:296
+#: ../../godmode/servers/modificar_server.php:307
+#: ../../godmode/servers/modificar_server.php:318
msgid "Unsuccessfull action"
msgstr "Action échouée"
@@ -21598,13 +21729,13 @@ msgstr "Sélectionner un serveur"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016
-#: ../../godmode/reporting/reporting_builder.item_editor.php:204
+#: ../../godmode/reporting/reporting_builder.item_editor.php:205
#: ../../godmode/reporting/reporting_builder.item_editor.php:1264
msgid "Local metaconsole"
msgstr "Métaconsole locale"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1169
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1171
#: ../../include/lib/Dashboard/Widgets/top_n.php:207
msgid ""
"Case insensitive regular expression for agent name. For example: Network.* "
@@ -21617,7 +21748,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1192
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1194
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 "
@@ -21665,31 +21796,31 @@ msgstr "Cochez-le si vous ne souhaitez pas afficher les éléments sans données
#: ../../godmode/reporting/create_container.php:571
#: ../../godmode/reporting/create_container.php:600
#: ../../godmode/reporting/create_container.php:741
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2236
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2245
#: ../../godmode/reporting/visual_console_builder.elements.php:121
#: ../../godmode/reporting/visual_console_builder.elements.php:618
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_visual_map_editor.php:391
+#: ../../include/functions_visual_map_editor.php:394
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615
#: ../../include/functions_reports.php:573
#: ../../include/functions_reports.php:660
#: ../../include/functions_reports.php:666
-#: ../../include/functions_reporting.php:10655
+#: ../../include/functions_reporting.php:10664
msgid "Custom graph"
msgstr "Tableau personnalisé"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2400
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2409
msgid "Max items"
msgstr "Nombre d'éléments maximum"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2365
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2374
msgid "Custom SQL template"
msgstr "Modèle de SQL personnalisé"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2386
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2395
msgid ""
"The entities of the fields that contain them must be included. Also is "
"possible use macros like `_start_date_` or `_end_date_`."
@@ -21703,157 +21834,157 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:2473
#: ../../extensions/api_checker.php:365
#: ../../godmode/reporting/reporting_builder.item_editor.php:75
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2432
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2441
#: ../../godmode/events/event_responses.editor.php:229
#: ../../godmode/events/event_responses.editor.php:255
-#: ../../include/functions_reporting_html.php:1616
+#: ../../include/functions_reporting_html.php:1625
#: ../../operation/gis_maps/ajax.php:316
msgid "URL"
msgstr "URL"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2443
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2452
msgid "Protocol must be specified in URL (e.g.: \"https://\")"
msgstr "Le protocole doit être spécifié dans l’URL (par exemple: « https:// »)"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3606
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3615
msgid "Group by"
msgstr "Regrouper par"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499
#: ../../enterprise/include/functions_reporting_csv.php:1080
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2581
-#: ../../include/functions_reporting_html.php:5006
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2590
+#: ../../include/functions_reporting_html.php:5034
#: ../../include/functions_reporting.php:1545
msgid "Avg"
msgstr "Moyenne"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2761
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2770
msgid "Select fields to show"
msgstr "Sélectionner les champs à afficher"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649
#: ../../enterprise/include/functions_reporting_csv.php:501
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2769
-#: ../../include/functions_reporting_html.php:4145
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2778
+#: ../../include/functions_reporting_html.php:4173
msgid "Total time"
msgstr "Durée totale"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657
#: ../../enterprise/include/functions_reporting_csv.php:505
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2777
-#: ../../include/functions_reporting_html.php:4151
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2786
+#: ../../include/functions_reporting_html.php:4179
msgid "Time failed"
msgstr "Temps d'échec"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665
#: ../../enterprise/include/functions_reporting_csv.php:509
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2785
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2794
msgid "Time in OK status"
msgstr "Temps en état OK"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673
#: ../../enterprise/include/functions_reporting_csv.php:513
#: ../../enterprise/include/functions_reporting.php:4990
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2793
-#: ../../include/functions_reporting_html.php:4163
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2802
+#: ../../include/functions_reporting_html.php:4191
msgid "Time in warning status"
msgstr "Temps en état d'avertissement"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681
#: ../../enterprise/include/functions_reporting_csv.php:517
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2801
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2810
msgid "Time in unknown status"
msgstr "Temps en état inconnu"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693
#: ../../enterprise/include/functions_reporting_csv.php:521
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2813
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2822
msgid "Time of not initialized module"
msgstr "Temps de module non initialisé"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705
#: ../../enterprise/include/functions_reporting_csv.php:525
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2825
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2834
msgid "Time of downtime"
msgstr "Temps d'arrête"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2877
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2886
msgid "
%s"
-#: ../../enterprise/include/class/SAP.app.php:805
+#: ../../enterprise/include/class/SAP.app.php:806
#: ../../godmode/agentes/planned_downtime.editor.php:1257
msgid "Available modules"
msgstr "Modules disponibles"
-#: ../../enterprise/include/class/SAP.app.php:829
+#: ../../enterprise/include/class/SAP.app.php:830
msgid "Add monitors"
msgstr "Ajouter des moniteurs"
-#: ../../enterprise/include/class/SAP.app.php:842
+#: ../../enterprise/include/class/SAP.app.php:843
msgid "Remove monitors"
msgstr "Éliminer des moniteurs"
-#: ../../enterprise/include/class/SAP.app.php:853
-#: ../../enterprise/operation/services/massive/services.create.php:1321
+#: ../../enterprise/include/class/SAP.app.php:854
+#: ../../enterprise/operation/services/massive/services.create.php:1333
#: ../../enterprise/operation/services/massive/service.delete.elements.php:278
#: ../../enterprise/operation/services/massive/service.create.elements.php:626
#: ../../enterprise/operation/services/massive/service.edit.elements.php:385
msgid "Selected modules"
msgstr "Modules sélectionnes"
-#: ../../enterprise/include/class/SAP.app.php:893
+#: ../../enterprise/include/class/SAP.app.php:894
msgid "Define your custom SAP modules."
msgstr "Définissez vos modules SAP personnalisés."
-#: ../../enterprise/include/class/SAP.app.php:892
+#: ../../enterprise/include/class/SAP.app.php:893
msgid "Advanced module configuration"
msgstr "Configuration de module avancée"
-#: ../../enterprise/include/class/SAP.app.php:902
+#: ../../enterprise/include/class/SAP.app.php:903
msgid "Custom module definitions"
msgstr "Définitions des modules personnalisés"
-#: ../../enterprise/include/class/SAP.app.php:903
+#: ../../enterprise/include/class/SAP.app.php:904
msgid ""
"Each line is a module definition using following format: module name ; "
"module_type ; SAP check definition."
@@ -28321,7 +28464,7 @@ msgid "Remove item"
msgstr "Supprimer l’élément"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979
-#: ../../operation/agentes/estado_monitores.php:639
+#: ../../operation/agentes/estado_monitores.php:631
msgid "Reset"
msgstr "Réinitialiser"
@@ -28456,9 +28599,10 @@ msgid "Fields used on execution when the alert is fired"
msgstr "Champs utilisés lors de l'exécution lorsque l'alerte est déclenchée"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802
+#: ../../godmode/users/configure_user.php:63
#: ../../godmode/users/user_management.php:42
#: ../../godmode/massive/massive_edit_users.php:278
-#: ../../operation/users/user_edit.php:473
+#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473
#: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194
msgid "Alert detail"
msgstr "Détail des alertes"
@@ -28486,9 +28630,9 @@ msgstr "Correspondu"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011
#: ../../godmode/alerts/alert_list.list.php:170
#: ../../mobile/operation/alerts.php:66
-#: ../../include/functions_reporting_html.php:2591
-#: ../../include/functions_reporting_html.php:3451
-#: ../../include/functions_reporting_html.php:3452
+#: ../../include/functions_reporting_html.php:2612
+#: ../../include/functions_reporting_html.php:3479
+#: ../../include/functions_reporting_html.php:3480
#: ../../operation/agentes/alerts_status.functions.php:99
msgid "Fired"
msgstr "Déclenché"
@@ -28538,7 +28682,7 @@ msgstr "Êtes-vous sûr que vous voulez stand-by l'alerte"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385
#: ../../enterprise/operation/agentes/policy_view.php:293
#: ../../godmode/alerts/alert_list.list.php:192
-#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274
+#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311
#: ../../operation/agentes/alerts_status.functions.php:104
msgid "Standby on"
msgstr "Mode veille actif"
@@ -28605,7 +28749,7 @@ msgstr ""
#: ../../enterprise/include/class/CommandCenter.class.php:171
#: ../../enterprise/include/functions_groups.php:49
-#: ../../include/ajax/module.php:1834
+#: ../../include/ajax/module.php:1862
msgid "Metaconsole"
msgstr "Métaconsole"
@@ -28655,7 +28799,7 @@ msgid "Please restore your backups"
msgstr "Veuillez rétablir vos sauvegardes"
#: ../../enterprise/include/class/CommandCenter.class.php:454
-#: ../../include/functions_ui.php:7102
+#: ../../include/functions_ui.php:7174
msgid "Query"
msgstr "Requête"
@@ -28665,8 +28809,8 @@ msgid "Table"
msgstr "Table"
#: ../../enterprise/include/class/CommandCenter.class.php:456
-#: ../../include/class/Heatmap.class.php:1302
-#: ../../general/reporting_console_node.php:65
+#: ../../include/class/Heatmap.class.php:1358
+#: ../../general/reporting_console_node.php:70
msgid "Info"
msgstr "Information"
@@ -28698,8 +28842,8 @@ msgstr "Le processus a été complété correctement"
#: ../../enterprise/include/class/CommandCenter.class.php:463
#: ../../enterprise/include/functions_login.php:213
-#: ../../include/functions_menu.php:883
-#: ../../include/class/Diagnostics.class.php:1846
+#: ../../include/functions_menu.php:888
+#: ../../include/class/Diagnostics.class.php:1850
msgid "Successfully"
msgstr "Correctement"
@@ -28874,12 +29018,12 @@ msgstr ""
#: ../../extensions/files_repo/files_repo_list.php:57
#: ../../godmode/events/event_responses.editor.php:175
#: ../../include/functions_visual_map_editor.php:125
-#: ../../include/functions_visual_map_editor.php:178
-#: ../../include/functions_visual_map_editor.php:836
-#: ../../include/functions_visual_map_editor.php:931
+#: ../../include/functions_visual_map_editor.php:174
+#: ../../include/functions_visual_map_editor.php:884
+#: ../../include/functions_visual_map_editor.php:979
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
-#: ../../include/rest-api/models/VisualConsole/Item.php:1992
-#: ../../include/functions_filemanager.php:646
+#: ../../include/rest-api/models/VisualConsole/Item.php:1995
+#: ../../include/functions_filemanager.php:661
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266
msgid "Size"
@@ -28918,7 +29062,7 @@ msgid "Missed id parameter."
msgstr "Paramètre ID manqué."
#: ../../enterprise/include/class/ManageBackups.class.php:433
-#: ../../include/class/AuditLog.class.php:412
+#: ../../include/class/AuditLog.class.php:424
msgid "There is no additional information to display"
msgstr "Il n’y a pas d’informations supplémentaires à afficher"
@@ -28934,11 +29078,11 @@ msgstr ""
msgid "Do you like perform a database restoration?"
msgstr "Aimez-vous effectuer une restauration de base de données?"
-#: ../../enterprise/include/functions_enterprise.php:451
+#: ../../enterprise/include/functions_enterprise.php:461
msgid "Tree view by tags"
msgstr "Arborescence par étiquettes"
-#: ../../enterprise/include/functions_enterprise.php:481
+#: ../../enterprise/include/functions_enterprise.php:491
msgid ""
"If the interval of days until events data purge is shorter than the events "
"data history storage interval, data will be lost. It is recommended that the "
@@ -28949,14 +29093,14 @@ msgstr ""
"perdues. Nous vous recommandons que la fréquence de stockage soit plus haute "
"que la fréquence d'épurage."
-#: ../../enterprise/include/functions_enterprise.php:483
+#: ../../enterprise/include/functions_enterprise.php:493
msgid ""
"Problems with event days purge and event days that pass data to history DB."
msgstr ""
"Problèmes avec la date de nettoyage d'événements et la date de passage de "
"données à l'historique de la BD."
-#: ../../enterprise/include/functions_enterprise.php:494
+#: ../../enterprise/include/functions_enterprise.php:504
msgid ""
"If days purge is less than history days pass to history db, you will have a "
"problems and you lost data. Recommended that days purge will more taller than "
@@ -28967,7 +29111,7 @@ msgstr ""
"configurer la date de nettoyage à un niveau supérieur à la date de passage de "
"l'historique de la BD."
-#: ../../enterprise/include/functions_enterprise.php:496
+#: ../../enterprise/include/functions_enterprise.php:506
msgid "Problems with days purge and days that pass data to history DB"
msgstr ""
"Problèmes avec la date de nettoyage et la date de passage de données à "
@@ -29020,7 +29164,7 @@ msgstr "Conformité SLA"
#: ../../enterprise/include/functions_reporting.php:4223
#: ../../enterprise/include/functions_reporting.php:4874
#: ../../include/functions_reporting_html.php:877
-#: ../../include/functions_reporting_html.php:4881
+#: ../../include/functions_reporting_html.php:4909
msgid "Not Init"
msgstr "Non initialisées"
@@ -29066,7 +29210,7 @@ msgstr "Journal"
#: ../../enterprise/include/functions_reporting.php:3458
#: ../../enterprise/include/functions_reporting.php:4434
#: ../../include/functions_reporting.php:1011
-#: ../../include/functions_reporting.php:9335
+#: ../../include/functions_reporting.php:9344
msgid "There are no SLAs defined"
msgstr "Aucun SLA défini"
@@ -29074,7 +29218,7 @@ msgstr "Aucun SLA défini"
#: ../../enterprise/include/functions_reporting.php:3511
#: ../../enterprise/include/functions_reporting.php:4487
#: ../../include/functions_reporting.php:1086
-#: ../../include/functions_reporting.php:9713
+#: ../../include/functions_reporting.php:9722
msgid "Inverse"
msgstr "Inverse"
@@ -29123,7 +29267,7 @@ msgstr "SLA %"
#: ../../enterprise/include/functions_reporting.php:6224
#: ../../enterprise/include/functions_services.php:1453
#: ../../include/functions_reporting_html.php:872
-#: ../../include/functions_reporting_html.php:4876
+#: ../../include/functions_reporting_html.php:4904
msgid "Unknow"
msgstr "Inconnu"
@@ -29131,7 +29275,7 @@ msgstr "Inconnu"
#: ../../enterprise/include/functions_reporting.php:4228
#: ../../enterprise/include/functions_reporting.php:6229
#: ../../include/functions_reporting_html.php:882
-#: ../../include/functions_reporting_html.php:4886
+#: ../../include/functions_reporting_html.php:4914
msgid "Downtimes"
msgstr "Arrêts"
@@ -29165,8 +29309,8 @@ msgstr "% temps ok"
#: ../../include/functions_reporting_html.php:680
#: ../../include/functions_reporting_html.php:751
#: ../../include/functions_reporting_html.php:829
-#: ../../include/functions_reporting_html.php:4333
-#: ../../include/functions_reporting_html.php:4480
+#: ../../include/functions_reporting_html.php:4361
+#: ../../include/functions_reporting_html.php:4508
msgid "24 x 7"
msgstr "24h/24 7j/7"
@@ -29189,17 +29333,17 @@ msgid "Checks Critical"
msgstr "Vérifications critiques"
#: ../../enterprise/include/functions_reporting.php:5085
-#: ../../include/functions_reporting_html.php:4257
+#: ../../include/functions_reporting_html.php:4285
msgid "Checks Warning"
msgstr "Vérifications avertissement"
#: ../../enterprise/include/functions_reporting.php:5168
#: ../../include/functions_reporting_html.php:809
-#: ../../include/functions_reporting_html.php:4523
-#: ../../include/functions_reporting_html.php:5075
-#: ../../include/functions_reporting_html.php:5078
+#: ../../include/functions_reporting_html.php:4551
+#: ../../include/functions_reporting_html.php:5103
+#: ../../include/functions_reporting_html.php:5106
#: ../../include/functions_reporting.php:1656
-#: ../../include/functions_reporting.php:3735
+#: ../../include/functions_reporting.php:3744
msgid "There are no Agent/Modules defined"
msgstr "Aucun Agent/Module défini"
@@ -29223,51 +29367,51 @@ msgid "Scheduled shutdow"
msgstr "Temps d'arrête programé"
#: ../../enterprise/include/functions_reporting.php:6600
-#: ../../enterprise/include/functions_reporting.php:7490
+#: ../../enterprise/include/functions_reporting.php:7499
#, php-format
msgid "Graph agents(%s) - %s"
msgstr "Agents de graphiques(%s) - %s"
-#: ../../enterprise/include/functions_reporting.php:7398
+#: ../../enterprise/include/functions_reporting.php:7407
#, php-format
msgid "Graph agent(%s) - %s"
msgstr "Agent de graphiques(%s) - %s"
-#: ../../enterprise/include/functions_reporting.php:7845
+#: ../../enterprise/include/functions_reporting.php:7854
msgid "There is not data for the selected conditions"
msgstr "Il n'y a pas des données pour les conditions sélectionnées"
-#: ../../enterprise/include/functions_reporting.php:8039
-#: ../../enterprise/include/functions_reporting.php:8105
+#: ../../enterprise/include/functions_reporting.php:8048
+#: ../../enterprise/include/functions_reporting.php:8114
msgid "Template editor"
msgstr "Éditeur de modèle"
-#: ../../enterprise/include/functions_reporting.php:8171
+#: ../../enterprise/include/functions_reporting.php:8180
#: ../../enterprise/operation/reporting/custom_reporting.php:130
msgid "ID Report"
msgstr "Rapport ID"
-#: ../../enterprise/include/functions_reporting.php:8239
+#: ../../enterprise/include/functions_reporting.php:8248
#: ../../enterprise/operation/reporting/custom_reporting.php:116
#: ../../enterprise/operation/reporting/custom_reporting.php:193
msgid "Send by email"
msgstr "Envoyer par courriel"
-#: ../../enterprise/include/functions_reporting.php:8327
+#: ../../enterprise/include/functions_reporting.php:8336
#: ../../enterprise/operation/reporting/custom_reporting.php:229
msgid "Send by email "
msgstr "Envoyer par courriel "
-#: ../../enterprise/include/functions_reporting.php:8368
+#: ../../enterprise/include/functions_reporting.php:8377
#: ../../include/functions_reports.php:655
msgid "Simple baseline graph"
msgstr "Graphique simple de référence"
-#: ../../enterprise/include/functions_reporting.php:8538
+#: ../../enterprise/include/functions_reporting.php:8547
msgid "Configuration changes"
msgstr "Changements de configuration"
-#: ../../enterprise/include/functions_reporting.php:8555
+#: ../../enterprise/include/functions_reporting.php:8564
msgid "No NCM capabilities detected"
msgstr "Aucune fonctionnalité NCM détectée"
@@ -29432,40 +29576,52 @@ msgstr "Poids OK"
#: ../../enterprise/include/functions_services.php:1672
#: ../../enterprise/include/functions_services.php:1717
#: ../../enterprise/include/functions_services.php:1785
+#: ../../mobile/operation/services.php:231
+#: ../../mobile/operation/services.php:272
+#: ../../mobile/operation/services.php:338
msgid "Nonexistent. This element should be deleted"
msgstr "Inexistant. Cet élément doit être supprimé."
#: ../../enterprise/include/functions_services.php:1700
#: ../../enterprise/include/functions_services.php:1767
#: ../../enterprise/include/functions_services.php:1813
+#: ../../mobile/operation/services.php:255
+#: ../../mobile/operation/services.php:320
+#: ../../mobile/operation/services.php:363
msgid "This element does not affect service weigth because is disabled."
msgstr "Cet élément n'affecte pas le poids du service parce qu'il est désactivé."
#: ../../enterprise/include/functions_services.php:1828
+#: ../../mobile/operation/services.php:386
#, php-format
msgid "Dynamic element (%d) '%s' does not match any target"
msgstr "L'élément dynamique (%d) '%s' ne correspond avec aucun cible"
#: ../../enterprise/include/functions_services.php:1837
+#: ../../mobile/operation/services.php:395
#, php-format
msgid "Dynamic element (%d) '%s' causes an error: %s"
msgstr "Élément dynamique (%d) '%s' cause une erreur : %s"
#: ../../enterprise/include/functions_services.php:1849
+#: ../../mobile/operation/services.php:377
msgid "Dynamic element"
msgstr "Élément dynamique"
#: ../../enterprise/include/functions_services.php:1855
+#: ../../mobile/operation/services.php:405
#, php-format
msgid "agents like \"%s\""
msgstr "agents comme « %s »"
#: ../../enterprise/include/functions_services.php:1860
+#: ../../mobile/operation/services.php:410
#, php-format
msgid "modules like \"%s\""
msgstr "modules comme « %s »"
#: ../../enterprise/include/functions_services.php:1995
+#: ../../mobile/operation/services.php:450
msgid "NOT INITIALIZED"
msgstr "NON INITIALISÉ"
@@ -29562,46 +29718,46 @@ msgstr "Le mot de passe doit contenir des symboles."
msgid "Invalid old password"
msgstr "Mot de passe ancien invalide"
-#: ../../enterprise/include/functions_login.php:451
+#: ../../enterprise/include/functions_login.php:455
msgid "Password confirm does not match"
msgstr "Les mots de passe ne concordent pas."
-#: ../../enterprise/include/functions_login.php:458
+#: ../../enterprise/include/functions_login.php:462
msgid "Password empty"
msgstr "Mot de passe vide"
-#: ../../enterprise/include/functions_login.php:577
-#: ../../godmode/users/configure_user.php:2065
-#: ../../godmode/users/configure_user.php:2134
-#: ../../godmode/users/configure_user.php:2205
+#: ../../enterprise/include/functions_login.php:581
+#: ../../godmode/users/configure_user.php:2117
+#: ../../godmode/users/configure_user.php:2186
+#: ../../godmode/users/configure_user.php:2257
#: ../../include/ajax/double_auth.ajax.php:267
#: ../../include/ajax/double_auth.ajax.php:365
#: ../../include/ajax/double_auth.ajax.php:411
#: ../../include/ajax/double_auth.ajax.php:527
-#: ../../operation/users/user_edit.php:1238
-#: ../../operation/users/user_edit.php:1304
-#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165
+#: ../../operation/users/user_edit.php:1235
+#: ../../operation/users/user_edit.php:1301
+#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165
#: ../../general/logon_failed.php:18
msgid "Authentication error"
msgstr "Erreur d'authentification"
-#: ../../enterprise/include/functions_login.php:584
-#: ../../godmode/users/configure_user.php:2071
-#: ../../godmode/users/configure_user.php:2140
+#: ../../enterprise/include/functions_login.php:588
+#: ../../godmode/users/configure_user.php:2123
+#: ../../godmode/users/configure_user.php:2192
#: ../../include/ajax/double_auth.ajax.php:274
#: ../../include/ajax/double_auth.ajax.php:372
#: ../../include/ajax/double_auth.ajax.php:418
#: ../../include/ajax/double_auth.ajax.php:535
-#: ../../operation/users/user_edit.php:1245
-#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172
+#: ../../operation/users/user_edit.php:1242
+#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172
msgid "There was an error loading the data"
msgstr "Erreur de chargement des données"
-#: ../../enterprise/include/functions_login.php:593
-#: ../../godmode/users/configure_user.php:2148
-#: ../../godmode/users/configure_user.php:2224
-#: ../../operation/users/user_edit.php:1319
-#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181
+#: ../../enterprise/include/functions_login.php:597
+#: ../../godmode/users/configure_user.php:2200
+#: ../../godmode/users/configure_user.php:2276
+#: ../../operation/users/user_edit.php:1316
+#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181
msgid "Double authentication activation"
msgstr "Activation de la double authentification"
@@ -29649,10 +29805,11 @@ msgid "Invalid plugin definition"
msgstr "Définition de plugin non valide"
#: ../../enterprise/include/lib/NetworkManager.php:82
-#: ../../godmode/setup/setup_ehorus.php:139
-#: ../../godmode/setup/setup_integria.php:652
-#: ../../operation/users/user_edit.php:872
-#: ../../operation/users/user_edit.php:925
+#: ../../godmode/setup/setup_ehorus.php:141
+#: ../../godmode/setup/setup_websocket_engine.php:91
+#: ../../godmode/setup/setup_integria.php:654
+#: ../../operation/users/user_edit.php:869
+#: ../../operation/users/user_edit.php:922
msgid "Test"
msgstr "Test"
@@ -29743,7 +29900,7 @@ msgstr "Récursif du group d'événement"
#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130
#: ../../include/functions_reporting_html.php:1057
#: ../../include/functions_reporting_html.php:1309
-#: ../../include/functions_reporting_html.php:2640
+#: ../../include/functions_reporting_html.php:2659
#: ../../include/class/SnmpConsole.class.php:276
msgid "Count"
msgstr "Nombre"
@@ -30482,22 +30639,22 @@ msgstr "Politique déjà définie : « %s »"
#: ../../enterprise/include/functions_events.php:40
#: ../../godmode/events/event_filter.php:147
-#: ../../godmode/events/event_edit_filter.php:391
+#: ../../godmode/events/event_edit_filter.php:393
#: ../../include/lib/Dashboard/Widgets/events_list.php:389
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305
-#: ../../operation/events/events.php:1763 ../../operation/events/events.php:2385
+#: ../../operation/events/events.php:1817 ../../operation/events/events.php:2439
msgid "Event status"
msgstr "État des événements"
#: ../../enterprise/include/functions_events.php:101
-#: ../../godmode/events/event_edit_filter.php:501
-#: ../../operation/events/events.php:2008
+#: ../../godmode/events/event_edit_filter.php:503
+#: ../../operation/events/events.php:2062
msgid "User ack."
msgstr "Confirmation de l'utilisateur"
#: ../../enterprise/include/functions_events.php:111
-#: ../../godmode/events/event_edit_filter.php:558
-#: ../../godmode/events/event_edit_filter.php:574
+#: ../../godmode/events/event_edit_filter.php:560
+#: ../../godmode/events/event_edit_filter.php:576
msgid "Date from"
msgstr "Date de début"
@@ -30506,15 +30663,15 @@ msgid "Date to"
msgstr "Date de fin"
#: ../../enterprise/include/functions_events.php:131
-#: ../../godmode/events/event_edit_filter.php:542
-#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4968
-#: ../../operation/events/events.php:1795
+#: ../../godmode/events/event_edit_filter.php:544
+#: ../../mobile/operation/events.php:845 ../../include/functions_events.php:4973
+#: ../../operation/events/events.php:1849
msgid "Repeated"
msgstr "Répété"
#: ../../enterprise/include/functions_events.php:141
-#: ../../godmode/events/event_edit_filter.php:759
-#: ../../operation/events/events.php:2054
+#: ../../godmode/events/event_edit_filter.php:761
+#: ../../operation/events/events.php:2108
msgid "Alert events"
msgstr "Événements d'alerte"
@@ -30523,15 +30680,15 @@ msgid "Id source events"
msgstr "Événements de source d'ID"
#: ../../enterprise/include/functions_events.php:162
-#: ../../godmode/events/event_edit_filter.php:475
-#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401
+#: ../../godmode/events/event_edit_filter.php:477
+#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401
#: ../../include/class/SnmpConsole.class.php:407
#: ../../include/class/AuditLog.class.php:204
#: ../../include/lib/Dashboard/Widgets/events_list.php:347
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270
-#: ../../operation/events/events.php:1776 ../../operation/events/events.php:2415
+#: ../../operation/events/events.php:1830 ../../operation/events/events.php:2469
msgid "Max. hours old"
msgstr "Heures maximales"
@@ -30541,14 +30698,14 @@ msgid "More than 5 tags"
msgstr "Plus de 5 étiquettes"
#: ../../enterprise/include/functions_events.php:184
-#: ../../godmode/events/event_edit_filter.php:629
-#: ../../operation/events/events.php:2255 ../../operation/events/events.php:2258
+#: ../../godmode/events/event_edit_filter.php:631
+#: ../../operation/events/events.php:2309 ../../operation/events/events.php:2312
msgid "Events with following tags"
msgstr "Événements avec les étiquettes suivantes"
#: ../../enterprise/include/functions_events.php:206
-#: ../../godmode/events/event_edit_filter.php:694
-#: ../../operation/events/events.php:2256 ../../operation/events/events.php:2259
+#: ../../godmode/events/event_edit_filter.php:696
+#: ../../operation/events/events.php:2310 ../../operation/events/events.php:2313
msgid "Events without following tags"
msgstr "Événements sans les étiquettes suivantes"
@@ -30620,8 +30777,8 @@ msgid "Subscription"
msgstr "Abonnement"
#: ../../enterprise/include/functions_license.php:120
-#: ../../include/functions_menu.php:956
-#: ../../include/class/Diagnostics.class.php:1179
+#: ../../include/functions_menu.php:961
+#: ../../include/class/Diagnostics.class.php:1183
msgid "Support expires"
msgstr "Le support expire"
@@ -30643,7 +30800,7 @@ msgstr "Suivante IP disponible"
#: ../../enterprise/include/functions_ipam.php:1343
#: ../../enterprise/tools/ipam/ipam_ajax.php:486
-#: ../../include/ajax/events.php:1753
+#: ../../include/ajax/events.php:1754
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394
msgid "Details"
@@ -30651,12 +30808,12 @@ msgstr "Détails"
#: ../../enterprise/include/functions_ipam.php:1388
#: ../../enterprise/operation/services/services.list.php:677
-#: ../../godmode/agentes/inventory_manager.php:270
+#: ../../godmode/agentes/inventory_manager.php:271
#: ../../godmode/wizards/DiscoveryTaskList.class.php:589
#: ../../godmode/wizards/DiscoveryTaskList.class.php:679
-#: ../../operation/visual_console/view.php:424
-#: ../../operation/agentes/group_view.php:239
-#: ../../operation/agentes/group_view.php:302
+#: ../../operation/visual_console/view.php:426
+#: ../../operation/agentes/group_view.php:242
+#: ../../operation/agentes/group_view.php:305
msgid "Force"
msgstr "Forcer"
@@ -31063,7 +31220,7 @@ msgstr "Copie de"
#: ../../enterprise/operation/agentes/ux_console_view.php:297
#: ../../enterprise/operation/agentes/ux_console_view.php:384
#: ../../enterprise/operation/agentes/wux_console_view.php:337
-#: ../../include/functions_ui.php:6749
+#: ../../include/functions_ui.php:6824
msgid "Snapshot view"
msgstr "Vue de l'instantané"
@@ -31074,9 +31231,11 @@ msgstr "Impossible de récupérer les données du module d'inventaire"
#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173
#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176
#: ../../godmode/reporting/visual_console_builder.wizard.php:589
-#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799
-#: ../../mobile/operation/module_graph.php:477
-#: ../../mobile/operation/events.php:1150 ../../mobile/operation/tactical.php:239
+#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823
+#: ../../mobile/operation/module_graph.php:478
+#: ../../mobile/operation/events.php:1197
+#: ../../mobile/operation/server_status.php:389
+#: ../../mobile/operation/tactical.php:240
msgid "Loading..."
msgstr "Chargement en cours..."
@@ -31128,8 +31287,8 @@ msgstr "Afficher l'alerte"
#: ../../enterprise/operation/agentes/policy_view.php:346
#: ../../godmode/alerts/alert_list.list.php:645
#: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:324
-#: ../../include/functions_ui.php:1417
-#: ../../include/class/AgentsAlerts.class.php:956
+#: ../../include/functions_ui.php:1460
+#: ../../include/class/AgentsAlerts.class.php:957
msgid "time(s)"
msgstr "foi(s)"
@@ -31137,10 +31296,10 @@ msgstr "foi(s)"
#: ../../godmode/alerts/alert_list.list.php:651
#: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330
#: ../../include/functions_agents.php:3000
-#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423
-#: ../../include/class/AgentsAlerts.class.php:962
-#: ../../include/class/SnmpConsole.class.php:843
-#: ../../include/functions_reporting.php:13066
+#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466
+#: ../../include/class/AgentsAlerts.class.php:963
+#: ../../include/class/SnmpConsole.class.php:845
+#: ../../include/functions_reporting.php:13139
msgid "Alert not fired"
msgstr "Alerte non déclenchée"
@@ -31174,7 +31333,7 @@ msgid "(Adopted) (Unlinked)"
msgstr "(Adoptés) (Non liés)"
#: ../../enterprise/operation/agentes/policy_view.php:458
-#: ../../godmode/agentes/module_manager.php:881
+#: ../../godmode/agentes/module_manager.php:895
msgid "Non initialized module"
msgstr "Module non initialisé"
@@ -31188,22 +31347,22 @@ msgstr "Module non initialisé"
#: ../../enterprise/operation/agentes/tag_view.php:1169
#: ../../enterprise/operation/agentes/tag_view.php:1175
#: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650
+#: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/modules.php:653 ../../mobile/operation/modules.php:661
#: ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:2919
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:142 ../../operation/search_modules.php:150
-#: ../../operation/search_modules.php:158
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:145 ../../operation/search_modules.php:153
+#: ../../operation/search_modules.php:161
msgid "Last status"
msgstr "Dernier état"
@@ -31213,114 +31372,115 @@ msgid "Tag view"
msgstr "Vue des étiquettes"
#: ../../enterprise/operation/agentes/tag_view.php:54
-#: ../../extensions/agents_modules.php:556 ../../extensions/module_groups.php:264
+#: ../../extensions/agents_modules.php:564 ../../extensions/module_groups.php:264
#: ../../extensions/realtime_graphs.php:71
+#: ../../godmode/agentes/status_monitor_custom_fields.php:48
#: ../../include/class/AgentsAlerts.class.php:755 ../../operation/heatmap.php:144
#: ../../operation/agentes/alerts_status.php:202
#: ../../operation/agentes/estado_agente.php:250
#: ../../operation/agentes/interface_view.php:76
-#: ../../operation/agentes/status_monitor.php:340
+#: ../../operation/agentes/status_monitor.php:339
#: ../../operation/agentes/group_view.php:102
#: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165
msgid "Views"
msgstr "Vues"
#: ../../enterprise/operation/agentes/tag_view.php:139
-#: ../../operation/agentes/status_monitor.php:884
+#: ../../operation/agentes/status_monitor.php:883
msgid "Monitor status"
msgstr "État du moniteur"
#: ../../enterprise/operation/agentes/tag_view.php:241
-#: ../../operation/agentes/status_monitor.php:609
+#: ../../operation/agentes/status_monitor.php:608
#: ../../operation/agentes/alerts_status.functions.php:146
msgid "Only it is show tags in use."
msgstr "Afficher seulement les étiquettes utilisées"
#: ../../enterprise/operation/agentes/tag_view.php:288
#: ../../godmode/agentes/module_manager_editor_data.php:15
-#: ../../operation/agentes/status_monitor.php:655
+#: ../../operation/agentes/status_monitor.php:654
msgid "Data server module"
msgstr "Module de serveur de données"
#: ../../enterprise/operation/agentes/tag_view.php:290
-#: ../../godmode/agentes/module_manager_editor_network.php:78
-#: ../../operation/agentes/status_monitor.php:657
+#: ../../godmode/agentes/module_manager_editor_network.php:79
+#: ../../operation/agentes/status_monitor.php:656
msgid "Network server module"
msgstr "Module de serveur de réseau"
#: ../../enterprise/operation/agentes/tag_view.php:294
#: ../../godmode/agentes/module_manager_editor_plugin.php:46
-#: ../../operation/agentes/status_monitor.php:661
+#: ../../operation/agentes/status_monitor.php:660
msgid "Plugin server module"
msgstr "Module du serveur plugin"
#: ../../enterprise/operation/agentes/tag_view.php:298
#: ../../godmode/agentes/module_manager_editor_wmi.php:33
-#: ../../operation/agentes/status_monitor.php:665
+#: ../../operation/agentes/status_monitor.php:664
msgid "WMI server module"
msgstr "Module serveur WMI"
#: ../../enterprise/operation/agentes/tag_view.php:302
#: ../../godmode/agentes/module_manager_editor_prediction.php:117
-#: ../../operation/agentes/status_monitor.php:669
+#: ../../operation/agentes/status_monitor.php:668
msgid "Prediction server module"
msgstr "Module de prédiction du serveur"
#: ../../enterprise/operation/agentes/tag_view.php:306
#: ../../godmode/agentes/module_manager_editor_web.php:57
-#: ../../operation/agentes/status_monitor.php:673
+#: ../../operation/agentes/status_monitor.php:672
msgid "Web server module"
msgstr "Module du serveur web"
#: ../../enterprise/operation/agentes/tag_view.php:310
#: ../../enterprise/operation/agentes/tag_view.php:783
-#: ../../godmode/agentes/status_monitor_custom_fields.php:89
-#: ../../godmode/agentes/status_monitor_custom_fields.php:144
-#: ../../operation/agentes/status_monitor.php:935
-#: ../../operation/agentes/status_monitor.php:1553
+#: ../../godmode/agentes/status_monitor_custom_fields.php:109
+#: ../../godmode/agentes/status_monitor_custom_fields.php:164
+#: ../../operation/agentes/status_monitor.php:937
+#: ../../operation/agentes/status_monitor.php:1555
msgid "Server type"
msgstr "Type de serveur"
#: ../../enterprise/operation/agentes/tag_view.php:329
#: ../../godmode/agentes/modificar_agente.php:290
-#: ../../operation/agentes/status_monitor.php:681
+#: ../../operation/agentes/status_monitor.php:680
msgid "Only enabled"
msgstr "Activés seulement"
#: ../../enterprise/operation/agentes/tag_view.php:330
#: ../../godmode/agentes/modificar_agente.php:289
#: ../../include/class/SatelliteAgent.class.php:153
-#: ../../operation/agentes/status_monitor.php:682
+#: ../../operation/agentes/status_monitor.php:681
msgid "Only disabled"
msgstr "Désactivés seulement"
#: ../../enterprise/operation/agentes/tag_view.php:334
-#: ../../operation/agentes/status_monitor.php:953
+#: ../../operation/agentes/status_monitor.php:955
msgid "Show monitors..."
msgstr "Afficher les moniteurs"
#: ../../enterprise/operation/agentes/tag_view.php:358
#: ../../enterprise/operation/agentes/tag_view.php:782
-#: ../../godmode/agentes/status_monitor_custom_fields.php:81
-#: ../../godmode/agentes/status_monitor_custom_fields.php:142
-#: ../../operation/agentes/status_monitor.php:976
+#: ../../godmode/agentes/status_monitor_custom_fields.php:101
+#: ../../godmode/agentes/status_monitor_custom_fields.php:162
+#: ../../operation/agentes/status_monitor.php:978
msgid "Data type"
msgstr "Type de données"
#: ../../enterprise/operation/agentes/tag_view.php:503
#: ../../operation/agentes/estado_agente.php:431
#: ../../operation/agentes/agent_fields.php:37
-#: ../../operation/agentes/status_monitor.php:1007
+#: ../../operation/agentes/status_monitor.php:1009
msgid "Agent custom fields"
msgstr "Champs d'agent personnalisés"
#: ../../enterprise/operation/agentes/tag_view.php:672
-#: ../../operation/agentes/status_monitor.php:2280
+#: ../../operation/agentes/status_monitor.php:2282
msgid "Sorry no search parameters"
msgstr "Pas de paramètres de recherche"
#: ../../enterprise/operation/agentes/tag_view.php:748
-#: ../../operation/agentes/estado_agente.php:1206
+#: ../../operation/agentes/estado_agente.php:1215
msgid "Remote config"
msgstr "Configuration à distance"
@@ -31328,67 +31488,68 @@ msgstr "Configuration à distance"
#: ../../enterprise/operation/services/services.service.php:121
#: ../../enterprise/operation/services/services.list.php:547
#: ../../extensions/realtime_graphs.php:112
-#: ../../godmode/agentes/status_monitor_custom_fields.php:105
-#: ../../godmode/agentes/status_monitor_custom_fields.php:148
+#: ../../godmode/agentes/status_monitor_custom_fields.php:125
+#: ../../godmode/agentes/status_monitor_custom_fields.php:168
+#: ../../mobile/operation/modules.php:856
#: ../../include/functions_visual_map_editor.php:58
-#: ../../include/class/NetworkMap.class.php:3065
+#: ../../include/class/NetworkMap.class.php:3071
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:340
-#: ../../include/functions_events.php:4508
+#: ../../include/functions_events.php:4513
#: ../../operation/agentes/interface_view.functions.php:558
-#: ../../operation/agentes/status_monitor.php:1579
-#: ../../operation/search_modules.php:37
+#: ../../operation/agentes/status_monitor.php:1581
+#: ../../operation/search_modules.php:40
msgid "Graph"
msgstr "Graphique"
#: ../../enterprise/operation/agentes/tag_view.php:786
-#: ../../godmode/agentes/status_monitor_custom_fields.php:109
-#: ../../godmode/agentes/status_monitor_custom_fields.php:149
+#: ../../godmode/agentes/status_monitor_custom_fields.php:129
+#: ../../godmode/agentes/status_monitor_custom_fields.php:169
#: ../../godmode/agentes/module_manager.php:646
msgid "Warn"
msgstr "Alerte"
#: ../../enterprise/operation/agentes/tag_view.php:1083
-#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605
+#: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:616
#: ../../include/functions_modules.php:2896
#: ../../include/functions_modules.php:4251 ../../include/functions_events.php:70
-#: ../../operation/agentes/status_monitor.php:1784
-#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746
+#: ../../operation/agentes/status_monitor.php:1786
+#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751
msgid "NOT INIT"
msgstr "NON INITIALISÉ"
#: ../../enterprise/operation/agentes/tag_view.php:1223
-#: ../../include/functions_reporting.php:13188
-#: ../../include/functions_reporting.php:13197
+#: ../../include/functions_reporting.php:13261
+#: ../../include/functions_reporting.php:13270
#, php-format
msgid "%d Total modules"
msgstr "%d modules au total"
#: ../../enterprise/operation/agentes/tag_view.php:1224
-#: ../../include/functions_reporting.php:13189
+#: ../../include/functions_reporting.php:13262
#, php-format
msgid "%d Modules in normal status"
msgstr "%d modules en état normal"
#: ../../enterprise/operation/agentes/tag_view.php:1225
-#: ../../include/functions_reporting.php:13190
+#: ../../include/functions_reporting.php:13263
#, php-format
msgid "%d Modules in critical status"
msgstr "%d modules en état critique"
#: ../../enterprise/operation/agentes/tag_view.php:1226
-#: ../../include/functions_reporting.php:13191
+#: ../../include/functions_reporting.php:13264
#, php-format
msgid "%d Modules in warning status"
msgstr "%d modules en état d'alerte"
#: ../../enterprise/operation/agentes/tag_view.php:1227
-#: ../../include/functions_reporting.php:13192
+#: ../../include/functions_reporting.php:13265
#, php-format
msgid "%d Modules in unknown status"
msgstr "%d modules en état inconnu"
#: ../../enterprise/operation/agentes/tag_view.php:1228
-#: ../../include/functions_reporting.php:13193
+#: ../../include/functions_reporting.php:13266
#, php-format
msgid "%d Modules in not init status"
msgstr "%d modules en état non initialisés"
@@ -31399,7 +31560,7 @@ msgid "Main IP"
msgstr "Adresse IP principale"
#: ../../enterprise/operation/agentes/ver_agente.php:96
-#: ../../include/functions_events.php:4435
+#: ../../godmode/groups/tactical.php:182 ../../include/functions_events.php:4440
#: ../../operation/agentes/ver_agente.php:1047
msgid "Last remote contact"
msgstr "Dernier contact à distance"
@@ -31410,24 +31571,24 @@ msgid "Monitors down"
msgstr "Moniteurs hors service"
#: ../../enterprise/operation/agentes/ver_agente.php:182
-#: ../../mobile/operation/groups.php:174
+#: ../../mobile/operation/groups.php:213
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:600
#: ../../operation/agentes/ver_agente.php:1133
msgid "Alerts fired"
msgstr "Alertes déclenchées"
#: ../../enterprise/operation/agentes/ver_agente.php:297
-#: ../../operation/agentes/ver_agente.php:1877
+#: ../../operation/agentes/ver_agente.php:1873
msgid "URL Route Analyzer"
msgstr "Analyseur d’itinéraire d’URL"
#: ../../enterprise/operation/agentes/ver_agente.php:316
-#: ../../operation/agentes/ver_agente.php:1868
+#: ../../operation/agentes/ver_agente.php:1864
msgid "UX Console"
msgstr "Console UX"
#: ../../enterprise/operation/agentes/ver_agente.php:335
-#: ../../operation/agentes/ver_agente.php:1872
+#: ../../operation/agentes/ver_agente.php:1868
msgid "WUX Console"
msgstr "Console WUX"
@@ -31527,10 +31688,10 @@ msgid "View all stats"
msgstr "Voir toutes les statistiques"
#: ../../enterprise/operation/agentes/wux_console_view.php:570
-#: ../../include/class/SnmpConsole.class.php:893
-#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379
-#: ../../operation/menu.php:381 ../../operation/events/events.php:590
-#: ../../operation/events/events.php:855
+#: ../../include/class/SnmpConsole.class.php:895
+#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379
+#: ../../operation/menu.php:381 ../../operation/events/events.php:595
+#: ../../operation/events/events.php:860
msgid "Show more"
msgstr "Afficher plus"
@@ -31540,7 +31701,7 @@ msgstr "Transaction invalide."
#: ../../enterprise/operation/log/elasticsearch_interface.php:37
#: ../../enterprise/operation/log/elasticsearch_interface.php:50
-#: ../../enterprise/operation/log/log_viewer.php:413
+#: ../../enterprise/operation/log/log_viewer.php:411
#: ../../enterprise/operation/menu.php:192
msgid "Elasticsearch Interface"
msgstr "Interface Elasticsearch"
@@ -31560,50 +31721,50 @@ msgstr ""
"Cette vue est destinée à être utilisée uniquement par les utilisateurs ayant "
"une connaissance d’Elasticsearch"
-#: ../../enterprise/operation/log/log_viewer.php:427
-#: ../../enterprise/operation/log/log_viewer.php:445
-#: ../../enterprise/operation/log/log_viewer.php:455
+#: ../../enterprise/operation/log/log_viewer.php:425
+#: ../../enterprise/operation/log/log_viewer.php:443
+#: ../../enterprise/operation/log/log_viewer.php:453
msgid "Log sources"
msgstr "Sources de journaux"
-#: ../../enterprise/operation/log/log_viewer.php:519
+#: ../../enterprise/operation/log/log_viewer.php:517
#: ../../godmode/modules/manage_inventory_modules.php:83
#: ../../godmode/modules/manage_inventory_modules_form.php:57
#: ../../godmode/netflow/nf_edit.php:70
-#: ../../operation/netflow/nf_live_view.php:150
+#: ../../operation/netflow/nf_live_view.php:155
msgid "Not supported in Windows systems"
msgstr "Pas pris en charge sur Windows"
-#: ../../enterprise/operation/log/log_viewer.php:541
+#: ../../enterprise/operation/log/log_viewer.php:539
msgid "All words"
msgstr "Tous les mots"
-#: ../../enterprise/operation/log/log_viewer.php:542
+#: ../../enterprise/operation/log/log_viewer.php:540
msgid "Any word"
msgstr "N'importe quel mot"
-#: ../../enterprise/operation/log/log_viewer.php:547
+#: ../../enterprise/operation/log/log_viewer.php:545
msgid "Search mode"
msgstr "Mode recherche"
-#: ../../enterprise/operation/log/log_viewer.php:607
+#: ../../enterprise/operation/log/log_viewer.php:605
#: ../../godmode/reporting/reporting_builder.item_editor.php:1325
msgid "Full context"
msgstr "Contexte complet"
-#: ../../enterprise/operation/log/log_viewer.php:660
+#: ../../enterprise/operation/log/log_viewer.php:658
msgid "Select dates by range"
msgstr "Sélectionner des dates par plage"
-#: ../../enterprise/operation/log/log_viewer.php:671
+#: ../../enterprise/operation/log/log_viewer.php:669
#: ../../godmode/reporting/create_container.php:417
#: ../../include/functions.php:2744
msgid "custom"
msgstr "personnalisé"
+#: ../../enterprise/operation/log/log_viewer.php:671
+#: ../../enterprise/operation/log/log_viewer.php:672
#: ../../enterprise/operation/log/log_viewer.php:673
-#: ../../enterprise/operation/log/log_viewer.php:674
-#: ../../enterprise/operation/log/log_viewer.php:675
#: ../../godmode/reporting/create_container.php:419
#: ../../godmode/reporting/create_container.php:420
#: ../../godmode/reporting/create_container.php:421
@@ -31614,8 +31775,8 @@ msgstr "personnalisé"
msgid "%s hours"
msgstr "%s heures"
-#: ../../enterprise/operation/log/log_viewer.php:677
-#: ../../enterprise/operation/log/log_viewer.php:678
+#: ../../enterprise/operation/log/log_viewer.php:675
+#: ../../enterprise/operation/log/log_viewer.php:676
#: ../../godmode/reporting/create_container.php:423
#: ../../godmode/reporting/create_container.php:424
#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
@@ -31623,81 +31784,81 @@ msgstr "%s heures"
msgid "%s days"
msgstr "%s jours"
-#: ../../enterprise/operation/log/log_viewer.php:679
+#: ../../enterprise/operation/log/log_viewer.php:677
#: ../../godmode/reporting/create_container.php:425
-#: ../../include/functions.php:2759 ../../include/ajax/module.php:225
+#: ../../include/functions.php:2759 ../../include/ajax/module.php:248
#: ../../include/ajax/graph.ajax.php:153
msgid "1 week"
msgstr "1 semaine"
-#: ../../enterprise/operation/log/log_viewer.php:681
+#: ../../enterprise/operation/log/log_viewer.php:679
#: ../../godmode/reporting/create_container.php:427
-#: ../../include/functions.php:2761 ../../include/ajax/module.php:227
+#: ../../include/functions.php:2761 ../../include/ajax/module.php:250
#: ../../include/ajax/graph.ajax.php:155
#: ../../include/class/AuditLog.class.php:214
msgid "1 month"
msgstr "1 mois"
-#: ../../enterprise/operation/log/log_viewer.php:684
-#: ../../enterprise/operation/log/log_viewer.php:704
+#: ../../enterprise/operation/log/log_viewer.php:682
+#: ../../enterprise/operation/log/log_viewer.php:702
#: ../../operation/network/network_report.php:114
#: ../../operation/network/network_usage_map.php:128
-#: ../../operation/netflow/nf_live_view.php:403
+#: ../../operation/netflow/nf_live_view.php:476
msgid "Start date"
msgstr "Date du démarrage"
-#: ../../enterprise/operation/log/log_viewer.php:736
+#: ../../enterprise/operation/log/log_viewer.php:734
#: ../../operation/agentes/exportdata.php:427
#: ../../operation/network/network_report.php:157
#: ../../operation/network/network_usage_map.php:161
-#: ../../operation/netflow/nf_live_view.php:436
+#: ../../operation/netflow/nf_live_view.php:509
msgid "End date"
msgstr "Date de fin"
-#: ../../enterprise/operation/log/log_viewer.php:806
-#: ../../enterprise/operation/log/log_viewer.php:807
+#: ../../enterprise/operation/log/log_viewer.php:804
+#: ../../enterprise/operation/log/log_viewer.php:805
msgid "Edit sources"
msgstr "Modifier les sources"
-#: ../../enterprise/operation/log/log_viewer.php:853
+#: ../../enterprise/operation/log/log_viewer.php:851
msgid "Show log entries"
msgstr "Afficher les entrées de journal"
-#: ../../enterprise/operation/log/log_viewer.php:854
+#: ../../enterprise/operation/log/log_viewer.php:852
msgid "Graph log results"
msgstr "Résultats du journal graphique"
-#: ../../enterprise/operation/log/log_viewer.php:857
+#: ../../enterprise/operation/log/log_viewer.php:855
msgid "Display mode"
msgstr "Mode d'affichage"
-#: ../../enterprise/operation/log/log_viewer.php:875
+#: ../../enterprise/operation/log/log_viewer.php:873
msgid "Use capture model"
msgstr "Utiliser le modèle de capture"
-#: ../../enterprise/operation/log/log_viewer.php:910
+#: ../../enterprise/operation/log/log_viewer.php:908
msgid "Create new model"
msgstr "Créez un nouveau modèle"
-#: ../../enterprise/operation/log/log_viewer.php:918
+#: ../../enterprise/operation/log/log_viewer.php:916
#: ../../godmode/reporting/graph_builder.main.php:214
msgid "Horizontal bars"
msgstr "Barres horizontales"
-#: ../../enterprise/operation/log/log_viewer.php:919
+#: ../../enterprise/operation/log/log_viewer.php:917
#: ../../godmode/reporting/graph_builder.main.php:215
msgid "Vertical bars"
msgstr "Barres verticales"
-#: ../../enterprise/operation/log/log_viewer.php:922
+#: ../../enterprise/operation/log/log_viewer.php:920
msgid "Graph type"
msgstr "Type de graphique"
-#: ../../enterprise/operation/log/log_viewer.php:942
+#: ../../enterprise/operation/log/log_viewer.php:940
msgid "Advanced options "
msgstr "Options avancées"
-#: ../../enterprise/operation/log/log_viewer.php:1101
+#: ../../enterprise/operation/log/log_viewer.php:1099
msgid ""
"The maximum limit of rows has been exceeded. Please enter an email to send the "
"csv file"
@@ -31705,11 +31866,11 @@ msgstr ""
"La limite maximale de lignes a été dépassée. Veuillez entrer un e-mail pour "
"envoyer le fichier csv"
-#: ../../enterprise/operation/log/log_viewer.php:1103
+#: ../../enterprise/operation/log/log_viewer.php:1101
msgid "e-mail address"
msgstr "adresse e-mail"
-#: ../../enterprise/operation/log/log_viewer.php:1106
+#: ../../enterprise/operation/log/log_viewer.php:1104
msgid ""
"WARNING: If your email size exceeds your mail attachment size limit, the file "
"will be saved in the local attachment folder."
@@ -31718,27 +31879,27 @@ msgstr ""
"votre attachement, le fichier sera enregistré dans le dossier des attachements "
"local."
-#: ../../enterprise/operation/log/log_viewer.php:1239
+#: ../../enterprise/operation/log/log_viewer.php:1237
msgid "The start date cannot be greater than the end date"
msgstr "La date de début ne peut pas être supérieure à la date de fin."
-#: ../../enterprise/operation/log/log_viewer.php:1676
+#: ../../enterprise/operation/log/log_viewer.php:1674
msgid "Add new capture model"
msgstr "Ajouter un nouveau modèle de capture"
-#: ../../enterprise/operation/log/log_viewer.php:1679
+#: ../../enterprise/operation/log/log_viewer.php:1677
msgid "Edit capture model"
msgstr "Modifier le modèle de capture"
-#: ../../enterprise/operation/log/log_viewer.php:1762
+#: ../../enterprise/operation/log/log_viewer.php:1760
msgid "Error create new model"
msgstr "Erreur lors de la création d’un nouveau modèle"
-#: ../../enterprise/operation/log/log_viewer.php:1789
+#: ../../enterprise/operation/log/log_viewer.php:1787
msgid "Error delete model"
msgstr "Erreur en supprimant le modèle"
-#: ../../enterprise/operation/log/log_viewer.php:1835
+#: ../../enterprise/operation/log/log_viewer.php:1833
msgid "Error update model"
msgstr "Erreur lors de la mise à jour du modèle"
@@ -31751,8 +31912,8 @@ msgid "AWS view"
msgstr "Vue AWS"
#: ../../enterprise/operation/menu.php:48
-#: ../../operation/agentes/ver_agente.php:1698
-#: ../../operation/agentes/ver_agente.php:1905
+#: ../../operation/agentes/ver_agente.php:1694
+#: ../../operation/agentes/ver_agente.php:1901
msgid "SAP view"
msgstr "Vue SAP"
@@ -31887,7 +32048,7 @@ msgstr "Définition d’élément(s)"
msgid "Add selected"
msgstr "Ajouter la sélection"
-#: ../../enterprise/operation/services/massive/services.create.php:1170
+#: ../../enterprise/operation/services/massive/services.create.php:1182
msgid ""
"Weights configured are common for every item added to the service, if you want "
"to customize them, please edit the service."
@@ -31895,49 +32056,49 @@ msgstr ""
"Les poids configurés sont communs pour chaque article ajouté au service, si "
"vous souhaitez les personnaliser, veuillez modifier le service."
-#: ../../enterprise/operation/services/massive/services.create.php:1174
+#: ../../enterprise/operation/services/massive/services.create.php:1186
#: ../../enterprise/operation/services/massive/service.delete.elements.php:209
#: ../../enterprise/operation/services/massive/service.create.elements.php:532
#: ../../enterprise/operation/services/massive/service.edit.elements.php:290
msgid "Service items summary"
msgstr "Résumé des éléments de service"
-#: ../../enterprise/operation/services/massive/services.create.php:1181
+#: ../../enterprise/operation/services/massive/services.create.php:1193
#: ../../enterprise/operation/services/massive/service.create.elements.php:539
#: ../../enterprise/operation/services/massive/service.edit.elements.php:298
-#: ../../include/functions_visual_map_editor.php:1146
-#: ../../include/rest-api/models/VisualConsole/Item.php:2528
+#: ../../include/functions_visual_map_editor.php:1198
+#: ../../include/rest-api/models/VisualConsole/Item.php:2531
msgid "Critical weight"
msgstr "Poids critique"
-#: ../../enterprise/operation/services/massive/services.create.php:1193
+#: ../../enterprise/operation/services/massive/services.create.php:1205
#: ../../enterprise/operation/services/massive/service.create.elements.php:552
#: ../../enterprise/operation/services/massive/service.edit.elements.php:311
-#: ../../include/functions_visual_map_editor.php:1172
-#: ../../include/rest-api/models/VisualConsole/Item.php:2542
+#: ../../include/functions_visual_map_editor.php:1224
+#: ../../include/rest-api/models/VisualConsole/Item.php:2545
msgid "Warning weight"
msgstr "Poids d'alerte"
-#: ../../enterprise/operation/services/massive/services.create.php:1205
+#: ../../enterprise/operation/services/massive/services.create.php:1217
#: ../../enterprise/operation/services/massive/service.create.elements.php:565
#: ../../enterprise/operation/services/massive/service.edit.elements.php:324
msgid "Unknown weight"
msgstr "Poids inconnu"
-#: ../../enterprise/operation/services/massive/services.create.php:1217
+#: ../../enterprise/operation/services/massive/services.create.php:1229
#: ../../enterprise/operation/services/massive/service.create.elements.php:578
#: ../../enterprise/operation/services/massive/service.edit.elements.php:337
msgid "Normal weight"
msgstr "Poids normal"
-#: ../../enterprise/operation/services/massive/services.create.php:1289
+#: ../../enterprise/operation/services/massive/services.create.php:1301
#: ../../enterprise/operation/services/massive/service.delete.elements.php:246
#: ../../enterprise/operation/services/massive/service.create.elements.php:594
#: ../../enterprise/operation/services/massive/service.edit.elements.php:353
msgid "Selected services"
msgstr "Services sélectionnés"
-#: ../../enterprise/operation/services/massive/services.create.php:1370
+#: ../../enterprise/operation/services/massive/services.create.php:1382
msgid "Create service"
msgstr "Créer un service"
@@ -32060,10 +32221,10 @@ msgid "Show sunburst"
msgstr "Afficher sunburst"
#: ../../enterprise/operation/services/services.service_map.php:129
-#: ../../extensions/agents_modules.php:1043
+#: ../../extensions/agents_modules.php:1067
#: ../../extensions/module_groups.php:464
#: ../../godmode/snmpconsole/snmp_alert.php:2203
-#: ../../include/functions_reporting_html.php:2281
+#: ../../include/functions_reporting_html.php:2302
#: ../../include/class/SnmpConsole.class.php:522
msgid "Legend"
msgstr "Légende"
@@ -32102,23 +32263,24 @@ msgstr "Créer un service"
#: ../../enterprise/operation/services/services.treeview_services.php:281
#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89
-#: ../../godmode/groups/group_list.php:1074
-#: ../../include/functions_inventory.php:301
-#: ../../include/class/Heatmap.class.php:1234
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:694
-#: ../../operation/tree.php:463 ../../operation/tree.php:493
+#: ../../godmode/groups/group_list.php:1086
+#: ../../include/functions_inventory.php:310
+#: ../../include/class/Heatmap.class.php:1272
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:687
+#: ../../operation/tree.php:465 ../../operation/tree.php:495
#: ../../operation/network/network_report.php:391
msgid "No data found"
msgstr "Aucune donnée disponible"
#: ../../enterprise/operation/services/services.treeview_services.php:282
-#: ../../godmode/groups/group_list.php:1075
+#: ../../godmode/groups/group_list.php:1087
msgid "Found groups"
msgstr "Groupes trouvés"
#: ../../enterprise/operation/services/services.treeview_services.php:376
-#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419
-#: ../../operation/agentes/estado_monitores.php:430
+#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421
+#: ../../operation/agentes/estado_monitores.php:427
+#: ../../operation/search_modules.php:302
msgid "Module: "
msgstr "Module : "
@@ -32523,8 +32685,8 @@ msgstr "Éliminer du super-réseau"
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:990
-#: ../../include/functions_visual_map_editor.php:791
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564
+#: ../../include/functions_visual_map_editor.php:831
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727
msgid "Show statistics"
msgstr "Afficher les statistiques"
@@ -32588,7 +32750,7 @@ msgstr "Supprimer le réseau"
#: ../../operation/agentes/interface_view.functions.php:97
#: ../../operation/agentes/interface_view.functions.php:150
#: ../../operation/agentes/ver_agente.php:1419
-#: ../../operation/agentes/ver_agente.php:1844
+#: ../../operation/agentes/ver_agente.php:1840
msgid "Interfaces"
msgstr "Interfaces"
@@ -32613,7 +32775,7 @@ msgid "Please enter adress, for search vlans"
msgstr "Veuillez entrer l'adresse pour chercher des vlans"
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435
-#: ../../godmode/wizards/HostDevices.class.php:1287
+#: ../../godmode/wizards/HostDevices.class.php:1283
msgid "Context"
msgstr "Contexte"
@@ -32656,13 +32818,13 @@ msgid "Network name already exists in supernet %s (%s)"
msgstr "Nom du réseau existe déjà dans le super-réseau %s (%s)"
#: ../../enterprise/tools/ipam/ipam_action.php:445
-#: ../../operation/agentes/pandora_networkmap.view.php:1689
+#: ../../operation/agentes/pandora_networkmap.view.php:1690
msgid "Could not be updated."
msgstr "Erreur de mise à jour"
#: ../../enterprise/tools/ipam/ipam_action.php:451
#: ../../update_manager_client/views/offline.php:78
-#: ../../update_manager_client/views/online.php:94
+#: ../../update_manager_client/views/online.php:96
msgid "Successfully updated."
msgstr "Mis à jour correctement"
@@ -32678,8 +32840,8 @@ msgstr "Erreur de création : nom en blanc."
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72
#: ../../godmode/modules/manage_nc_groups.php:143
-#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125
-#: ../../godmode/events/event_edit_filter.php:243
+#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125
+#: ../../godmode/events/event_edit_filter.php:245
msgid "Not updated. Error updating data"
msgstr "Erreur de mise à jour des données"
@@ -32749,7 +32911,7 @@ msgid "leased expiration"
msgstr "expiration loué"
#: ../../enterprise/tools/ipam/ipam_ajax.php:476
-#: ../../include/class/NetworkMap.class.php:3067
+#: ../../include/class/NetworkMap.class.php:3073
msgid "MAC"
msgstr "MAC"
@@ -32771,7 +32933,7 @@ msgid "Executing command: %s"
msgstr "Exécution de la commande : %s"
#: ../../enterprise/tools/ipam/ipam_ajax.php:554
-#: ../../include/functions_events.php:5965
+#: ../../include/functions_events.php:5970
msgid "Execute again"
msgstr "Exécuter à nouveau"
@@ -33018,8 +33180,8 @@ msgid "Click on the file below to begin."
msgstr "Cliquez sur le fichier ci-dessous pour commencer."
#: ../../update_manager_client/views/offline.php:70
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/online.php:125
+#: ../../update_manager_client/views/online.php:166
msgid "This action will upgrade this console to version "
msgstr "Cette action mettra à niveau cette console vers la version"
@@ -33028,27 +33190,27 @@ msgid "This action will upgrade all servers to version "
msgstr "Cette action mettra à niveau tous les serveurs vers la version"
#: ../../update_manager_client/views/offline.php:73
-#: ../../update_manager_client/views/online.php:89
+#: ../../update_manager_client/views/online.php:91
msgid "Updating to"
msgstr "Mise à jour vers"
#: ../../update_manager_client/views/offline.php:74
-#: ../../update_manager_client/views/online.php:90
+#: ../../update_manager_client/views/online.php:92
msgid "Do you really want to leave our brilliant application?"
msgstr "Voulez-vous vraiment quitter notre brillante application ?"
#: ../../update_manager_client/views/offline.php:75
-#: ../../update_manager_client/views/online.php:91
+#: ../../update_manager_client/views/online.php:93
msgid "There are no updates available"
msgstr "Il n’y a pas de mises à jour disponibles."
#: ../../update_manager_client/views/offline.php:76
-#: ../../update_manager_client/views/online.php:92
+#: ../../update_manager_client/views/online.php:94
msgid "Searching for updates..."
msgstr "Recherche des mises à jour..."
#: ../../update_manager_client/views/offline.php:77
-#: ../../update_manager_client/views/online.php:93
+#: ../../update_manager_client/views/online.php:95
msgid "Package"
msgstr "Package"
@@ -33128,16 +33290,16 @@ msgstr ""
"pas installée à moins que les correctifs ne soient autorisés. Veuillez activer "
"les correctifs dans les paramètres du gestionnaire de mises à jour."
-#: ../../update_manager_client/views/register.php:47
+#: ../../update_manager_client/views/register.php:48
msgid "Register to Warp Update"
msgstr "S’inscrire à Warp Update"
-#: ../../update_manager_client/views/register.php:54
+#: ../../update_manager_client/views/register.php:55
#, php-format
msgid "Keep this %s console up to date with latest updates."
msgstr "Gardez cette %s console à jour avec les dernières mises à jour."
-#: ../../update_manager_client/views/register.php:61
+#: ../../update_manager_client/views/register.php:62
#, php-format
msgid ""
"When you subscribe to the Warp update service for %s, you accept that we\n"
@@ -33155,24 +33317,24 @@ msgstr ""
" ladite base de données à tout moment depuis les options de Update "
"Manager."
-#: ../../update_manager_client/views/register.php:74
+#: ../../update_manager_client/views/register.php:75
msgid "Visit our privacy policy for more information"
msgstr "Visitez notre politique de confidentialité pour plus d'informations"
-#: ../../update_manager_client/views/register.php:78
-#: ../../include/class/Diagnostics.class.php:1938
+#: ../../update_manager_client/views/register.php:79
+#: ../../include/class/Diagnostics.class.php:1942
msgid "Your email"
msgstr "Votre email"
-#: ../../update_manager_client/views/register.php:97
+#: ../../update_manager_client/views/register.php:98
msgid "OK!"
msgstr "OK !"
-#: ../../update_manager_client/views/register.php:112
+#: ../../update_manager_client/views/register.php:113
msgid "Are you sure you don't want to use Warp update?"
msgstr "Êtes-vous sûr de ne pas vouloir utiliser Warp Update?"
-#: ../../update_manager_client/views/register.php:116
+#: ../../update_manager_client/views/register.php:117
msgid ""
"You will need to update your system manually, through source code or RPM\n"
" packages to be up to date with latest updates."
@@ -33180,11 +33342,11 @@ msgstr ""
"Vous devrez mettre à jour votre système manuellement, via le code source ou "
"RPM
packages pour être à jour avec les dernières mises à jour."
-#: ../../update_manager_client/views/register.php:208
+#: ../../update_manager_client/views/register.php:209
msgid "Unsuccessful subscription"
msgstr "Abonnement infructueux"
-#: ../../update_manager_client/views/register.php:213
+#: ../../update_manager_client/views/register.php:214
msgid "Pandora successfully subscribed with UID: "
msgstr "Pandora FMS abonné correctement avec UID : "
@@ -33192,25 +33354,25 @@ msgstr "Pandora FMS abonné correctement avec UID : "
msgid "The latest version of package installed is"
msgstr "La dernière version du paquet installé est"
-#: ../../update_manager_client/views/online.php:64
+#: ../../update_manager_client/views/online.php:65
msgid "Update to next version"
msgstr "Mettre à jour vers la prochaine version"
-#: ../../update_manager_client/views/online.php:65
+#: ../../update_manager_client/views/online.php:66
msgid "Update to latest version"
msgstr "Mise à jour vers la dernière version"
-#: ../../update_manager_client/views/online.php:124
-#: ../../update_manager_client/views/online.php:165
+#: ../../update_manager_client/views/online.php:126
+#: ../../update_manager_client/views/online.php:167
msgid "Update to"
msgstr "Mettre à jour vers"
-#: ../../update_manager_client/views/online.php:145
-#: ../../update_manager_client/views/online.php:149
+#: ../../update_manager_client/views/online.php:147
+#: ../../update_manager_client/views/online.php:151
msgid "Failed to update to "
msgstr "Échec lors de la mise à jour"
-#: ../../update_manager_client/views/online.php:188
+#: ../../update_manager_client/views/online.php:190
msgid "Failed to update:"
msgstr "Échec lors de la mise à jour :"
@@ -33239,25 +33401,25 @@ msgstr "Échec de la création du répertoire temporaire."
msgid "Failed storing uploaded file."
msgstr "Échec du stockage du fichier téléchargé."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648
#, php-format
msgid "Invalid extension. The package needs to be in `%s` or `%s` format."
msgstr "Extension invalide. Le package doit être au format `%s` ou `%s`."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657
msgid "Failed uploading file."
msgstr "Échec du téléchargement du fichier."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692
msgid "Signatures does not match."
msgstr "Les signatures ne correspondent pas."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751
#, php-format
msgid "Update %s successfully installed."
msgstr "Mise à jour %s installée correctement."
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754
#, php-format
msgid "Failed while updating: %s"
msgstr "Échec lors de la mise à jour : %s"
@@ -33329,6 +33491,7 @@ msgid "Matrix events"
msgstr "Événements de la matrice"
#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251
+#: ../../godmode/setup/setup_websocket_engine.php:162
msgid "WebService engine has not been started, please check documentation."
msgstr "Le moteur WebService n'a pas été démarré, vérifiez la documentation"
@@ -33565,7 +33728,7 @@ msgstr "Enregistrement de ressource"
#: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132
#: ../../godmode/category/category.php:81
#: ../../godmode/category/edit_category.php:92
-#: ../../operation/agentes/ver_agente.php:1934
+#: ../../operation/agentes/ver_agente.php:1930
msgid "Resources"
msgstr "Ressources"
@@ -33621,8 +33784,8 @@ msgid "%s Console URL"
msgstr "%s URL de la console"
#: ../../extensions/api_checker.php:243
-#: ../../godmode/users/configure_user.php:1006
-#: ../../godmode/users/configure_user.php:1029
+#: ../../godmode/users/configure_user.php:1054
+#: ../../godmode/users/configure_user.php:1077
#: ../../operation/users/user_edit.php:299
#: ../../operation/users/user_edit.php:338
msgid "API Token"
@@ -33683,7 +33846,7 @@ msgid "Show URL"
msgstr "Afficher URL"
#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520
-#: ../../godmode/menu.php:478
+#: ../../godmode/menu.php:476
msgid "DB Schema check"
msgstr "Vérifier Schéma BD"
@@ -33869,86 +34032,86 @@ msgstr "Exécuter SQL"
msgid "Error querying database node"
msgstr "Erreur lors de l’interrogation du nœud de base de données"
-#: ../../extensions/agents_modules.php:396
+#: ../../extensions/agents_modules.php:404
#: ../../godmode/reporting/reporting_builder.item_editor.php:2000
#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
msgid "Show module status"
msgstr "Afficher l’état du module"
-#: ../../extensions/agents_modules.php:397
+#: ../../extensions/agents_modules.php:405
#: ../../godmode/reporting/reporting_builder.item_editor.php:2001
#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
msgid "Show module data"
msgstr "Afficher les données du module"
-#: ../../extensions/agents_modules.php:401
+#: ../../extensions/agents_modules.php:409
#: ../../godmode/reporting/reporting_builder.item_editor.php:1996
#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
msgid "Information to be shown"
msgstr "Informations à afficher"
-#: ../../extensions/agents_modules.php:543
+#: ../../extensions/agents_modules.php:551
#: ../../include/functions_reports.php:807
msgid "Agents/Modules"
msgstr "Agents/Modules"
-#: ../../extensions/agents_modules.php:636
+#: ../../extensions/agents_modules.php:644
msgid "Agent/module view"
msgstr "Afficher agent/module"
-#: ../../extensions/agents_modules.php:681
+#: ../../extensions/agents_modules.php:690
msgid "Filters "
msgstr "Filtres "
-#: ../../extensions/agents_modules.php:681
+#: ../../extensions/agents_modules.php:690
msgid "Secondary groups and agent subgroups will be taken into account."
msgstr ""
"Les groupes secondaires et les sous-groupes d'agents seront pris en compte."
-#: ../../extensions/agents_modules.php:833
-#: ../../include/functions_reporting.php:3376
+#: ../../extensions/agents_modules.php:857
+#: ../../include/functions_reporting.php:3385
msgid "There are no agents with modules"
msgstr "Aucun agent avec des modules"
-#: ../../extensions/agents_modules.php:848
+#: ../../extensions/agents_modules.php:872
msgid "Previous modules"
msgstr "Modules précédents"
-#: ../../extensions/agents_modules.php:874
+#: ../../extensions/agents_modules.php:898
msgid "More modules"
msgstr "Plus de modules"
-#: ../../extensions/agents_modules.php:1030
-#: ../../include/functions_reporting_html.php:2282
+#: ../../extensions/agents_modules.php:1054
+#: ../../include/functions_reporting_html.php:2303
msgid "Orange cell when the module has fired alerts"
msgstr "Cellule orange quand le module contient des alertes déclenchées"
-#: ../../extensions/agents_modules.php:1032
-#: ../../include/functions_reporting_html.php:2283
+#: ../../extensions/agents_modules.php:1056
+#: ../../include/functions_reporting_html.php:2304
msgid "Red cell when the module has a critical status"
msgstr "Cellule rouge quand le module se trouve en état critique"
-#: ../../extensions/agents_modules.php:1035
-#: ../../include/functions_reporting_html.php:2284
+#: ../../extensions/agents_modules.php:1059
+#: ../../include/functions_reporting_html.php:2305
msgid "Yellow cell when the module has a warning status"
msgstr "Cellule jaune quand le module se trouve en état d'alerte"
-#: ../../extensions/agents_modules.php:1037
-#: ../../include/functions_reporting_html.php:2285
+#: ../../extensions/agents_modules.php:1061
+#: ../../include/functions_reporting_html.php:2306
msgid "Green cell when the module has a normal status"
msgstr "Cellule verte quand le module se trouve en état normal"
-#: ../../extensions/agents_modules.php:1039
-#: ../../include/functions_reporting_html.php:2286
+#: ../../extensions/agents_modules.php:1063
+#: ../../include/functions_reporting_html.php:2307
msgid "Grey cell when the module has an unknown status"
msgstr "Cellule grise quand le module se trouve en état inconnu"
-#: ../../extensions/agents_modules.php:1041
+#: ../../extensions/agents_modules.php:1065
msgid "Cell turns blue when the module is in 'not initialize' status"
msgstr ""
"Cellule devient bleue quand le module se trouve en état « non initialisé »"
-#: ../../extensions/agents_modules.php:1055
+#: ../../extensions/agents_modules.php:1079
msgid "Agents/Modules view"
msgstr "Afficher agents/modules"
@@ -34048,7 +34211,7 @@ msgid "Public link"
msgstr "Lien publique"
#: ../../extensions/files_repo/files_repo_list.php:58
-#: ../../include/functions_filemanager.php:645
+#: ../../include/functions_filemanager.php:660
msgid "Last modification"
msgstr "Dernière modification"
@@ -34057,8 +34220,8 @@ msgid "Copy to clipboard"
msgstr "Copier dans le presse-papier"
#: ../../extensions/files_repo/files_repo_list.php:167
-#: ../../include/functions_reporting_html.php:2314
-#: ../../include/functions_reporting_html.php:2318
+#: ../../include/functions_reporting_html.php:2335
+#: ../../include/functions_reporting_html.php:2339
msgid "No items"
msgstr "Aucun élément"
@@ -34177,7 +34340,7 @@ msgid "Save agent (%s), module (%s) data xml."
msgstr "Sauvegarder l'agent (%s), module (%s) de donnés xml"
#: ../../extensions/realtime_graphs.php:58
-#: ../../extensions/realtime_graphs.php:295
+#: ../../extensions/realtime_graphs.php:301
msgid "Realtime graphs"
msgstr "Graphiques en temps réel"
@@ -34224,12 +34387,12 @@ msgstr "Intervalle d'actualisation"
msgid "Incremental"
msgstr "Croissant"
-#: ../../extensions/realtime_graphs.php:203
+#: ../../extensions/realtime_graphs.php:199
msgid "Clear graph"
msgstr "Supprimer le graphique"
-#: ../../extensions/realtime_graphs.php:276
-#: ../../godmode/agentes/module_manager_editor_network.php:44
+#: ../../extensions/realtime_graphs.php:282
+#: ../../godmode/agentes/module_manager_editor_network.php:45
msgid "Use this OID"
msgstr "Utiliser cet OID"
@@ -34318,8 +34481,8 @@ msgid "No modules for this profile"
msgstr "Aucun module pour ce profil"
#: ../../godmode/modules/manage_network_templates_form.php:260
-#: ../../operation/snmpconsole/snmp_browser.php:155
-#: ../../operation/snmpconsole/snmp_browser.php:175
+#: ../../operation/snmpconsole/snmp_browser.php:160
+#: ../../operation/snmpconsole/snmp_browser.php:180
msgid "Add modules"
msgstr "Ajouter des modules"
@@ -34396,15 +34559,15 @@ msgid "You can find more information at:"
msgstr "Vous trouverez plus d’informations sur :"
#: ../../godmode/modules/manage_network_components_form_common.php:723
-#: ../../godmode/agentes/module_manager_editor_common.php:2270
+#: ../../godmode/agentes/module_manager_editor_common.php:2280
msgid "Please introduce a positive percentage value"
msgstr "Veuillez introduire une valeur de pourcentage positive"
-#: ../../godmode/modules/manage_network_components_form_network.php:72
+#: ../../godmode/modules/manage_network_components_form_network.php:98
msgid "SNMP Enterprise String"
msgstr "Chaîne SNMP Enterprise"
-#: ../../godmode/modules/manage_network_components_form_network.php:191
+#: ../../godmode/modules/manage_network_components_form_network.php:193
#: ../../godmode/modules/manage_network_components_form_wizard.php:315
msgid "Name OID"
msgstr "Nom OID"
@@ -34412,23 +34575,23 @@ msgstr "Nom OID"
#: ../../godmode/modules/manage_network_components_form_wmi.php:41
#: ../../godmode/agentes/module_manager_editor_wmi.php:106
#: ../../include/class/CredentialStore.class.php:1009
-#: ../../include/class/CredentialStore.class.php:1347
+#: ../../include/class/CredentialStore.class.php:1353
msgid "Namespace"
msgstr "Espace de noms"
-#: ../../godmode/modules/manage_network_components_form.php:358
+#: ../../godmode/modules/manage_network_components_form.php:361
msgid "Update Network Component"
msgstr "Mettre à jour le composant de réseau"
-#: ../../godmode/modules/manage_network_components_form.php:360
+#: ../../godmode/modules/manage_network_components_form.php:363
msgid "Create Network Component"
msgstr "Créer un composant de réseau"
-#: ../../godmode/modules/manage_network_components.php:289
+#: ../../godmode/modules/manage_network_components.php:290
msgid "Remote component management"
msgstr "Gestion des composants à distance"
-#: ../../godmode/modules/manage_network_components.php:321
+#: ../../godmode/modules/manage_network_components.php:322
#, php-format
msgid ""
"This node is configured with centralized mode. All remote components are read "
@@ -34437,37 +34600,37 @@ msgstr ""
"Ce nœud est configuré en mode centralisé. Tous les composants distants sont en "
"lecture seule. Accédez à %s pour les gérer."
-#: ../../godmode/modules/manage_network_components.php:433
+#: ../../godmode/modules/manage_network_components.php:435
msgid "Could not be created because the component exists"
msgstr "Impossible de créer car le composant existe"
-#: ../../godmode/modules/manage_network_components.php:686
+#: ../../godmode/modules/manage_network_components.php:689
msgid "Search by name, description, tcp send or tcp rcv, list matches."
msgstr ""
"Rechercher par nom, description, TCP envoyé ou TCP reçu, concordances de "
"listes."
-#: ../../godmode/modules/manage_network_components.php:779
+#: ../../godmode/modules/manage_network_components.php:782
msgid "Max/Min"
msgstr "Max/Min"
-#: ../../godmode/modules/manage_network_components.php:888
+#: ../../godmode/modules/manage_network_components.php:891
msgid "There are no defined network components"
msgstr "Aucun composant de réseau défini"
-#: ../../godmode/modules/manage_network_components.php:921
+#: ../../godmode/modules/manage_network_components.php:924
msgid "Create a new network component"
msgstr "Créer un nouveau composant de réseau"
-#: ../../godmode/modules/manage_network_components.php:922
+#: ../../godmode/modules/manage_network_components.php:925
msgid "Create a new plugin component"
msgstr "Créer un nouveau composant de plugin"
-#: ../../godmode/modules/manage_network_components.php:923
+#: ../../godmode/modules/manage_network_components.php:926
msgid "Create a new WMI component"
msgstr "Créer un nouveau composant de WMI"
-#: ../../godmode/modules/manage_network_components.php:924
+#: ../../godmode/modules/manage_network_components.php:927
msgid "Create a new wizard component"
msgstr "Créer un nouveau composant d'assistant"
@@ -34582,6 +34745,7 @@ msgstr "Laissé en blanc pour les modules d'inventaire LOCAUX"
#: ../../godmode/massive/massive_enable_disable_alerts.php:196
#: ../../godmode/massive/massive_enable_disable_alerts.php:231
#: ../../include/class/ModuleTemplates.class.php:1184
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491
msgid "Format"
msgstr "Format"
@@ -34665,7 +34829,7 @@ msgid "Database size stats"
msgstr "Statistiques sur la taille de la base de données"
#: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:603
-#: ../../include/functions_reporting.php:14740
+#: ../../include/functions_reporting.php:14813
msgid "Total events"
msgstr "Nombre total d'événements"
@@ -34722,7 +34886,7 @@ msgid "Update group"
msgstr "Mettre à jour le groupe"
#: ../../godmode/groups/configure_group.php:95
-#: ../../godmode/groups/group_list.php:1006
+#: ../../godmode/groups/group_list.php:1018
msgid "Create group"
msgstr "Créer un groupe"
@@ -34731,44 +34895,44 @@ msgstr "Créer un groupe"
msgid "Manage agents group"
msgstr "Gérer le groupe d'agents"
-#: ../../godmode/groups/configure_group.php:160
+#: ../../godmode/groups/configure_group.php:179
msgid "You have not access to the parent."
msgstr "Vous n'avez pas accès au parent"
-#: ../../godmode/groups/configure_group.php:218
+#: ../../godmode/groups/configure_group.php:237
msgid "Group Password"
msgstr "Mot de passe du groupe"
-#: ../../godmode/groups/configure_group.php:224
+#: ../../godmode/groups/configure_group.php:243
msgid "Enable alert use in this group."
msgstr "Activer l'utilisation des alertes dans ce groupe."
-#: ../../godmode/groups/configure_group.php:229
+#: ../../godmode/groups/configure_group.php:248
msgid "Propagate ACL"
msgstr "Propager ACL"
-#: ../../godmode/groups/configure_group.php:229
+#: ../../godmode/groups/configure_group.php:248
msgid "Propagate the same ACL security into the child subgroups."
msgstr "Propager la même sécurité de l'ACL dans les sous-groupes enfants."
-#: ../../godmode/groups/configure_group.php:244
-#: ../../include/functions_events.php:5068
+#: ../../godmode/groups/configure_group.php:263
+#: ../../include/functions_events.php:5073
msgid "Contact"
msgstr "Contact"
-#: ../../godmode/groups/configure_group.php:244
+#: ../../godmode/groups/configure_group.php:263
msgid "Contact information accessible through the _groupcontact_ macro"
msgstr "Information de contact accessible via la _groupcontact_ macro"
-#: ../../godmode/groups/configure_group.php:249
+#: ../../godmode/groups/configure_group.php:268
msgid "Information accessible through the _group_other_ macro"
msgstr "Information accessible par la _group_other_ macro"
-#: ../../godmode/groups/configure_group.php:254
+#: ../../godmode/groups/configure_group.php:273
msgid "Max agents allowed"
msgstr "Nombre maximum d'agents autorisés"
-#: ../../godmode/groups/configure_group.php:254
+#: ../../godmode/groups/configure_group.php:273
msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
msgstr ""
"Définissez le nombre maximum d'agents autorisés pour ce groupe. 0 est illimité."
@@ -34787,8 +34951,8 @@ msgid "Groups defined in %s"
msgstr "Groupes définis dans %s"
#: ../../godmode/groups/group_list.php:352
-#: ../../godmode/agentes/module_manager_editor_network.php:172
-#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723
+#: ../../godmode/agentes/module_manager_editor_network.php:173
+#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723
#: ../../include/class/AgentWizard.class.php:779
msgid "Credential store"
msgstr "Entrepôt d’identifiants"
@@ -34813,32 +34977,32 @@ msgid "There was a problem creating group"
msgstr "Erreur de création du groupe"
#: ../../godmode/groups/group_list.php:470
-#: ../../godmode/groups/group_list.php:542
+#: ../../godmode/groups/group_list.php:543
msgid "Each group must have a different name"
msgstr "Chaque groupe doit avoir un nom différent"
#: ../../godmode/groups/group_list.php:473
-#: ../../godmode/groups/group_list.php:545
+#: ../../godmode/groups/group_list.php:546
msgid "Group must have a name"
msgstr "Le groupe doit avoir un nom"
-#: ../../godmode/groups/group_list.php:537
+#: ../../godmode/groups/group_list.php:538
#: ../../godmode/groups/modu_group_list.php:165
msgid "Group successfully updated"
msgstr "Groupe mis à jour correctement"
-#: ../../godmode/groups/group_list.php:539
+#: ../../godmode/groups/group_list.php:540
#: ../../godmode/groups/modu_group_list.php:168
msgid "There was a problem modifying group"
msgstr "Erreur de modification du groupe"
-#: ../../godmode/groups/group_list.php:602
+#: ../../godmode/groups/group_list.php:603
#, php-format
msgid "The group %s could not be deleted because it is not empty in the nodes"
msgstr ""
"Le groupe %s n'a pas pu être supprimé car il n'est pas vide dans les nœuds"
-#: ../../godmode/groups/group_list.php:676
+#: ../../godmode/groups/group_list.php:677
msgid ""
"The group has not been deleted in the metaconsole due to an error in the node "
"database"
@@ -34846,42 +35010,42 @@ msgstr ""
"Le groupe n'a pas été supprimé dans la Métaconsole en raison d'une erreur dans "
"la base de données des nœuds"
-#: ../../godmode/groups/group_list.php:685
+#: ../../godmode/groups/group_list.php:686
#, php-format
msgid "The group %s has been deleted in the nodes"
msgstr "Le groupe %s a été supprimé dans les nœuds"
-#: ../../godmode/groups/group_list.php:725
+#: ../../godmode/groups/group_list.php:726
#: ../../godmode/groups/modu_group_list.php:238
msgid "Group successfully deleted"
msgstr "Groupe supprimé correctement"
-#: ../../godmode/groups/group_list.php:728
+#: ../../godmode/groups/group_list.php:729
#: ../../godmode/groups/modu_group_list.php:239
msgid "There was a problem deleting group"
msgstr "Erreur de suppression du groupe"
-#: ../../godmode/groups/group_list.php:735
+#: ../../godmode/groups/group_list.php:736
#, php-format
msgid "The group is not empty. It is use in %s."
msgstr "Le groupe n'est pas vide. Il est en service sur %s"
-#: ../../godmode/groups/group_list.php:774
-#: ../../godmode/groups/group_list.php:994
+#: ../../godmode/groups/group_list.php:775
+#: ../../godmode/groups/group_list.php:1006
msgid "There are no defined groups"
msgstr "Aucun groupe défini"
-#: ../../godmode/groups/group_list.php:832
+#: ../../godmode/groups/group_list.php:833
msgid "Edit or delete groups can cause problems with synchronization"
msgstr ""
"Modifier ou supprimer des groupes peut provoquer des problèmes avec la "
"synchronisation"
-#: ../../godmode/groups/group_list.php:958
+#: ../../godmode/groups/group_list.php:970
msgid "Are you sure? This group will also be deleted in all the nodes."
msgstr "Es-tu sûr ? Ce groupe sera également supprimé dans tous les nœuds."
-#: ../../godmode/groups/group_list.php:964
+#: ../../godmode/groups/group_list.php:976
msgid ""
"The child groups will be updated to use the parent id of the deleted group"
msgstr ""
@@ -34931,24 +35095,20 @@ msgstr "Créer un groupe de modules"
msgid "Tactical group view"
msgstr "Vue de groupe tactique"
-#: ../../godmode/groups/tactical.php:115
+#: ../../godmode/groups/tactical.php:114
msgid "Distribution by os"
msgstr "Distribution par système d’exploitation"
-#: ../../godmode/groups/tactical.php:146
+#: ../../godmode/groups/tactical.php:145
#: ../../include/functions_reporting_html.php:1204
-#: ../../include/functions_reporting_html.php:1419
+#: ../../include/functions_reporting_html.php:1428
msgid "Events by agent"
msgstr "Événements par agent"
-#: ../../godmode/groups/tactical.php:155
+#: ../../godmode/groups/tactical.php:154
msgid "Alerts and events"
msgstr "Alertes et événements"
-#: ../../godmode/groups/tactical.php:182
-msgid "Ultimo contacto remoto"
-msgstr "Dernier contact à distance"
-
#: ../../godmode/extensions.php:46
msgid "Defined extensions"
msgstr "Extensions définies"
@@ -35093,7 +35253,7 @@ msgstr "Gestion des profils utilisateur"
#: ../../godmode/users/configure_profile.php:90
#: ../../godmode/users/configure_profile.php:389
#: ../../godmode/users/user_list.php:301
-#: ../../godmode/users/configure_user.php:280
+#: ../../godmode/users/configure_user.php:218
msgid "Manage users"
msgstr "Gérer les utilisateurs"
@@ -35246,7 +35406,7 @@ msgid "Create Profile"
msgstr "Créer un profil"
#: ../../godmode/users/configure_profile.php:283
-#: ../../operation/agentes/ver_agente.php:1938
+#: ../../operation/agentes/ver_agente.php:1934
msgid "View agents"
msgstr "Afficher les agents"
@@ -35267,7 +35427,7 @@ msgid "Edit events"
msgstr "Modifier les événements"
#: ../../godmode/users/configure_profile.php:317
-#: ../../operation/events/events.php:1545
+#: ../../operation/events/events.php:1599
msgid "Manage events"
msgstr "Gérer les événements"
@@ -35296,7 +35456,7 @@ msgid "Manage network maps"
msgstr "Gérer les cartes de réseau"
#: ../../godmode/users/configure_profile.php:354
-#: ../../include/functions_menu.php:571
+#: ../../include/functions_menu.php:573
msgid "View visual console"
msgstr "Afficher la console visuelle"
@@ -35326,36 +35486,36 @@ msgid "Profile name already on use, please, change the name before save"
msgstr "Nom du profil déjà utilisé, veuillez changer le nom avant de sauvegarder"
#: ../../godmode/users/user_list.php:351
-#: ../../godmode/users/configure_user.php:115
+#: ../../godmode/users/configure_user.php:885
#, php-format
msgid "Deleted user %s"
msgstr "Supprimer l'utilisateur %s"
#: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400
-#: ../../godmode/users/configure_user.php:122
+#: ../../godmode/users/configure_user.php:892
msgid "There was a problem deleting the user"
msgstr "Erreur de suppression de l'utilisateur"
#: ../../godmode/users/user_list.php:376
-#: ../../godmode/users/configure_user.php:137
+#: ../../godmode/users/configure_user.php:907
#, php-format
msgid "Deleted user %s from metaconsole"
msgstr "Supprimer l'utilisateur %s de la Métaconsole"
#: ../../godmode/users/user_list.php:388
-#: ../../godmode/users/configure_user.php:149
+#: ../../godmode/users/configure_user.php:919
#, php-format
msgid "Deleted user %s from %s"
msgstr "Supprimer l'utilisateur %s de %s"
#: ../../godmode/users/user_list.php:394
-#: ../../godmode/users/configure_user.php:158
+#: ../../godmode/users/configure_user.php:928
#, php-format
msgid "Successfully deleted from %s"
msgstr "Supprimé de %s correctement"
#: ../../godmode/users/user_list.php:395
-#: ../../godmode/users/configure_user.php:159
+#: ../../godmode/users/configure_user.php:929
#, php-format
msgid "There was a problem deleting the user from %s"
msgstr "Erreur de suppression de l'utilisateur de %s"
@@ -35364,15 +35524,15 @@ msgstr "Erreur de suppression de l'utilisateur de %s"
msgid "ID user cannot be empty"
msgstr "L'identifiant de l'utilisateur ne peut pas être vide."
-#: ../../godmode/users/user_list.php:443
+#: ../../godmode/users/user_list.php:444
msgid "There was a problem disabling user"
msgstr "Erreur de désactivation de l'utilisateur"
-#: ../../godmode/users/user_list.php:449
+#: ../../godmode/users/user_list.php:450
msgid "There was a problem enabling user"
msgstr "Erreur d'activation de l'utilisateur"
-#: ../../godmode/users/user_list.php:544 ../../operation/users/user_edit.php:284
+#: ../../godmode/users/user_list.php:545 ../../operation/users/user_edit.php:284
#, php-format
msgid ""
"This node is configured with centralized mode. All users information is read "
@@ -35381,23 +35541,23 @@ msgstr ""
"Ce nœud est configuré en mode centralisé. Toutes les informations des "
"utilisateurs sont en lecture seule. Allez vers %s pour le gérer."
-#: ../../godmode/users/user_list.php:580
+#: ../../godmode/users/user_list.php:581
msgid "Profile / Group"
msgstr "Profil/Groupe"
-#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63
+#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63
msgid "Administrator"
msgstr "Administrateur"
-#: ../../godmode/users/user_list.php:794
+#: ../../godmode/users/user_list.php:795
msgid "Show profiles"
msgstr "Afficher les profils"
-#: ../../godmode/users/user_list.php:812
+#: ../../godmode/users/user_list.php:813
msgid "Other profiles are also assigned."
msgstr "D'autres profils sont également attribués."
-#: ../../godmode/users/user_list.php:814
+#: ../../godmode/users/user_list.php:815
msgid ""
"Other profiles you cannot manage are also assigned. These profiles are not "
"shown. You cannot enable/disable or delete this user."
@@ -35406,65 +35566,82 @@ msgstr ""
"profils ne sont pas affichés. Vous ne pouvez pas activer/désactiver ou "
"supprimer cet utilisateur."
-#: ../../godmode/users/user_list.php:823
-#: ../../include/functions_reporting.php:5140
-#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87
+#: ../../godmode/users/user_list.php:824
+#: ../../include/functions_reporting.php:5149
+#: ../../include/functions_reporting.php:5196 ../../operation/search_users.php:87
msgid "The user doesn't have any assigned profile/group"
msgstr "Aucun profil/groupe assigné à cet utilisateur"
-#: ../../godmode/users/user_list.php:935
+#: ../../godmode/users/user_list.php:936
#: ../../operation/users/user_edit_header.php:129
msgid "Edit user"
msgstr "Editer l'utilisateur"
-#: ../../godmode/users/user_list.php:1032
+#: ../../godmode/users/user_list.php:1034
msgid "Create user"
msgstr "Créer un utilisateur"
-#: ../../godmode/users/user_list.php:1046
-#: ../../godmode/users/configure_user.php:357
+#: ../../godmode/users/user_list.php:1048
+#: ../../godmode/users/configure_user.php:295
#, php-format
msgid "The current authentication scheme doesn't support creating users on %s"
msgstr ""
"Le schéma d'authentification actuel ne prend pas en charge la création "
"d'utilisateurs sur %s"
-#: ../../godmode/users/configure_user.php:267
+#: ../../godmode/users/configure_user.php:60
+#: ../../godmode/users/user_management.php:39
+#: ../../godmode/massive/massive_edit_users.php:275
+#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808
+#: ../../operation/users/user_edit.php:470 ../../operation/events/events.php:1525
+msgid "Event list"
+msgstr "Liste d'événements"
+
+#: ../../godmode/users/configure_user.php:64
+#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812
+msgid "External link"
+msgstr "Lien externe"
+
+#: ../../godmode/users/configure_user.php:205
msgid "Update User"
msgstr "Mettre à jour l'utilisateur"
-#: ../../godmode/users/configure_user.php:267
+#: ../../godmode/users/configure_user.php:205
msgid "Create User"
msgstr "Créer un utilisateur"
-#: ../../godmode/users/configure_user.php:284
+#: ../../godmode/users/configure_user.php:222
msgid "User Detail Editor"
msgstr "Éditeur d'information sur l'utilisateur"
-#: ../../godmode/users/configure_user.php:449
+#: ../../godmode/users/configure_user.php:391
msgid "User ID cannot be empty"
msgstr "L'identifiant de l'utilisateur ne peut pas être vide."
-#: ../../godmode/users/configure_user.php:456
+#: ../../godmode/users/configure_user.php:399
+msgid "User ID already exists"
+msgstr "La ID de cette utilisateur existe déjà"
+
+#: ../../godmode/users/configure_user.php:405
msgid "Invalid user ID: leading or trailing blank spaces not allowed"
msgstr ""
"ID utilisateur non valide : les espaces vides de début ou de fin ne sont pas "
"autorisés"
-#: ../../godmode/users/configure_user.php:464
+#: ../../godmode/users/configure_user.php:413
msgid "Passwords cannot be empty"
msgstr "Les mots de passe ne peuvent pas être vides."
-#: ../../godmode/users/configure_user.php:471
+#: ../../godmode/users/configure_user.php:420
msgid "Passwords didn't match"
msgstr "Les mots de passe saisis ne sont pas identiques."
-#: ../../godmode/users/configure_user.php:478
+#: ../../godmode/users/configure_user.php:427
msgid "The password provided is not valid. Please set another one."
msgstr ""
"Le mot de passe fourni n’est pas valide. S’il vous plaît, entrez-en un autre."
-#: ../../godmode/users/configure_user.php:540
+#: ../../godmode/users/configure_user.php:489
msgid ""
"Strict ACL is not recommended for admin users because performance could be "
"affected."
@@ -35472,62 +35649,62 @@ msgstr ""
"Les ACL strictes ne sont pas recommandées pour les administrateur parce que "
"cela pourrait affecter la performance."
-#: ../../godmode/users/configure_user.php:624
-#: ../../godmode/users/configure_user.php:963
+#: ../../godmode/users/configure_user.php:573
+#: ../../godmode/users/configure_user.php:1011
msgid "Profile added successfully"
msgstr "Profil ajouté correctement"
-#: ../../godmode/users/configure_user.php:625
-#: ../../godmode/users/configure_user.php:964
+#: ../../godmode/users/configure_user.php:574
+#: ../../godmode/users/configure_user.php:1012
msgid "Profile cannot be added"
msgstr "Impossible d'ajouter le profil"
-#: ../../godmode/users/configure_user.php:754
-#: ../../godmode/users/configure_user.php:778
-#: ../../godmode/users/configure_user.php:852
-#: ../../godmode/users/configure_user.php:859
-#: ../../godmode/users/configure_user.php:891
+#: ../../godmode/users/configure_user.php:715
+#: ../../godmode/users/configure_user.php:743
+#: ../../godmode/users/configure_user.php:817
+#: ../../godmode/users/configure_user.php:824
+#: ../../godmode/users/configure_user.php:939
#: ../../operation/users/user_edit.php:216
#: ../../operation/users/user_edit.php:262
msgid "User info successfully updated"
msgstr "L'information de l'utilisateur a été mise à jour correctement."
-#: ../../godmode/users/configure_user.php:755
-#: ../../godmode/users/configure_user.php:779
-#: ../../godmode/users/configure_user.php:853
-#: ../../godmode/users/configure_user.php:860
-#: ../../godmode/users/configure_user.php:892
+#: ../../godmode/users/configure_user.php:716
+#: ../../godmode/users/configure_user.php:744
+#: ../../godmode/users/configure_user.php:818
+#: ../../godmode/users/configure_user.php:825
+#: ../../godmode/users/configure_user.php:940
msgid "Error updating user info (no change?)"
msgstr ""
"Erreur de mise à jour de l'information de l'utilisateur (aucun changement ?)"
-#: ../../godmode/users/configure_user.php:784
+#: ../../godmode/users/configure_user.php:749
msgid "Password of the active user is required to perform password change"
msgstr ""
"Le mot de passe de l'utilisateur actif est requis pour effectuer le changement "
"de mot de passe"
-#: ../../godmode/users/configure_user.php:786
+#: ../../godmode/users/configure_user.php:751
msgid "Password of active user is not correct"
msgstr "Le mot de passe de l'utilisateur actif n'est pas correct"
-#: ../../godmode/users/configure_user.php:802
+#: ../../godmode/users/configure_user.php:767
msgid "Passwords does not match"
msgstr "Les mots de passe ne concordent pas"
-#: ../../godmode/users/configure_user.php:852
+#: ../../godmode/users/configure_user.php:817
#: ../../operation/users/user_edit.php:214
msgid "You have generated a new API Token."
msgstr "Vous avez généré un nouveau jeton API."
-#: ../../godmode/users/configure_user.php:881
+#: ../../godmode/users/configure_user.php:846
msgid ""
"Strict ACL is not recommended for this user. Performance could be affected."
msgstr ""
"Les ACL strictes ne sont pas recommandées pour ces utilisateurs. La "
"performance pourrait être affectée."
-#: ../../godmode/users/configure_user.php:1014
+#: ../../godmode/users/configure_user.php:1062
#: ../../operation/users/user_edit.php:306
msgid ""
"The API token will be renewed. After this action, the last token you were "
@@ -35536,67 +35713,67 @@ msgstr ""
"Le jeton API sera renouvelé. Après cette action, le dernier jeton que vous "
"utilisiez ne fonctionnera pas. Êtes-vous sûr?"
-#: ../../godmode/users/configure_user.php:1030
+#: ../../godmode/users/configure_user.php:1078
#: ../../operation/users/user_edit.php:339
msgid "Your API Token is:"
msgstr "Votre jeton API est :"
-#: ../../godmode/users/configure_user.php:1030
+#: ../../godmode/users/configure_user.php:1078
#: ../../operation/users/user_edit.php:339
msgid "Please, avoid share this string with others."
msgstr "S’il vous plaît, évitez de partager cette chaîne avec d’autres."
-#: ../../godmode/users/configure_user.php:1091
+#: ../../godmode/users/configure_user.php:1155
#: ../../godmode/users/user_management.php:178
#: ../../operation/users/user_edit.php:384
msgid "Full (display) name"
msgstr "Nom complet (affiché)"
-#: ../../godmode/users/configure_user.php:1109
-#: ../../godmode/users/user_management.php:664
+#: ../../godmode/users/configure_user.php:1173
+#: ../../godmode/users/user_management.php:690
#: ../../godmode/massive/massive_edit_users.php:469
-#: ../../operation/users/user_edit.php:537
+#: ../../operation/users/user_edit.php:530
msgid "The timezone must be that of the associated server."
msgstr "Le fuseau horaire doit être celui du serveur associé."
-#: ../../godmode/users/configure_user.php:1142
+#: ../../godmode/users/configure_user.php:1206
#: ../../godmode/users/user_management.php:299
#: ../../operation/users/user_edit.php:411
msgid "Password confirmation"
msgstr "Confirmation du mot de passe"
-#: ../../godmode/users/configure_user.php:1160
+#: ../../godmode/users/configure_user.php:1224
#: ../../godmode/users/user_management.php:319
msgid "Own password confirmation"
msgstr "Confirmation propre du mot de passe"
-#: ../../godmode/users/configure_user.php:1170
+#: ../../godmode/users/configure_user.php:1234
#: ../../godmode/users/user_management.php:233
msgid "Administrator user"
msgstr "Utilisateur administrateur"
-#: ../../godmode/users/configure_user.php:1197
+#: ../../godmode/users/configure_user.php:1261
#: ../../godmode/users/user_management.php:198
#: ../../operation/users/user_edit.php:404
msgid "E-mail"
msgstr "Courriel"
-#: ../../godmode/users/configure_user.php:1213
+#: ../../godmode/users/configure_user.php:1277
#: ../../godmode/users/user_management.php:206
#: ../../godmode/users/user_management.php:218
#: ../../operation/users/user_edit.php:406
msgid "Phone number"
msgstr "Numéro de téléphone"
-#: ../../godmode/users/configure_user.php:1229
-#: ../../godmode/users/user_management.php:695
-#: ../../operation/users/user_edit.php:755
+#: ../../godmode/users/configure_user.php:1293
+#: ../../godmode/users/user_management.php:721
+#: ../../operation/users/user_edit.php:752
msgid "Login allowed IP list"
msgstr "Liste d’adresses IP autorisées pour la connexion"
-#: ../../godmode/users/configure_user.php:1230
-#: ../../godmode/users/user_management.php:712
-#: ../../operation/users/user_edit.php:756
+#: ../../godmode/users/configure_user.php:1294
+#: ../../godmode/users/user_management.php:738
+#: ../../operation/users/user_edit.php:753
msgid ""
"Add the source IPs that will allow console access. Each IP must be separated "
"only by comma. * allows all."
@@ -35604,31 +35781,31 @@ msgstr ""
"Ajoutez les adresses IP source qui autoriseront l’accès à la console. Chaque "
"adresse IP doit être séparée uniquement par une virgule. * permet tout."
-#: ../../godmode/users/configure_user.php:1269
+#: ../../godmode/users/configure_user.php:1333
msgid "Skin"
msgstr "Thème"
-#: ../../godmode/users/configure_user.php:1280
+#: ../../godmode/users/configure_user.php:1344
msgid "Search custom field view"
msgstr "Vue de recherche d’un champ personnalisé"
-#: ../../godmode/users/configure_user.php:1294
+#: ../../godmode/users/configure_user.php:1358
msgid "Load by default the selected view in custom field view"
msgstr ""
"Charger par défaut la vue sélectionnée dans la vue de champ personnalisée"
-#: ../../godmode/users/configure_user.php:1300
+#: ../../godmode/users/configure_user.php:1364
msgid "Use global conf"
msgstr "Utiliser configuration générale"
-#: ../../godmode/users/configure_user.php:1305
-#: ../../godmode/users/user_management.php:614
+#: ../../godmode/users/configure_user.php:1369
+#: ../../godmode/users/user_management.php:629
#: ../../godmode/massive/massive_edit_users.php:270
#: ../../operation/users/user_edit.php:466
msgid "Home screen"
msgstr "Page d'accueil"
-#: ../../godmode/users/configure_user.php:1306
+#: ../../godmode/users/configure_user.php:1370
#: ../../godmode/massive/massive_edit_users.php:270
#: ../../operation/users/user_edit.php:466
msgid ""
@@ -35641,72 +35818,72 @@ msgstr ""
"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 pour afficher la vue "
"détaillée de l'agent"
-#: ../../godmode/users/configure_user.php:1410
+#: ../../godmode/users/configure_user.php:1459
msgid "Metaconsole access"
msgstr "Accès à la Métaconsole"
-#: ../../godmode/users/configure_user.php:1442
+#: ../../godmode/users/configure_user.php:1495
msgid "Default event filter"
msgstr "Filtre d'événement par défaut"
-#: ../../godmode/users/configure_user.php:1456
+#: ../../godmode/users/configure_user.php:1509
msgid "eHorus user access enabled"
msgstr "Accès utilisateur eHorus activé"
-#: ../../godmode/users/configure_user.php:1464
-#: ../../include/functions_config.php:1820
+#: ../../godmode/users/configure_user.php:1517
+#: ../../include/functions_config.php:1832
msgid "eHorus user"
msgstr "Utilisateur eHorus"
-#: ../../godmode/users/configure_user.php:1473
-#: ../../include/functions_config.php:1824
+#: ../../godmode/users/configure_user.php:1526
+#: ../../include/functions_config.php:1836
msgid "eHorus password"
msgstr "Mot de passe eHorus"
-#: ../../godmode/users/configure_user.php:1502
+#: ../../godmode/users/configure_user.php:1555
msgid "User must be created before activating double authentication."
msgstr "L'utilisateur doit être créé avant d'activer la double authentification."
-#: ../../godmode/users/configure_user.php:1529
-#: ../../operation/users/user_edit.php:559
+#: ../../godmode/users/configure_user.php:1582
+#: ../../operation/users/user_edit.php:552
msgid "Show information"
msgstr "Afficher l'information"
-#: ../../godmode/users/configure_user.php:1608
+#: ../../godmode/users/configure_user.php:1662
msgid "Enable agents managment"
msgstr "Activer la gestion d'agents"
-#: ../../godmode/users/configure_user.php:1616
+#: ../../godmode/users/configure_user.php:1670
msgid "Enable node access"
msgstr "Activer l'accès au nœud"
-#: ../../godmode/users/configure_user.php:1617
+#: ../../godmode/users/configure_user.php:1671
msgid "With this option enabled, the user will can access to nodes console"
msgstr ""
"Si cette option est activée, l'utilisateur pourra accéder à la console de nœuds"
-#: ../../godmode/users/configure_user.php:1849
+#: ../../godmode/users/configure_user.php:1901
msgid "yes"
msgstr "Oui"
-#: ../../godmode/users/configure_user.php:1852
+#: ../../godmode/users/configure_user.php:1904
msgid "no"
msgstr "Non"
-#: ../../godmode/users/configure_user.php:1856
+#: ../../godmode/users/configure_user.php:1908
msgid "Please select profile and group"
msgstr "Veuillez sélectionner le profil et le groupe"
-#: ../../godmode/users/configure_user.php:1870
-#: ../../godmode/users/configure_user.php:1921
+#: ../../godmode/users/configure_user.php:1922
+#: ../../godmode/users/configure_user.php:1973
msgid "This profile is already defined"
msgstr "Ce profil est déjà défini"
-#: ../../godmode/users/configure_user.php:1935
+#: ../../godmode/users/configure_user.php:1987
msgid "Deleting last profile will delete this user"
msgstr "La suppression du dernier profil supprimera cet utilisateur"
-#: ../../godmode/users/configure_user.php:1975
+#: ../../godmode/users/configure_user.php:2027
msgid ""
"User will be created without profiles assigned and won't be able to log in, "
"are you sure?"
@@ -35714,44 +35891,33 @@ msgstr ""
"L'utilisateur sera créé sans profils attribués et ne pourra pas se connecter, "
"êtes-vous sûr ?"
-#: ../../godmode/users/configure_user.php:2082
-#: ../../operation/users/user_edit.php:1256
+#: ../../godmode/users/configure_user.php:2134
+#: ../../operation/users/user_edit.php:1253
msgid "Double autentication information"
msgstr "Information d'authentification double"
-#: ../../godmode/users/configure_user.php:2171
-#: ../../operation/users/user_edit.php:1345
+#: ../../godmode/users/configure_user.php:2223
+#: ../../operation/users/user_edit.php:1342
msgid "The double authentication will be deactivated"
msgstr "La double authentification sera désactivée."
-#: ../../godmode/users/configure_user.php:2172
-#: ../../operation/users/user_edit.php:1346
+#: ../../godmode/users/configure_user.php:2224
+#: ../../operation/users/user_edit.php:1343
msgid "Deactivate"
msgstr "Désactiver"
-#: ../../godmode/users/configure_user.php:2207
-#: ../../operation/users/user_edit.php:1378
+#: ../../godmode/users/configure_user.php:2259
+#: ../../operation/users/user_edit.php:1375
msgid "The double autentication was deactivated successfully"
msgstr "La double authentification a été désactivée correctement."
-#: ../../godmode/users/configure_user.php:2210
-#: ../../godmode/users/configure_user.php:2214
-#: ../../operation/users/user_edit.php:1381
-#: ../../operation/users/user_edit.php:1385
+#: ../../godmode/users/configure_user.php:2262
+#: ../../godmode/users/configure_user.php:2266
+#: ../../operation/users/user_edit.php:1378
+#: ../../operation/users/user_edit.php:1382
msgid "There was an error deactivating the double autentication"
msgstr "Erreur de désactivation de la double authentification"
-#: ../../godmode/users/user_management.php:39
-#: ../../godmode/massive/massive_edit_users.php:275
-#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470
-#: ../../operation/events/events.php:1471
-msgid "Event list"
-msgstr "Liste d'événements"
-
-#: ../../godmode/users/user_management.php:43
-msgid "External link"
-msgstr "Lien externe"
-
#: ../../godmode/users/user_management.php:136
msgid "Profile information"
msgstr "Informations du profil"
@@ -35793,11 +35959,11 @@ msgstr ""
"L’utilisateur dont l’authentification locale est activée utilisera toujours "
"l’authentification locale."
-#: ../../godmode/users/user_management.php:384
+#: ../../godmode/users/user_management.php:390
msgid "Session time"
msgstr "Durée de la session"
-#: ../../godmode/users/user_management.php:394
+#: ../../godmode/users/user_management.php:400
msgid ""
"This is defined in minutes, If you wish a permanent session should putting -1 "
"in this field."
@@ -35805,55 +35971,55 @@ msgstr ""
"Défini en minutes ; si vous souhaitez établir une session permanente, "
"introduisez -1 dans ce champ."
-#: ../../godmode/users/user_management.php:399
+#: ../../godmode/users/user_management.php:405
#: ../../godmode/massive/massive_edit_users.php:378
-#: ../../operation/users/user_edit.php:645
+#: ../../operation/users/user_edit.php:642
msgid "Autorefresh"
msgstr "Rafraîchissement automatique"
-#: ../../godmode/users/user_management.php:434
+#: ../../godmode/users/user_management.php:440
#: ../../godmode/massive/massive_edit_users.php:418
-#: ../../operation/users/user_edit.php:681
+#: ../../operation/users/user_edit.php:678
msgid "Full list of pages"
msgstr "Liste complète de pages"
-#: ../../godmode/users/user_management.php:445
+#: ../../godmode/users/user_management.php:451
msgid "Pages with autorefresh"
msgstr "Pages avec rafraîchissement automatique"
-#: ../../godmode/users/user_management.php:466
-#: ../../godmode/users/user_management.php:467
+#: ../../godmode/users/user_management.php:472
+#: ../../godmode/users/user_management.php:473
#: ../../godmode/massive/massive_edit_users.php:427
#: ../../godmode/massive/massive_edit_users.php:428
-#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382
-#: ../../operation/users/user_edit.php:690
-#: ../../operation/users/user_edit.php:691
+#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387
+#: ../../operation/users/user_edit.php:687
+#: ../../operation/users/user_edit.php:688
msgid "Push selected pages into autorefresh list"
msgstr ""
"Ajouter les pages sélectionnées à la liste de rafraîchissement automatique."
-#: ../../godmode/users/user_management.php:483
-#: ../../godmode/users/user_management.php:484
+#: ../../godmode/users/user_management.php:489
+#: ../../godmode/users/user_management.php:490
#: ../../godmode/massive/massive_edit_users.php:437
#: ../../godmode/massive/massive_edit_users.php:438
-#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394
-#: ../../operation/users/user_edit.php:699
-#: ../../operation/users/user_edit.php:700
+#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399
+#: ../../operation/users/user_edit.php:696
+#: ../../operation/users/user_edit.php:697
msgid "Pop selected pages out of autorefresh list"
msgstr ""
"Supprimer les pages sélectionnées de la liste de rafraîchissement automatique"
-#: ../../godmode/users/user_management.php:530
+#: ../../godmode/users/user_management.php:536
msgid "Autorefresh pages"
msgstr "Rafraîchissement automatique des pages"
-#: ../../godmode/users/user_management.php:536
+#: ../../godmode/users/user_management.php:542
msgid "Time for autorefresh"
msgstr "Temps de rafraîchissement automatique"
-#: ../../godmode/users/user_management.php:549
+#: ../../godmode/users/user_management.php:555
#: ../../godmode/massive/massive_edit_users.php:454
-#: ../../operation/users/user_edit.php:716
+#: ../../operation/users/user_edit.php:713
msgid ""
"Interval of autorefresh of the elements, by default they are 30 seconds, "
"needing to enable the autorefresh first"
@@ -35861,40 +36027,36 @@ msgstr ""
"Intervalle de rafraîchissement automatique des éléments, par défaut ils sont "
"de 30 secondes, il faut d'abord activer le rafraîchissement automatique"
-#: ../../godmode/users/user_management.php:554
+#: ../../godmode/users/user_management.php:560
msgid "Language and Appearance"
msgstr "Langage et apparence"
-#: ../../godmode/users/user_management.php:576
+#: ../../godmode/users/user_management.php:582
msgid "User color scheme"
msgstr "Jeu de couleurs utilisateur"
-#: ../../godmode/users/user_management.php:593
+#: ../../godmode/users/user_management.php:603
#: ../../godmode/massive/massive_edit_users.php:340
-#: ../../operation/users/user_edit.php:574
+#: ../../operation/users/user_edit.php:571
msgid "Event filter"
msgstr "Filtre d'événements"
-#: ../../godmode/users/user_management.php:661
-#: ../../include/functions_visual_map_editor.php:313
+#: ../../godmode/users/user_management.php:687
+#: ../../include/functions_visual_map_editor.php:309
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302
msgid "Time zone"
msgstr "Fuseau horaire"
-#: ../../godmode/users/user_management.php:678
+#: ../../godmode/users/user_management.php:704
msgid "Additional settings"
msgstr "Réglages supplémentaires"
-#: ../../godmode/users/user_management.php:717
+#: ../../godmode/users/user_management.php:743
msgid "Allow all IPs"
msgstr "Autoriser toutes les adresses IP"
-#: ../../godmode/users/user_management.php:749
-msgid "Generated automatically with the information provided for the user"
-msgstr "Généré automatiquement avec les informations fournies à l’utilisateur"
-
#: ../../godmode/agentes/agent_template.php:83
-#: ../../include/functions_api.php:15092
+#: ../../include/functions_api.php:15103
msgid "Created by template "
msgstr "Créé par modèle "
@@ -35907,14 +36069,14 @@ msgid "Error adding modules. The following errors already exists: "
msgstr "Erreur d'ajout de modules. Les erreurs suivantes existent déjà : "
#: ../../godmode/agentes/agent_template.php:179
-#: ../../include/functions_api.php:15186
+#: ../../include/functions_api.php:15197
msgid "Modules successfully added"
msgstr "Modules ajoutés correctement"
#: ../../godmode/agentes/agent_template.php:204
#: ../../godmode/agentes/configurar_agente.php:456
#: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177
-#: ../../godmode/wizards/HostDevices.class.php:1098
+#: ../../godmode/wizards/HostDevices.class.php:1094
msgid "Module templates"
msgstr "Modèles de modules"
@@ -35925,7 +36087,7 @@ msgid "Assign"
msgstr "Attribuer"
#: ../../godmode/agentes/agent_template.php:317
-#: ../../mobile/operation/modules.php:772
+#: ../../mobile/operation/modules.php:804
msgid "No modules"
msgstr "Pas de modules"
@@ -35946,70 +36108,75 @@ msgid "Column number to retrieve from the WQL query result (starting from zero).
msgstr ""
"Numéro de colonne à extraire du résultat de la requête WQL (à partir de zéro)."
-#: ../../godmode/agentes/module_manager_editor_web.php:161
+#: ../../godmode/agentes/module_manager_editor_web.php:164
msgid "Debug remotely this module"
msgstr "Déboguer à distance ce module"
-#: ../../godmode/agentes/module_manager_editor_web.php:164
+#: ../../godmode/agentes/module_manager_editor_web.php:167
msgid "Debug this module once it has been initialized"
msgstr "Déboguez ce module une fois qu'il a été initialisé"
-#: ../../godmode/agentes/module_manager_editor_web.php:190
+#: ../../godmode/agentes/module_manager_editor_web.php:193
#: ../../include/class/WebServerModuleDebug.class.php:325
msgid "Debug"
msgstr "Débogage"
-#: ../../godmode/agentes/module_manager_editor_web.php:219
+#: ../../godmode/agentes/module_manager_editor_web.php:222
msgid "Requests"
msgstr "Requêtes"
-#: ../../godmode/agentes/module_manager_editor_web.php:222
+#: ../../godmode/agentes/module_manager_editor_web.php:225
msgid "Agent browser id"
msgstr "Identifiant du navigateur (Agent browser)"
-#: ../../godmode/agentes/module_manager_editor_web.php:228
+#: ../../godmode/agentes/module_manager_editor_web.php:231
msgid "HTTP auth (login)"
msgstr "Authentification HTTP (connexion)"
-#: ../../godmode/agentes/module_manager_editor_web.php:231
+#: ../../godmode/agentes/module_manager_editor_web.php:234
msgid "HTTP auth (password)"
msgstr "Authentification HTTP (mot de passe)"
-#: ../../godmode/agentes/module_manager_editor_web.php:245
+#: ../../godmode/agentes/module_manager_editor_web.php:248
msgid "Proxy auth (login)"
msgstr "Authentification du proxy (connexion)"
-#: ../../godmode/agentes/module_manager_editor_web.php:249
+#: ../../godmode/agentes/module_manager_editor_web.php:252
msgid "Proxy auth (pass)"
msgstr "Authentification du proxy (mot de passe)"
-#: ../../godmode/agentes/module_manager_editor_web.php:256
+#: ../../godmode/agentes/module_manager_editor_web.php:259
msgid "Proxy auth (server)"
msgstr "Authentification du proxy (serveur)"
-#: ../../godmode/agentes/module_manager_editor_web.php:260
+#: ../../godmode/agentes/module_manager_editor_web.php:263
msgid "Proxy auth (realm)"
msgstr "Authentification du proxy (realm)"
-#: ../../godmode/agentes/module_manager_editor_web.php:272
+#: ../../godmode/agentes/module_manager_editor_web.php:275
msgid "There isn't get or post"
msgstr "Impossible d'obtenir ou de publier"
-#: ../../godmode/agentes/status_monitor_custom_fields.php:101
-#: ../../godmode/agentes/status_monitor_custom_fields.php:147
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4011
-#: ../../include/functions_reporting_html.php:1784
+#: ../../godmode/agentes/status_monitor_custom_fields.php:35
+#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186
+msgid "Monitor detail"
+msgstr "Détail des moniteurs"
+
+#: ../../godmode/agentes/status_monitor_custom_fields.php:121
+#: ../../godmode/agentes/status_monitor_custom_fields.php:167
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4020
+#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426
+#: ../../include/functions_reporting_html.php:1793
#: ../../include/functions_treeview.php:310
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560
-#: ../../operation/agentes/status_monitor.php:1572
-#: ../../operation/agentes/estado_generalagente.php:529
-#: ../../operation/inventory/inventory.php:1008
-#: ../../operation/inventory/inventory.php:1302
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561
+#: ../../operation/agentes/status_monitor.php:1574
+#: ../../operation/agentes/estado_generalagente.php:500
+#: ../../operation/inventory/inventory.php:1254
msgid "Last status change"
msgstr "Dernier changement d’état"
-#: ../../godmode/agentes/status_monitor_custom_fields.php:165
+#: ../../godmode/agentes/status_monitor_custom_fields.php:185
msgid "Show monitor detail fields"
msgstr "Afficher les champs de détail du moniteur"
@@ -36033,15 +36200,15 @@ msgid "Could not be created, because IP already exists"
msgstr "Impossible de créer, car l'IP existe déjà"
#: ../../godmode/agentes/configurar_agente.php:536
-#: ../../operation/agentes/ver_agente.php:1523
-#: ../../operation/agentes/ver_agente.php:1827
+#: ../../operation/agentes/ver_agente.php:1519
+#: ../../operation/agentes/ver_agente.php:1823
msgid "GIS data"
msgstr "Données GIS"
#: ../../godmode/agentes/configurar_agente.php:605
#: ../../godmode/agentes/configurar_agente.php:758
-#: ../../operation/agentes/ver_agente.php:1538
-#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657
+#: ../../operation/agentes/ver_agente.php:1534
+#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657
#: ../../general/first_task/incidents.php:28
msgid "Incidents"
msgstr "Incidents"
@@ -36071,12 +36238,12 @@ msgid "Manage agents"
msgstr "Gérer les agents"
#: ../../godmode/agentes/configurar_agente.php:874
-#: ../../godmode/servers/modificar_server.php:350
+#: ../../godmode/servers/modificar_server.php:372
msgid "Conf file deleted successfully"
msgstr "Le fichier de configuration a été supprimé correctement"
#: ../../godmode/agentes/configurar_agente.php:875
-#: ../../godmode/servers/modificar_server.php:351
+#: ../../godmode/servers/modificar_server.php:373
msgid "Could not delete conf file"
msgstr "Erreur de suppression du fichier de configuration"
@@ -36120,11 +36287,11 @@ msgstr "Dupliquer l’adresse IP principale"
msgid "There was a problem updating the agent"
msgstr "Problème de mise à jour de l'agent"
-#: ../../godmode/agentes/configurar_agente.php:1227
+#: ../../godmode/agentes/configurar_agente.php:1243
msgid "There was a problem loading the agent"
msgstr "Problème de chargement de l'agent"
-#: ../../godmode/agentes/configurar_agente.php:1736
+#: ../../godmode/agentes/configurar_agente.php:1797
msgid ""
"There was a problem updating module. Another module already exists with the "
"same name."
@@ -36132,75 +36299,75 @@ msgstr ""
"Problème de mise à jour du module. Un autre module avec le même nom existe "
"déjà."
-#: ../../godmode/agentes/configurar_agente.php:1740
+#: ../../godmode/agentes/configurar_agente.php:1801
msgid ""
"There was a problem updating module. Some required fields are missed: (name)"
msgstr ""
"Problème de mise à jour du module. Certains champs obligatoires sont "
"manquants : (nom)"
-#: ../../godmode/agentes/configurar_agente.php:1744
+#: ../../godmode/agentes/configurar_agente.php:1805
msgid "There was a problem updating module. \"No change\""
msgstr "Problème de mise à jour du module. « Aucun changement »"
-#: ../../godmode/agentes/configurar_agente.php:1750
+#: ../../godmode/agentes/configurar_agente.php:1811
msgid "There was a problem updating module. Processing error"
msgstr "Problème de mise à jour du module. Erreur de traitement"
-#: ../../godmode/agentes/configurar_agente.php:1779
+#: ../../godmode/agentes/configurar_agente.php:1840
msgid "Module successfully updated"
msgstr "Module mis à jour correctement"
-#: ../../godmode/agentes/configurar_agente.php:1913
+#: ../../godmode/agentes/configurar_agente.php:1974
msgid ""
"There was a problem adding module. Another module already exists with the same "
"name."
msgstr ""
"Problème d'ajout de module. Un autre module avec le même nom existe déjà."
-#: ../../godmode/agentes/configurar_agente.php:1917
+#: ../../godmode/agentes/configurar_agente.php:1978
msgid ""
"There was a problem adding module. Some required fields are missed : (name)"
msgstr ""
"Problème d'ajout de module. Certains champs obligatoires sont manquants : (nom)"
-#: ../../godmode/agentes/configurar_agente.php:1923
+#: ../../godmode/agentes/configurar_agente.php:1984
msgid "There was a problem adding module. Processing error"
msgstr "Problème d'ajout de module. Erreur de traitement"
-#: ../../godmode/agentes/configurar_agente.php:1952
+#: ../../godmode/agentes/configurar_agente.php:2013
#: ../../godmode/reporting/graph_builder.php:392
msgid "Module added successfully"
msgstr "Module ajouté correctement"
-#: ../../godmode/agentes/configurar_agente.php:2106
+#: ../../godmode/agentes/configurar_agente.php:2169
msgid "There was a problem deleting the module"
msgstr "Problème de suppression du module"
-#: ../../godmode/agentes/configurar_agente.php:2110
+#: ../../godmode/agentes/configurar_agente.php:2173
msgid "Module deleted succesfully"
msgstr "Module supprimé correctement"
-#: ../../godmode/agentes/configurar_agente.php:2249
-#: ../../include/functions_api.php:11217
+#: ../../godmode/agentes/configurar_agente.php:2312
+#: ../../include/functions_api.php:11220
#, php-format
msgid "Save by %s Console"
msgstr "Enregistrer par Console %s"
-#: ../../godmode/agentes/configurar_agente.php:2267
-#: ../../include/functions_api.php:11218
+#: ../../godmode/agentes/configurar_agente.php:2330
+#: ../../include/functions_api.php:11221
#, php-format
msgid "Update by %s Console"
msgstr "Mise à jour par Console %s"
-#: ../../godmode/agentes/configurar_agente.php:2283
-#: ../../include/functions_api.php:11219
+#: ../../godmode/agentes/configurar_agente.php:2346
+#: ../../include/functions_api.php:11222
#, php-format
msgid "Insert by %s Console"
msgstr "Insérer par Console %s"
-#: ../../godmode/agentes/configurar_agente.php:2356
-#: ../../godmode/agentes/configurar_agente.php:2372
+#: ../../godmode/agentes/configurar_agente.php:2419
+#: ../../godmode/agentes/configurar_agente.php:2435
msgid "Invalid tab specified"
msgstr "Onglet non valide"
@@ -36288,7 +36455,7 @@ msgid "Error forcing inventory module"
msgstr "Erreur : module d'inventaire non forcé"
#: ../../godmode/agentes/inventory_manager.php:235
-#: ../../include/functions_ui.php:7438
+#: ../../include/functions_ui.php:7515
msgid "Target"
msgstr "Cible"
@@ -36340,49 +36507,54 @@ msgstr ""
"Rechercher filtre par alias, nom, description, adresse IP ou contenu de champs "
"personnalisés"
-#: ../../godmode/agentes/modificar_agente.php:692
+#: ../../godmode/agentes/modificar_agente.php:702
msgid "Remote agent configuration"
msgstr "Configuration de l'agent à distance"
-#: ../../godmode/agentes/modificar_agente.php:692
+#: ../../godmode/agentes/modificar_agente.php:702
msgid "R"
msgstr "R"
-#: ../../godmode/agentes/modificar_agente.php:772
-#: ../../godmode/agentes/module_manager.php:788
+#: ../../godmode/agentes/modificar_agente.php:784
+#: ../../godmode/agentes/module_manager.php:798
msgid "Module in scheduled downtime"
msgstr "Module en temps d’arrêt planifié"
-#: ../../godmode/agentes/modificar_agente.php:858
+#: ../../godmode/agentes/modificar_agente.php:870
msgid "Edit remote config"
msgstr "Éditer la configuration à distance"
-#: ../../godmode/agentes/modificar_agente.php:905
+#: ../../godmode/agentes/modificar_agente.php:917
msgid "Enable agent"
msgstr "Activer l'agent"
-#: ../../godmode/agentes/modificar_agente.php:907
+#: ../../godmode/agentes/modificar_agente.php:919
msgid "You are going to enable a cluster agent. Are you sure?"
msgstr "Vous allez activer un agent de grappe. Êtes-vous sûr ?"
-#: ../../godmode/agentes/modificar_agente.php:910
+#: ../../godmode/agentes/modificar_agente.php:922
msgid "Disable agent"
msgstr "Désactiver l'agent"
-#: ../../godmode/agentes/modificar_agente.php:912
+#: ../../godmode/agentes/modificar_agente.php:924
msgid "You are going to disable a cluster agent. Are you sure?"
msgstr "Vous allez désactiver un agent de grappe. Êtes-vous sûr ?"
-#: ../../godmode/agentes/modificar_agente.php:943
+#: ../../godmode/agentes/modificar_agente.php:955
msgid "WARNING! - You are going to delete a cluster agent. Are you sure?"
msgstr "ATTENTION! - Vous allez supprimer un agent de grappe. Êtes-vous sûr ?"
-#: ../../godmode/agentes/modificar_agente.php:965
-#: ../../godmode/agentes/agent_manager.php:1067
-#: ../../godmode/agentes/agent_manager.php:1120
+#: ../../godmode/agentes/modificar_agente.php:977
+#: ../../godmode/agentes/agent_manager.php:1073
+#: ../../godmode/agentes/agent_manager.php:1126
msgid "Delete agent"
msgstr "Supprimer l'agent"
+#: ../../godmode/agentes/modificar_agente.php:1046
+#: ../../include/class/AgentDeployWizard.class.php:706
+msgid "Deploy agent"
+msgstr "Déployer des agents"
+
#: ../../godmode/agentes/agent_conf_gis.php:38
#: ../../operation/agentes/gis_view.php:59
msgid "There is no default map. Please go to the setup for to set a default map."
@@ -36437,7 +36609,7 @@ msgstr "Tous les modules"
#: ../../godmode/agentes/planned_downtime.editor.php:66
#: ../../godmode/agentes/planned_downtime.editor.php:79
#: ../../include/functions_reporting_html.php:887
-#: ../../include/functions_reporting_html.php:4891
+#: ../../include/functions_reporting_html.php:4919
msgid "Scheduled Downtime"
msgstr "Temps d'arrêt programmé"
@@ -36534,7 +36706,7 @@ msgstr "Voulez-vous migrer automatiquement les éléments incorrects ?"
#: ../../godmode/agentes/planned_downtime.editor.php:229
#: ../../godmode/agentes/planned_downtime.editor.php:1574
-#: ../../godmode/agentes/planned_downtime.editor.php:1777
+#: ../../godmode/agentes/planned_downtime.editor.php:1775
msgid "This elements cannot be modified while the downtime is being executed"
msgstr ""
"Cet élément ne peut pas être modifié lorsque le temps d'arrêt est en exécution."
@@ -36691,12 +36863,12 @@ msgid "Type Periodicity"
msgstr "Type de périodicité :"
#: ../../godmode/agentes/planned_downtime.editor.php:1069
-#: ../../include/functions_reporting.php:14923
+#: ../../include/functions_reporting.php:14996
msgid "From day"
msgstr "À partir du jour"
#: ../../godmode/agentes/planned_downtime.editor.php:1085
-#: ../../include/functions_reporting.php:14924
+#: ../../include/functions_reporting.php:14997
msgid "To day"
msgstr "Jusqu'au jour"
@@ -36713,14 +36885,14 @@ msgid "To hour"
msgstr "Jusqu'à l'heure :"
#: ../../godmode/agentes/planned_downtime.editor.php:1152
-#: ../../godmode/agentes/module_manager_editor_common.php:1085
-#: ../../godmode/agentes/module_manager_editor_common.php:1091
+#: ../../godmode/agentes/module_manager_editor_common.php:1095
+#: ../../godmode/agentes/module_manager_editor_common.php:1101
msgid "Cron from"
msgstr "Cron à partir de"
#: ../../godmode/agentes/planned_downtime.editor.php:1155
-#: ../../godmode/agentes/module_manager_editor_common.php:1088
-#: ../../godmode/agentes/module_manager_editor_common.php:1094
+#: ../../godmode/agentes/module_manager_editor_common.php:1098
+#: ../../godmode/agentes/module_manager_editor_common.php:1104
msgid "Cron to"
msgstr "Cron à"
@@ -36764,12 +36936,12 @@ msgstr "Quelques modules"
msgid "Add Module:"
msgstr "Ajouter un module :"
-#: ../../godmode/agentes/planned_downtime.editor.php:1907
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4939
+#: ../../godmode/agentes/planned_downtime.editor.php:1903
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4948
msgid "Please select a module."
msgstr "Veuillez sélectionner un module."
-#: ../../godmode/agentes/planned_downtime.editor.php:2046
+#: ../../godmode/agentes/planned_downtime.editor.php:2042
msgid ""
"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
"may be altered"
@@ -36830,12 +37002,12 @@ msgstr ""
msgid "Create field"
msgstr "Créer un champ"
-#: ../../godmode/agentes/module_manager_editor_network.php:310
+#: ../../godmode/agentes/module_manager_editor_network.php:311
#: ../../include/class/AgentWizard.class.php:584
msgid "SNMP Walk"
msgstr "Chemin SNMP"
-#: ../../godmode/agentes/module_manager_editor_network.php:477
+#: ../../godmode/agentes/module_manager_editor_network.php:482
msgid ""
"Please use single quotation marks when necessary. \n"
"\n"
@@ -36846,13 +37018,13 @@ msgstr ""
"guillemets doubles sont nécessaires, veuillez les échapper avec une barre "
"oblique inverse (\\\")"
-#: ../../godmode/agentes/module_manager_editor_network.php:536
+#: ../../godmode/agentes/module_manager_editor_network.php:541
msgid "Windows remote"
msgstr "Télécommande Windows"
#: ../../godmode/agentes/agent_manager.php:329
-#: ../../godmode/agentes/agent_manager.php:744
-#: ../../godmode/massive/massive_edit_agents.php:1014
+#: ../../godmode/agentes/agent_manager.php:748
+#: ../../godmode/massive/massive_edit_agents.php:1031
msgid "Agent icon"
msgstr "Icône de l'agent"
@@ -36862,7 +37034,7 @@ msgstr "Utiliser alias comme nom"
#: ../../godmode/agentes/agent_manager.php:407
#: ../../godmode/setup/setup_general.php:649
-#: ../../include/functions_config.php:390
+#: ../../include/functions_config.php:398
msgid "Unique IP"
msgstr "IP unique"
@@ -36889,64 +37061,64 @@ msgstr "Liste d’adresses IP"
msgid "Primary group"
msgstr "Groupe primaire"
-#: ../../godmode/agentes/agent_manager.php:673
+#: ../../godmode/agentes/agent_manager.php:677
msgid "Cascade protection modules"
msgstr "Modules de protection en cascade"
-#: ../../godmode/agentes/agent_manager.php:689
-#: ../../godmode/massive/massive_edit_agents.php:891
+#: ../../godmode/agentes/agent_manager.php:693
+#: ../../godmode/massive/massive_edit_agents.php:908
msgid "Learning mode"
msgstr "Mode d'apprentissage"
-#: ../../godmode/agentes/agent_manager.php:699
-#: ../../godmode/massive/massive_edit_agents.php:902
+#: ../../godmode/agentes/agent_manager.php:703
+#: ../../godmode/massive/massive_edit_agents.php:919
msgid "Normal mode"
msgstr "Mode normal"
-#: ../../godmode/agentes/agent_manager.php:709
-#: ../../godmode/massive/massive_edit_agents.php:913
+#: ../../godmode/agentes/agent_manager.php:713
+#: ../../godmode/massive/massive_edit_agents.php:930
msgid "Autodisable mode"
msgstr "Mode désactivation automatique"
-#: ../../godmode/agentes/agent_manager.php:718
-#: ../../godmode/massive/massive_edit_agents.php:879
+#: ../../godmode/agentes/agent_manager.php:722
+#: ../../godmode/massive/massive_edit_agents.php:896
msgid "Module definition"
msgstr "Définition des modules"
-#: ../../godmode/agentes/agent_manager.php:730
+#: ../../godmode/agentes/agent_manager.php:734
msgid "Cascade protection services"
msgstr "Services de protection en cascade"
-#: ../../godmode/agentes/agent_manager.php:737
+#: ../../godmode/agentes/agent_manager.php:741
msgid "Update new GIS data"
msgstr "Mettre à jour les nouvelles données SIG"
-#: ../../godmode/agentes/agent_manager.php:809
+#: ../../godmode/agentes/agent_manager.php:817
msgid "URL Address"
msgstr "Adresse URL"
-#: ../../godmode/agentes/agent_manager.php:815
+#: ../../godmode/agentes/agent_manager.php:823
msgid "Disabled mode"
msgstr "Mode désactivé"
-#: ../../godmode/agentes/agent_manager.php:892
-#: ../../godmode/massive/massive_edit_agents.php:1128
+#: ../../godmode/agentes/agent_manager.php:900
+#: ../../godmode/massive/massive_edit_agents.php:1144
msgid "Safe operation mode"
msgstr "Mode d'opération sécurisé"
-#: ../../godmode/agentes/agent_manager.php:969
+#: ../../godmode/agentes/agent_manager.php:975
msgid "Link text:"
msgstr "Texte du lien :"
-#: ../../godmode/agentes/agent_manager.php:980
+#: ../../godmode/agentes/agent_manager.php:986
msgid "Link URL:"
msgstr "URL du lien :"
-#: ../../godmode/agentes/agent_manager.php:1121
+#: ../../godmode/agentes/agent_manager.php:1127
msgid "This action is not reversible. Are you sure"
msgstr "Cette action n’est pas réversible. Êtes-vous sûr ?"
-#: ../../godmode/agentes/agent_manager.php:1182
+#: ../../godmode/agentes/agent_manager.php:1188
msgid "Secondary group cannot be primary too."
msgstr "Le groupe secondaire ne peut pas non plus être principal."
@@ -37051,86 +37223,86 @@ msgid "Warning threshold"
msgstr "Seuil d’avertissement"
#: ../../godmode/agentes/module_manager_editor_common.php:448
-#: ../../godmode/agentes/module_manager_editor_common.php:531
+#: ../../godmode/agentes/module_manager_editor_common.php:536
msgid "Min / Max"
msgstr "Min / Max"
-#: ../../godmode/agentes/module_manager_editor_common.php:530
+#: ../../godmode/agentes/module_manager_editor_common.php:535
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435
msgid "Critical threshold"
msgstr "Seuil critique"
-#: ../../godmode/agentes/module_manager_editor_common.php:741
+#: ../../godmode/agentes/module_manager_editor_common.php:751
msgid "Identification and Categorization"
msgstr "Identification et catégorisation"
-#: ../../godmode/agentes/module_manager_editor_common.php:944
+#: ../../godmode/agentes/module_manager_editor_common.php:954
msgid "Module parent"
msgstr "Parent de module"
-#: ../../godmode/agentes/module_manager_editor_common.php:994
+#: ../../godmode/agentes/module_manager_editor_common.php:1004
msgid "Tags from policy"
msgstr "Étiquettes de la politique"
-#: ../../godmode/agentes/module_manager_editor_common.php:1065
+#: ../../godmode/agentes/module_manager_editor_common.php:1075
msgid "Execution interval"
msgstr "Intervalle d’exécution"
-#: ../../godmode/agentes/module_manager_editor_common.php:1101
+#: ../../godmode/agentes/module_manager_editor_common.php:1111
msgid "Thresholds and state changes"
msgstr "Seuils et changements d’état"
-#: ../../godmode/agentes/module_manager_editor_common.php:1119
+#: ../../godmode/agentes/module_manager_editor_common.php:1129
msgid "Dynamic Threshold Interval"
msgstr "Intervalle de seuil dynamique"
-#: ../../godmode/agentes/module_manager_editor_common.php:1172
+#: ../../godmode/agentes/module_manager_editor_common.php:1182
msgid "Two Tailed"
msgstr "Deux queues"
-#: ../../godmode/agentes/module_manager_editor_common.php:1323
+#: ../../godmode/agentes/module_manager_editor_common.php:1333
msgid "Data and their processing"
msgstr "Les données et leur traitement"
-#: ../../godmode/agentes/module_manager_editor_common.php:1353
+#: ../../godmode/agentes/module_manager_editor_common.php:1363
msgid "Notifications and alerts"
msgstr "Notifications et alertes"
-#: ../../godmode/agentes/module_manager_editor_common.php:1357
+#: ../../godmode/agentes/module_manager_editor_common.php:1367
msgid "Not needed"
msgstr "Pas nécessaire"
-#: ../../godmode/agentes/module_manager_editor_common.php:1403
+#: ../../godmode/agentes/module_manager_editor_common.php:1413
msgid "Cascade Protection Services"
msgstr "Services de protection en cascade"
-#: ../../godmode/agentes/module_manager_editor_common.php:1486
-#: ../../godmode/agentes/module_manager_editor_common.php:1620
+#: ../../godmode/agentes/module_manager_editor_common.php:1496
+#: ../../godmode/agentes/module_manager_editor_common.php:1630
msgid "Direct"
msgstr "Direct"
-#: ../../godmode/agentes/module_manager_editor_common.php:1487
-#: ../../godmode/agentes/module_manager_editor_common.php:1620
-#: ../../include/functions_reporting_html.php:4132
-#: ../../include/functions_reporting_html.php:4226
-#: ../../include/functions_reporting_html.php:4306
-#: ../../include/functions_reporting_html.php:4315
-#: ../../include/functions_reporting_html.php:4453
-#: ../../include/functions_reporting_html.php:4462
-#: ../../include/functions_reporting_html.php:4788
-#: ../../include/functions_reporting_html.php:4794
+#: ../../godmode/agentes/module_manager_editor_common.php:1497
+#: ../../godmode/agentes/module_manager_editor_common.php:1630
+#: ../../include/functions_reporting_html.php:4160
+#: ../../include/functions_reporting_html.php:4254
+#: ../../include/functions_reporting_html.php:4334
+#: ../../include/functions_reporting_html.php:4343
+#: ../../include/functions_reporting_html.php:4481
+#: ../../include/functions_reporting_html.php:4490
+#: ../../include/functions_reporting_html.php:4816
+#: ../../include/functions_reporting_html.php:4822
msgid "Failover"
msgstr "Basculement"
-#: ../../godmode/agentes/module_manager_editor_common.php:1489
+#: ../../godmode/agentes/module_manager_editor_common.php:1499
msgid "Rel. type"
msgstr "Type de relations"
-#: ../../godmode/agentes/module_manager_editor_common.php:1511
+#: ../../godmode/agentes/module_manager_editor_common.php:1521
msgid "Add relationship"
msgstr "Ajouter une relation"
-#: ../../godmode/agentes/module_manager_editor_common.php:1537
+#: ../../godmode/agentes/module_manager_editor_common.php:1547
msgid "Changes"
msgstr "Changements"
@@ -37162,7 +37334,8 @@ msgstr ""
"Un problème est survenu lors de l'exécution de l'opération. Appliqué aux "
"modules %d/%d."
-#: ../../godmode/agentes/module_manager.php:619 ../../include/ajax/module.php:999
+#: ../../godmode/agentes/module_manager.php:619
+#: ../../include/ajax/module.php:1022
msgid "P"
msgstr "P"
@@ -37170,42 +37343,42 @@ msgstr "P"
msgid "S"
msgstr "S"
-#: ../../godmode/agentes/module_manager.php:836
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072
+#: ../../godmode/agentes/module_manager.php:846
+#: ../../godmode/agentes/module_manager.php:854
+#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095
msgid "Adopted"
msgstr "Adopté"
-#: ../../godmode/agentes/module_manager.php:972
+#: ../../godmode/agentes/module_manager.php:986
msgid "Normalize"
msgstr "Normaliser"
-#: ../../godmode/agentes/module_manager.php:985
+#: ../../godmode/agentes/module_manager.php:999
#: ../../include/functions_snmp_browser.php:638
msgid "Create network component"
msgstr "Créer un composant de réseau"
-#: ../../godmode/agentes/module_manager.php:1020
+#: ../../godmode/agentes/module_manager.php:1034
#: ../../godmode/reporting/map_builder.php:485
-#: ../../godmode/reporting/map_builder.php:502
-#: ../../operation/agentes/datos_agente.php:295
+#: ../../godmode/reporting/map_builder.php:502 ../../include/ajax/module.php:609
+#: ../../operation/agentes/datos_agente.php:297
msgid "No available data to show"
msgstr "Aucune donnée disponible"
-#: ../../godmode/agentes/module_manager.php:1037
+#: ../../godmode/agentes/module_manager.php:1051
#: ../../include/class/SatelliteAgent.class.php:233
msgid "Execute action"
msgstr "Exécuter l'action"
-#: ../../godmode/agentes/module_manager.php:1081
+#: ../../godmode/agentes/module_manager.php:1095
msgid "Select module type"
msgstr "Sélectionner le type de module"
-#: ../../godmode/agentes/module_manager.php:1104
+#: ../../godmode/agentes/module_manager.php:1119
msgid "Get more modules on Monitoring Library"
msgstr "Obtenez plus de modules sur Monitoring Library"
-#: ../../godmode/agentes/module_manager.php:1239
+#: ../../godmode/agentes/module_manager.php:1260
msgid ""
"This module has children modules.The following modules will also be deleted: "
msgstr ""
@@ -37235,7 +37408,7 @@ msgid "Item list"
msgstr "Liste d'éléments"
#: ../../godmode/netflow/nf_item_list.php:176
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2549
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2558
msgid "Max. values"
msgstr "Valeurs maximales"
@@ -37261,49 +37434,49 @@ msgstr "Filtres Netflow"
msgid "There are no defined filters"
msgstr "Aucun filtre défini"
-#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69
+#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69
msgid "Filter list"
msgstr "Filtrer la liste"
-#: ../../godmode/netflow/nf_edit_form.php:67
+#: ../../godmode/netflow/nf_edit_form.php:78
msgid "Add filter"
msgstr "Ajouter un filtre"
-#: ../../godmode/netflow/nf_edit_form.php:181
-#: ../../operation/netflow/nf_live_view.php:261
+#: ../../godmode/netflow/nf_edit_form.php:224
+#: ../../operation/netflow/nf_live_view.php:270
msgid "Src Ip Address"
msgstr "Adresse IP source"
-#: ../../godmode/netflow/nf_edit_form.php:182
-#: ../../operation/netflow/nf_live_view.php:262
+#: ../../godmode/netflow/nf_edit_form.php:225
+#: ../../operation/netflow/nf_live_view.php:271
msgid "Dst Ip Address"
msgstr "Adresse IP de destination"
-#: ../../godmode/netflow/nf_edit_form.php:183
-#: ../../godmode/netflow/nf_edit_form.php:314
-#: ../../operation/netflow/nf_live_view.php:263
-#: ../../operation/netflow/nf_live_view.php:321
+#: ../../godmode/netflow/nf_edit_form.php:226
+#: ../../godmode/netflow/nf_edit_form.php:359
+#: ../../operation/netflow/nf_live_view.php:272
+#: ../../operation/netflow/nf_live_view.php:330
msgid "Src Port"
msgstr "Port source"
-#: ../../godmode/netflow/nf_edit_form.php:184
-#: ../../godmode/netflow/nf_edit_form.php:302
-#: ../../operation/netflow/nf_live_view.php:264
-#: ../../operation/netflow/nf_live_view.php:313
+#: ../../godmode/netflow/nf_edit_form.php:227
+#: ../../godmode/netflow/nf_edit_form.php:347
+#: ../../operation/netflow/nf_live_view.php:273
+#: ../../operation/netflow/nf_live_view.php:322
msgid "Dst Port"
msgstr "Port de destination"
-#: ../../godmode/netflow/nf_edit_form.php:261
+#: ../../godmode/netflow/nf_edit_form.php:306
msgid "Aggregate by"
msgstr "Regrouper par"
-#: ../../godmode/netflow/nf_edit_form.php:278
-#: ../../operation/netflow/nf_live_view.php:294
+#: ../../godmode/netflow/nf_edit_form.php:323
+#: ../../operation/netflow/nf_live_view.php:303
msgid "Dst Ip"
msgstr "Adresse IP de destination"
-#: ../../godmode/netflow/nf_edit_form.php:286
-#: ../../operation/netflow/nf_live_view.php:294
+#: ../../godmode/netflow/nf_edit_form.php:331
+#: ../../operation/netflow/nf_live_view.php:303
msgid ""
"Destination IP. A comma separated list of destination ip. If we leave the "
"field blank, will show all ip. Example filter by ip:"
@@ -37313,13 +37486,13 @@ msgstr ""
"destination. Si le champ est laissé vide, toutes les adresses IP seront "
"affichées. Exemple de filtre par IP :
25.46.157.214,160.253.135.249"
-#: ../../godmode/netflow/nf_edit_form.php:290
-#: ../../operation/netflow/nf_live_view.php:302
+#: ../../godmode/netflow/nf_edit_form.php:335
+#: ../../operation/netflow/nf_live_view.php:311
msgid "Src Ip"
msgstr "Adresse IP source"
-#: ../../godmode/netflow/nf_edit_form.php:298
-#: ../../operation/netflow/nf_live_view.php:302
+#: ../../godmode/netflow/nf_edit_form.php:343
+#: ../../operation/netflow/nf_live_view.php:311
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"
@@ -37328,8 +37501,8 @@ msgstr ""
"champ est laissé vide, toutes les adresses IP seront affichées. Exemple de "
"filtre par IP :
25.46.157.214,160.253.135.249"
-#: ../../godmode/netflow/nf_edit_form.php:310
-#: ../../operation/netflow/nf_live_view.php:313
+#: ../../godmode/netflow/nf_edit_form.php:355
+#: ../../operation/netflow/nf_live_view.php:322
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"
@@ -37338,8 +37511,8 @@ msgstr ""
"le champ est laissé vide, tous les ports seront affichés. Exemple de filtre "
"par ports 80 et 22 :
80,22"
-#: ../../godmode/netflow/nf_edit_form.php:322
-#: ../../operation/netflow/nf_live_view.php:321
+#: ../../godmode/netflow/nf_edit_form.php:367
+#: ../../operation/netflow/nf_live_view.php:330
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"
@@ -37348,21 +37521,88 @@ msgstr ""
"laissé vide, touts les ports seront affichés. Exemple de filtre par ports 80 "
"et 22 :
80,22"
-#: ../../godmode/netflow/nf_edit_form.php:327
+#: ../../godmode/netflow/nf_edit_form.php:372
msgid "Advanced filters"
msgstr "Filtres avancés"
+#: ../../godmode/netflow/nf_edit_form.php:380
+#: ../../operation/netflow/nf_live_view.php:377
+msgid "Enable Netflow monitoring"
+msgstr "Activer la supervision Netflow"
+
+#: ../../godmode/netflow/nf_edit_form.php:389
+#: ../../operation/netflow/nf_live_view.php:377
+msgid ""
+"Allows you to create an agent that monitors the traffic volume of this filter. "
+"It also creates a module that measures if the traffic of any IP of this filter "
+"exceeds a certain threshold. A text type module will be created with the "
+"traffic rate for each IP within this filter every five minutes (the 10 IP's "
+"with the most traffic). Only available for Enterprise version."
+msgstr ""
+"Il vous permet de créer un agent qui supervise le volume de traffic de ce "
+"filtre. Il crée aussi un module qui mesure si le traffic de n’importe quelle "
+"IP de ce filtre dépasse un certain seuil. Un module de type texte sera créé "
+"avec le taux du traffic pour chaque IP dans ce filtre tous les cinq minutes "
+"(les 10 IP avec plus de traffic). Seulement disponible dans la version "
+"Enterprise."
+
+#: ../../godmode/netflow/nf_edit_form.php:395
+#: ../../operation/netflow/nf_live_view.php:391
+msgid "Netflow monitoring interval"
+msgstr "Intervalle de supervision Netflow"
+
+#: ../../godmode/netflow/nf_edit_form.php:403
+#: ../../operation/netflow/nf_live_view.php:391
+msgid "Netflow monitoring interval in secs."
+msgstr "Intervalle de supervision Netflow en secondes."
+
+#: ../../godmode/netflow/nf_edit_form.php:407
+#: ../../operation/netflow/nf_live_view.php:401
+msgid "Maximum traffic value of the filter"
+msgstr "Valeur du traffic maximale du filtre"
+
+#: ../../godmode/netflow/nf_edit_form.php:415
+#: ../../operation/netflow/nf_live_view.php:401
+#, php-format
+msgid ""
+"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is then "
+"used to calculate the % of maximum traffic per IP."
+msgstr ""
+"Il spécifique le taux maximale (en bytes/sec) du traffic dans le filtre. Il "
+"est après utilisé pour calculer le % du traffic maximale par IP."
+
+#: ../../godmode/netflow/nf_edit_form.php:421
+#: ../../operation/netflow/nf_live_view.php:415
+#, php-format
+msgid "CRITICAL threshold for the maximum % of traffic for an IP."
+msgstr "Seuil CRITIQUE pour le maximum % du traffic pour une IP."
+
+#: ../../godmode/netflow/nf_edit_form.php:431
+#: ../../operation/netflow/nf_live_view.php:415
+msgid ""
+"If this % is exceeded by any IP within the filter, a CRITICAL status will be "
+"generated."
+msgstr ""
+"Si ce % est dépassé par une IP dans le filtre, un état critique sera généré."
+
+#: ../../godmode/netflow/nf_edit_form.php:435
+#, php-format
+msgid "WARNING threshold for the maximum % of traffic for an IP."
+msgstr "Seuil d’AVERTISSEMENT pour le maximum % de traffic pour une IP."
+
+#: ../../godmode/netflow/nf_edit_form.php:445
+#: ../../operation/netflow/nf_live_view.php:425
+msgid ""
+"If this % is exceeded by any IP within the filter, a WARNING status will be "
+"generated."
+msgstr ""
+"Si ce % est dépasse par n’importe quelle IP dans le filtre, un état "
+"d’AVERTISSEMENT sera généré."
+
#: ../../godmode/snmpconsole/snmp_trap_generator.php:38
msgid "SNMP Trap generator"
msgstr "Générateur de déroutements SNMP"
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
-#: ../../godmode/snmpconsole/snmp_filters.php:59
-#: ../../operation/snmpconsole/snmp_browser.php:90
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
-msgid "SMNP"
-msgstr "SMNP"
-
#: ../../godmode/snmpconsole/snmp_trap_generator.php:68
msgid "Empty parameters"
msgstr "Paramètres vides"
@@ -37481,9 +37721,9 @@ msgid "Custom Value/Enterprise String"
msgstr "Valeur personnalisée/Chaîne Enterprise"
#: ../../godmode/snmpconsole/snmp_alert.php:1908
-#: ../../include/functions_reporting_html.php:5373
-#: ../../include/functions_reporting_html.php:5495
-#: ../../include/functions_treeview.php:441
+#: ../../include/functions_reporting_html.php:5401
+#: ../../include/functions_reporting_html.php:5523
+#: ../../include/functions_treeview.php:445
msgid "Times fired"
msgstr "Nombre de fois déclenchée"
@@ -37503,7 +37743,7 @@ msgstr "Voulez-vous supprimer cette alerte ?"
msgid "Do you want delete the selected alerts?"
msgstr "Voulez-vous supprimer les alertes sélectionnées ?"
-#: ../../godmode/snmpconsole/snmp_alert.php:2355
+#: ../../godmode/snmpconsole/snmp_alert.php:2343
msgid "Add action "
msgstr "Ajouter une action "
@@ -37592,147 +37832,147 @@ msgstr "Gérer les groupes d'agents"
msgid "Private Enterprise Numbers"
msgstr "Numéros d'entreprise privée"
-#: ../../godmode/menu.php:183
+#: ../../godmode/menu.php:182
msgid "Remote components"
msgstr "Composants distants"
-#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246
+#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246
msgid "Agents operations"
msgstr "Opérations des agents"
-#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258
+#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258
msgid "Modules operations"
msgstr "Opérations des modules"
-#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270
+#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270
msgid "Plugins operations"
msgstr "Opérations des plugins"
-#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234
+#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234
msgid "Users operations"
msgstr "Opérations des utilisateurs"
-#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222
+#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222
msgid "Alerts operations"
msgstr "Opérations d'alertes"
-#: ../../godmode/menu.php:234
+#: ../../godmode/menu.php:233
msgid "Event filters"
msgstr "Filtres d'événements"
-#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95
+#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95
#: ../../godmode/events/events.php:110
msgid "Custom columns"
msgstr "Colonnes personnalisées"
-#: ../../godmode/menu.php:270
+#: ../../godmode/menu.php:268
msgid "List of Alerts"
msgstr "Liste d'alertes"
-#: ../../godmode/menu.php:285
+#: ../../godmode/menu.php:283
msgid "Special days list"
msgstr "Liste de jours spéciaux"
-#: ../../godmode/menu.php:290
+#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267
msgid "SNMP alerts"
msgstr "Alertes SNMP"
-#: ../../godmode/menu.php:307
+#: ../../godmode/menu.php:305
msgid "Manage servers"
msgstr "Gérer les serveurs"
-#: ../../godmode/menu.php:314
+#: ../../godmode/menu.php:312
msgid "Manage consoles"
msgstr "Gérer les consoles"
-#: ../../godmode/menu.php:325
+#: ../../godmode/menu.php:323
msgid "Register Plugin"
msgstr "Enregistrer Plugin"
-#: ../../godmode/menu.php:351 ../../include/class/OrderInterpreter.class.php:141
+#: ../../godmode/menu.php:349 ../../include/class/OrderInterpreter.class.php:141
msgid "General Setup"
msgstr "Configuration générale"
-#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165
+#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165
#: ../../godmode/setup/setup.php:296
msgid "Sflow"
msgstr "Sflow"
-#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191
-#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1623
-#: ../../operation/agentes/ver_agente.php:1897
+#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191
+#: ../../godmode/setup/setup.php:302 ../../operation/agentes/ver_agente.php:1619
+#: ../../operation/agentes/ver_agente.php:1893
msgid "eHorus"
msgstr "eHorus"
-#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179
+#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179
#: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681
msgid "Integria IMS"
msgstr "Integria IMS"
-#: ../../godmode/menu.php:392
+#: ../../godmode/menu.php:390
msgid "Websocket Engine"
msgstr "Moteur de Websocket"
-#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238
-#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1713
-#: ../../operation/agentes/ver_agente.php:1914
+#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238
+#: ../../godmode/setup/setup.php:336 ../../operation/agentes/ver_agente.php:1709
+#: ../../operation/agentes/ver_agente.php:1910
msgid "External Tools"
msgstr "Outils externes"
-#: ../../godmode/menu.php:398
+#: ../../godmode/menu.php:396
msgid "Welcome Tips"
msgstr "Astuces de bienvenue"
-#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320
+#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320
msgid "Map conections GIS"
msgstr "Connexions de cartes GIS"
-#: ../../godmode/menu.php:430
+#: ../../godmode/menu.php:428
msgid "Diagnostic info"
msgstr "Information de diagnostic"
-#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43
+#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43
msgid "Site news"
msgstr "Nouveautés du site"
-#: ../../godmode/menu.php:444
+#: ../../godmode/menu.php:442
msgid "DB Schema Check"
msgstr "Vérifier schéma de la BD"
-#: ../../godmode/menu.php:447
+#: ../../godmode/menu.php:445
msgid "DB Interface"
msgstr "Interface de la BD"
-#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230
-msgid "Accoustic console setup"
+#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230
+msgid "Acoustic console setup"
msgstr "Configuration de la console acoustique"
-#: ../../godmode/menu.php:533
+#: ../../godmode/menu.php:531
msgid "Extension manager view"
msgstr "Afficher le gestionnaire d'extension"
-#: ../../godmode/menu.php:569 ../../include/class/OrderInterpreter.class.php:339
+#: ../../godmode/menu.php:567 ../../include/class/OrderInterpreter.class.php:339
msgid "Warp Update"
msgstr "Warp Update"
-#: ../../godmode/menu.php:574
+#: ../../godmode/menu.php:572
msgid "Update offline"
msgstr "Mise à jour hors ligne"
-#: ../../godmode/menu.php:577
+#: ../../godmode/menu.php:575
msgid "Update online"
msgstr "Mise à jour en ligne"
-#: ../../godmode/menu.php:583
+#: ../../godmode/menu.php:581
msgid "Warp journal"
msgstr "Journal de Warp"
-#: ../../godmode/menu.php:592
+#: ../../godmode/menu.php:590
#: ../../godmode/module_library/module_library_view.php:81
msgid "Module library"
msgstr "Bibliothèque de modules"
-#: ../../godmode/menu.php:599
+#: ../../godmode/menu.php:597
#: ../../godmode/module_library/module_library_view.php:54
#: ../../godmode/module_library/module_library_view.php:68
#: ../../godmode/module_library/module_library_view.php:104
@@ -38034,10 +38274,10 @@ msgstr "Agents avec des modèles"
#: ../../godmode/massive/massive_delete_action_alerts.php:240
#: ../../godmode/massive/massive_add_action_alerts.php:219
-#: ../../godmode/alerts/alert_templates.php:139
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
+#: ../../godmode/alerts/alert_templates.php:142
+#: ../../godmode/alerts/alert_templates.php:192
+#: ../../godmode/alerts/alert_templates.php:215
+#: ../../godmode/alerts/alert_templates.php:236
msgid "Alert templates"
msgstr "Modèles d'alertes"
@@ -38059,7 +38299,7 @@ msgstr "Aucun module sélectionné"
#: ../../godmode/massive/massive_delete_alerts.php:113
#: ../../godmode/massive/massive_add_action_alerts.php:75
#: ../../include/functions_visual_map.php:2568
-#: ../../include/functions_visual_map.php:2914
+#: ../../include/functions_visual_map.php:2917
msgid "No agents selected"
msgstr "Aucun agent sélectionné"
@@ -38148,29 +38388,29 @@ msgstr "Les utilisateurs ne peuvent pas être mis à jour (%s)"
#: ../../godmode/massive/massive_edit_users.php:209
#: ../../godmode/massive/massive_delete_profiles.php:154
#: ../../godmode/massive/massive_add_profiles.php:204
-#: ../../include/functions_reporting.php:12397
+#: ../../include/functions_reporting.php:12470
#: ../../operation/search_results.php:94
msgid "Users"
msgstr "Utilisateurs"
#: ../../godmode/massive/massive_edit_users.php:379
-#: ../../operation/users/user_edit.php:646
+#: ../../operation/users/user_edit.php:643
msgid "This will activate autorefresh in selected pages"
msgstr "Le rafraîchissement automatique sera activé sur les pages sélectionnées."
#: ../../godmode/massive/massive_edit_users.php:443
-#: ../../operation/users/user_edit.php:705
+#: ../../operation/users/user_edit.php:702
msgid "List of pages with autorefresh"
msgstr "Liste de pages avec le rafraîchissement automatique"
#: ../../godmode/massive/massive_edit_users.php:452
-#: ../../operation/users/user_edit.php:714
+#: ../../operation/users/user_edit.php:711
msgid "Time autorefresh"
msgstr "Temps de rafraîchissement"
#: ../../godmode/massive/massive_add_alerts.php:105
#: ../../godmode/massive/massive_delete_alerts.php:108
-#: ../../operation/agentes/alerts_status.php:566
+#: ../../operation/agentes/alerts_status.php:576
#: ../../operation/agentes/alerts_status.functions.php:54
msgid "No alert selected"
msgstr "Aucune alerte sélectionnée"
@@ -38288,33 +38528,33 @@ msgstr "Fichiers de configuration supprimés correctement"
msgid "Configuration files cannot be deleted"
msgstr "Erreur de suppression des fichiers de configuration"
-#: ../../godmode/massive/massive_edit_agents.php:382
+#: ../../godmode/massive/massive_edit_agents.php:399
#, php-format
msgid "Agents updated successfully (%d)"
msgstr "Agents mis à jour correctement (%d)"
-#: ../../godmode/massive/massive_edit_agents.php:397
+#: ../../godmode/massive/massive_edit_agents.php:414
#, php-format
msgid "Agents cannot be updated (%d), ids (%s)"
msgstr "Les agents ne peuvent pas être mis à jour (%d), ids (%s)"
-#: ../../godmode/massive/massive_edit_agents.php:412
+#: ../../godmode/massive/massive_edit_agents.php:429
#, php-format
msgid "Agent ID: %s cannot be updated custom fields (%s)"
msgstr ""
"ID de l’agent : %s ne peut pas être mis à jour des champs personnalisés (%s)"
-#: ../../godmode/massive/massive_edit_agents.php:432
+#: ../../godmode/massive/massive_edit_agents.php:449
#, php-format
msgid "Agent ID: %s cannot be updated %s secondary groups (%s)"
msgstr ""
"ID de l’agent : %s ne peut pas être mis à jour %s groupes secondaires (%s)"
-#: ../../godmode/massive/massive_edit_agents.php:668
+#: ../../godmode/massive/massive_edit_agents.php:685
msgid "Cascade protection"
msgstr "Protection en cascade"
-#: ../../godmode/massive/massive_edit_agents.php:940
+#: ../../godmode/massive/massive_edit_agents.php:957
msgid ""
"If the remote configuration is enabled, it will also go into standby mode when "
"disabling it."
@@ -38322,34 +38562,34 @@ msgstr ""
"Si la configuration à distance est activée, elle passera également en mode "
"veille lors de sa désactivation."
-#: ../../godmode/massive/massive_edit_agents.php:953
+#: ../../godmode/massive/massive_edit_agents.php:970
#: ../../include/class/EventSound.class.php:344
msgid "Active"
msgstr "Activé"
-#: ../../godmode/massive/massive_edit_agents.php:969
+#: ../../godmode/massive/massive_edit_agents.php:986
msgid "Delete available remote configurations"
msgstr "Supprimer les configurations à distance disponibles"
-#: ../../godmode/massive/massive_edit_agents.php:1025
+#: ../../godmode/massive/massive_edit_agents.php:1042
msgid "Without status"
msgstr "Sans état"
-#: ../../godmode/massive/massive_edit_agents.php:1052
+#: ../../godmode/massive/massive_edit_agents.php:1069
#: ../../include/lib/Dashboard/Widgets/maps_status.php:371
msgid "Bad"
msgstr "Mauvais"
-#: ../../godmode/massive/massive_edit_agents.php:1072
+#: ../../godmode/massive/massive_edit_agents.php:1089
msgid "Ignore new GIS data:"
msgstr "Ignorer les nouvelles données GIS :"
-#: ../../godmode/massive/massive_edit_agents.php:1110
+#: ../../godmode/massive/massive_edit_agents.php:1127
msgid "The agent still runs but the alerts and events will be stop"
msgstr ""
"L'agent fonctionne toujours mais les alertes et les événements seront arrêtés"
-#: ../../godmode/massive/massive_edit_agents.php:1130
+#: ../../godmode/massive/massive_edit_agents.php:1146
#, php-format
msgid ""
"This mode allow %s to disable all modules of this agent while the selected "
@@ -38401,15 +38641,11 @@ msgstr ""
"mettre à jour)"
#: ../../godmode/massive/massive_edit_modules.php:506
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:419
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:423
msgid "Filter agents"
msgstr "Filtrer les agents"
-#: ../../godmode/massive/massive_edit_modules.php:811
-msgid "SMNP community"
-msgstr "Communauté SNMP"
-
-#: ../../godmode/consoles/consoles.php:59
+#: ../../godmode/consoles/consoles.php:67
msgid ""
"If you want to have your consoles registered, you must define them by editing "
"config.php in each individual console and wait for cron to run in order to be "
@@ -38452,7 +38688,7 @@ msgid "Hide"
msgstr "Cacher"
#: ../../godmode/alerts/alert_actions.php:79
-#: ../../include/functions_reporting.php:3226
+#: ../../include/functions_reporting.php:3235
msgid "Alert actions"
msgstr "Actions d'alerte"
@@ -38515,12 +38751,12 @@ msgstr ""
"Les actions par défaut seront exécutées chaque fois que l'alerte est "
"déclenchée et qu'aucune autre action est exécutée."
-#: ../../godmode/alerts/alert_list.list.php:1061
+#: ../../godmode/alerts/alert_list.list.php:1060
msgid "View alert advanced details"
msgstr "Afficher les informations avancées des alertes"
-#: ../../godmode/alerts/alert_list.list.php:1081
-#: ../../include/functions_reporting_html.php:3441
+#: ../../godmode/alerts/alert_list.list.php:1080
+#: ../../include/functions_reporting_html.php:3469
msgid "No alerts defined"
msgstr "Aucune alerte définie"
@@ -38565,12 +38801,12 @@ msgid "Alert commands"
msgstr "Commandes d'alertes"
#: ../../godmode/alerts/alert_commands.php:657
-#: ../../include/functions_alerts.php:2659
+#: ../../include/functions_alerts.php:2660
msgid "No name specified"
msgstr "Aucun nom indiqué"
#: ../../godmode/alerts/alert_commands.php:661
-#: ../../include/functions_alerts.php:2654
+#: ../../include/functions_alerts.php:2655
msgid "No command specified"
msgstr "Aucune commande spécifiée."
@@ -38582,7 +38818,7 @@ msgstr " (copie)"
msgid "No alert commands configured"
msgstr "Aucune commande d'alerte configurée"
-#: ../../godmode/alerts/alert_templates.php:273
+#: ../../godmode/alerts/alert_templates.php:277
#, php-format
msgid ""
"This node is configured with centralized mode. All alert templates information "
@@ -38591,7 +38827,7 @@ msgstr ""
"Ce nœud est configuré en mode centralisé. Toutes les informations sur les "
"modèles d'alerte sont en lecture seule. Allez vers %s pour le gérer."
-#: ../../godmode/alerts/alert_templates.php:438
+#: ../../godmode/alerts/alert_templates.php:442
msgid ""
"You cannot edit this alert template, You don't have the permission to edit All "
"group."
@@ -38599,7 +38835,7 @@ msgstr ""
"Vous ne pouvez pas modifier ce modèle d'alerte, vous n'êtes pas autorisé à "
"modifier le groupe Tous."
-#: ../../godmode/alerts/alert_templates.php:505
+#: ../../godmode/alerts/alert_templates.php:509
msgid "No alert templates defined"
msgstr "Aucun modèle d'alerte défini"
@@ -38616,6 +38852,14 @@ msgstr "Cette action peut cesser de fonctionner si vous modifiez son nom."
msgid "Create Command"
msgstr "Créer une commande"
+#: ../../godmode/alerts/configure_alert_action.php:287
+msgid ""
+"An alert action is executed only once within this time interval, regardless of "
+"how many times the alert is triggered."
+msgstr ""
+"Une action d’alerte est exécutée seulement une fois dans cet intervalle de "
+"temps, n’importe combien de fois l’alerte est déclenchée."
+
#: ../../godmode/alerts/configure_alert_action.php:320
msgid "Triggering"
msgstr "Déclenchement"
@@ -38645,7 +38889,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:104
#: ../../godmode/alerts/configure_alert_template.php:135
#: ../../godmode/alerts/configure_alert_template.php:174
-#: ../../include/functions_menu.php:569
+#: ../../include/functions_menu.php:571
msgid "Configure alert template"
msgstr "Configurer le modèle d'alerte"
@@ -38672,6 +38916,14 @@ msgstr ""
msgid "No template name specified"
msgstr "Aucun nom de modèle spécifié"
+#: ../../godmode/alerts/configure_alert_template.php:691
+msgid ""
+"Reset the alert counter within the configured period if there is no manual "
+"recovery or validation of the alert."
+msgstr ""
+"Remettre le compteur d’alertes dans la période configurée s’il n’y a pas de "
+"récupération manuelle ou validation de l’alerte."
+
#: ../../godmode/alerts/configure_alert_template.php:722
msgid ""
"Unless they're left blank, the fields from the action will override those set "
@@ -38718,7 +38970,7 @@ msgid "No wizard"
msgstr "Pas d'assistant logiciel"
#: ../../godmode/alerts/configure_alert_template.php:1266
-#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504
+#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547
msgid "The alert would fire when the value matches "
msgstr ""
"L'alerte est déclenchée lorsque la valeur concorde avec "
@@ -38730,18 +38982,18 @@ msgid "The alert would fire when the value doesn\\'t match %s"
msgstr "L'alerte est déclenchée lorsque la valeur ne concorde pas avec %s"
#: ../../godmode/alerts/configure_alert_template.php:1268
-#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493
+#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1536
msgid "The alert would fire when the value is "
msgstr "L'alerte est déclenchée lorsque la valeur est "
#: ../../godmode/alerts/configure_alert_template.php:1269
-#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498
+#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541
msgid "The alert would fire when the value is not "
msgstr ""
"L'alerte est déclenchée lorsque la valeur n'est pas "
#: ../../godmode/alerts/configure_alert_template.php:1270
-#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516
+#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559
msgid ""
"The alert would fire when the value is between and "
""
@@ -38772,12 +39024,12 @@ msgstr ""
" span>"
#: ../../godmode/alerts/configure_alert_template.php:1274
-#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535
+#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578
msgid "The alert would fire when the module is in warning status"
msgstr "L'alerte est déclenchée lorsque le module se trouve en état d'alerte"
#: ../../godmode/alerts/configure_alert_template.php:1275
-#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540
+#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583
msgid "The alert would fire when the module is in critical status"
msgstr "L'alerte est déclenchée lorsque le module se trouve en état critique"
@@ -38827,14 +39079,14 @@ msgstr "Liste d'alertes"
msgid "Stand by"
msgstr "Veuillez patientez"
-#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507
+#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550
msgid ""
"The alert would fire when the value doesn't match "
msgstr ""
"L'alerte est déclenchée lorsque la valeur ne concorde pas avec "
-#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519
+#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562
msgid ""
"The alert would fire when the value is not between "
"and "
@@ -38921,6 +39173,10 @@ msgstr "Créer une action"
msgid "Create Template"
msgstr "Créer un modèle"
+#: ../../godmode/alerts/alert_list.builder.php:169
+msgid "It takes precedence over the action's threshold configuration."
+msgstr "Il a de la priorité sur la configuration du seuil de l’action."
+
#: ../../godmode/alerts/alert_list.builder.php:199
msgid "Finish and view cluster"
msgstr "Terminer et afficher la grappe"
@@ -38954,12 +39210,12 @@ msgid "Licence"
msgstr "Licence"
#: ../../godmode/setup/license.php:158
-#: ../../include/class/Diagnostics.class.php:1175
+#: ../../include/class/Diagnostics.class.php:1179
msgid "Customer key"
msgstr "Mot de passe du client"
#: ../../godmode/setup/license.php:183
-#: ../../include/class/Diagnostics.class.php:1183
+#: ../../include/class/Diagnostics.class.php:1187
msgid "Platform Limit"
msgstr "Limite de la plateforme"
@@ -38975,22 +39231,22 @@ msgid "modules"
msgstr "modules"
#: ../../godmode/setup/license.php:196
-#: ../../include/class/Diagnostics.class.php:1187
+#: ../../include/class/Diagnostics.class.php:1191
msgid "Current Platform Count"
msgstr "Nombre de plateformes actuelles"
#: ../../godmode/setup/license.php:209
-#: ../../include/class/Diagnostics.class.php:1191
+#: ../../include/class/Diagnostics.class.php:1195
msgid "Current Platform Count (enabled: items)"
msgstr "Nombre de plateformes actuelles (activés : éléments)"
#: ../../godmode/setup/license.php:222
-#: ../../include/class/Diagnostics.class.php:1195
+#: ../../include/class/Diagnostics.class.php:1199
msgid "Current Platform Count (disabled: items)"
msgstr "Nombre de plateformes actuelles (désactivés : éléments)"
#: ../../godmode/setup/license.php:235
-#: ../../include/class/Diagnostics.class.php:1199
+#: ../../include/class/Diagnostics.class.php:1203
msgid "License Mode"
msgstr "Mode licence"
@@ -38999,7 +39255,7 @@ msgid "NMS"
msgstr "NMS"
#: ../../godmode/setup/license.php:274
-#: ../../include/class/Diagnostics.class.php:1211
+#: ../../include/class/Diagnostics.class.php:1215
msgid "Licensed to"
msgstr "Sous licence pour"
@@ -39057,40 +39313,44 @@ msgstr ""
msgid "Site news management"
msgstr "Gérer les nouveautés du site"
-#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105
+#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105
msgid "Name error"
msgstr "Erreur de nom"
-#: ../../godmode/setup/news.php:234
+#: ../../godmode/setup/news.php:238
msgid "Modal screen"
msgstr "Écran modal"
-#: ../../godmode/setup/news.php:247
+#: ../../godmode/setup/news.php:251
msgid "Expire"
msgstr "Expire le"
-#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353
+#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357
msgid "Expiration"
msgstr "Expiration"
-#: ../../godmode/setup/news.php:344
+#: ../../godmode/setup/news.php:348
msgid "There are no defined news"
msgstr "Aucune nouvelle définie"
-#: ../../godmode/setup/news.php:351
-#: ../../operation/agentes/estado_generalagente.php:749
+#: ../../godmode/setup/news.php:355
+#: ../../operation/agentes/estado_generalagente.php:718
msgid "Author"
msgstr "Auteur"
-#: ../../godmode/setup/news.php:371
+#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216
+msgid "Welcome to Pandora FMS Console"
+msgstr "Bienvenue à la console web Pandora FMS"
+
+#: ../../godmode/setup/news.php:370
msgid "Modal"
msgstr "Modal"
-#: ../../godmode/setup/news.php:373
+#: ../../godmode/setup/news.php:372
msgid "Board"
msgstr "Panneau"
-#: ../../godmode/setup/news.php:384
+#: ../../godmode/setup/news.php:383
msgid "Expired"
msgstr "Expiré"
@@ -39118,7 +39378,7 @@ msgstr "Connexion à la carte SIG"
msgid "Pandora Websocket Engine"
msgstr "Moteur de Websocket Pandora FMS"
-#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:493
+#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:505
msgid "Create tip"
msgstr "Créer une astuce"
@@ -39135,7 +39395,7 @@ msgid "Correct update the setup options"
msgstr "Corrigez la mise à jour des options de configuration"
#: ../../godmode/setup/setup_ehorus.php:67
-#: ../../include/functions_config.php:1812
+#: ../../include/functions_config.php:1824
msgid "Enable eHorus"
msgstr "Activer eHorus"
@@ -39156,6 +39416,17 @@ msgstr "Port API"
msgid "Request timeout"
msgstr "Demande expirée"
+#: ../../godmode/setup/setup_ehorus.php:135
+#: ../../godmode/setup/setup_integria.php:665
+msgid "Connection its OK"
+msgstr "Connexion correcte"
+
+#: ../../godmode/setup/setup_ehorus.php:139
+#: ../../godmode/setup/setup_websocket_engine.php:89
+#: ../../godmode/setup/setup_integria.php:652
+msgid "Test connection"
+msgstr "Tester la connexion"
+
#: ../../godmode/setup/setup_ehorus.php:175
msgid "Remote Management System"
msgstr "Système de Gestion à Distance"
@@ -39197,24 +39468,24 @@ msgstr "Dépassement du délai de connexion"
#: ../../godmode/setup/setup_ehorus.php:297
#: ../../godmode/setup/setup_integria.php:825
#: ../../godmode/setup/setup_integria.php:906
-#: ../../operation/users/user_edit.php:1420
-#: ../../operation/users/user_edit.php:1498
+#: ../../operation/users/user_edit.php:1417
+#: ../../operation/users/user_edit.php:1495
msgid "Empty user or password"
msgstr "Utilisateur ou mot de passe vide"
#: ../../godmode/setup/setup_ehorus.php:298
#: ../../godmode/setup/setup_integria.php:826
#: ../../godmode/setup/setup_integria.php:907
-#: ../../operation/users/user_edit.php:1421
-#: ../../operation/users/user_edit.php:1499
+#: ../../operation/users/user_edit.php:1418
+#: ../../operation/users/user_edit.php:1496
msgid "User not found"
msgstr "Utilisateur introuvable"
#: ../../godmode/setup/setup_ehorus.php:299
#: ../../godmode/setup/setup_integria.php:827
#: ../../godmode/setup/setup_integria.php:908
-#: ../../operation/users/user_edit.php:1422
-#: ../../operation/users/user_edit.php:1500
+#: ../../operation/users/user_edit.php:1419
+#: ../../operation/users/user_edit.php:1497
msgid "Invalid password"
msgstr "Mot de passe incorrect"
@@ -39223,55 +39494,52 @@ msgstr "Mot de passe incorrect"
msgid "Data storage path"
msgstr "Chemin de stockage de données"
-#: ../../godmode/setup/setup_sflow.php:50
-#: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1540
-#: ../../include/functions_config.php:1583
+#: ../../godmode/setup/setup_sflow.php:50 ../../include/functions_config.php:1595
msgid "Daemon interval"
msgstr "Intervalle de démon"
#: ../../godmode/setup/setup_sflow.php:55
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../include/functions_config.php:1544
-#: ../../include/functions_config.php:1587
+#: ../../godmode/setup/setup_netflow.php:51
+#: ../../include/functions_config.php:1556
+#: ../../include/functions_config.php:1599
msgid "Daemon binary path"
msgstr "Chemin binaire démon"
#: ../../godmode/setup/setup_sflow.php:60
-#: ../../godmode/setup/setup_netflow.php:60
-#: ../../include/functions_config.php:1548
-#: ../../include/functions_config.php:1591
+#: ../../godmode/setup/setup_netflow.php:56
+#: ../../include/functions_config.php:1560
+#: ../../include/functions_config.php:1603
msgid "Nfdump binary path"
msgstr "Chemin binaire nfdump"
#: ../../godmode/setup/setup_sflow.php:65
-#: ../../godmode/setup/setup_netflow.php:65
-#: ../../include/functions_config.php:1552
-#: ../../include/functions_config.php:1595
+#: ../../godmode/setup/setup_netflow.php:61
+#: ../../include/functions_config.php:1564
+#: ../../include/functions_config.php:1607
msgid "Nfexpire binary path"
msgstr "Chemin binaire Nfexpire"
#: ../../godmode/setup/setup_sflow.php:70
-#: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1556
-#: ../../include/functions_config.php:1599
+#: ../../godmode/setup/setup_netflow.php:66
+#: ../../include/functions_config.php:1568
+#: ../../include/functions_config.php:1611
msgid "Maximum chart resolution"
msgstr "Résolution maximale du graphique"
-#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1607
+#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1619
msgid "Sflow max lifetime"
msgstr "Durée de vie maximale de Sflow"
#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
-#: ../../operation/netflow/nf_live_view.php:339
+#: ../../godmode/setup/setup_netflow.php:80
+#: ../../operation/netflow/nf_live_view.php:348
msgid "IP address resolution can take a lot of time"
msgstr "La résolution de l'adresse IP peut prendre du temps"
#: ../../godmode/setup/setup_sflow.php:86
-#: ../../godmode/setup/setup_netflow.php:86
-#: ../../include/functions_config.php:1568
-#: ../../include/functions_config.php:1611
+#: ../../godmode/setup/setup_netflow.php:82
+#: ../../include/functions_config.php:1580
+#: ../../include/functions_config.php:1623
msgid "Name resolution for IP address"
msgstr "Résolution du nom pour l'adresse IP"
@@ -39288,7 +39556,7 @@ msgid "Bind port"
msgstr "Lier le port"
#: ../../godmode/setup/setup_websocket_engine.php:71
-#: ../../include/functions_config.php:1964
+#: ../../include/functions_config.php:1976
msgid "WebSocket proxy url"
msgstr "URL du proxy WebSocket"
@@ -39301,11 +39569,11 @@ msgstr ""
"Ce nœud est configuré en mode centralisé. Toutes les définitions de système "
"d'exploitation sont en lecture seule. Accédez à %s pour les gérer."
-#: ../../godmode/setup/os.list.php:163
+#: ../../godmode/setup/os.list.php:162
msgid "There are no defined operating systems"
msgstr "Aucun système d'exploitation défini"
-#: ../../godmode/setup/os.list.php:170
+#: ../../godmode/setup/os.list.php:169
msgid "Create OS"
msgstr "Définir système d'exploitation"
@@ -39391,9 +39659,9 @@ msgstr "Google Maps"
#: ../../godmode/setup/gis_step_2.php:254
#: ../../godmode/reporting/visual_console_builder.elements.php:199
-#: ../../include/functions_visual_map_editor.php:1385
-#: ../../include/functions_visual_map.php:4200
-#: ../../operation/visual_console/view.php:316
+#: ../../include/functions_visual_map_editor.php:1443
+#: ../../include/functions_visual_map.php:4209
+#: ../../operation/visual_console/view.php:318
msgid "Static Image"
msgstr "Image statique"
@@ -39442,24 +39710,24 @@ msgid "Corners of the area of the image"
msgstr "Coins qui délimitent la surface de l'image"
#: ../../godmode/setup/gis_step_2.php:364
-#: ../../include/rest-api/models/VisualConsole/Item.php:1961
+#: ../../include/rest-api/models/VisualConsole/Item.php:1964
msgid "Left"
msgstr "Gauche"
#: ../../godmode/setup/gis_step_2.php:371
-#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../include/rest-api/models/VisualConsole/Item.php:1961
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
msgid "Bottom"
msgstr "En bas"
#: ../../godmode/setup/gis_step_2.php:378
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../include/rest-api/models/VisualConsole/Item.php:1963
msgid "Right"
msgstr "Droite"
#: ../../godmode/setup/gis_step_2.php:385
-#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../include/rest-api/models/VisualConsole/Item.php:1962
msgid "Top"
msgstr "En haut"
@@ -39555,7 +39823,7 @@ msgid "Integria IMS API is not reachable"
msgstr "L'API Integria IMS n'est pas accessible"
#: ../../godmode/setup/setup_integria.php:262
-#: ../../include/functions_config.php:1850
+#: ../../include/functions_config.php:1862
msgid "Enable Integria IMS"
msgstr "Activer Integria IMS"
@@ -39628,183 +39896,183 @@ msgstr "Erreur d'enregistrement de la traduction SNMP"
msgid "Unsucessful save the snmp translation."
msgstr "Erreur d'enregistrement de la traduction SNMP"
-#: ../../godmode/setup/setup_netflow.php:80
-#: ../../include/functions_config.php:1564
+#: ../../godmode/setup/setup_netflow.php:76
+#: ../../include/functions_config.php:1576
msgid "Netflow max lifetime"
msgstr "Durée de vie maximale du Netflow"
-#: ../../godmode/setup/setup_visuals.php:108
+#: ../../godmode/setup/setup_visuals.php:112
msgid "Click to display lateral menus"
msgstr "Cliquer pour afficher les menus latéraux"
-#: ../../godmode/setup/setup_visuals.php:120
+#: ../../godmode/setup/setup_visuals.php:124
msgid "Paginated module view"
msgstr "Vue paginée du module"
-#: ../../godmode/setup/setup_visuals.php:152
-#: ../../include/functions_config.php:1347
+#: ../../godmode/setup/setup_visuals.php:156
+#: ../../include/functions_config.php:1363
msgid "Service label font size"
msgstr "Taille de la police de l'étiquette de service"
-#: ../../godmode/setup/setup_visuals.php:156
+#: ../../godmode/setup/setup_visuals.php:160
msgid "Space between items in Service maps"
msgstr "Espace entre les éléments sur les cartes de service"
-#: ../../godmode/setup/setup_visuals.php:235
+#: ../../godmode/setup/setup_visuals.php:239
msgid "Colors"
msgstr "Couleurs"
-#: ../../godmode/setup/setup_visuals.php:236
+#: ../../godmode/setup/setup_visuals.php:240
msgid "Faces"
msgstr "Apparence"
-#: ../../godmode/setup/setup_visuals.php:237
+#: ../../godmode/setup/setup_visuals.php:241
msgid "Colors and text"
msgstr "Couleurs et texte"
-#: ../../godmode/setup/setup_visuals.php:339
-#: ../../include/functions_config.php:1038
+#: ../../godmode/setup/setup_visuals.php:343
+#: ../../include/functions_config.php:1050
msgid "Style template"
msgstr "Modèle de style"
-#: ../../godmode/setup/setup_visuals.php:357
-#: ../../include/functions_config.php:1058
+#: ../../godmode/setup/setup_visuals.php:361
+#: ../../include/functions_config.php:1070
msgid "Status icon set"
msgstr "Définir icône d'état"
-#: ../../godmode/setup/setup_visuals.php:602
-#: ../../include/functions_config.php:1094
+#: ../../godmode/setup/setup_visuals.php:606
+#: ../../include/functions_config.php:1106
msgid "Custom documentation logo"
msgstr "Logo de documentation personnalisé"
-#: ../../godmode/setup/setup_visuals.php:642
-#: ../../include/functions_config.php:1098
+#: ../../godmode/setup/setup_visuals.php:646
+#: ../../include/functions_config.php:1110
msgid "Custom support logo"
msgstr "Logo d'assistance personnalisé"
-#: ../../godmode/setup/setup_visuals.php:680
-#: ../../include/functions_config.php:1102
-#: ../../include/functions_config.php:1106
+#: ../../godmode/setup/setup_visuals.php:684
+#: ../../include/functions_config.php:1114
+#: ../../include/functions_config.php:1118
msgid "Custom networkmap center logo"
msgstr "Logo du centre de carte réseau personnalisé"
-#: ../../godmode/setup/setup_visuals.php:720
+#: ../../godmode/setup/setup_visuals.php:724
msgid "Custom mobile console icon"
msgstr "Icône de console mobile personnalisée"
-#: ../../godmode/setup/setup_visuals.php:814
+#: ../../godmode/setup/setup_visuals.php:818
msgid "Disable logo in graphs"
msgstr "Désactiver logo sur les graphiques"
-#: ../../godmode/setup/setup_visuals.php:832
+#: ../../godmode/setup/setup_visuals.php:836
msgid "Disable helps"
msgstr "Désactiver les aides"
-#: ../../godmode/setup/setup_visuals.php:842
-#: ../../include/functions_config.php:1286
+#: ../../godmode/setup/setup_visuals.php:846
+#: ../../include/functions_config.php:1302
msgid "Fixed header"
msgstr "En-tête fixe"
-#: ../../godmode/setup/setup_visuals.php:854
+#: ../../godmode/setup/setup_visuals.php:858
msgid "Automatically hide submenu"
msgstr "Masquer automatiquement le sous-menu"
-#: ../../godmode/setup/setup_visuals.php:901
-#: ../../include/functions_config.php:1250
+#: ../../godmode/setup/setup_visuals.php:905
+#: ../../include/functions_config.php:1266
msgid "GIS Labels"
msgstr "Étiquettes GIS"
-#: ../../godmode/setup/setup_visuals.php:911
-#: ../../include/functions_config.php:1258
+#: ../../godmode/setup/setup_visuals.php:915
+#: ../../include/functions_config.php:1274
msgid "Default icon in GIS"
msgstr "Icône par défaut sur GIS"
-#: ../../godmode/setup/setup_visuals.php:920
+#: ../../godmode/setup/setup_visuals.php:924
msgid "Agent icon group"
msgstr "Icône du groupe de l'agent"
-#: ../../godmode/setup/setup_visuals.php:970
+#: ../../godmode/setup/setup_visuals.php:974
msgid "Graphs font size"
msgstr "Taille de police des graphiques"
-#: ../../godmode/setup/setup_visuals.php:989
+#: ../../godmode/setup/setup_visuals.php:993
msgid "Show unit along with value in reports"
msgstr "Afficher l'unité et la valeur dans les rapports"
-#: ../../godmode/setup/setup_visuals.php:1000
-#: ../../include/functions_config.php:1226
-#: ../../include/functions_config.php:1230
+#: ../../godmode/setup/setup_visuals.php:1004
+#: ../../include/functions_config.php:1242
+#: ../../include/functions_config.php:1246
msgid "Agent size text"
msgstr "Taille du texte de l'agent"
-#: ../../godmode/setup/setup_visuals.php:1007
-#: ../../godmode/setup/setup_visuals.php:1029
+#: ../../godmode/setup/setup_visuals.php:1011
+#: ../../godmode/setup/setup_visuals.php:1033
msgid "Small"
msgstr "Petit"
-#: ../../godmode/setup/setup_visuals.php:1022
-#: ../../include/functions_config.php:1234
+#: ../../godmode/setup/setup_visuals.php:1026
+#: ../../include/functions_config.php:1250
msgid "Module size text"
msgstr "Taille du texte du module"
-#: ../../godmode/setup/setup_visuals.php:1046
-#: ../../include/functions_config.php:1238
-#: ../../include/functions_config.php:1242
+#: ../../godmode/setup/setup_visuals.php:1050
+#: ../../include/functions_config.php:1254
+#: ../../include/functions_config.php:1258
msgid "Description size text"
msgstr "Taille du texte de description"
-#: ../../godmode/setup/setup_visuals.php:1057
-#: ../../include/functions_config.php:1246
+#: ../../godmode/setup/setup_visuals.php:1061
+#: ../../include/functions_config.php:1262
msgid "Item title size text"
msgstr "Taille du texte du titre de l'élément"
-#: ../../godmode/setup/setup_visuals.php:1109
+#: ../../godmode/setup/setup_visuals.php:1113
msgid "Graph color #"
msgstr "Couleur du graphique #"
-#: ../../godmode/setup/setup_visuals.php:1123
+#: ../../godmode/setup/setup_visuals.php:1127
msgid "Data precision"
msgstr "Précision des données"
-#: ../../godmode/setup/setup_visuals.php:1141
+#: ../../godmode/setup/setup_visuals.php:1145
msgid "Data precision in graphs"
msgstr "Précision de données sur les graphiques"
-#: ../../godmode/setup/setup_visuals.php:1172
-#: ../../include/functions_config.php:1314
+#: ../../godmode/setup/setup_visuals.php:1176
+#: ../../include/functions_config.php:1330
msgid "Default line thickness for the Custom Graph."
msgstr "Épaisseur de ligne par défaut pour le graphique personnalisé"
-#: ../../godmode/setup/setup_visuals.php:1299
+#: ../../godmode/setup/setup_visuals.php:1303
msgid "Zoom graphs"
msgstr "Zoomer les graphiques"
-#: ../../godmode/setup/setup_visuals.php:1328
+#: ../../godmode/setup/setup_visuals.php:1332
msgid "Classic view"
msgstr "Affichage classique"
-#: ../../godmode/setup/setup_visuals.php:1329
+#: ../../godmode/setup/setup_visuals.php:1333
msgid "View of favorites"
msgstr "Vue des favoris"
-#: ../../godmode/setup/setup_visuals.php:1384
+#: ../../godmode/setup/setup_visuals.php:1388
msgid "Type of view of visual consoles"
msgstr "Type d'affichage des consoles visuelles"
-#: ../../godmode/setup/setup_visuals.php:1398
+#: ../../godmode/setup/setup_visuals.php:1402
msgid "Number of favorite visual consoles to show in the menu"
msgstr "Nombre de consoles visuelles préférées à afficher dans le menu"
-#: ../../godmode/setup/setup_visuals.php:1403
-#: ../../include/functions_config.php:1214
+#: ../../godmode/setup/setup_visuals.php:1407
+#: ../../include/functions_config.php:1226
msgid "Default line thickness for the Visual Console"
msgstr "Épaisseur de ligne par défaut pour la console visuelle"
-#: ../../godmode/setup/setup_visuals.php:1437
+#: ../../godmode/setup/setup_visuals.php:1452
msgid "Number of favorite services to show in the menu"
msgstr "Nombre de services favoris à afficher dans le menu"
-#: ../../godmode/setup/setup_visuals.php:1535
+#: ../../godmode/setup/setup_visuals.php:1550
msgid ""
"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
@@ -39813,90 +40081,90 @@ msgstr ""
"'images/custom_logo'. Vous pouvez télécharger plus de fichiers (SEULEMENT JPEG "
"ET PNG) dans l'outil de téléchargement de la console."
-#: ../../godmode/setup/setup_visuals.php:1724
-#: ../../include/functions_config.php:1298
+#: ../../godmode/setup/setup_visuals.php:1739
+#: ../../include/functions_config.php:1314
msgid "Networkmap max width"
msgstr "Largeur maximale de la carte de réseau"
-#: ../../godmode/setup/setup_visuals.php:1747
+#: ../../godmode/setup/setup_visuals.php:1762
msgid "Show empty groups in group view"
msgstr "Afficher les groupes vides dans la vue de groupe"
-#: ../../godmode/setup/setup_visuals.php:1773
-#: ../../include/functions_config.php:1520
+#: ../../godmode/setup/setup_visuals.php:1788
+#: ../../include/functions_config.php:1536
msgid "Decimal separator"
msgstr "Séparateur décimal"
-#: ../../godmode/setup/setup_visuals.php:1788
+#: ../../godmode/setup/setup_visuals.php:1803
msgid "Visible time of successful notifiations"
-msgstr "Heure visible des notifications réussies"
+msgstr "Temps visible des notifications réussies"
-#: ../../godmode/setup/setup_visuals.php:1816
+#: ../../godmode/setup/setup_visuals.php:1831
msgid "Custom values post process"
msgstr "Valeurs personnalisées pour post-traitement"
-#: ../../godmode/setup/setup_visuals.php:1856
-#: ../../godmode/setup/setup_visuals.php:2023
+#: ../../godmode/setup/setup_visuals.php:1871
+#: ../../godmode/setup/setup_visuals.php:2038
msgid "Delete custom values"
msgstr "Supprimer les valeurs personnalisées"
-#: ../../godmode/setup/setup_visuals.php:1906
+#: ../../godmode/setup/setup_visuals.php:1921
msgid "Interval values"
msgstr "Valeurs d'intervalle"
-#: ../../godmode/setup/setup_visuals.php:1945
+#: ../../godmode/setup/setup_visuals.php:1960
msgid "Delete interval values"
msgstr "Supprimer des valeurs d’intervalle"
-#: ../../godmode/setup/setup_visuals.php:1988
+#: ../../godmode/setup/setup_visuals.php:2003
msgid "Module units"
msgstr "Unités du module"
-#: ../../godmode/setup/setup_visuals.php:2084
+#: ../../godmode/setup/setup_visuals.php:2099
msgid "Behaviour configuration"
msgstr "Configuration de comportement"
-#: ../../godmode/setup/setup_visuals.php:2089
+#: ../../godmode/setup/setup_visuals.php:2104
msgid "GIS configuration"
msgstr "Configuration GIS"
-#: ../../godmode/setup/setup_visuals.php:2094
+#: ../../godmode/setup/setup_visuals.php:2109
msgid "Style configuration"
msgstr "Configuration du style"
-#: ../../godmode/setup/setup_visuals.php:2099
+#: ../../godmode/setup/setup_visuals.php:2114
msgid "Charts configuration"
msgstr "Configuration de graphiques"
-#: ../../godmode/setup/setup_visuals.php:2104
+#: ../../godmode/setup/setup_visuals.php:2119
msgid "Font and Text configuration"
msgstr "Configuration de la police et du texte"
-#: ../../godmode/setup/setup_visuals.php:2109
+#: ../../godmode/setup/setup_visuals.php:2124
msgid "Visual consoles configuration"
msgstr "Configuration des consoles visuelles"
-#: ../../godmode/setup/setup_visuals.php:2114
+#: ../../godmode/setup/setup_visuals.php:2129
msgid "Reports configuration "
msgstr "Configuration des rapports"
-#: ../../godmode/setup/setup_visuals.php:2119
+#: ../../godmode/setup/setup_visuals.php:2134
msgid "Services configuration"
msgstr "Configuration des services"
-#: ../../godmode/setup/setup_visuals.php:2124
+#: ../../godmode/setup/setup_visuals.php:2139
msgid "Other configuration"
msgstr "Autre configuration"
-#: ../../godmode/setup/setup_visuals.php:2405
+#: ../../godmode/setup/setup_visuals.php:2425
msgid "Mobile console logo preview"
msgstr "Aperçu du logo de la console mobile"
-#: ../../godmode/setup/setup_visuals.php:2441
+#: ../../godmode/setup/setup_visuals.php:2461
msgid "Gis icons preview"
msgstr "Aperçu des icônes GIS"
-#: ../../godmode/setup/setup_visuals.php:2507
+#: ../../godmode/setup/setup_visuals.php:2527
msgid "Status set preview"
msgstr "Aperçu de l'état"
@@ -39980,8 +40248,12 @@ msgstr "Activer Sflow"
msgid "General network path"
msgstr "Chemin réseau général"
+#: ../../godmode/setup/setup_general.php:434
+msgid "Server timezone setup"
+msgstr "Configuration du fuseau horaire du serveur"
+
#: ../../godmode/setup/setup_general.php:515
-#: ../../include/functions_config.php:423
+#: ../../include/functions_config.php:431
msgid "Inventory changes blacklist"
msgstr "Liste noire des changements d'inventaire"
@@ -40046,11 +40318,11 @@ msgstr "Utile pour les intégrations"
msgid "Log location"
msgstr "Emplacement du journal"
-#: ../../godmode/setup/setup_general.php:710
+#: ../../godmode/setup/setup_general.php:736
msgid "General options"
msgstr "Options générales"
-#: ../../godmode/setup/setup_general.php:729
+#: ../../godmode/setup/setup_general.php:755
msgid ""
"Please notice that some providers like Gmail or Office365 need to setup/enable "
"manually external connections using SMTP and you need to use STARTTLS on port "
@@ -40066,29 +40338,29 @@ msgstr ""
"Si vous avez des paramètres manuels dans votre pandora_server.conf, veuillez "
"noter que ces paramètres ignoreront cette configuration de la console."
-#: ../../godmode/setup/setup_general.php:744
+#: ../../godmode/setup/setup_general.php:770
msgid "From address"
msgstr "De l'adresse"
-#: ../../godmode/setup/setup_general.php:768
+#: ../../godmode/setup/setup_general.php:794
msgid "SMTP Server"
msgstr "Serveur SMTP"
-#: ../../godmode/setup/setup_general.php:780
+#: ../../godmode/setup/setup_general.php:806
msgid "SMTP Port"
msgstr "Port SMTP"
-#: ../../godmode/setup/setup_general.php:847
+#: ../../godmode/setup/setup_general.php:873
msgid "Email test"
msgstr "Test d'un email"
-#: ../../godmode/setup/setup_general.php:896
-#: ../../include/class/TipsWindow.class.php:767
-#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833
+#: ../../godmode/setup/setup_general.php:922
+#: ../../include/class/TipsWindow.class.php:787
+#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833
msgid "Send"
msgstr "Envoyer"
-#: ../../godmode/setup/setup_general.php:910
+#: ../../godmode/setup/setup_general.php:936
msgid "Check mail configuration"
msgstr "Vérifier la configuration de la messagerie"
@@ -40100,29 +40372,29 @@ msgstr "Pandora_db s'exécutant dans la base de données historique."
msgid "not executed"
msgstr "Non exécuté"
-#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:834
+#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:846
msgid "Max. days before delete traps"
msgstr "Nombre de jours maximum avant la suppression de déroutements"
#: ../../godmode/setup/performance.php:308
-#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838
+#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:850
msgid "Max. days before delete string data"
msgstr "Nombre de jours maximum avant la suppression de chaînes de données"
-#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:846
+#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:858
msgid "Max. days before delete GIS data"
msgstr "Nombre de jours maximum avant la suppression de données GIS"
#: ../../godmode/setup/performance.php:353
-#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862
+#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:874
msgid "Max. days before compact data"
msgstr "Nombre de jours maximum avant la compression de données"
-#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:854
+#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:866
msgid "Max. days before delete unknown modules"
msgstr "Nombre de jours maximum avant la suppression de modules inconnus"
-#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:858
+#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:870
msgid "Max. days before delete not initialized modules"
msgstr "Nombre de jours maximum avant la suppression de modules non initialisés"
@@ -40132,24 +40404,24 @@ msgstr ""
"Nombre de jours maximum avant la suppression d'agents à désactivation "
"automatique"
-#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:914
+#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:926
msgid "Retention period of past special days"
msgstr "Période de rétention de jours spéciaux passés"
#: ../../godmode/setup/performance.php:494
-#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878
+#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:890
msgid "Compact interpolation in hours (1 Fine-20 bad)"
msgstr "Interpolation de compression en heures (1 Optimale-20 Mauvaise)"
-#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:928
+#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:940
msgid "Max. days before delete old messages"
msgstr "Max. jours avant de supprimer les anciens messages"
-#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:932
+#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:944
msgid "Max. days before delete old network matrix data"
msgstr "Max. jours avant de supprimer les anciennes données de la matrice réseau"
-#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:923
+#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:935
msgid "Max. days before delete inventory data"
msgstr "Nombre de jours maximum avant la suppression de données d'inventaire"
@@ -40169,20 +40441,20 @@ msgstr "10 jours"
msgid "2 weeks"
msgstr "2 semaines"
-#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:886
+#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:898
msgid "Use realtime statistics"
msgstr "Utiliser des statistiques en temps réel"
-#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:890
+#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:902
msgid "Batch statistics period (secs)"
msgstr "Période de statistiques par lot (en secondes)"
-#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:898
+#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:910
msgid "Max. recommended number of files in attachment directory"
msgstr ""
"Nombre maximum de fichiers recommandé dans le répertoire des pièces jointes"
-#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:902
+#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:914
msgid "Delete not init modules"
msgstr "Supprimer les modules non initialisés"
@@ -40190,11 +40462,11 @@ msgstr "Supprimer les modules non initialisés"
msgid "Big Operation Step to purge old data"
msgstr "Étape majeure pour nettoyer les données anciennes"
-#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:910
+#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:922
msgid "Small Operation Step to purge old data"
msgstr "Étape mineure pour nettoyer les données anciennes"
-#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:936
+#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:948
msgid "Graph container - Max. Items"
msgstr "Conteneur de graphiques - Nombre maximal d'éléments"
@@ -40237,7 +40509,7 @@ msgstr "Options de maintenance de la base de données historique"
#: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404
#: ../../include/functions_netflow.php:2097
-#: ../../include/functions_reporting.php:4063
+#: ../../include/functions_reporting.php:4072
msgid "Others"
msgstr "Autres"
@@ -40246,7 +40518,7 @@ msgid "Agent SNMP Interface Wizard defaults"
msgstr "Paramètres par défaut de l’Assistant de l’interface SNMP de l’agent"
#: ../../godmode/setup/file_manager.php:83
-#: ../../include/functions_filemanager.php:630
+#: ../../include/functions_filemanager.php:645
#, php-format
msgid "Index of %s"
msgstr "Index de %s"
@@ -40286,8 +40558,8 @@ msgstr "Créer une console visuelle"
#: ../../godmode/reporting/visual_console_builder.data.php:182
#: ../../godmode/reporting/visual_console_builder.elements.php:167
#: ../../include/functions_visual_map_editor.php:55
-#: ../../include/functions_visual_map_editor.php:632
-#: ../../include/lib/Dashboard/Widget.php:575
+#: ../../include/functions_visual_map_editor.php:626
+#: ../../include/lib/Dashboard/Widget.php:576
msgid "Background"
msgstr "Fond d'écran"
@@ -40296,10 +40568,10 @@ msgid "Background image"
msgstr "Image de fond"
#: ../../godmode/reporting/visual_console_builder.data.php:227
-#: ../../include/functions_visual_map_editor.php:347
+#: ../../include/functions_visual_map_editor.php:343
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247
msgid "Background color"
msgstr "Couleur de fond"
@@ -40348,107 +40620,107 @@ msgstr "Le fichier n'a pas une extension d'image."
msgid "Problems with move file to target."
msgstr "Problèmes de déplacement du fichier à la cible"
-#: ../../godmode/reporting/visual_console_builder.php:303
+#: ../../godmode/reporting/visual_console_builder.php:304
msgid "Successfully update."
msgstr "Mis à jour correctement"
-#: ../../godmode/reporting/visual_console_builder.php:322
+#: ../../godmode/reporting/visual_console_builder.php:323
msgid "Could not be update."
msgstr "Mise à jour échouée"
-#: ../../godmode/reporting/visual_console_builder.php:342
+#: ../../godmode/reporting/visual_console_builder.php:343
msgid "Successfully created."
msgstr "Créé correctement"
-#: ../../godmode/reporting/visual_console_builder.php:361
+#: ../../godmode/reporting/visual_console_builder.php:362
msgid "Could not be created."
msgstr "Erreur de création"
-#: ../../godmode/reporting/visual_console_builder.php:409
+#: ../../godmode/reporting/visual_console_builder.php:410
msgid "Successfully multiple delete."
msgstr "Suppression multiple réussie"
-#: ../../godmode/reporting/visual_console_builder.php:410
+#: ../../godmode/reporting/visual_console_builder.php:411
msgid "Unsuccessful multiple delete."
msgstr "Suppression multiple échouée"
-#: ../../godmode/reporting/visual_console_builder.php:530
+#: ../../godmode/reporting/visual_console_builder.php:531
msgid "Successfully delete."
msgstr "Supprimé correctement"
-#: ../../godmode/reporting/visual_console_builder.php:801
-#: ../../operation/visual_console/view.php:130
+#: ../../godmode/reporting/visual_console_builder.php:809
+#: ../../operation/visual_console/view.php:132
#: ../../operation/visual_console/legacy_view.php:117
msgid "Visual consoles list"
msgstr "Liste de consoles visuelles"
-#: ../../godmode/reporting/visual_console_builder.php:810
-#: ../../operation/visual_console/view.php:164
+#: ../../godmode/reporting/visual_console_builder.php:818
+#: ../../operation/visual_console/view.php:166
#: ../../operation/visual_console/legacy_view.php:133
msgid "Show link to public Visual Console"
msgstr "Afficher lien vers console visuelle publique"
-#: ../../godmode/reporting/visual_console_builder.php:814
+#: ../../godmode/reporting/visual_console_builder.php:822
#: ../../godmode/reporting/graph_builder.php:304
-#: ../../godmode/reporting/reporting_builder.php:3634
-#: ../../operation/visual_console/view.php:174
+#: ../../godmode/reporting/reporting_builder.php:3651
+#: ../../operation/visual_console/view.php:176
#: ../../operation/visual_console/legacy_view.php:143
#: ../../operation/reporting/reporting_viewer.php:138
#: ../../operation/reporting/graph_viewer.php:193
msgid "Main data"
msgstr "Données principales"
-#: ../../godmode/reporting/visual_console_builder.php:818
-#: ../../operation/visual_console/view.php:182
+#: ../../godmode/reporting/visual_console_builder.php:826
+#: ../../operation/visual_console/view.php:184
#: ../../operation/visual_console/legacy_view.php:151
msgid "List elements"
msgstr "Liste d'éléments"
-#: ../../godmode/reporting/visual_console_builder.php:824
-#: ../../operation/visual_console/view.php:192
+#: ../../godmode/reporting/visual_console_builder.php:832
+#: ../../operation/visual_console/view.php:194
#: ../../operation/visual_console/legacy_view.php:161
msgid "Services wizard"
msgstr "Assistant de services"
-#: ../../godmode/reporting/visual_console_builder.php:849
+#: ../../godmode/reporting/visual_console_builder.php:857
msgid "New visual console"
msgstr "Nouvelle console visuelle"
-#: ../../godmode/reporting/reporting_builder.list_items.php:701
+#: ../../godmode/reporting/reporting_builder.list_items.php:702
msgid "Sort selected items from position: "
msgstr "Classer les éléments sélectionnés à partir de la position : "
-#: ../../godmode/reporting/reporting_builder.list_items.php:704
+#: ../../godmode/reporting/reporting_builder.list_items.php:705
msgid "Move before to"
msgstr "Déplacer avant"
-#: ../../godmode/reporting/reporting_builder.list_items.php:705
+#: ../../godmode/reporting/reporting_builder.list_items.php:706
msgid "Move after to"
msgstr "Déplacer après"
-#: ../../godmode/reporting/reporting_builder.list_items.php:754
-#: ../../godmode/reporting/graph_builder.graph_editor.php:301
-#: ../../godmode/reporting/graph_builder.graph_editor.php:369
+#: ../../godmode/reporting/reporting_builder.list_items.php:755
+#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/graph_builder.graph_editor.php:284
msgid "Sort items"
msgstr "Classer les éléments"
-#: ../../godmode/reporting/reporting_builder.list_items.php:763
+#: ../../godmode/reporting/reporting_builder.list_items.php:764
msgid "Delete selected items from position: "
msgstr "Supprimer les éléments sélectionnés à partir de la position : "
-#: ../../godmode/reporting/reporting_builder.list_items.php:766
+#: ../../godmode/reporting/reporting_builder.list_items.php:767
msgid "Delete above to"
msgstr "Supprimer ce qui se trouve au-dessus de"
-#: ../../godmode/reporting/reporting_builder.list_items.php:767
+#: ../../godmode/reporting/reporting_builder.list_items.php:768
msgid "Delete below to"
msgstr "Supprimer ce qui se trouve au-dessous de"
-#: ../../godmode/reporting/reporting_builder.list_items.php:779
+#: ../../godmode/reporting/reporting_builder.list_items.php:780
msgid "Poisition"
msgstr "Position"
-#: ../../godmode/reporting/reporting_builder.list_items.php:845
+#: ../../godmode/reporting/reporting_builder.list_items.php:846
msgid ""
"Are you sure to sort the items into the report?\\n. This action change the "
"sorting of items into data base."
@@ -40456,16 +40728,16 @@ msgstr ""
"Êtes-vous sûr de trier les éléments dans le rapport ?\\n. Cette action modifie "
"le tri des éléments dans la base de données."
-#: ../../godmode/reporting/reporting_builder.list_items.php:867
-#: ../../godmode/reporting/graph_builder.graph_editor.php:463
+#: ../../godmode/reporting/reporting_builder.list_items.php:868
+#: ../../godmode/reporting/graph_builder.graph_editor.php:478
msgid "Please select any item to order"
msgstr "Veuillez sélectionner un élément à organiser"
-#: ../../godmode/reporting/reporting_builder.list_items.php:897
+#: ../../godmode/reporting/reporting_builder.list_items.php:898
msgid "Are you sure to delete the items into the report?\\n"
msgstr "Êtes-vous sûr(e) de vouloir supprimer les éléments dans le rapport ?\\n"
-#: ../../godmode/reporting/reporting_builder.list_items.php:925
+#: ../../godmode/reporting/reporting_builder.list_items.php:926
msgid "Please select any item to delete"
msgstr "Veuillez sélectionner un élément à supprimer"
@@ -40517,7 +40789,7 @@ msgstr ""
#: ../../godmode/reporting/create_container.php:498
#: ../../godmode/reporting/create_container.php:686
#: ../../godmode/reporting/graph_builder.main.php:219
-#: ../../include/functions_visual_map_editor.php:554
+#: ../../include/functions_visual_map_editor.php:548
msgid "Type of graph"
msgstr "Type de graphique"
@@ -40525,8 +40797,8 @@ msgstr "Type de graphique"
#: ../../godmode/reporting/create_container.php:576
#: ../../godmode/reporting/create_container.php:691
#: ../../godmode/reporting/graph_builder.main.php:290
-#: ../../operation/agentes/stat_win.php:395
-#: ../../operation/agentes/interface_traffic_graph_win.php:240
+#: ../../operation/agentes/stat_win.php:403
+#: ../../operation/agentes/interface_traffic_graph_win.php:256
msgid "Show full scale graph (TIP)"
msgstr "Afficher graphique à pleine échelle (TIP)"
@@ -40542,7 +40814,7 @@ msgstr "Graphique de module simple"
#: ../../godmode/reporting/create_container.php:715
msgid "Dynamic rules for simple module graph"
-msgstr "Règles dynamiques pour un graphique de module simple"
+msgstr "Règles dynamiques pour le graphique du module simple"
#: ../../godmode/reporting/create_container.php:731
msgid "There are no items in this container."
@@ -40584,7 +40856,7 @@ msgid "Graph editor"
msgstr "Éditeur de graphique"
#: ../../godmode/reporting/graph_builder.php:326
-#: ../../include/functions_events.php:4542
+#: ../../include/functions_events.php:4547
#: ../../operation/reporting/graph_viewer.php:223
msgid "View graph"
msgstr "Afficher graphique"
@@ -40671,23 +40943,23 @@ msgstr ""
"Le nombre maximal d'éléments dans un graphique est %d. Vous avez %d éléments, "
"seul le premier %d sera affiché."
-#: ../../godmode/reporting/graph_builder.graph_editor.php:315
+#: ../../godmode/reporting/graph_builder.graph_editor.php:228
msgid "Sort selected items"
msgstr "Classer les éléments sélectionnés"
-#: ../../godmode/reporting/graph_builder.graph_editor.php:318
+#: ../../godmode/reporting/graph_builder.graph_editor.php:231
msgid "before to"
msgstr "avant"
-#: ../../godmode/reporting/graph_builder.graph_editor.php:319
+#: ../../godmode/reporting/graph_builder.graph_editor.php:232
msgid "after to"
msgstr "après"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1067
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1069
msgid "Not valid"
msgstr "Non valide"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1075
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1077
msgid ""
"This type of report brings a lot of data loading, it is recommended to use it "
"for scheduled reports and not for real-time view."
@@ -40722,55 +40994,55 @@ msgstr ""
msgid "Show modules"
msgstr "Afficher les modules"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2221
-#: ../../include/functions_ui.php:2494
-#: ../../operation/inventory/inventory.php:687
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2230
+#: ../../include/functions_ui.php:2537
+#: ../../operation/inventory/inventory.php:688
msgid "Last"
msgstr "Dernier"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2300
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2309
msgid "Target server"
msgstr "Serveur cible"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2618
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2627
msgid "Macros definition"
msgstr "Définition des macros"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2629
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2638
msgid "Render definition"
msgstr "Définition du rendu"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2630
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2639
msgid "Please note that not all CSS styles are supported by PDF reports."
msgstr ""
"Veuillez noter que tous les styles CSS ne sont pas pris en charge par les "
"rapports PDF."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2728
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2737
msgid "Greater or equal (>=)"
msgstr "Supérieur ou égal (>=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2729
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2738
msgid "Less or equal (<=)"
msgstr "Inférieur ou égal (<=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2730
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2739
msgid "Less (<)"
msgstr "Inférieur (<)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2731
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2740
msgid "Greater (>)"
msgstr "Supérieur (>)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2741
msgid "Equal (=)"
msgstr "Égal (=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2733
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2742
msgid "Not equal (!=)"
msgstr "Pas égal (!=)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2858
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2867
msgid ""
"Show a summary chart with max, min and average number of total modules at the "
"end of the report and Checks."
@@ -40778,39 +41050,39 @@ msgstr ""
"Afficher un graphique récapitulatif avec le nombre maximum, minimum, moyen de "
"modules au total à la fin du rapport et des vérifications."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2913
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2922
msgid "Checks in Warning status"
msgstr "Vérifie dans l'état d'avertissement"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2983
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2992
msgid "Only data"
msgstr "Données uniquement"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3081
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3090
msgid "Include extended events"
msgstr "Inclure les événements prolongés"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3098
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3107
msgid "Show custom data"
msgstr "Afficher les données personnalisées"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3117
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3126
msgid "By agent "
msgstr "Par agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3127
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3136
msgid "By user validator "
msgstr "Par validateur d’utilisateur"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3137
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3146
msgid "By criticity "
msgstr "Par criticité"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3156
msgid "Validated vs unvalidated "
msgstr "Validé vs non validé"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3162
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3171
msgid ""
"With the token enabled the query will affect the Historical Database, which "
"may mean a small drop in performance."
@@ -40818,20 +41090,20 @@ msgstr ""
"Avec le jeton activé, la requête affectera la base de données historique, ce "
"qui peut signifier une petite baisse des performances."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3347
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3356
msgid "Include filter"
msgstr "Inclure Filtre"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3351
#: ../../godmode/reporting/reporting_builder.item_editor.php:3360
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3369
msgid "Free text string search on event description"
msgstr "Recherche de chaîne de texte libre sur la description de l'événement"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3356
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3365
msgid "Exclude filter"
msgstr "Exclure le filtre"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3464
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3473
msgid ""
"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise "
"full value will be displayed (example: 20.742 bytes/sec)"
@@ -40840,88 +41112,88 @@ msgstr ""
"20,8Koctets/s), sinon la valeur complète sera affichée (exemple : 20,742 "
"octets/s)"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3502
-#: ../../include/functions_reporting.php:5163
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3511
+#: ../../include/functions_reporting.php:5172
msgid "Unassigned group"
msgstr "Groupe non affecté"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3548
-#: ../../include/functions_reporting.php:5157
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3557
+#: ../../include/functions_reporting.php:5166
msgid "Unnasigned group"
msgstr "Groupe non affecté"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3571
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3580
msgid "Select by group"
msgstr "Sélectionner par groupe"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3659
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3668
msgid "Display options"
msgstr "Afficher les options"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3717
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3726
msgid "Agent group filter"
msgstr "Filtre de groupe d'agents"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3752
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3761
msgid "Agent OS filter"
msgstr "Filtre du système d'exploitation de l'agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3778
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3787
msgid "Agent custom field"
msgstr "Champ personnalisé de l'agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3800
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3809
msgid "Agent custom field filter"
msgstr "Filtre de champ personnalisé de l'agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3824
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3833
msgid "Agent status filter"
msgstr "Filtre d'état de l'agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3862
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3871
msgid "Agent version filter"
msgstr "Filtre de version d'agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3886
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3895
msgid "Agent has remote configuration"
msgstr "L'agent a une configuration à distance"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3887
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3896
msgid "Filter agents by remote configuration enabled."
msgstr "Filtrer les agents par configuration à distance activée."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3898
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3907
msgid "Agent module filter"
msgstr "Filtre de module d'agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3922
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3931
msgid "Module group filter"
msgstr "Filtre de groupe de modules"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3952
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3961
msgid "Search module name"
msgstr "Rechercher nom de module"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4105
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4114
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
msgid "Agent Failover"
msgstr "Basculement d'agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4110
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4623
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4119
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4632
msgid "Module Failover"
msgstr "Basculement de module"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4150
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4159
msgid "Please save the item before adding entries to this list."
msgstr ""
"Veuillez enregistrer l’élément avant d’ajouter des entrées à cette liste."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4596
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4605
msgid "rate"
msgstr "taux"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4644
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4653
msgid ""
"Please be careful, when the module have diferent intervals in their life, the "
"summatory maybe get bad result."
@@ -40929,46 +41201,46 @@ msgstr ""
"Veuillez faire attention lorsque le module présente des intervalles "
"différents ; la sommation pourrait obtenir des résultats erronés."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4664
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4673
msgid "Please save the report to start adding items into the list."
msgstr "Veuillez sauvegarder le rapport pour ajouter des éléments à la liste."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4930
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4934
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4938
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4942
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4946
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4950
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4954
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4958
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4939
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4943
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4947
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4951
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4955
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4959
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4963
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4967
msgid "Item Editor Information"
msgstr "Informations sur l'éditeur d’éléments"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4931
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4940
msgid "Please select a name."
msgstr "Veuillez sélectionner un nom."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4935
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4944
msgid "Please select an agent."
msgstr "Veuillez sélectionner un agent"
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4943
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4952
msgid "Please insert a SQL query."
msgstr "Veuillez insérer une requête SQL."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4947
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4956
msgid "Please insert a URL."
msgstr "Veuillez insérer une URL."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4951
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4960
msgid "Please checked a custom interval option."
msgstr "Veuillez cocher une option d'intervalle personnalisé."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4955
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4964
msgid "Please select a user."
msgstr "Veuillez sélectionner un utilisateur."
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4959
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4968
msgid "Please select a group."
msgstr "Sélectionnez un groupe."
@@ -40989,26 +41261,26 @@ msgid "Percentile Bubble"
msgstr "Bulle de centile"
#: ../../godmode/reporting/visual_console_builder.elements.php:244
-#: ../../mobile/operation/events.php:837
-#: ../../include/functions_visual_map_editor.php:1387
+#: ../../mobile/operation/events.php:866
+#: ../../include/functions_visual_map_editor.php:1445
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545
-#: ../../operation/visual_console/view.php:326
+#: ../../operation/visual_console/view.php:328
msgid "Module Graph"
msgstr "Graphique de module"
#: ../../godmode/reporting/visual_console_builder.elements.php:255
#: ../../include/functions_visual_map_editor.php:59
-#: ../../include/functions_visual_map_editor.php:1390
-#: ../../include/functions_visual_map.php:4180
-#: ../../operation/visual_console/view.php:346
+#: ../../include/functions_visual_map_editor.php:1448
+#: ../../include/functions_visual_map.php:4189
+#: ../../operation/visual_console/view.php:348
msgid "Event history graph"
msgstr "Graphique de l'historique des événements"
#: ../../godmode/reporting/visual_console_builder.elements.php:266
-#: ../../include/functions_visual_map_editor.php:1391
-#: ../../include/functions_visual_map.php:4205
-#: ../../include/rest-api/models/VisualConsole/Item.php:2132
-#: ../../operation/visual_console/view.php:351
+#: ../../include/functions_visual_map_editor.php:1449
+#: ../../include/functions_visual_map.php:4214
+#: ../../include/rest-api/models/VisualConsole/Item.php:2135
+#: ../../operation/visual_console/view.php:353
msgid "Simple Value"
msgstr "Valeur simple"
@@ -41026,52 +41298,54 @@ msgstr "Valeur simple (processus moyen)"
#: ../../godmode/reporting/visual_console_builder.elements.php:332
#: ../../include/functions_visual_map_editor.php:71
-#: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/functions_visual_map.php:4160
-#: ../../operation/visual_console/view.php:376
+#: ../../include/functions_visual_map_editor.php:1454
+#: ../../include/functions_visual_map.php:4169
+#: ../../operation/visual_console/view.php:378
msgid "Box"
msgstr "Boîte"
#: ../../godmode/reporting/visual_console_builder.elements.php:354
-#: ../../include/functions_visual_map_editor.php:1403
-#: ../../operation/visual_console/view.php:391
+#: ../../include/functions_visual_map_editor.php:1461
+#: ../../operation/visual_console/view.php:393
msgid "Network link"
msgstr "Lien réseau"
#: ../../godmode/reporting/visual_console_builder.elements.php:376
#: ../../include/functions_visual_map_editor.php:73
-#: ../../include/functions_visual_map_editor.php:1398
-#: ../../include/functions_visual_map.php:4220
-#: ../../include/rest-api/models/VisualConsole/Item.php:2144
-#: ../../operation/visual_console/view.php:386
+#: ../../include/functions_visual_map_editor.php:1456
+#: ../../include/functions_visual_map.php:4229
+#: ../../include/rest-api/models/VisualConsole/Item.php:2147
+#: ../../operation/visual_console/view.php:388
msgid "Color cloud"
msgstr "Nuage de couleur"
#: ../../godmode/reporting/visual_console_builder.elements.php:387
-#: ../../include/rest-api/models/VisualConsole/Item.php:2156
-#: ../../operation/visual_console/view.php:331
+#: ../../include/rest-api/models/VisualConsole/Item.php:2159
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653
+#: ../../operation/visual_console/view.php:333
msgid "Basic chart"
msgstr "Graphique de base"
#: ../../godmode/reporting/visual_console_builder.elements.php:398
-#: ../../include/rest-api/models/VisualConsole/Item.php:2152
-#: ../../operation/visual_console/view.php:396
+#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../operation/visual_console/view.php:398
msgid "Odometer"
msgstr "Odomètre"
#: ../../godmode/reporting/visual_console_builder.elements.php:409
#: ../../include/functions_visual_map_editor.php:69
-#: ../../include/functions_visual_map_editor.php:1394
-#: ../../include/functions_visual_map.php:4170
-#: ../../include/rest-api/models/VisualConsole/Item.php:2104
+#: ../../include/functions_visual_map_editor.php:1452
+#: ../../include/functions_visual_map.php:4179
+#: ../../include/rest-api/models/VisualConsole/Item.php:2107
#: ../../include/lib/Dashboard/Widgets/clock.php:158
#: ../../include/lib/Dashboard/Widgets/clock.php:310
-#: ../../operation/visual_console/view.php:366
+#: ../../operation/visual_console/view.php:368
msgid "Clock"
msgstr "Horloge"
#: ../../godmode/reporting/visual_console_builder.elements.php:438
-#: ../../godmode/reporting/visual_console_builder.elements.php:910
+#: ../../godmode/reporting/visual_console_builder.elements.php:895
msgid "Edit label"
msgstr "Modifier les étiquettes"
@@ -41114,14 +41388,14 @@ msgid "An error has ocurred"
msgstr "Une erreur est survenue"
#: ../../godmode/reporting/reporting_builder.php:515
-#: ../../godmode/reporting/reporting_builder.php:3560
-#: ../../godmode/reporting/reporting_builder.php:3627
-#: ../../godmode/reporting/reporting_builder.php:3675
+#: ../../godmode/reporting/reporting_builder.php:3577
+#: ../../godmode/reporting/reporting_builder.php:3644
+#: ../../godmode/reporting/reporting_builder.php:3692
msgid "Reports list"
msgstr "Liste de rapports"
#: ../../godmode/reporting/reporting_builder.php:531
-#: ../../godmode/reporting/reporting_builder.php:3571
+#: ../../godmode/reporting/reporting_builder.php:3588
#: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23
msgid "Custom reporting"
msgstr "Rapports personnalisés"
@@ -41144,16 +41418,16 @@ msgstr ""
msgid "Create report"
msgstr "Créer un rapport"
-#: ../../godmode/reporting/reporting_builder.php:3659
+#: ../../godmode/reporting/reporting_builder.php:3676
#: ../../operation/reporting/reporting_viewer.php:172
msgid "View report"
msgstr "Afficher le rapport"
-#: ../../godmode/reporting/reporting_builder.php:3678
+#: ../../godmode/reporting/reporting_builder.php:3695
msgid "Create Custom Report"
msgstr "Créez un rapport personnalisé."
-#: ../../godmode/reporting/reporting_builder.php:3750
+#: ../../godmode/reporting/reporting_builder.php:3767
msgid "Unsuccessful action
"
msgstr "Action échouée
"
@@ -41164,16 +41438,16 @@ msgstr "Graphique statique"
#: ../../godmode/reporting/visual_console_builder.wizard.php:124
#: ../../include/functions_visual_map_editor.php:57
-#: ../../include/functions_visual_map_editor.php:1386
-#: ../../operation/visual_console/view.php:321
+#: ../../include/functions_visual_map_editor.php:1444
+#: ../../operation/visual_console/view.php:323
msgid "Percentile Item"
msgstr "Élément centile"
#: ../../godmode/reporting/visual_console_builder.wizard.php:125
-#: ../../mobile/operation/home.php:102
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map.php:4165
-#: ../../include/rest-api/models/VisualConsole/Item.php:2100
+#: ../../mobile/operation/home.php:118
+#: ../../include/functions_visual_map_editor.php:391
+#: ../../include/functions_visual_map.php:4174
+#: ../../include/rest-api/models/VisualConsole/Item.php:2103
msgid "Module graph"
msgstr "Graphique de module"
@@ -41191,30 +41465,30 @@ msgid "Size (px)"
msgstr "Taille (px)"
#: ../../godmode/reporting/visual_console_builder.wizard.php:232
-#: ../../include/functions_config.php:1066
+#: ../../include/functions_config.php:1078
msgid "Font size"
msgstr "Taille de la police"
#: ../../godmode/reporting/visual_console_builder.wizard.php:260
-#: ../../include/functions_visual_map_editor.php:612
+#: ../../include/functions_visual_map_editor.php:606
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371
msgid "Process"
msgstr "Processus"
#: ../../godmode/reporting/visual_console_builder.wizard.php:263
-#: ../../include/functions_visual_map_editor.php:615
+#: ../../include/functions_visual_map_editor.php:609
msgid "Min value"
msgstr "Valeur minimale"
#: ../../godmode/reporting/visual_console_builder.wizard.php:264
#: ../../godmode/reporting/visual_console_builder.wizard.php:284
-#: ../../include/functions_visual_map_editor.php:616
-#: ../../include/functions_visual_map_editor.php:680
+#: ../../include/functions_visual_map_editor.php:610
+#: ../../include/functions_visual_map_editor.php:730
msgid "Max value"
msgstr "Valeur maximale"
#: ../../godmode/reporting/visual_console_builder.wizard.php:265
-#: ../../include/functions_visual_map_editor.php:617
+#: ../../include/functions_visual_map_editor.php:611
msgid "Avg value"
msgstr "Valeur moyenne"
@@ -41223,20 +41497,20 @@ msgid "Width (px)"
msgstr "Largeur (px)"
#: ../../godmode/reporting/visual_console_builder.wizard.php:300
-#: ../../include/functions_visual_map_editor.php:685
+#: ../../include/functions_visual_map_editor.php:735
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459
msgid "Bubble"
msgstr "Bulle"
#: ../../godmode/reporting/visual_console_builder.wizard.php:319
-#: ../../include/functions_visual_map_editor.php:690
+#: ../../include/functions_visual_map_editor.php:740
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504
msgid "Percent"
msgstr "Pourcentage"
#: ../../godmode/reporting/visual_console_builder.wizard.php:345
-#: ../../include/functions_visual_map_editor.php:709
-#: ../../include/functions_visual_map_editor.php:727
+#: ../../include/functions_visual_map_editor.php:759
+#: ../../include/functions_visual_map_editor.php:777
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509
msgid "Value to show"
msgstr "Valeur à afficher"
@@ -41293,7 +41567,7 @@ msgstr "La taille minimale autorisée est 1024x768"
#: ../../godmode/reporting/visual_console_builder.editor.php:177
#: ../../godmode/reporting/visual_console_builder.editor.php:179
#: ../../godmode/reporting/visual_console_builder.editor.php:181
-#: ../../operation/snmpconsole/snmp_browser.php:225
+#: ../../operation/snmpconsole/snmp_browser.php:230
msgid "Action in progress"
msgstr "Action en cours"
@@ -41445,88 +41719,88 @@ msgstr ""
"Si elle est activée, la commande sera affichée à tout utilisateur pouvant "
"exécuter cette réponse d’événement"
-#: ../../godmode/events/event_edit_filter.php:304
+#: ../../godmode/events/event_edit_filter.php:306
msgid "Save in group"
msgstr "Enregistrer dans le groupe"
-#: ../../godmode/events/event_edit_filter.php:304
+#: ../../godmode/events/event_edit_filter.php:306
msgid ""
"This group will be use to restrict the visibility of this filter with ACLs"
msgstr ""
"Ce groupe sera utilisé pour limiter la visibilité de ce filtre avec les ACL."
-#: ../../godmode/events/event_edit_filter.php:502
+#: ../../godmode/events/event_edit_filter.php:504
msgid "Choose between the users who have validated an event. "
msgstr "Choisissez parmi les utilisateurs ayant validé un événement. "
-#: ../../godmode/events/event_edit_filter.php:520
+#: ../../godmode/events/event_edit_filter.php:522
msgid "Owner."
msgstr "Propriétaire."
-#: ../../godmode/events/event_edit_filter.php:535
-#: ../../operation/events/events.php:1783
+#: ../../godmode/events/event_edit_filter.php:537
+#: ../../operation/events/events.php:1837
msgid "All events"
msgstr "Tous les événements"
-#: ../../godmode/events/event_edit_filter.php:536
-#: ../../operation/events/events.php:1784 ../../operation/events/events.php:2435
+#: ../../godmode/events/event_edit_filter.php:538
+#: ../../operation/events/events.php:1838 ../../operation/events/events.php:2489
msgid "Group events"
msgstr "Événements du groupe"
-#: ../../godmode/events/event_edit_filter.php:537
-#: ../../include/ajax/heatmap.ajax.php:80
+#: ../../godmode/events/event_edit_filter.php:539
+#: ../../include/ajax/heatmap.ajax.php:99
#: ../../include/lib/Dashboard/Widgets/heatmap.php:252
-#: ../../operation/events/events.php:1785
+#: ../../operation/events/events.php:1839
msgid "Group agents"
msgstr "Groupes d'agents"
-#: ../../godmode/events/event_edit_filter.php:538
-#: ../../operation/events/events.php:1786
+#: ../../godmode/events/event_edit_filter.php:540
+#: ../../operation/events/events.php:1840
msgid "Group extra id"
msgstr "ID supplémentaire de groupe"
-#: ../../godmode/events/event_edit_filter.php:763
-#: ../../operation/events/events.php:2033
+#: ../../godmode/events/event_edit_filter.php:765
+#: ../../operation/events/events.php:2087
msgid "Filter alert events"
msgstr "Filtrer les événements d'alerte"
-#: ../../godmode/events/event_edit_filter.php:764
-#: ../../operation/events/events.php:2034
+#: ../../godmode/events/event_edit_filter.php:766
+#: ../../operation/events/events.php:2088
msgid "Only alert events"
msgstr "Seulement les événements d'alerte"
-#: ../../godmode/events/event_edit_filter.php:813
-#: ../../operation/events/events.php:1893
+#: ../../godmode/events/event_edit_filter.php:815
+#: ../../operation/events/events.php:1947
msgid "Extra ID"
msgstr "Identifiant supplémentaire"
-#: ../../godmode/events/event_edit_filter.php:845
+#: ../../godmode/events/event_edit_filter.php:847
msgid "Custom data filter type"
msgstr "Type de filtre de données personnalisé"
-#: ../../godmode/events/event_edit_filter.php:848
+#: ../../godmode/events/event_edit_filter.php:850
msgid "Filter custom data by name field"
msgstr "Filtrer les données personnalisées par champ de nom"
-#: ../../godmode/events/event_edit_filter.php:849
+#: ../../godmode/events/event_edit_filter.php:851
msgid "Filter custom data by value field"
msgstr "Filtrer les données personnalisées par champ de valeur"
-#: ../../godmode/events/event_edit_filter.php:864
+#: ../../godmode/events/event_edit_filter.php:866
#: ../../godmode/events/custom_events.php:117
#: ../../include/functions_reporting_html.php:1074
#: ../../include/functions_reporting_html.php:1322
-#: ../../include/functions_reporting_html.php:2648
-#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221
+#: ../../include/functions_reporting_html.php:2667
+#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221
#: ../../include/functions_events.php:323
msgid "Custom data"
msgstr "Données personnalisées"
-#: ../../godmode/events/event_edit_filter.php:881
+#: ../../godmode/events/event_edit_filter.php:883
msgid "Id souce event"
msgstr "Id source d'événement"
-#: ../../godmode/events/event_edit_filter.php:911
+#: ../../godmode/events/event_edit_filter.php:913
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358
#: ../../operation/events/events.php:265
@@ -41598,7 +41872,7 @@ msgid "Severity mini"
msgstr "Sévérité mini"
#: ../../godmode/events/custom_events.php:116
-#: ../../include/functions_events.php:307 ../../include/functions_events.php:5103
+#: ../../include/functions_events.php:307 ../../include/functions_events.php:5108
msgid "Module custom ID"
msgstr "ID personnalisé du module"
@@ -41689,24 +41963,19 @@ msgstr "Erreur interne, veuillez réexécuter cet assistant."
msgid "Manual interval means that it will be executed only On-demand"
msgstr "Avec l'intervalle manuel il sera exécuté uniquement sur demande"
-#: ../../godmode/wizards/HostDevices.class.php:814
-#: ../../include/class/CustomNetScan.class.php:551
-msgid "The minimum recomended interval for Recon Task is 5 minutes"
-msgstr "L'intervalle minimal conseillé pour les tâches Recon est de 5 minutes."
-
-#: ../../godmode/wizards/HostDevices.class.php:869
+#: ../../godmode/wizards/HostDevices.class.php:865
msgid "Use CSV file definition"
msgstr "Utiliser la définition de fichier CSV"
-#: ../../godmode/wizards/HostDevices.class.php:870
+#: ../../godmode/wizards/HostDevices.class.php:866
msgid "Define targets using csv o network definition."
msgstr "Définissez des cibles à l'aide de la définition de réseau csv ou."
-#: ../../godmode/wizards/HostDevices.class.php:888
+#: ../../godmode/wizards/HostDevices.class.php:884
msgid "Networks (csv)"
msgstr "Réseaux (csv)"
-#: ../../godmode/wizards/HostDevices.class.php:889
+#: ../../godmode/wizards/HostDevices.class.php:885
msgid ""
"You can upload a CSV file. Each line must contain a network in IP/MASK format. "
"For instance: 192.168.1.1/32"
@@ -41714,15 +41983,15 @@ msgstr ""
"Vous pouvez télécharger un fichier CSV. Chaque ligne doit contenir un réseau "
"au format IP/MASK. Par exemple : 192.168.1.1/32"
-#: ../../godmode/wizards/HostDevices.class.php:901
+#: ../../godmode/wizards/HostDevices.class.php:897
msgid "Networks (current)"
msgstr "Réseaux (actuels)"
-#: ../../godmode/wizards/HostDevices.class.php:902
+#: ../../godmode/wizards/HostDevices.class.php:898
msgid "Please upload a new file to overwrite this content."
msgstr "Veuillez télécharger un nouveau fichier pour écraser ce contenu."
-#: ../../godmode/wizards/HostDevices.class.php:918
+#: ../../godmode/wizards/HostDevices.class.php:914
msgid ""
"You can specify networks or fully qualified domain names of a specific host, "
"separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname."
@@ -41732,11 +42001,11 @@ msgstr ""
"spécifique, séparés par des virgules, par exemple : "
"192.168.50.0/24,192.168.60.0/24, hostname.artica.es"
-#: ../../godmode/wizards/HostDevices.class.php:1068
+#: ../../godmode/wizards/HostDevices.class.php:1064
msgid "Filter by opened ports"
msgstr "Filtrer par ports ouverts"
-#: ../../godmode/wizards/HostDevices.class.php:1070
+#: ../../godmode/wizards/HostDevices.class.php:1066
msgid ""
"Targets will be scanned if at least one of defined ports (comma separated) is "
"open."
@@ -41744,11 +42013,11 @@ msgstr ""
"Les cibles seront analysées si au moins un des ports définis (séparés par des "
"virgules) est ouvert."
-#: ../../godmode/wizards/HostDevices.class.php:1083
+#: ../../godmode/wizards/HostDevices.class.php:1079
msgid "Auto discover known hardware"
msgstr "Découverte automatique du matériel connu"
-#: ../../godmode/wizards/HostDevices.class.php:1085
+#: ../../godmode/wizards/HostDevices.class.php:1081
msgid ""
"Targets will be monitorized based on its Private Enterprise Number. "
"Requires SNMP."
@@ -41756,12 +42025,12 @@ msgstr ""
"Les cibles seront surveillées en fonction de son numéro d'entreprise "
"privée . Nécessite SNMP."
-#: ../../godmode/wizards/HostDevices.class.php:1100
+#: ../../godmode/wizards/HostDevices.class.php:1096
msgid "Module Host Alive will be added to discovered agents by default."
msgstr ""
"Le module Host Alive sera ajouté par défaut aux agents découverts."
-#: ../../godmode/wizards/HostDevices.class.php:1148
+#: ../../godmode/wizards/HostDevices.class.php:1144
#, php-format
msgid ""
"Configured networks could generate %d agents, your license only allows %d, "
@@ -41770,21 +42039,21 @@ msgstr ""
"Les réseaux configurés peuvent générer %d agents, votre licence n'autorise que "
"%d, « revoir les résultats » est obligatoire."
-#: ../../godmode/wizards/HostDevices.class.php:1156
+#: ../../godmode/wizards/HostDevices.class.php:1152
#: ../../godmode/wizards/DiscoveryTaskList.class.php:917
msgid "Review results"
msgstr "Réviser les résultats"
-#: ../../godmode/wizards/HostDevices.class.php:1158
+#: ../../godmode/wizards/HostDevices.class.php:1154
msgid "Targets must be validated by user before create agents."
msgstr ""
"Les cibles doivent être validées par l'utilisateur avant de créer des agents."
-#: ../../godmode/wizards/HostDevices.class.php:1184
+#: ../../godmode/wizards/HostDevices.class.php:1180
msgid "Apply autoconfiguration rules"
msgstr "Appliquer les règles de configuration automatique"
-#: ../../godmode/wizards/HostDevices.class.php:1186
+#: ../../godmode/wizards/HostDevices.class.php:1182
msgid ""
"System is able to auto configure detected host & devices by applying your "
"defined configuration rules."
@@ -41792,19 +42061,19 @@ msgstr ""
"Le système est capable de configurer automatiquement l'hôte et les "
"périphériques détectés en appliquant vos règles de configuration définies."
-#: ../../godmode/wizards/HostDevices.class.php:1202
+#: ../../godmode/wizards/HostDevices.class.php:1198
msgid "SNMP enabled"
msgstr "SNMP activé"
-#: ../../godmode/wizards/HostDevices.class.php:1243
+#: ../../godmode/wizards/HostDevices.class.php:1239
msgid "Skip non-enabled interfaces"
msgstr "Ignorer les interfaces non activées"
-#: ../../godmode/wizards/HostDevices.class.php:1262
+#: ../../godmode/wizards/HostDevices.class.php:1258
msgid "SNMP communities to try with"
msgstr "Communautés SNMP à essayer avec"
-#: ../../godmode/wizards/HostDevices.class.php:1264
+#: ../../godmode/wizards/HostDevices.class.php:1260
msgid ""
"You can specify several values, separated by commas, for example: public,"
"mysecret,1234"
@@ -41812,30 +42081,35 @@ msgstr ""
"Vous pouvez définir plusieurs valeurs séparées par des virgules. Par exemple : "
"public,mysecret,1234"
-#: ../../godmode/wizards/HostDevices.class.php:1391
+#: ../../godmode/wizards/HostDevices.class.php:1387
msgid "OS detection"
msgstr "Détection du système d'exploitation"
-#: ../../godmode/wizards/HostDevices.class.php:1403
+#: ../../godmode/wizards/HostDevices.class.php:1399
msgid "Name resolution"
msgstr "Résolution du nom"
-#: ../../godmode/wizards/HostDevices.class.php:1414
+#: ../../godmode/wizards/HostDevices.class.php:1410
msgid "Parent detection"
msgstr "Détection de parents"
-#: ../../godmode/wizards/HostDevices.class.php:1425
+#: ../../godmode/wizards/HostDevices.class.php:1421
msgid "Parent recursion"
msgstr "Récursion de parents"
-#: ../../godmode/wizards/HostDevices.class.php:1436
+#: ../../godmode/wizards/HostDevices.class.php:1432
msgid "VLAN enabled"
msgstr "VLAN activé"
-#: ../../godmode/wizards/HostDevices.class.php:1447
+#: ../../godmode/wizards/HostDevices.class.php:1443
msgid "WMI enabled"
msgstr "WMI activé"
+#: ../../godmode/wizards/HostDevices.class.php:1590
+#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387
+msgid "Please select..."
+msgstr "Veuillez sélectionner..."
+
#: ../../godmode/wizards/DiscoveryTaskList.class.php:259
msgid "Task successfully deleted"
msgstr "Tâche supprimée correctement"
@@ -42147,6 +42421,7 @@ msgstr ""
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1865
#: ../../include/help/clippy/operation_agentes_ver_agente.php:40
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119
+#: ../../include/class/AgentDeployWizard.class.php:558
msgid "Done"
msgstr "Terminé"
@@ -42159,47 +42434,42 @@ msgstr "Non démarré"
msgid "Searching"
msgstr "Recherche"
-#: ../../godmode/servers/servers.build_table.php:122
+#: ../../godmode/servers/servers.build_table.php:124
+#: ../../mobile/operation/server_status.php:269
+#: ../../mobile/operation/server_status.php:307
+#: ../../mobile/operation/server_status.php:337
msgid "Server has crashed."
msgstr "Le serveur a échoué."
-#: ../../godmode/servers/servers.build_table.php:130
+#: ../../godmode/servers/servers.build_table.php:132
+#: ../../mobile/operation/server_status.php:275
+#: ../../mobile/operation/server_status.php:313
+#: ../../mobile/operation/server_status.php:343
msgid "Server is stopped."
msgstr "Le serveur est arrêté."
-#: ../../godmode/servers/servers.build_table.php:142
+#: ../../godmode/servers/servers.build_table.php:144
msgid "Exec server enabled"
msgstr "Serveur d'exécution activé"
-#: ../../godmode/servers/servers.build_table.php:200
+#: ../../godmode/servers/servers.build_table.php:213
msgid "Manage Discovery tasks"
msgstr "Gérer les tâches de découverte"
-#: ../../godmode/servers/servers.build_table.php:214
+#: ../../godmode/servers/servers.build_table.php:227
msgid "Reset module status and fired alert counts"
msgstr "Réinitialiser l'état du module et le nombre d'alertes déclenchées"
-#: ../../godmode/servers/servers.build_table.php:225
+#: ../../godmode/servers/servers.build_table.php:238
msgid "Claim back SNMP modules"
msgstr "Réclamer les modules SNMP"
-#: ../../godmode/servers/servers.build_table.php:249
-msgid "Manage satellite hosts"
-msgstr "Gérer les hôtes satellites"
-
#: ../../godmode/servers/modificar_server.php:50
msgid "Update Server"
msgstr "Mettre à jour le serveur"
-#: ../../godmode/servers/modificar_server.php:63
-#: ../../godmode/servers/modificar_server.php:222
-#: ../../godmode/servers/modificar_server.php:262
-#, php-format
-msgid "%s servers"
-msgstr "Serveurs %s"
-
#: ../../godmode/servers/modificar_server.php:73
-#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080
+#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072
#: ../../include/ajax/consoles.ajax.php:61
msgid "Standard"
msgstr "Standard"
@@ -42228,34 +42498,35 @@ msgstr "Editeur standard"
msgid "Advanced editor"
msgstr "Éditeur avancé"
-#: ../../godmode/servers/modificar_server.php:209
+#: ../../godmode/servers/modificar_server.php:210
+#: ../../godmode/servers/modificar_server.php:229
msgid "Remote Configuration"
msgstr "Configuration à distance"
-#: ../../godmode/servers/modificar_server.php:235
+#: ../../godmode/servers/modificar_server.php:257
msgid "Dynamic search"
msgstr "Recherche dynamique"
-#: ../../godmode/servers/modificar_server.php:275
+#: ../../godmode/servers/modificar_server.php:297
#: ../../include/class/OrderInterpreter.class.php:247
msgid "Manage Servers"
msgstr "Gérer les serveurs"
-#: ../../godmode/servers/modificar_server.php:287
-#: ../../godmode/servers/modificar_server.php:298
+#: ../../godmode/servers/modificar_server.php:309
+#: ../../godmode/servers/modificar_server.php:320
msgid "Successfully action"
msgstr "Action réussie"
-#: ../../godmode/servers/modificar_server.php:329
+#: ../../godmode/servers/modificar_server.php:351
msgid "Server updated successfully"
msgstr "Serveur mis à jour correctement"
-#: ../../godmode/servers/modificar_server.php:331
+#: ../../godmode/servers/modificar_server.php:353
msgid "There was a problem updating the server"
msgstr "Problème de mise à jour du serveur"
#: ../../godmode/servers/plugin_registration.php:58
-#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751
+#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743
msgid "To manage plugin you must activate centralized management"
msgstr "Pour gérer le plugin d’inventaire, activez la gestion centralisée"
@@ -42276,55 +42547,66 @@ msgstr ""
"Cette console n'est pas gestionnaire de cet environnement, veuillez gérer "
"cette fonctionnalité à partir de la fonctionnalité de %s."
-#: ../../godmode/servers/plugin_registration.php:105
+#: ../../godmode/servers/plugin_registration.php:101
msgid "Plugin Registration"
msgstr "Enregistrement du plugin"
-#: ../../godmode/servers/plugin_registration.php:113
+#: ../../godmode/servers/plugin_registration.php:107
+msgid ""
+"This extension makes registering server plugins an easier task. Here you can "
+"upload a server plugin in .pspz zipped format. Please refer to the official "
+"documentation on how to obtain and use Server Plugins."
+msgstr ""
+"Cet extension fait l’enregistrement du plugins du serveur plus facile. Ici "
+"vous pouvez télécharger un plugin du serveur dans le format comprimé .pspz. "
+"Veuillez lire la documentation pour obtenir et utiliser les plugins du serveur "
+"de Pandora FMS."
+
+#: ../../godmode/servers/plugin_registration.php:109
msgid "You can get more plugins in our"
msgstr "Vous pouvez obtenir plus de plugins dans notre"
-#: ../../godmode/servers/plugin_registration.php:115
+#: ../../godmode/servers/plugin_registration.php:111
msgid "Public Resource Library"
msgstr "Bibliothèque publique de ressources"
-#: ../../godmode/servers/plugin_registration.php:143
+#: ../../godmode/servers/plugin_registration.php:139
msgid "Failed to create temporary directory"
msgstr "Impossible de créer un répertoire temporaire"
-#: ../../godmode/servers/plugin_registration.php:162
+#: ../../godmode/servers/plugin_registration.php:158
msgid "Cannot load INI file"
msgstr "Erreur de chargement du fichier INI"
-#: ../../godmode/servers/plugin_registration.php:187
+#: ../../godmode/servers/plugin_registration.php:183
msgid "Plugin exec not found. Aborting!"
msgstr "Plugin d'exécution introuvable. Annulation en cours !"
-#: ../../godmode/servers/plugin_registration.php:198
+#: ../../godmode/servers/plugin_registration.php:194
msgid "Plugin already registered. Aborting!"
msgstr "Plugin déjà enregistré. Annulation en cours !"
-#: ../../godmode/servers/plugin_registration.php:365
+#: ../../godmode/servers/plugin_registration.php:361
msgid "Plug-in Remote Registered unsuccessfull"
msgstr "Erreur d'enregistrement du plugin à distance"
-#: ../../godmode/servers/plugin_registration.php:368
+#: ../../godmode/servers/plugin_registration.php:364
msgid "Please check the syntax of file \"plugin_definition.ini\""
msgstr "Veuillez vérifier la syntaxe du fichier « plugin_definition.ini »"
-#: ../../godmode/servers/plugin_registration.php:508
+#: ../../godmode/servers/plugin_registration.php:504
msgid "Module plugin registered"
msgstr "Plugin du module enregistré"
-#: ../../godmode/servers/plugin_registration.php:513
+#: ../../godmode/servers/plugin_registration.php:509
msgid "Registered successfully"
msgstr "Enregistré correctement"
-#: ../../godmode/servers/plugin_registration.php:526
+#: ../../godmode/servers/plugin_registration.php:522
msgid "Unable to uncompress uploaded file"
msgstr "Impossible de décompresser le fichier"
-#: ../../godmode/servers/plugin_registration.php:544
+#: ../../godmode/servers/plugin_registration.php:540
#, php-format
msgid "Cannot move uploaded file to %s."
msgstr "Impossible de déplacer le fichier téléchargé vers %s"
@@ -42333,15 +42615,15 @@ msgstr "Impossible de déplacer le fichier téléchargé vers %s"
msgid "Network Components"
msgstr "Composants de réseau"
-#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775
+#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767
msgid "Attachments"
msgstr "Pièces jointes"
-#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785
+#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777
msgid "Index of attachment/plugin"
msgstr "Index de la pièce jointe/plug-in"
-#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788
+#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780
#, php-format
msgid "Plug-ins registered on %s"
msgstr "Plugins enregistrés sur %s"
@@ -42350,7 +42632,7 @@ msgstr "Plugins enregistrés sur %s"
msgid "Plugin update"
msgstr "Mise à jour du plugin"
-#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815
+#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807
msgid ""
"This console is not manager of this environment,\n"
" \t\tplease manage this feature from centralized manager console "
@@ -42360,7 +42642,7 @@ msgstr ""
" \t\tveuillez gérer cette fonctionnalité à partir de la console de "
"gestion centralisée (Metaconsole)."
-#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080
+#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072
msgid "Nagios"
msgstr "Nagios"
@@ -42405,74 +42687,78 @@ msgstr ""
msgid "Plug-in parameters"
msgstr "Paramètres des plugins"
-#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689
+#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681
msgid "Parameters macros"
msgstr "Macros des paramètres"
#: ../../godmode/servers/plugin.php:585
-#: ../../include/class/ManageNetScanScripts.class.php:675
+#: ../../include/class/ManageNetScanScripts.class.php:671
msgid "Hide value"
msgstr "Cacher la valeur"
#: ../../godmode/servers/plugin.php:596
-#: ../../include/class/ManageNetScanScripts.class.php:677
+#: ../../include/class/ManageNetScanScripts.class.php:673
msgid "This field will show up as dots like a password"
msgstr "Ce champ sera affiché sous forme de points, comme un mot de passe"
-#: ../../godmode/servers/plugin.php:824
+#: ../../godmode/servers/plugin.php:655
+msgid "Remove macro"
+msgstr "Supprimer la macro"
+
+#: ../../godmode/servers/plugin.php:816
msgid "You need to create your own plugins with Windows compatibility"
msgstr "Vous devez créer vos propres plugins compatibles avec Windows"
-#: ../../godmode/servers/plugin.php:890
+#: ../../godmode/servers/plugin.php:882
msgid "Problem updating plugin"
msgstr "Problème de mise à jour du plugin"
-#: ../../godmode/servers/plugin.php:892
+#: ../../godmode/servers/plugin.php:884
msgid "Plugin updated successfully"
msgstr "Plugin mis à jour correctement"
-#: ../../godmode/servers/plugin.php:950
+#: ../../godmode/servers/plugin.php:942
msgid "Problem creating plugin"
msgstr "Problème de création du plugin"
-#: ../../godmode/servers/plugin.php:952
+#: ../../godmode/servers/plugin.php:944
msgid "Plugin created successfully"
msgstr "Plugin créé correctement"
-#: ../../godmode/servers/plugin.php:964
+#: ../../godmode/servers/plugin.php:956
msgid "Problem deleting plugin"
msgstr "Problème de suppression du plugin"
-#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978
+#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970
msgid "Plugin deleted successfully"
msgstr "Plugin supprimé correctement"
-#: ../../godmode/servers/plugin.php:1034
+#: ../../godmode/servers/plugin.php:1026
msgid "Lock"
msgstr "Verrouillage"
-#: ../../godmode/servers/plugin.php:1062
+#: ../../godmode/servers/plugin.php:1054
msgid "All the modules that are using this plugin will be deleted"
msgstr "Tous les modules qui utilisent ce plugin seront supprimés"
-#: ../../godmode/servers/plugin.php:1096
+#: ../../godmode/servers/plugin.php:1088
msgid "There are no plugins in the system"
msgstr "Aucun plugin dans le système"
-#: ../../godmode/servers/plugin.php:1104
+#: ../../godmode/servers/plugin.php:1096
msgid "Add plugin"
msgstr "Ajouter un plugin"
-#: ../../godmode/servers/plugin.php:1117
+#: ../../godmode/servers/plugin.php:1109
#, php-format
msgid "List of modules and components created by \"%s\" "
msgstr "Liste de modules et composants créés par « %s » "
-#: ../../godmode/servers/plugin.php:1221
+#: ../../godmode/servers/plugin.php:1213
msgid "Some modules or components are using the plugin"
msgstr "Certains modules ou composants utilisent le plugin."
-#: ../../godmode/servers/plugin.php:1222
+#: ../../godmode/servers/plugin.php:1214
msgid ""
"The modules or components should be updated manually or using the bulk "
"operations for plugins after this change"
@@ -42480,11 +42766,11 @@ msgstr ""
"Les modules ou composants doivent être mis à jour manuellement ou en utilisant "
"les opérations massives pour les plugins après ce changement."
-#: ../../godmode/servers/plugin.php:1224
+#: ../../godmode/servers/plugin.php:1216
msgid "Are you sure you want to perform this action?"
msgstr "Êtes-vous sûr(e) de vouloir effectuer cette action ?"
-#: ../../godmode/servers/plugin.php:1233
+#: ../../godmode/servers/plugin.php:1225
msgid ""
"The plugin macros cannot be updated because some modules or components are "
"using the plugin"
@@ -42529,37 +42815,37 @@ msgstr ""
"Ce nœud est configuré en mode centralisé. Toutes les informations des balises "
"sont en lecture seule. Allez vers %s pour le gérer."
-#: ../../godmode/tag/tag.php:302
+#: ../../godmode/tag/tag.php:303
msgid "Tag name"
msgstr "Nom de l'étiquette"
-#: ../../godmode/tag/tag.php:304
+#: ../../godmode/tag/tag.php:305
msgid "Detail information"
msgstr "Information detaillée"
-#: ../../godmode/tag/tag.php:305
+#: ../../godmode/tag/tag.php:306
msgid "Number of modules affected"
msgstr "Nombre de modules affectés"
-#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233
+#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237
msgid "Phone"
msgstr "Téléphone"
-#: ../../godmode/tag/tag.php:336
+#: ../../godmode/tag/tag.php:337
msgid "Tag details"
msgstr "Détails de l'étiquette"
-#: ../../godmode/tag/tag.php:369
+#: ../../godmode/tag/tag.php:370
#, php-format
msgid "Emails for the tag: %s"
msgstr "Courriels pour l'étiquette : %s"
-#: ../../godmode/tag/tag.php:392
+#: ../../godmode/tag/tag.php:393
#, php-format
msgid "Phones for the tag: %s"
msgstr "Numéros de téléphone pour l'étiquette : %s"
-#: ../../godmode/tag/tag.php:455
+#: ../../godmode/tag/tag.php:456
msgid "Create tag"
msgstr "Créer une étiquette"
@@ -42575,25 +42861,25 @@ msgstr "Étiquette mise a jour correctement"
msgid "Error updating tag"
msgstr "Erreur de mise à jour de l'étiquette"
-#: ../../godmode/tag/edit_tag.php:160
+#: ../../godmode/tag/edit_tag.php:163
msgid "Successfully created tag"
msgstr "Étiquette créée correctement"
-#: ../../godmode/tag/edit_tag.php:161
+#: ../../godmode/tag/edit_tag.php:164
msgid "Error creating tag"
msgstr "Erreur de création de l'étiquette"
-#: ../../godmode/tag/edit_tag.php:213
+#: ../../godmode/tag/edit_tag.php:217
msgid "Hyperlink to help information that has to exist previously."
msgstr "Hyperlien pour information qui doit exister préalablement"
-#: ../../godmode/tag/edit_tag.php:225
+#: ../../godmode/tag/edit_tag.php:229
msgid "Associated Email direction to use later in alerts associated to Tags."
msgstr ""
"Adresse courriel associée à utiliser postérieurement avec les alertes "
"associées aux étiquettes."
-#: ../../godmode/tag/edit_tag.php:234
+#: ../../godmode/tag/edit_tag.php:238
msgid "Associated phone number to use later in alerts associated to Tags."
msgstr ""
"Numéro de téléphone associé à utiliser postérieurement avec les alertes "
@@ -42708,7 +42994,7 @@ msgstr "Erreur lors du chargement des résultats"
msgid "Pandora FMS %s - Build %s"
msgstr "Pandora FMS %s - Créer %s"
-#: ../../mobile/include/system.class.php:156
+#: ../../mobile/include/system.class.php:175
msgid ""
"Access to this page is restricted to authorized users only, please contact "
"your system administrator if you should need help."
@@ -42716,7 +43002,8 @@ msgstr ""
"Accès à cette page est limité aux utilisateurs autorisés seulement, veuillez "
"contacter votre administrateur système si vous avez besoin de l'aide."
-#: ../../mobile/include/system.class.php:156
+#: ../../mobile/include/system.class.php:175
+#: ../../mobile/include/system.class.php:181
#, php-format
msgid ""
"Please remember that any attempts to access this page will be recorded on the "
@@ -42725,6 +43012,14 @@ msgstr ""
"Rappelez-vous que les essais d'accès à cette page seront enregistrés dans la "
"base du système %s."
+#: ../../mobile/include/system.class.php:181
+msgid ""
+"Invalid license, please contact your system administrator if you should need "
+"help."
+msgstr ""
+"Licence non valide, veuillez contacter votre administrateur système si vous "
+"avez besoin de l'aide."
+
#: ../../mobile/include/ui.class.php:120
#, php-format
msgid "%s mobile"
@@ -42735,7 +43030,7 @@ msgstr "%s portable"
msgid "%s : Mobile"
msgstr "%s : Portable"
-#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161
+#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180
msgid "Home"
msgstr "Accueil"
@@ -42744,27 +43039,27 @@ msgstr "Accueil"
msgid "%s %s - Build %s"
msgstr "%s %s - Build %s"
-#: ../../mobile/include/ui.class.php:773
+#: ../../mobile/include/ui.class.php:803
msgid "Not found header."
msgstr "En-tête introuvable"
-#: ../../mobile/include/ui.class.php:775
+#: ../../mobile/include/ui.class.php:805
msgid "Not found content."
msgstr "Contenu introuvable"
-#: ../../mobile/include/ui.class.php:777
+#: ../../mobile/include/ui.class.php:807
msgid "Not found footer."
msgstr "Pied de page introuvable"
-#: ../../mobile/include/ui.class.php:779
+#: ../../mobile/include/ui.class.php:809
msgid "Incorrect form."
msgstr "Forme incorrecte"
-#: ../../mobile/include/ui.class.php:781
+#: ../../mobile/include/ui.class.php:811
msgid "Incorrect grid."
msgstr "Grille incorrecte"
-#: ../../mobile/include/ui.class.php:783
+#: ../../mobile/include/ui.class.php:813
msgid "Incorrect collapsible."
msgstr "Pliage incorrect"
@@ -42807,52 +43102,62 @@ msgstr ""
msgid "Login out"
msgstr "Fermer la session"
-#: ../../mobile/include/user.class.php:391
+#: ../../mobile/include/user.class.php:445
msgid "user"
msgstr "utilisateur"
-#: ../../mobile/include/user.class.php:398
+#: ../../mobile/include/user.class.php:453
msgid "password"
msgstr "mot de passe"
-#: ../../mobile/include/user.class.php:488
-#: ../../mobile/include/user.class.php:489
+#: ../../mobile/include/user.class.php:589
msgid "Authenticator code"
msgstr "Code d'authentification"
-#: ../../mobile/operation/agents.php:218
+#: ../../mobile/operation/agents.php:219
#, php-format
msgid "Filter Agents by %s"
msgstr "Filtrer agents par %s"
-#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325
-#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009
+#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325
+#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053
msgid "Apply Filter"
msgstr "Appliquer le filtre"
-#: ../../mobile/operation/agents.php:454
+#: ../../mobile/operation/agents.php:459
msgid "No agents"
msgstr "Aucun agent"
-#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885
-#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450
+#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981
+#: ../../mobile/operation/alerts.php:388
+#: ../../mobile/operation/module_data.php:299
+#: ../../mobile/operation/events.php:1575
+#: ../../mobile/operation/server_status.php:501
msgid "(Default)"
msgstr "(Par défaut)"
-#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891
-#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483
+#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987
+#: ../../mobile/operation/alerts.php:401
+#: ../../mobile/operation/module_data.php:305
+#: ../../mobile/operation/events.php:1608
+#: ../../mobile/operation/server_status.php:507
#, php-format
msgid "Group: %s"
msgstr "Groupe : %s"
-#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913
-#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503
+#: ../../mobile/operation/agents.php:574 ../../mobile/operation/modules.php:1009
+#: ../../mobile/operation/alerts.php:408
+#: ../../mobile/operation/module_data.php:327
+#: ../../mobile/operation/events.php:1628
+#: ../../mobile/operation/server_status.php:529
#, php-format
msgid "Status: %s"
msgstr "État : %s"
-#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920
-#: ../../mobile/operation/alerts.php:406
+#: ../../mobile/operation/agents.php:581 ../../mobile/operation/modules.php:1016
+#: ../../mobile/operation/alerts.php:415
+#: ../../mobile/operation/module_data.php:334
+#: ../../mobile/operation/server_status.php:536
#, php-format
msgid "Free Search: %s"
msgstr "Recherche libre : %s"
@@ -42862,20 +43167,28 @@ msgstr "Recherche libre : %s"
msgid "Filter Modules by %s"
msgstr "Filtrer les modules par %s"
-#: ../../mobile/operation/modules.php:659
+#: ../../mobile/operation/modules.php:670
msgid "Interval."
msgstr "Intervalle"
-#: ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/modules.php:672
msgid "Last update."
msgstr "Dernière mise à jour"
-#: ../../mobile/operation/modules.php:906
+#: ../../mobile/operation/modules.php:850
+msgid "Choose option"
+msgstr "Choisissez une option"
+
+#: ../../mobile/operation/modules.php:1002
+#: ../../mobile/operation/module_data.php:320
+#: ../../mobile/operation/server_status.php:522
#, php-format
msgid "Module group: %s"
msgstr "Groupe de module: %s"
-#: ../../mobile/operation/modules.php:928
+#: ../../mobile/operation/modules.php:1024
+#: ../../mobile/operation/module_data.php:342
+#: ../../mobile/operation/server_status.php:544
#, php-format
msgid "Tag: %s"
msgstr "Étiquette : %s"
@@ -42885,20 +43198,29 @@ msgstr "Étiquette : %s"
msgid "Visual consoles"
msgstr "Consoles visuelles"
-#: ../../mobile/operation/agent.php:162
+#: ../../mobile/operation/home.php:95
+#: ../../mobile/operation/server_status.php:227
+msgid "Server status"
+msgstr "État du serveur"
+
+#: ../../mobile/operation/services.php:139
+msgid "No services found"
+msgstr "Aucun service trouvé"
+
+#: ../../mobile/operation/agent.php:168
msgid "No agent found"
msgstr "Aucun agent retrouvé"
-#: ../../mobile/operation/agent.php:238
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588
+#: ../../mobile/operation/agent.php:241
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589
msgid "Modules by status"
msgstr "Modules par état"
-#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:724
+#: ../../mobile/operation/agent.php:271 ../../include/functions_treeview.php:728
msgid "Events (24h)"
msgstr "Événements (24h)"
-#: ../../mobile/operation/agent.php:369
+#: ../../mobile/operation/agent.php:372
#, php-format
msgid "Last %s Events"
msgstr "Derniers %s événements"
@@ -42908,15 +43230,22 @@ msgstr "Derniers %s événements"
msgid "Filter Alerts by %s"
msgstr "Filtrer alertes par %s"
-#: ../../mobile/operation/alerts.php:346
+#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337
+#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344
+#: ../../mobile/operation/alerts.php:347
+msgid "Module/Agent"
+msgstr "Agent/Module"
+
+#: ../../mobile/operation/alerts.php:353
msgid "Last Fired"
msgstr "Déclenchée pour la dernière fois"
-#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508
+#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509
+#: ../../operation/events/sound_events.php:394
msgid "No alerts"
msgstr "Aucune alerte"
-#: ../../mobile/operation/alerts.php:385
+#: ../../mobile/operation/alerts.php:394
#, php-format
msgid "Standby: %s"
msgstr "En mode veille : %s"
@@ -42929,128 +43258,155 @@ msgstr "Toutes les consoles visuelles"
msgid "Favourite visual consoles"
msgstr "Consoles visuelles préférées"
-#: ../../mobile/operation/visualmaps.php:263
-msgid "No maps defined"
-msgstr "Aucune carte définie"
+#: ../../mobile/operation/visualmaps.php:265
+msgid "There are no favorite maps to show"
+msgstr "Aucune carte favorite à afficher"
-#: ../../mobile/operation/module_graph.php:359
-#: ../../mobile/operation/module_graph.php:372
+#: ../../mobile/operation/module_data.php:125
+msgid "Module data"
+msgstr "Données de module"
+
+#: ../../mobile/operation/module_data.php:184
+#: ../../include/graphs/functions_flot.php:515
+#: ../../include/functions_reporting_html.php:663
+#: ../../include/functions_reporting_html.php:4709
+#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832
+#: ../../include/functions_treeview.php:299
+msgid "No data"
+msgstr "Aucune donnée"
+
+#: ../../mobile/operation/module_graph.php:360
+#: ../../mobile/operation/module_graph.php:373
#, php-format
msgid "%s: %s"
msgstr "%s: %s"
-#: ../../mobile/operation/module_graph.php:405
+#: ../../mobile/operation/module_graph.php:406
#, php-format
msgid "Options for %s : %s"
msgstr "Options pour %s : %s"
-#: ../../mobile/operation/module_graph.php:412
+#: ../../mobile/operation/module_graph.php:413
msgid "Show Alerts"
msgstr "Afficher les alertes"
-#: ../../mobile/operation/module_graph.php:420
+#: ../../mobile/operation/module_graph.php:421
msgid "Show Events"
msgstr "Afficher les événements"
-#: ../../mobile/operation/module_graph.php:428
-#: ../../operation/agentes/stat_win.php:377
-#: ../../operation/agentes/stat_win.php:439
+#: ../../mobile/operation/module_graph.php:429
+#: ../../operation/agentes/stat_win.php:385
+#: ../../operation/agentes/stat_win.php:455
msgid "Time compare (Separated)"
msgstr "Comparaison de temps (séparément)"
-#: ../../mobile/operation/module_graph.php:444
-#: ../../operation/agentes/stat_win.php:317
+#: ../../mobile/operation/module_graph.php:445
+#: ../../operation/agentes/stat_win.php:325
msgid "Show unknown graph"
msgstr "Afficher le graphique inconnu"
-#: ../../mobile/operation/module_graph.php:449
+#: ../../mobile/operation/module_graph.php:450
msgid "Time range (hours)"
msgstr "Intervalle de temps (heures)"
-#: ../../mobile/operation/module_graph.php:461
+#: ../../mobile/operation/module_graph.php:462
#: ../../operation/agentes/stat_win.php:289
-#: ../../operation/agentes/stat_win.php:408
+#: ../../operation/agentes/stat_win.php:416
#: ../../operation/agentes/interface_traffic_graph_win.php:183
#: ../../operation/agentes/graphs.php:222
#: ../../operation/agentes/exportdata.php:393
msgid "Begin date"
msgstr "Date de début"
-#: ../../mobile/operation/module_graph.php:468
+#: ../../mobile/operation/module_graph.php:469
msgid "Update graph"
msgstr "Mettre à jour le graphique"
-#: ../../mobile/operation/module_graph.php:478
+#: ../../mobile/operation/module_graph.php:479
msgid "Error get the graph"
msgstr "Erreur d'obtention du graphique"
-#: ../../mobile/operation/events.php:450
+#: ../../mobile/operation/events.php:442
#: ../../include/functions_reporting_html.php:1095
#: ../../include/functions_reporting_html.php:1337
-#: ../../include/functions_reporting_html.php:2658
+#: ../../include/functions_reporting_html.php:2677
#: ../../include/functions_events.php:2571
-#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779
+#: ../../include/functions_events.php:4747 ../../operation/events/events.php:784
msgid "New event"
msgstr "Nouvel événement"
-#: ../../mobile/operation/events.php:455
+#: ../../mobile/operation/events.php:447
#: ../../include/functions_reporting_html.php:1084
#: ../../include/functions_reporting_html.php:1342
-#: ../../include/functions_reporting_html.php:2663
+#: ../../include/functions_reporting_html.php:2682
#: ../../include/functions_events.php:2576
-#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792
+#: ../../include/functions_events.php:4753 ../../operation/events/events.php:797
msgid "Event validated"
msgstr "Événement validé"
-#: ../../mobile/operation/events.php:460
+#: ../../mobile/operation/events.php:452
#: ../../include/functions_reporting_html.php:1089
#: ../../include/functions_reporting_html.php:1347
-#: ../../include/functions_reporting_html.php:2668
+#: ../../include/functions_reporting_html.php:2687
#: ../../include/functions_events.php:2581
-#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804
+#: ../../include/functions_events.php:4759 ../../operation/events/events.php:809
msgid "Event in process"
msgstr "Événement en cours"
-#: ../../mobile/operation/events.php:768
+#: ../../mobile/operation/events.php:797
msgid "ERROR: Event detail"
msgstr "ERREUR : détails de l'événement"
-#: ../../mobile/operation/events.php:769
+#: ../../mobile/operation/events.php:798
msgid "Error connecting to DB."
msgstr "Erreur lors de la connexions dans la base de données."
-#: ../../mobile/operation/events.php:789
+#: ../../mobile/operation/events.php:818
msgid "Event detail"
msgstr "Détails de l'événement"
-#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4895
+#: ../../mobile/operation/events.php:829 ../../include/functions_events.php:4900
msgid "Event ID"
msgstr "Identification de l'événement"
-#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:5013
+#: ../../mobile/operation/events.php:857 ../../include/functions_events.php:5018
msgid "Acknowledged by"
msgstr "Reconnu par"
-#: ../../mobile/operation/events.php:878
+#: ../../mobile/operation/events.php:894 ../../include/functions_events.php:3275
+#: ../../include/functions_events.php:3548
+#: ../../include/functions_events.php:3557
+msgid "In process"
+msgstr "En cours"
+
+#: ../../mobile/operation/events.php:915
msgid "Sucessful validate"
msgstr "Validé correctement"
-#: ../../mobile/operation/events.php:880
+#: ../../mobile/operation/events.php:917
msgid "Fail validate"
msgstr "Validation échouée"
+#: ../../mobile/operation/events.php:922
+msgid "Sucessful in process"
+msgstr "En processus correcte"
+
#: ../../mobile/operation/events.php:924
+msgid "Fail in process"
+msgstr "En processus échoué"
+
+#: ../../mobile/operation/events.php:968
#, php-format
msgid "Filter Events by %s"
msgstr "Filtrer les évènements par %s"
-#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935
+#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979
msgid "Preset Filters"
msgstr "Filtres prédéfinis"
-#: ../../mobile/operation/events.php:1144
-#: ../../include/functions_reporting_html.php:6176
-#: ../../include/functions_reporting_html.php:6335
+#: ../../mobile/operation/events.php:1191
+#: ../../include/functions_reporting_html.php:6210
+#: ../../include/functions_reporting_html.php:6369
#: ../../include/functions_reporting.php:2189
#: ../../include/functions_reporting.php:2564
#: ../../include/functions_events.php:2497
@@ -43058,31 +43414,35 @@ msgstr "Filtres prédéfinis"
msgid "No events"
msgstr "Aucun événement"
-#: ../../mobile/operation/events.php:1455
+#: ../../mobile/operation/events.php:1580
#, php-format
msgid "Filter: %s"
msgstr "Filtrer : %s"
-#: ../../mobile/operation/events.php:1467
+#: ../../mobile/operation/events.php:1592
#, php-format
msgid "Severity: %s"
msgstr "Sévérité : %s"
-#: ../../mobile/operation/events.php:1496
+#: ../../mobile/operation/events.php:1621
#, php-format
msgid "Type: %s"
msgstr "Type : %s"
-#: ../../mobile/operation/events.php:1510
+#: ../../mobile/operation/events.php:1635
#, php-format
msgid "Free search: %s"
msgstr "Recherche libre : %s"
-#: ../../mobile/operation/events.php:1517
+#: ../../mobile/operation/events.php:1642
#, php-format
msgid "Hours: %s"
msgstr "Heures : %s"
+#: ../../mobile/operation/server_status.php:371
+msgid "No servers"
+msgstr "Pas de serveurs"
+
#: ../../mobile/operation/tactical.php:216
msgid "Last activity"
msgstr "Dernière activité"
@@ -43111,166 +43471,162 @@ msgstr ""
msgid "Border color"
msgstr "Couleur du bord"
-#: ../../include/functions_visual_map_editor.php:151
+#: ../../include/functions_visual_map_editor.php:149
msgid "Border width"
msgstr "Largeur du bord"
-#: ../../include/functions_visual_map_editor.php:160
+#: ../../include/functions_visual_map_editor.php:158
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364
msgid "Fill color"
msgstr "Couleur de remplissage"
-#: ../../include/functions_visual_map_editor.php:239
+#: ../../include/functions_visual_map_editor.php:235
msgid ""
"Scroll the mouse wheel over the label editor to change the background color"
msgstr ""
"Survolez la souris sur l'éditeur d'étiquettes pour changer la couleur de fond"
-#: ../../include/functions_visual_map_editor.php:255
+#: ../../include/functions_visual_map_editor.php:251
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333
msgid "Clock animation"
msgstr "Animation de l'horloge"
-#: ../../include/functions_visual_map_editor.php:258
+#: ../../include/functions_visual_map_editor.php:254
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328
msgid "Simple analogic"
msgstr "Analogique"
-#: ../../include/functions_visual_map_editor.php:259
+#: ../../include/functions_visual_map_editor.php:255
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329
msgid "Simple digital"
msgstr "Numérique"
-#: ../../include/functions_visual_map_editor.php:273
+#: ../../include/functions_visual_map_editor.php:269
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351
msgid "Time format"
msgstr "Format de l'heure"
-#: ../../include/functions_visual_map_editor.php:276
+#: ../../include/functions_visual_map_editor.php:272
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346
msgid "Only time"
msgstr "Seulement l'heure"
-#: ../../include/functions_visual_map_editor.php:277
+#: ../../include/functions_visual_map_editor.php:273
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347
msgid "Time and date"
msgstr "Heure et date"
-#: ../../include/functions_visual_map_editor.php:329
+#: ../../include/functions_visual_map_editor.php:325
msgid "Enable link"
msgstr "Activer le lien"
-#: ../../include/functions_visual_map_editor.php:350
+#: ../../include/functions_visual_map_editor.php:346
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508
msgid "White"
msgstr "Blanc"
-#: ../../include/functions_visual_map_editor.php:351
+#: ../../include/functions_visual_map_editor.php:347
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509
msgid "Black"
msgstr "Noir"
-#: ../../include/functions_visual_map_editor.php:352
+#: ../../include/functions_visual_map_editor.php:348
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510
msgid "Transparent"
msgstr "Transparent"
-#: ../../include/functions_visual_map_editor.php:378
+#: ../../include/functions_visual_map_editor.php:374
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402
msgid "Grid color"
msgstr "Couleur de la grille"
-#: ../../include/functions_visual_map_editor.php:498
+#: ../../include/functions_visual_map_editor.php:492
msgid "Data image"
msgstr "Données dans l'image"
-#: ../../include/functions_visual_map_editor.php:503
+#: ../../include/functions_visual_map_editor.php:498
msgid "Resume data color"
msgstr "Couleur de la légende"
-#: ../../include/functions_visual_map_editor.php:517
+#: ../../include/functions_visual_map_editor.php:511
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274
msgid "24h"
msgstr "24h"
-#: ../../include/functions_visual_map_editor.php:518
+#: ../../include/functions_visual_map_editor.php:512
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276
msgid "8h"
msgstr "8h"
-#: ../../include/functions_visual_map_editor.php:519
+#: ../../include/functions_visual_map_editor.php:513
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
msgid "2h"
msgstr "2h"
-#: ../../include/functions_visual_map_editor.php:520
+#: ../../include/functions_visual_map_editor.php:514
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278
msgid "1h"
msgstr "1h"
-#: ../../include/functions_visual_map_editor.php:524
+#: ../../include/functions_visual_map_editor.php:518
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282
msgid "Max. Time"
msgstr "Temp max."
-#: ../../include/functions_visual_map_editor.php:640
+#: ../../include/functions_visual_map_editor.php:634
msgid "Original Size"
msgstr "Taille originale"
-#: ../../include/functions_visual_map_editor.php:648
+#: ../../include/functions_visual_map_editor.php:654
msgid "Aspect ratio"
msgstr "Rapport hauteur/largeur"
-#: ../../include/functions_visual_map_editor.php:649
+#: ../../include/functions_visual_map_editor.php:657
msgid "Proportional Width"
msgstr "Largeur proportionnelle"
-#: ../../include/functions_visual_map_editor.php:657
+#: ../../include/functions_visual_map_editor.php:677
msgid "Height proportional"
msgstr "Hauteur proportionnelle"
-#: ../../include/functions_visual_map_editor.php:668
-msgid "Widtzzzzh"
-msgstr "Largeur"
-
-#: ../../include/functions_visual_map_editor.php:686
-#: ../../include/functions_visual_map.php:4190
+#: ../../include/functions_visual_map_editor.php:736
+#: ../../include/functions_visual_map.php:4199
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
-#: ../../include/rest-api/models/VisualConsole/Item.php:2124
+#: ../../include/rest-api/models/VisualConsole/Item.php:2127
msgid "Circular progress bar"
msgstr "Barre de progression circulaire"
-#: ../../include/functions_visual_map_editor.php:687
-#: ../../include/functions_visual_map.php:4195
+#: ../../include/functions_visual_map_editor.php:737
+#: ../../include/functions_visual_map.php:4204
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-#: ../../include/rest-api/models/VisualConsole/Item.php:2128
+#: ../../include/rest-api/models/VisualConsole/Item.php:2131
msgid "Circular progress bar (interior)"
msgstr "Barre de progression circulaire (intérieur)"
-#: ../../include/functions_visual_map_editor.php:737
+#: ../../include/functions_visual_map_editor.php:787
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522
msgid "Element color"
msgstr "Couleur de l'élément"
-#: ../../include/functions_visual_map_editor.php:757
+#: ../../include/functions_visual_map_editor.php:802
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534
msgid "Value color"
msgstr "Couleur de la valeur"
-#: ../../include/functions_visual_map_editor.php:799
+#: ../../include/functions_visual_map_editor.php:839
msgid "Diameter"
msgstr "Diamètre"
-#: ../../include/functions_visual_map_editor.php:806
+#: ../../include/functions_visual_map_editor.php:846
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426
msgid "Default color"
msgstr "Couleur par défaut"
-#: ../../include/functions_visual_map_editor.php:810
+#: ../../include/functions_visual_map_editor.php:850
msgid ""
"The color of the element will be the one selected in the first range created "
"in which the value of the module is found (with the initial and final values "
@@ -43280,93 +43636,93 @@ msgstr ""
"dans laquelle se trouve la valeur du module (avec les valeurs initiale et "
"finale de la plage incluses)"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "Ranges"
msgstr "Gammes"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "From value"
msgstr "À partir de la valeur"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "To value"
msgstr "À la valeur"
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
#: ../../include/rest-api/index.php:379
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942
msgid "Color"
msgstr "Couleur"
-#: ../../include/functions_visual_map_editor.php:818
+#: ../../include/functions_visual_map_editor.php:859
msgid "Always show on top"
msgstr "Afficher toujours en haut"
-#: ../../include/functions_visual_map_editor.php:819
+#: ../../include/functions_visual_map_editor.php:861
msgid ""
"It allows the element to be superimposed to the rest of items of the visual "
"console"
msgstr ""
"Il permet de superposer l'élément au reste des éléments de la console visuelle"
-#: ../../include/functions_visual_map_editor.php:822
+#: ../../include/functions_visual_map_editor.php:870
#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404
msgid "Hide last value on boolean modules"
msgstr "Masquer la dernière valeur sur les modules booléens"
-#: ../../include/functions_visual_map_editor.php:828
+#: ../../include/functions_visual_map_editor.php:876
msgid "Show last value"
msgstr "Afficher la dernière valeur"
-#: ../../include/functions_visual_map_editor.php:932
+#: ../../include/functions_visual_map_editor.php:980
msgid "For use the original image file size, set 0 width and 0 height."
msgstr ""
"Pour utiliser les dimensions originales du fichier d'image, réglez la largeur "
"et la hauteur à 0."
-#: ../../include/functions_visual_map_editor.php:972
-#: ../../include/rest-api/models/VisualConsole/Item.php:2439
+#: ../../include/functions_visual_map_editor.php:1020
+#: ../../include/rest-api/models/VisualConsole/Item.php:2442
msgid "Linked visual console"
msgstr "Console visuelle liée"
-#: ../../include/functions_visual_map_editor.php:1079
-#: ../../include/rest-api/models/VisualConsole/Item.php:2490
+#: ../../include/functions_visual_map_editor.php:1131
+#: ../../include/rest-api/models/VisualConsole/Item.php:2493
msgid "By status weight"
msgstr "Par poids d’état"
-#: ../../include/functions_visual_map_editor.php:1080
-#: ../../include/rest-api/models/VisualConsole/Item.php:2491
+#: ../../include/functions_visual_map_editor.php:1132
+#: ../../include/rest-api/models/VisualConsole/Item.php:2494
msgid "By critical elements"
msgstr "Par éléments critiques"
-#: ../../include/functions_visual_map_editor.php:1095
-#: ../../include/rest-api/models/VisualConsole/Item.php:2498
+#: ../../include/functions_visual_map_editor.php:1147
+#: ../../include/rest-api/models/VisualConsole/Item.php:2501
msgid "Type of the status calculation of the linked visual console"
msgstr "Type de calcul d'état de la console visuelle liée"
-#: ../../include/functions_visual_map_editor.php:1100
-#: ../../include/rest-api/models/VisualConsole/Item.php:2489
+#: ../../include/functions_visual_map_editor.php:1152
+#: ../../include/rest-api/models/VisualConsole/Item.php:2492
msgid "By default"
msgstr "Par défaut"
-#: ../../include/functions_visual_map_editor.php:1120
-#: ../../include/rest-api/models/VisualConsole/Item.php:2514
+#: ../../include/functions_visual_map_editor.php:1172
+#: ../../include/rest-api/models/VisualConsole/Item.php:2517
msgid "Linked visual console weight"
msgstr "Poids de la console visuelle liée"
-#: ../../include/functions_visual_map_editor.php:1187
+#: ../../include/functions_visual_map_editor.php:1239
msgid "Lines haven't advanced options"
msgstr "Les lignes n'ont pas d'options avancées"
-#: ../../include/functions_visual_map_editor.php:1204
-#: ../../include/rest-api/models/VisualConsole/Item.php:2189
+#: ../../include/functions_visual_map_editor.php:1257
+#: ../../include/rest-api/models/VisualConsole/Item.php:2192
msgid "Restrict access to group"
msgstr "Limiter l'accès au groupe"
-#: ../../include/functions_visual_map_editor.php:1215
+#: ../../include/functions_visual_map_editor.php:1259
msgid ""
"If selected, restrict visualization of this item in the visual console to "
"users who have access to selected group. This is also used on calculating "
@@ -43376,135 +43732,135 @@ msgstr ""
"limité aux utilisateurs qui ont accès au groupe sélectionné. Ceci est aussi "
"utilisé pour calculer les consoles visuelles des enfants."
-#: ../../include/functions_visual_map_editor.php:1246
-#: ../../include/rest-api/models/VisualConsole/Item.php:2202
+#: ../../include/functions_visual_map_editor.php:1304
+#: ../../include/rest-api/models/VisualConsole/Item.php:2205
msgid "Cache expiration"
msgstr "Expiration du cache"
-#: ../../include/functions_visual_map_editor.php:1285
+#: ../../include/functions_visual_map_editor.php:1343
msgid "Click start point
of the line"
msgstr "Cliquez sur le point de départ
de la ligne."
-#: ../../include/functions_visual_map_editor.php:1288
+#: ../../include/functions_visual_map_editor.php:1346
msgid "Click end point
of the line"
msgstr "Cliquez sur le point final
de la ligne."
-#: ../../include/functions_visual_map_editor.php:1388
-#: ../../operation/visual_console/view.php:336
+#: ../../include/functions_visual_map_editor.php:1446
+#: ../../operation/visual_console/view.php:338
msgid "Serialized pie graph"
msgstr "Diagramme circulaire sérialisé"
-#: ../../include/functions_visual_map_editor.php:1389
-#: ../../operation/visual_console/view.php:341
+#: ../../include/functions_visual_map_editor.php:1447
+#: ../../operation/visual_console/view.php:343
msgid "Bars Graph"
msgstr "Graphique à barres"
-#: ../../include/functions_visual_map_editor.php:1418
+#: ../../include/functions_visual_map_editor.php:1476
msgid "Show grid"
msgstr "Afficher la grille"
-#: ../../include/functions_visual_map_editor.php:1420
+#: ../../include/functions_visual_map_editor.php:1478
msgid "Delete item"
msgstr "Supprimer l'élément"
-#: ../../include/functions_visual_map_editor.php:1421
+#: ../../include/functions_visual_map_editor.php:1479
msgid "Copy item"
msgstr "Copier l'élément"
-#: ../../include/functions_visual_map_editor.php:1458
-#: ../../include/functions_visual_map_editor.php:1462
-#: ../../include/functions_visual_map_editor.php:1466
-#: ../../include/functions_visual_map_editor.php:1470
-#: ../../include/functions_visual_map_editor.php:1474
-#: ../../include/functions_visual_map_editor.php:1478
-#: ../../include/functions_visual_map_editor.php:1482
-#: ../../include/functions_visual_map_editor.php:1486
-#: ../../include/functions_visual_map_editor.php:1490
-#: ../../include/functions_visual_map_editor.php:1494
-#: ../../include/functions_visual_map_editor.php:1498
-#: ../../include/functions_visual_map_editor.php:1502
-#: ../../include/functions_visual_map_editor.php:1506
-#: ../../include/functions_visual_map_editor.php:1510
-#: ../../include/functions_visual_map_editor.php:1514
-#: ../../include/functions_visual_map_editor.php:1518
-#: ../../include/functions_visual_map_editor.php:1522
-#: ../../include/functions_visual_map_editor.php:1526
-#: ../../include/functions_visual_map_editor.php:1530
+#: ../../include/functions_visual_map_editor.php:1516
+#: ../../include/functions_visual_map_editor.php:1520
+#: ../../include/functions_visual_map_editor.php:1524
+#: ../../include/functions_visual_map_editor.php:1528
+#: ../../include/functions_visual_map_editor.php:1532
+#: ../../include/functions_visual_map_editor.php:1536
+#: ../../include/functions_visual_map_editor.php:1540
+#: ../../include/functions_visual_map_editor.php:1544
+#: ../../include/functions_visual_map_editor.php:1548
+#: ../../include/functions_visual_map_editor.php:1552
+#: ../../include/functions_visual_map_editor.php:1556
+#: ../../include/functions_visual_map_editor.php:1560
+#: ../../include/functions_visual_map_editor.php:1564
+#: ../../include/functions_visual_map_editor.php:1568
+#: ../../include/functions_visual_map_editor.php:1572
+#: ../../include/functions_visual_map_editor.php:1576
+#: ../../include/functions_visual_map_editor.php:1580
+#: ../../include/functions_visual_map_editor.php:1584
+#: ../../include/functions_visual_map_editor.php:1588
msgid "Visual Console Builder Information"
msgstr "Informations sur le constructeur de console visuelle"
-#: ../../include/functions_visual_map_editor.php:1459
+#: ../../include/functions_visual_map_editor.php:1517
msgid "Min allowed size is 1024x768."
msgstr "La taille minimale autorisée est 1024x768"
-#: ../../include/functions_visual_map_editor.php:1463
-#: ../../include/functions_visual_map_editor.php:1531
+#: ../../include/functions_visual_map_editor.php:1521
+#: ../../include/functions_visual_map_editor.php:1589
msgid "No custom graph defined."
msgstr "Aucun graphique personnalisé défini."
-#: ../../include/functions_visual_map_editor.php:1467
+#: ../../include/functions_visual_map_editor.php:1525
msgid "No image or name defined."
msgstr "Aucune image ou nom définis"
-#: ../../include/functions_visual_map_editor.php:1471
+#: ../../include/functions_visual_map_editor.php:1529
msgid "No label defined."
msgstr "Aucune étiquette définie"
-#: ../../include/functions_visual_map_editor.php:1475
+#: ../../include/functions_visual_map_editor.php:1533
msgid "No service defined."
msgstr "Aucun service défini."
-#: ../../include/functions_visual_map_editor.php:1479
+#: ../../include/functions_visual_map_editor.php:1537
msgid "No image defined."
msgstr "Aucune image définie"
-#: ../../include/functions_visual_map_editor.php:1483
+#: ../../include/functions_visual_map_editor.php:1541
msgid "No process defined."
msgstr "Aucun processus défini"
-#: ../../include/functions_visual_map_editor.php:1487
+#: ../../include/functions_visual_map_editor.php:1545
msgid "No Max value defined."
msgstr "Aucune valeur max. définie"
-#: ../../include/functions_visual_map_editor.php:1491
+#: ../../include/functions_visual_map_editor.php:1549
msgid "No width defined."
msgstr "Aucune largeur définie"
-#: ../../include/functions_visual_map_editor.php:1495
+#: ../../include/functions_visual_map_editor.php:1553
msgid "No height defined."
msgstr "Aucune hauteur définie"
-#: ../../include/functions_visual_map_editor.php:1499
+#: ../../include/functions_visual_map_editor.php:1557
msgid "The width must not exceed the size of the visual console container."
msgstr ""
"La largeur ne doit pas dépasser la taille du conteneur de la console visuelle."
-#: ../../include/functions_visual_map_editor.php:1503
+#: ../../include/functions_visual_map_editor.php:1561
msgid "The height must not exceed the size of the visual console container."
msgstr ""
"La hauteur ne doit pas dépasser la taille du conteneur de la console visuelle."
-#: ../../include/functions_visual_map_editor.php:1507
+#: ../../include/functions_visual_map_editor.php:1565
msgid "No period defined."
msgstr "Aucune période définie"
-#: ../../include/functions_visual_map_editor.php:1511
+#: ../../include/functions_visual_map_editor.php:1569
msgid "No agent defined."
msgstr "Aucun agent défini"
-#: ../../include/functions_visual_map_editor.php:1515
+#: ../../include/functions_visual_map_editor.php:1573
msgid "No module defined."
msgstr "Aucun module défini"
-#: ../../include/functions_visual_map_editor.php:1519
+#: ../../include/functions_visual_map_editor.php:1577
msgid "No module defined. This module must be string type."
msgstr "Aucun module défini. Ce module doit être de type chaîne."
-#: ../../include/functions_visual_map_editor.php:1523
+#: ../../include/functions_visual_map_editor.php:1581
msgid "Successfully save the changes."
msgstr "Modifications enregistrées correctement"
-#: ../../include/functions_visual_map_editor.php:1527
+#: ../../include/functions_visual_map_editor.php:1585
msgid "Could not be save."
msgstr "Impossible de sauvegarder."
@@ -43518,100 +43874,96 @@ msgid "Selected"
msgstr "Sélectionnés"
#: ../../include/graphs/functions_gd.php:183
-#: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822
+#: ../../include/graphs/functions_gd.php:470
+#: ../../include/functions_graph.php:2784 ../../include/functions_graph.php:2832
msgid "Out of limits"
msgstr "Hors limites"
-#: ../../include/graphs/functions_flot.php:370
+#: ../../include/graphs/functions_flot.php:371
msgid "Cancel zoom"
msgstr "Annuler zoom"
-#: ../../include/graphs/functions_flot.php:372
+#: ../../include/graphs/functions_flot.php:373
msgid "Warning and Critical thresholds"
msgstr "Seuils d'état d'alerte et critique"
-#: ../../include/graphs/functions_flot.php:377
+#: ../../include/graphs/functions_flot.php:378
msgid "Overview graph"
msgstr "Aperçu du graphique"
-#: ../../include/graphs/functions_flot.php:514
-#: ../../include/functions_reporting_html.php:663
-#: ../../include/functions_reporting_html.php:4681
-#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822
-#: ../../include/functions_treeview.php:299
-msgid "No data"
-msgstr "Aucune donnée"
-
-#: ../../include/functions_servers.php:582
+#: ../../include/functions_servers.php:590
msgid "SNMP Trap server"
msgstr "Serveur de déroutements SNMP"
-#: ../../include/functions_servers.php:699
+#: ../../include/functions_servers.php:707
msgid "Correlation server"
msgstr "Serveur de corrélation"
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1230
+#: ../../include/functions_servers.php:720
+#: ../../include/functions_servers.php:1253
msgid "Enterprise ICMP server"
msgstr "Serveur ICMP Enterprise"
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1233
+#: ../../include/functions_servers.php:733
+#: ../../include/functions_servers.php:1256
msgid "Enterprise SNMP server"
msgstr "Serveur SNMP Enterprise"
-#: ../../include/functions_servers.php:738
+#: ../../include/functions_servers.php:746
#: ../../include/class/AgentWizard.class.php:1353
msgid "Enterprise Satellite server"
msgstr "Serveur Satellite Enterprise"
-#: ../../include/functions_servers.php:751
+#: ../../include/functions_servers.php:759
msgid "Enterprise Transactional server"
msgstr "Serveur de Transaction Enterprise"
-#: ../../include/functions_servers.php:764
+#: ../../include/functions_servers.php:772
msgid "Mainframe server"
msgstr "Serveur central"
-#: ../../include/functions_servers.php:777
+#: ../../include/functions_servers.php:785
msgid "Sync server"
msgstr "Serveur sync"
-#: ../../include/functions_servers.php:790
+#: ../../include/functions_servers.php:798
msgid "Wux server"
msgstr "Serveur WUX"
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1260
+#: ../../include/functions_servers.php:811
+#: ../../include/functions_servers.php:1283
msgid "Log server"
msgstr "Serveur de journaux"
-#: ../../include/functions_servers.php:829
+#: ../../include/functions_servers.php:837
msgid "Autoprovision server"
msgstr "Serveur de provisionnement automatique"
-#: ../../include/functions_servers.php:842
+#: ../../include/functions_servers.php:850
msgid "Migration server"
msgstr "Serveur de migration"
-#: ../../include/functions_servers.php:1239
+#: ../../include/functions_servers.php:876
+msgid "Netflow server"
+msgstr "Serveur Netflow"
+
+#: ../../include/functions_servers.php:1262
msgid "Prediction Server"
msgstr "Serveur de prédiction"
-#: ../../include/functions_servers.php:1266
+#: ../../include/functions_servers.php:1289
#: ../../operation/agentes/estado_generalagente.php:329
msgid "Satellite server"
msgstr "Serveur Satellite"
#: ../../include/functions_reporting_html.php:87
-#: ../../include/functions_reporting_html.php:5823
+#: ../../include/functions_reporting_html.php:5851
#: ../../include/ajax/alert_list.ajax.php:592
msgid "From:"
msgstr "De :"
#: ../../include/functions_reporting_html.php:87
-#: ../../include/functions_reporting_html.php:5823
+#: ../../include/functions_reporting_html.php:5851
#: ../../include/ajax/alert_list.ajax.php:606
msgid "To:"
msgstr "À :"
@@ -43638,31 +43990,31 @@ msgid "Downtime"
msgstr "Temps d'arrêt"
#: ../../include/functions_reporting_html.php:1003
-#: ../../include/functions_reporting_html.php:2514
-#: ../../include/functions_reporting_html.php:4563
-#: ../../include/functions_reporting_html.php:5102
+#: ../../include/functions_reporting_html.php:2535
+#: ../../include/functions_reporting_html.php:4591
+#: ../../include/functions_reporting_html.php:5130
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367
msgid "Min Value"
msgstr "Valeur minimale"
#: ../../include/functions_reporting_html.php:1004
-#: ../../include/functions_reporting_html.php:2515
-#: ../../include/functions_reporting_html.php:4564
-#: ../../include/functions_reporting_html.php:5103
+#: ../../include/functions_reporting_html.php:2536
+#: ../../include/functions_reporting_html.php:4592
+#: ../../include/functions_reporting_html.php:5131
msgid "Average Value"
msgstr "Valeur moyenne"
#: ../../include/functions_reporting_html.php:1005
-#: ../../include/functions_reporting_html.php:2516
-#: ../../include/functions_reporting_html.php:4561
-#: ../../include/functions_reporting_html.php:5105
+#: ../../include/functions_reporting_html.php:2537
+#: ../../include/functions_reporting_html.php:4589
+#: ../../include/functions_reporting_html.php:5133
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366
msgid "Max Value"
msgstr "Valeur maximale"
#: ../../include/functions_reporting_html.php:1061
#: ../../include/functions_reporting_html.php:1069
-#: ../../include/functions_reporting_html.php:2645
+#: ../../include/functions_reporting_html.php:2664
msgid "Val. by"
msgstr "Valeur par"
@@ -43672,190 +44024,195 @@ msgid "%s System"
msgstr "Système %s"
#: ../../include/functions_reporting_html.php:1221
-#: ../../include/functions_reporting_html.php:1436
+#: ../../include/functions_reporting_html.php:1445
msgid "Events by user validator"
msgstr "Événements par utilisateur validateur"
#: ../../include/functions_reporting_html.php:1238
-#: ../../include/functions_reporting_html.php:1453
+#: ../../include/functions_reporting_html.php:1462
msgid "Events by Severity"
msgstr "Événements par sévérité"
#: ../../include/functions_reporting_html.php:1255
-#: ../../include/functions_reporting_html.php:1470
+#: ../../include/functions_reporting_html.php:1479
msgid "Events validated vs unvalidated"
msgstr "Événements validés vs non validés"
-#: ../../include/functions_reporting_html.php:1612
+#: ../../include/functions_reporting_html.php:1621
msgid "Sec. groups"
msgstr "Groupes secondaires"
-#: ../../include/functions_reporting_html.php:1632
+#: ../../include/functions_reporting_html.php:1641
msgid "Remote conf."
msgstr "Configuration à distance"
-#: ../../include/functions_reporting_html.php:1919
-#: ../../include/functions_inventory.php:1068
-#: ../../include/functions_inventory.php:1131
+#: ../../include/functions_reporting_html.php:1928
+#: ../../include/functions_inventory.php:1178
+#: ../../include/functions_inventory.php:1241
msgid "Added"
msgstr "Ajouté"
-#: ../../include/functions_reporting_html.php:1930
-#: ../../include/functions_inventory.php:1074
-#: ../../include/functions_inventory.php:1139
+#: ../../include/functions_reporting_html.php:1939
+#: ../../include/functions_inventory.php:1184
+#: ../../include/functions_inventory.php:1249
#: ../../include/functions_filemanager.php:343
#: ../../include/functions_filemanager.php:360
msgid "Deleted"
msgstr "Supprimé"
-#: ../../include/functions_reporting_html.php:2287
+#: ../../include/functions_reporting_html.php:2308
msgid "Cell turns grey when the module is in 'not initialize' status"
msgstr ""
"La cellule devient grise lorsque le module se trouve dans un état « non "
"initialisé »."
-#: ../../include/functions_reporting_html.php:2580
-#: ../../include/functions_reporting_html.php:5691
+#: ../../include/functions_reporting_html.php:2601
+#: ../../include/functions_reporting_html.php:5719
msgid "Monitors"
msgstr "Moniteurs"
-#: ../../include/functions_reporting_html.php:2599
+#: ../../include/functions_reporting_html.php:2620
msgid "Events (not validated)"
msgstr "Evénements (non validés)"
-#: ../../include/functions_reporting_html.php:2755
+#: ../../include/functions_reporting_html.php:2783
msgid "Events validated by user"
msgstr "Événements validés par l'utilisateur"
-#: ../../include/functions_reporting_html.php:2772
-#: ../../include/functions_reporting_html.php:5980
+#: ../../include/functions_reporting_html.php:2800
+#: ../../include/functions_reporting_html.php:6008
msgid "Events by severity"
msgstr "Événements par sévérité"
-#: ../../include/functions_reporting_html.php:2789
+#: ../../include/functions_reporting_html.php:2817
msgid "Amount events validated"
msgstr "Nombre d'événements validés"
-#: ../../include/functions_reporting_html.php:3219
+#: ../../include/functions_reporting_html.php:3247
msgid "Total summary"
msgstr "Résumé total"
-#: ../../include/functions_reporting_html.php:3226
+#: ../../include/functions_reporting_html.php:3254
msgid "No alerts fired"
msgstr "Aucune alerte déclenchée"
-#: ../../include/functions_reporting_html.php:3326
+#: ../../include/functions_reporting_html.php:3354
#, php-format
msgid "Interface '%s' throughput graph"
msgstr "Interface « %s » graphique de rendement"
-#: ../../include/functions_reporting_html.php:3330
+#: ../../include/functions_reporting_html.php:3358
msgid "Mac"
msgstr "Mac"
-#: ../../include/functions_reporting_html.php:3331
+#: ../../include/functions_reporting_html.php:3359
msgid "Actual status"
msgstr "État actuel"
-#: ../../include/functions_reporting_html.php:3702
-#: ../../include/functions_reporting_html.php:3704
+#: ../../include/functions_reporting_html.php:3730
+#: ../../include/functions_reporting_html.php:3732
msgid "Empty modules"
msgstr "Modules vides"
-#: ../../include/functions_reporting_html.php:4175
+#: ../../include/functions_reporting_html.php:4203
msgid "Time Not Init Module"
msgstr "Temps dans le module non initialisé"
-#: ../../include/functions_reporting_html.php:4186
+#: ../../include/functions_reporting_html.php:4214
msgid "% Ok"
msgstr "% OK"
-#: ../../include/functions_reporting_html.php:4263
+#: ../../include/functions_reporting_html.php:4291
msgid "Checks Uknown"
msgstr "Vérifications inconnues"
-#: ../../include/functions_reporting_html.php:4302
-#: ../../include/functions_reporting_html.php:4449
-#: ../../include/functions_reporting_html.php:4776
-#: ../../include/functions_reporting_html.php:4782
+#: ../../include/functions_reporting_html.php:4330
+#: ../../include/functions_reporting_html.php:4477
+#: ../../include/functions_reporting_html.php:4804
+#: ../../include/functions_reporting_html.php:4810
msgid "Primary"
msgstr "Primaire"
-#: ../../include/functions_reporting_html.php:5217
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:12115
+#: ../../include/functions_reporting_html.php:5245
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12124
+#: ../../include/functions_reporting.php:12169
msgid "Alert level"
msgstr "Niveau d'alerte"
-#: ../../include/functions_reporting_html.php:5465
+#: ../../include/functions_reporting_html.php:5493
#, php-format
msgid "Agents in group: %s"
msgstr "Agents du groupe : %s"
-#: ../../include/functions_reporting_html.php:5567
+#: ../../include/functions_reporting_html.php:5595
msgid "Last failure"
msgstr "Dernier échec"
-#: ../../include/functions_reporting_html.php:5657
+#: ../../include/functions_reporting_html.php:5685
msgid "N/A(*)"
msgstr "S/O(*)"
-#: ../../include/functions_reporting_html.php:5905
-#: ../../include/functions_reporting.php:12322
-#: ../../include/functions_groups.php:2650
+#: ../../include/functions_reporting_html.php:5933
+#: ../../include/functions_reporting.php:12395
+#: ../../include/functions_groups.php:2675
msgid "Monitor checks"
msgstr "Vérifications de moniteurs"
-#: ../../include/functions_reporting_html.php:5912
-#: ../../include/functions_reporting.php:12341
-#: ../../include/functions_groups.php:2669
+#: ../../include/functions_reporting_html.php:5940
+#: ../../include/functions_reporting.php:12414
+#: ../../include/functions_groups.php:2694
msgid "Total agents and monitors"
msgstr "Nombre total d'agents et de moniteurs"
-#: ../../include/functions_reporting_html.php:5931
-#: ../../include/functions_reporting_html.php:5936
+#: ../../include/functions_reporting_html.php:5959
+#: ../../include/functions_reporting_html.php:5964
msgid "Node overview"
msgstr "Aperçu des nœuds"
-#: ../../include/functions_reporting_html.php:5956
-#: ../../include/functions_reporting_html.php:5968
+#: ../../include/functions_reporting_html.php:5984
+#: ../../include/functions_reporting_html.php:5996
msgid "Critical events"
msgstr "Événements en état critique"
-#: ../../include/functions_reporting_html.php:5959
-#: ../../include/functions_reporting_html.php:5970
+#: ../../include/functions_reporting_html.php:5987
+#: ../../include/functions_reporting_html.php:5998
msgid "Warning events"
msgstr "Événements en état d'alerte"
-#: ../../include/functions_reporting_html.php:5962
-#: ../../include/functions_reporting_html.php:5972
+#: ../../include/functions_reporting_html.php:5990
+#: ../../include/functions_reporting_html.php:6000
msgid "OK events"
msgstr "Événements en état OK"
-#: ../../include/functions_reporting_html.php:5965
-#: ../../include/functions_reporting_html.php:5974
+#: ../../include/functions_reporting_html.php:5993
+#: ../../include/functions_reporting_html.php:6002
msgid "Unknown events"
msgstr "Événements en état inconnu"
-#: ../../include/functions_reporting_html.php:5990
+#: ../../include/functions_reporting_html.php:6019
+msgid "Event count corresponds to events within the last hour"
+msgstr "Le compte correspond aux événements dans la dérnière heure"
+
+#: ../../include/functions_reporting_html.php:6024
msgid "Important Events by Criticity"
msgstr "Événements importants par sévérité"
-#: ../../include/functions_reporting_html.php:6017
+#: ../../include/functions_reporting_html.php:6051
#, php-format
msgid "Last activity in %s console"
msgstr "Dernière activité dans la console %s"
-#: ../../include/functions_reporting_html.php:6066
-#: ../../include/functions_reporting_html.php:6208
+#: ../../include/functions_reporting_html.php:6100
+#: ../../include/functions_reporting_html.php:6242
msgid "Events info (1hr.)"
msgstr "Information des événements (1h)"
-#: ../../include/functions_reporting_html.php:6365
+#: ../../include/functions_reporting_html.php:6399
msgid "This SLA has been affected by the following scheduled downtimes"
msgstr "Ce SLA a été affecté par les temps d'arrêt planifiés suivants"
-#: ../../include/functions_reporting_html.php:6366
+#: ../../include/functions_reporting_html.php:6400
msgid ""
"If the duration of the scheduled downtime is less than 5 minutes it will not "
"be represented in the graph"
@@ -43863,16 +44220,16 @@ msgstr ""
"Si la durée du temps d'arrêt programmé est inférieure à 5 minutes, il ne sera "
"pas représenté dans le graphique"
-#: ../../include/functions_reporting_html.php:6373
+#: ../../include/functions_reporting_html.php:6407
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396
msgid "Dates"
msgstr "Dates"
-#: ../../include/functions_reporting_html.php:6404
+#: ../../include/functions_reporting_html.php:6438
msgid "This item is affected by a malformed scheduled downtime"
msgstr "Cet élément est affecté par un temps d'arrêt programmé mal formé"
-#: ../../include/functions_reporting_html.php:6404
+#: ../../include/functions_reporting_html.php:6438
msgid "Go to the scheduled downtimes section to solve this"
msgstr ""
"Accédez à la section des temps d'arrêt programmés pour résoudre ce problème"
@@ -43891,7 +44248,7 @@ msgstr "M"
#: ../../include/functions.php:501 ../../include/functions.php:653
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-#: ../../include/rest-api/models/VisualConsole/Item.php:2037
+#: ../../include/rest-api/models/VisualConsole/Item.php:2040
msgid "Y"
msgstr "Y"
@@ -43908,47 +44265,47 @@ msgid "N"
msgstr "N"
#: ../../include/functions.php:1079 ../../include/functions.php:1325
-#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317
-#: ../../include/functions_graph.php:3319 ../../include/functions_graph.php:4834
+#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327
+#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:4844
#: ../../include/functions_incidents.php:34
#: ../../include/functions_incidents.php:75
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547
-#: ../../include/functions_events.php:3210
-#: ../../operation/visual_console/view.php:451
+#: ../../include/functions_events.php:3215
+#: ../../operation/visual_console/view.php:453
msgid "Maintenance"
msgstr "Entretien"
#: ../../include/functions.php:1083 ../../include/functions.php:1326
-#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323
-#: ../../include/functions_graph.php:3325 ../../include/functions_graph.php:4838
+#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333
+#: ../../include/functions_graph.php:3335 ../../include/functions_graph.php:4848
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552
-#: ../../include/functions_events.php:3214
+#: ../../include/functions_events.php:3219
msgid "Informational"
msgstr "Informatif"
#: ../../include/functions.php:1099 ../../include/functions.php:1328
-#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335
-#: ../../include/functions_graph.php:3337 ../../include/functions_graph.php:4854
+#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345
+#: ../../include/functions_graph.php:3347 ../../include/functions_graph.php:4864
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572
msgid "Minor"
msgstr "Mineur"
#: ../../include/functions.php:1103 ../../include/functions.php:1330
-#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347
-#: ../../include/functions_graph.php:3349 ../../include/functions_graph.php:4858
+#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357
+#: ../../include/functions_graph.php:3359 ../../include/functions_graph.php:4868
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577
msgid "Major"
msgstr "Majeure"
-#: ../../include/functions.php:1278 ../../include/functions_events.php:3130
+#: ../../include/functions.php:1278 ../../include/functions_events.php:3135
msgid "Monitor Critical"
msgstr "Moniteur en état critique"
-#: ../../include/functions.php:1279 ../../include/functions_events.php:3134
+#: ../../include/functions.php:1279 ../../include/functions_events.php:3139
msgid "Monitor Warning"
msgstr "Moniteur en état d'alerte"
-#: ../../include/functions.php:1280 ../../include/functions_events.php:3138
+#: ../../include/functions.php:1280 ../../include/functions_events.php:3143
msgid "Monitor Normal"
msgstr "Moniteur en état normal"
@@ -43956,17 +44313,17 @@ msgstr "Moniteur en état normal"
msgid "Monitor Unknown"
msgstr "Moniteur inconnu"
-#: ../../include/functions.php:1285 ../../include/functions_events.php:2914
-#: ../../include/functions_events.php:3146
+#: ../../include/functions.php:1285 ../../include/functions_events.php:2919
+#: ../../include/functions_events.php:3151
msgid "Alert recovered"
msgstr "Alertes récupérées"
-#: ../../include/functions.php:1286 ../../include/functions_events.php:2962
-#: ../../include/functions_events.php:3150
+#: ../../include/functions.php:1286 ../../include/functions_events.php:2967
+#: ../../include/functions_events.php:3155
msgid "Alert ceased"
msgstr "Alerte arrêtée"
-#: ../../include/functions.php:1287 ../../include/functions_events.php:3154
+#: ../../include/functions.php:1287 ../../include/functions_events.php:3159
msgid "Alert manual validation"
msgstr "Validation manuelle de la alerte"
@@ -43974,12 +44331,12 @@ msgstr "Validation manuelle de la alerte"
msgid "Agent created"
msgstr "Agent créé"
-#: ../../include/functions.php:1290 ../../include/functions_events.php:3158
+#: ../../include/functions.php:1290 ../../include/functions_events.php:3163
msgid "Recon host detected"
msgstr "Hôte de reconnaissance détecté"
-#: ../../include/functions.php:1293 ../../include/functions_events.php:2958
-#: ../../include/functions_events.php:3170
+#: ../../include/functions.php:1293 ../../include/functions_events.php:2963
+#: ../../include/functions_events.php:3175
msgid "Configuration change"
msgstr "Modification de la configuration"
@@ -43989,9 +44346,9 @@ msgstr "ALETE DÉCLENCHÉE"
#: ../../include/functions.php:1413 ../../include/functions.php:1450
#: ../../include/functions_modules.php:4263
-#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598
-#: ../../operation/agentes/status_monitor.php:1868
-#: ../../operation/agentes/status_monitor.php:1881
+#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598
+#: ../../operation/agentes/status_monitor.php:1870
+#: ../../operation/agentes/status_monitor.php:1883
msgid "NO DATA"
msgstr "PAS DE DONNÉES"
@@ -44086,7 +44443,7 @@ msgid "2 minutes"
msgstr "2 minutes"
#: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55
-#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181
+#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181
#: ../../operation/gis_maps/render_view.php:155
msgid "5 minutes"
msgstr "5 minutes"
@@ -44095,49 +44452,54 @@ msgstr "5 minutes"
msgid "15 minutes"
msgstr "15 minutes"
-#: ../../include/functions.php:3422 ../../include/ajax/module.php:220
+#: ../../include/functions.php:3422 ../../include/ajax/module.php:243
msgid "30 minutes"
msgstr "30 minutes"
-#: ../../include/functions.php:3949
+#: ../../include/functions.php:3975
msgid "Summatory series"
msgstr "Série récapitulative"
-#: ../../include/functions.php:3953
+#: ../../include/functions.php:3979
msgid "Average series"
msgstr "Série moyenne"
-#: ../../include/functions.php:3981 ../../include/functions.php:4000
-#: ../../include/functions.php:4014 ../../include/functions.php:4036
-#: ../../include/functions.php:4117 ../../include/functions.php:4194
+#: ../../include/functions.php:4007 ../../include/functions.php:4026
+#: ../../include/functions.php:4040 ../../include/functions.php:4062
+#: ../../include/functions.php:4143 ../../include/functions.php:4220
msgid "Unit "
msgstr "Unité"
-#: ../../include/functions.php:4062 ../../include/functions.php:4127
+#: ../../include/functions.php:4102
+#: ../../include/lib/Dashboard/Widgets/top_n.php:280
+msgid "Avg."
+msgstr "Moyenne"
+
+#: ../../include/functions.php:4153
msgid "Min:"
msgstr "Min :"
-#: ../../include/functions.php:4069 ../../include/functions.php:4136
+#: ../../include/functions.php:4162
msgid "Max:"
msgstr "Max :"
-#: ../../include/functions.php:4076 ../../include/functions.php:4145
+#: ../../include/functions.php:4171
msgid "Avg:"
msgstr "Moy :"
-#: ../../include/functions.php:4191 ../../include/functions.php:4199
+#: ../../include/functions.php:4217 ../../include/functions.php:4225
msgid "of module"
msgstr "du module"
-#: ../../include/functions.php:4218
+#: ../../include/functions.php:4244
msgid "Projection"
msgstr "Projection"
-#: ../../include/functions.php:6064
+#: ../../include/functions.php:6094
msgid "Testing Pandora FMS email"
msgstr "Tester l’email Pandora FMS"
-#: ../../include/functions.php:6077
+#: ../../include/functions.php:6107
msgid ""
"This is an email test sent from Pandora FMS. If you can read this, your "
"configuration works."
@@ -44145,7 +44507,7 @@ msgstr ""
"Il s'agit d'un test par e-mail envoyé par Pandora FMS. Si vous pouvez lire "
"ceci, votre configuration fonctionne."
-#: ../../include/functions.php:6311
+#: ../../include/functions.php:6341
#: ../../include/class/ConsoleSupervisor.php:1645
#: ../../include/class/ConsoleSupervisor.php:1669
#: ../../include/class/ConsoleSupervisor.php:1698
@@ -44154,11 +44516,11 @@ msgstr ""
msgid "Not recommended '%s' value in PHP configuration"
msgstr "Valeur '%s' non recommandée dans la configuration PHP"
-#: ../../include/functions.php:6312
+#: ../../include/functions.php:6342
msgid "Recommended value is: -1"
msgstr "La valeur recommandée est : -1"
-#: ../../include/functions.php:6313
+#: ../../include/functions.php:6343
#: ../../include/class/ConsoleSupervisor.php:1704
#: ../../include/class/ConsoleSupervisor.php:1785
msgid ""
@@ -44168,7 +44530,7 @@ msgstr ""
"Veuillez le modifier sur votre fichier de configuration PHP (php.ini) ou "
"communiquez avec votre administrateur."
-#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96
+#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96
#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41
msgid "Documentation"
msgstr "Documentation"
@@ -44303,9 +44665,9 @@ msgstr ""
msgid "Successful delete of alert template."
msgstr "Suppression réussie du modèle d'alerte."
-#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016
-#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363
-#: ../../include/functions_api.php:12443
+#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019
+#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366
+#: ../../include/functions_api.php:12446
#, php-format
msgid "%d agents affected"
msgstr "%d agents concernés"
@@ -44410,168 +44772,168 @@ msgstr "Module de politique SNMP mis à jour correctement"
msgid "Successful deletion"
msgstr "Suppression réussie"
-#: ../../include/functions_api.php:9624
+#: ../../include/functions_api.php:9625
msgid "User created."
msgstr "Utilisateur créé."
-#: ../../include/functions_api.php:9717
+#: ../../include/functions_api.php:9720
msgid "User updated."
msgstr "Utilisateur mis à jour."
-#: ../../include/functions_api.php:9794
+#: ../../include/functions_api.php:9797
msgid "Enabled user."
msgstr "Utilisateur activé"
-#: ../../include/functions_api.php:9802
+#: ../../include/functions_api.php:9805
msgid "Disabled user."
msgstr "Utilisateur désactivé"
-#: ../../include/functions_api.php:10097
+#: ../../include/functions_api.php:10100
#, php-format
msgid "Template have been inserted in %d agents."
msgstr "Le modèle a été inséré dans %d agents."
-#: ../../include/functions_api.php:10273
+#: ../../include/functions_api.php:10276
msgid "XML file was generated successfully in path: "
msgstr "Le fichier XML a été généré correctement dans le chemin :"
-#: ../../include/functions_api.php:10413
+#: ../../include/functions_api.php:10416
#, php-format
msgid "Module has been created in %d agents."
msgstr "Le module a été créé dans %d agents."
-#: ../../include/functions_api.php:10541
+#: ../../include/functions_api.php:10544
#, php-format
msgid "Action has been set for %d agents."
msgstr "Une action a été définie pour %d agents."
-#: ../../include/functions_api.php:11616
+#: ../../include/functions_api.php:11619
msgid "User deleted."
msgstr "Utilisateur supprimé."
-#: ../../include/functions_api.php:11675
+#: ../../include/functions_api.php:11678
msgid "User profile added."
msgstr "Profil d’utilisateur ajouté."
-#: ../../include/functions_api.php:11740
+#: ../../include/functions_api.php:11743
msgid "User profile deleted."
msgstr "Profil d’utilisateur supprimé."
-#: ../../include/functions_api.php:12023
+#: ../../include/functions_api.php:12026
msgid "Module disabled successfully."
msgstr "Module désactivé correctement."
-#: ../../include/functions_api.php:12025
+#: ../../include/functions_api.php:12028
msgid "The module could not be disabled."
msgstr "Erreur de désactivation du module."
-#: ../../include/functions_api.php:12089
+#: ../../include/functions_api.php:12092
msgid "Module enabled successfully."
msgstr "Module activé correctement."
-#: ../../include/functions_api.php:12091
+#: ../../include/functions_api.php:12094
msgid "The module could not be enabled."
msgstr "Erreur d'activation du module."
-#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192
+#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195
msgid "The alert could not be disabled."
msgstr "Erreur de désactivation de l’alerte."
-#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292
+#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295
msgid "The alert could not be enabled."
msgstr "L'alerte n'a pas pu être activée."
-#: ../../include/functions_api.php:13586
+#: ../../include/functions_api.php:13597
msgid "Enabled agent."
msgstr "Agent activé"
-#: ../../include/functions_api.php:13594
+#: ../../include/functions_api.php:13605
msgid "Disabled agent."
msgstr "Agent désactivé"
-#: ../../include/functions_api.php:14573
+#: ../../include/functions_api.php:14584
msgid "Metaconsole and the licenses of all nodes were updated."
msgstr "La Metaconsole et les licences de tous les nœuds ont été mis à jour."
-#: ../../include/functions_api.php:14575
+#: ../../include/functions_api.php:14586
#, php-format
msgid "Metaconsole license updated but %d of %d node failed to sync."
msgstr ""
"La licence Metaconsole a été mise à jour mais %d sur %d nœud n'a pas réussi à "
"se synchroniser."
-#: ../../include/functions_api.php:14578
+#: ../../include/functions_api.php:14589
msgid "This function is for metaconsole only."
msgstr "Cette fonction est réservée à la Métaconsole."
-#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039
+#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050
msgid "Successfully deleted."
msgstr "Supprimé correctement"
-#: ../../include/functions_api.php:14998
+#: ../../include/functions_api.php:15009
msgid "The user cannot access the cluster."
msgstr "L'utilisateur ne peut pas accéder au grappe."
-#: ../../include/functions_api.php:15884
+#: ../../include/functions_api.php:15895
msgid "Event filter successfully created."
msgstr "Filtre d'événement créé correctement."
-#: ../../include/functions_api.php:16117
+#: ../../include/functions_api.php:16128
msgid "Event filter successfully updated."
msgstr "Filtre d'événement mis à jour correctement."
-#: ../../include/functions_api.php:16158
+#: ../../include/functions_api.php:16169
msgid "Event filter successfully deleted."
msgstr "Filtre d'événement supprimé correctement."
-#: ../../include/functions_api.php:16474
+#: ../../include/functions_api.php:16485
msgid "Validated traps."
msgstr "Traps validés."
-#: ../../include/functions_api.php:16501
+#: ../../include/functions_api.php:16512
msgid "Deleted traps."
msgstr "Traps supprimés."
-#: ../../include/functions_api.php:16694
+#: ../../include/functions_api.php:16705
#, php-format
msgid "Successfully updated module/alert count in id agent %d."
msgstr ""
"Module/nombre d'alertes mis à jour correctement dans l'agent d'identification "
"%d."
-#: ../../include/functions_api.php:16696
+#: ../../include/functions_api.php:16707
msgid "Successfully updated module/alert count in all agents"
msgstr "Nombre de modules/alertes mis à jour correctement dans tous les agents"
-#: ../../include/functions_api.php:17170
+#: ../../include/functions_api.php:17181
#, php-format
msgid "Successfully added to delete pending id agent %d to id policy %d."
msgstr ""
"Ajouté correctement pour supprimer l'agent d'ID en attente %d dans la "
"stratégie d'ID %d."
-#: ../../include/functions_api.php:17359
+#: ../../include/functions_api.php:17370
msgid "Error enable/disable discovery task. Id_user cannot be left blank."
msgstr ""
"Erreur d'activation/désactivation de la tâche de découverte. Id_user ne peut "
"pas être laissé vide."
-#: ../../include/functions_api.php:17367
+#: ../../include/functions_api.php:17378
msgid ""
"Error enable/disable discovery task. Enable/disable value cannot be left blank."
msgstr ""
"Erreur d'activation/désactivation de la tâche de découverte. La valeur "
"d'activation/désactivation ne peut pas être laissée vide."
-#: ../../include/functions_api.php:17392
+#: ../../include/functions_api.php:17403
msgid "Error in discovery task enabling/disabling."
msgstr "Erreur lors de l'activation/désactivation de la tâche de découverte."
-#: ../../include/functions_api.php:17400
+#: ../../include/functions_api.php:17411
msgid "Enabled discovery task."
msgstr "Tâche de découverte activée."
-#: ../../include/functions_api.php:17408
+#: ../../include/functions_api.php:17419
msgid "Disabled discovery task."
msgstr "Tâche de découverte désactivée."
@@ -44705,25 +45067,39 @@ msgstr "Le code est valide, mais il y a une erreur de sauvegarde des données"
msgid "3 minutes"
msgstr "3 minutes"
-#: ../../include/ajax/heatmap.ajax.php:81
+#: ../../include/ajax/heatmap.ajax.php:100
#: ../../include/lib/Dashboard/Widgets/heatmap.php:253
msgid "Group modules by tag"
msgstr "Regrouper les modules par balise"
-#: ../../include/ajax/heatmap.ajax.php:82
+#: ../../include/ajax/heatmap.ajax.php:101
#: ../../include/lib/Dashboard/Widgets/heatmap.php:254
msgid "Group modules by module group"
msgstr "Regrouper les modules par groupe de modules"
-#: ../../include/ajax/heatmap.ajax.php:83
+#: ../../include/ajax/heatmap.ajax.php:102
#: ../../include/lib/Dashboard/Widgets/heatmap.php:255
msgid "Group modules by agents"
msgstr "Regrouper les modules par agents"
-#: ../../include/ajax/heatmap.ajax.php:100
+#: ../../include/ajax/heatmap.ajax.php:123
msgid "Show groups"
msgstr "Afficher les groupes"
+#: ../../include/ajax/heatmap.ajax.php:356
+msgid "Date of last data"
+msgstr "Date des dernières données"
+
+#: ../../include/ajax/heatmap.ajax.php:491
+#: ../../operation/agentes/estado_generalagente.php:406
+msgid "Out of bounds"
+msgstr "Hors limites"
+
+#: ../../include/ajax/heatmap.ajax.php:494
+#: ../../operation/agentes/estado_generalagente.php:441
+msgid "Next contact"
+msgstr "Contact suivant"
+
#: ../../include/ajax/alert_list.ajax.php:289
#: ../../include/ajax/alert_list.ajax.php:314
msgid "Force execution"
@@ -44735,13 +45111,17 @@ msgid "F."
msgstr "F."
#: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:372
-#: ../../operation/agentes/alerts_status.php:373
-#: ../../operation/agentes/alerts_status.php:414
-#: ../../operation/agentes/alerts_status.php:415
+#: ../../operation/agentes/alerts_status.php:374
+#: ../../operation/agentes/alerts_status.php:375
+#: ../../operation/agentes/alerts_status.php:416
+#: ../../operation/agentes/alerts_status.php:417
msgid "No alerts found"
msgstr "Aucune alerte retrouvée"
+#: ../../include/ajax/alert_list.ajax.php:540
+msgid "If a value of 0 is assigned, the Threshold of the action will be used."
+msgstr "Si une valeur de 0 est attribuée, le seuil de l’action sera utilisé."
+
#: ../../include/ajax/alert_list.ajax.php:633
msgid "Insufficient permissions to validate alerts"
msgstr "Autorisations insuffisantes pour valider les alertes"
@@ -44772,32 +45152,32 @@ msgstr "Échec de la création de la politique"
msgid "Policy created succesfully"
msgstr "Politique créée correctement"
-#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215
+#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215
msgid "3 months"
msgstr "3 mois"
-#: ../../include/ajax/module.php:231
+#: ../../include/ajax/module.php:254
msgid "2 years"
msgstr "2 ans"
-#: ../../include/ajax/module.php:232
+#: ../../include/ajax/module.php:255
msgid "3 years"
msgstr "3 ans"
-#: ../../include/ajax/module.php:243 ../../operation/agentes/datos_agente.php:194
+#: ../../include/ajax/module.php:266 ../../operation/agentes/datos_agente.php:196
msgid "Choose a time from now"
msgstr "Choisir un temps à partir de maintenant"
-#: ../../include/ajax/module.php:269 ../../operation/agentes/datos_agente.php:197
+#: ../../include/ajax/module.php:292 ../../operation/agentes/datos_agente.php:199
msgid "Specify time range"
msgstr "Spécifier l'intervalle de temps"
-#: ../../include/ajax/module.php:327
+#: ../../include/ajax/module.php:350
msgid "Exact phrase"
msgstr "Phrase exacte"
-#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485
-#: ../../operation/agentes/interface_traffic_graph_win.php:310
+#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501
+#: ../../operation/agentes/interface_traffic_graph_win.php:319
msgid ""
"In Pandora FMS, data is stored compressed. The data visualization in database, "
"charts or CSV exported data won't match, because is interpreted at runtime. "
@@ -44808,15 +45188,11 @@ msgstr ""
"ne correspondront pas, car elles sont interprétées au moment de l'exécution. "
"Veuillez consulter le chapitre « Pandora FMS Ingénierie » de la documentation."
-#: ../../include/ajax/module.php:586
-msgid "No available data to showaaaa"
-msgstr "Aucune donnée disponible à montrer"
-
-#: ../../include/ajax/module.php:1000
+#: ../../include/ajax/module.php:1023
msgid "T"
msgstr "T"
-#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650
+#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650
#: ../../include/functions_reports.php:654
#: ../../include/functions_reports.php:659
#: ../../include/functions_reports.php:665
@@ -44827,41 +45203,41 @@ msgstr "T"
#: ../../include/functions_reports.php:693
#: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123
#: ../../include/functions_groups.php:187 ../../operation/search_results.php:120
-#: ../../operation/agentes/ver_agente.php:1578
-#: ../../operation/agentes/ver_agente.php:1881
+#: ../../operation/agentes/ver_agente.php:1574
+#: ../../operation/agentes/ver_agente.php:1877
msgid "Graphs"
msgstr "Graphiques"
-#: ../../include/ajax/module.php:1155
+#: ../../include/ajax/module.php:1182
msgid "Time elapsed since last status change: "
msgstr "Temps écoulé depuis le dernier changement d’état : "
-#: ../../include/ajax/module.php:1281
-#: ../../operation/agentes/estado_generalagente.php:411
+#: ../../include/ajax/module.php:1309
+#: ../../operation/agentes/estado_generalagente.php:382
msgid "Force checks"
msgstr "Forcer les vérifications"
-#: ../../include/ajax/module.php:1360
+#: ../../include/ajax/module.php:1388
msgid "Any monitors aren't with this filter."
msgstr "Pas tous les moniteurs possèdent ce filtre"
-#: ../../include/ajax/module.php:1360
+#: ../../include/ajax/module.php:1388
msgid "This agent doesn't have any active monitors."
msgstr "Cet agent n'a pas de moniteurs actifs."
-#: ../../include/ajax/module.php:2138
+#: ../../include/ajax/module.php:2167
msgid "Load"
msgstr "Charger"
-#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582
+#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582
msgid "Update/delete filter"
msgstr "Mettre à jour/supprimer le filtre"
-#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672
+#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672
msgid "Save current filter"
msgstr "Sauvegarder le filtre actuel"
-#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687
+#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687
#: ../../include/ajax/custom_fields.php:702
msgid "Delete filter"
msgstr "Supprimer le filtre"
@@ -44944,107 +45320,107 @@ msgstr "Erreur de suppression du filtre."
msgid "Console successfully deleted"
msgstr "Console supprimée correctement"
-#: ../../include/ajax/events.php:98
+#: ../../include/ajax/events.php:99
msgid "Failed to retrieve comments"
msgstr "Échec de la récupération des commentaires"
-#: ../../include/ajax/events.php:897
+#: ../../include/ajax/events.php:898
msgid "Save/Update filters"
msgstr "Sauvegarder/Mettre à jour les filtres"
-#: ../../include/ajax/events.php:1287
+#: ../../include/ajax/events.php:1288
msgid "unauthorized"
msgstr "non autorisée"
-#: ../../include/ajax/events.php:1393
+#: ../../include/ajax/events.php:1394
msgid "Error executing response"
msgstr "Erreur lors de l'exécution de la réponse"
-#: ../../include/ajax/events.php:1746
+#: ../../include/ajax/events.php:1747
msgid "Related"
msgstr "Associé"
-#: ../../include/ajax/events.php:1758
+#: ../../include/ajax/events.php:1759
msgid "Agent fields"
msgstr "Champs d'agent"
-#: ../../include/ajax/events.php:1896
+#: ../../include/ajax/events.php:1897
msgid "Error adding comment"
msgstr "Erreur d'ajout du commentaire"
-#: ../../include/ajax/events.php:1903
+#: ../../include/ajax/events.php:1904
msgid "Comment added successfully"
msgstr "Commentaire ajouté correctement"
-#: ../../include/ajax/events.php:1910
+#: ../../include/ajax/events.php:1911
msgid "Error changing event status"
msgstr "Erreur de modification de l'état de l'événement"
-#: ../../include/ajax/events.php:1917
+#: ../../include/ajax/events.php:1918
msgid "Event status changed successfully"
msgstr "État de l'événement modifié correctement"
-#: ../../include/ajax/events.php:1924
+#: ../../include/ajax/events.php:1925
msgid "Error changing event owner"
msgstr "Erreur de modification du propriétaire de l'événement"
-#: ../../include/ajax/events.php:1931
+#: ../../include/ajax/events.php:1932
msgid "Event owner changed successfully"
msgstr "Propriétaire de l'événement modifié correctement"
-#: ../../include/ajax/events.php:1938
+#: ../../include/ajax/events.php:1939
msgid "Error deleting event"
msgstr "Erreur de suppression de l'événement"
-#: ../../include/ajax/events.php:2073
+#: ../../include/ajax/events.php:2074
msgid "Show all Events 24h"
msgstr "Afficher tous les événements des dernières 24h"
-#: ../../include/ajax/events.php:2170
+#: ../../include/ajax/events.php:2171
msgid "These commands will apply to all selected events"
msgstr "Ces commandes s'appliqueront à tous les événements sélectionnés"
-#: ../../include/ajax/events.php:2232
+#: ../../include/ajax/events.php:2233
msgid "Total number of events in this node reached"
msgstr "Nombre total d’événements dans ce nœud atteint"
-#: ../../include/ajax/events.php:2266
+#: ../../include/ajax/events.php:2267
msgid "Total Events per node"
msgstr "Nombre total d’événements par nœud"
-#: ../../include/ajax/events.php:2331
+#: ../../include/ajax/events.php:2332 ../../operation/events/sound_events.php:208
msgid "Console configuration"
msgstr "Configuration de la console"
-#: ../../include/ajax/events.php:2338
+#: ../../include/ajax/events.php:2339 ../../operation/events/sound_events.php:215
msgid "Set condition"
msgstr "Définir la condition"
-#: ../../include/ajax/events.php:2345 ../../operation/events/sound_events.php:192
+#: ../../include/ajax/events.php:2346 ../../operation/events/sound_events.php:222
msgid "All new events"
msgstr "Tous les nouveaux événements"
-#: ../../include/ajax/events.php:2382
+#: ../../include/ajax/events.php:2383 ../../operation/events/sound_events.php:259
msgid "Sound duration"
msgstr "Durée du son"
-#: ../../include/ajax/events.php:2418
+#: ../../include/ajax/events.php:2419 ../../operation/events/sound_events.php:295
msgid "Sound melody"
msgstr "Mélodie sonore"
-#: ../../include/ajax/events.php:2432
+#: ../../include/ajax/events.php:2433 ../../operation/events/sound_events.php:309
msgid "Test sound"
msgstr "Tester mélodie"
-#: ../../include/ajax/events.php:2456
+#: ../../include/ajax/events.php:2457 ../../operation/events/sound_events.php:333
msgid "Discovered alerts"
msgstr "Alertes découvertes"
-#: ../../include/ajax/events.php:2463
+#: ../../include/ajax/events.php:2464 ../../operation/events/sound_events.php:340
msgid "No alerts discovered"
msgstr "Aucune alerte découverte"
-#: ../../include/ajax/events.php:2468
+#: ../../include/ajax/events.php:2469 ../../operation/events/sound_events.php:345
msgid "Congrats! thereâs nothing to show"
msgstr "Félicitations! il n’y a rien à montrer"
@@ -45066,28 +45442,28 @@ msgstr "Aucun moniteur"
#: ../../include/functions_agents.php:3030
#: ../../include/functions_agents.php:3091
#: ../../include/functions_agents.php:3158
-#: ../../include/functions_reporting.php:13111
+#: ../../include/functions_reporting.php:13184
msgid "At least one module in CRITICAL status"
msgstr "Au moins un module en état CRITIQUE"
#: ../../include/functions_agents.php:3036
#: ../../include/functions_agents.php:3104
#: ../../include/functions_agents.php:3166
-#: ../../include/functions_reporting.php:13118
+#: ../../include/functions_reporting.php:13191
msgid "At least one module in WARNING status"
msgstr "Au moins un module en état d'ALERTE"
#: ../../include/functions_agents.php:3042
#: ../../include/functions_agents.php:3117
#: ../../include/functions_agents.php:3174
-#: ../../include/functions_reporting.php:13125
+#: ../../include/functions_reporting.php:13198
msgid "At least one module is in UKNOWN status"
msgstr "Au moins un module en état INCONNU"
#: ../../include/functions_agents.php:3048
#: ../../include/functions_agents.php:3130
#: ../../include/functions_agents.php:3182
-#: ../../include/functions_reporting.php:13132
+#: ../../include/functions_reporting.php:13205
msgid "All Monitors OK"
msgstr "Tous les moniteurs OK"
@@ -45099,12 +45475,12 @@ msgstr "Alerte déclenchée dans l’agent"
msgid "Dialog response time"
msgstr "Temps de réponse du dialogue"
-#: ../../include/functions_inventory.php:115
-#: ../../include/functions_inventory.php:1051
+#: ../../include/functions_inventory.php:116
+#: ../../include/functions_inventory.php:1161
msgid "No changes found"
msgstr "Aucun changement trouvé"
-#: ../../include/functions_inventory.php:214
+#: ../../include/functions_inventory.php:215
msgid "Get CSV file"
msgstr "Obtenir fichier CSV"
@@ -45219,7 +45595,7 @@ msgstr ""
msgid "Could not changes password on remote pandora"
msgstr "Erreur de modification du mot de passe sur Pandora FMS à distance"
-#: ../../include/auth/mysql.php:858
+#: ../../include/auth/mysql.php:886
msgid "Your installation of PHP does not support LDAP"
msgstr "Votre installation de PHP ne prend pas en charge LDAP"
@@ -45239,17 +45615,17 @@ msgstr "Utilisateur, groupe ou profil non spécifié"
msgid "User, group or profile status not specified"
msgstr "Utilisateur, groupe ou état du profil non spécifié"
-#: ../../include/functions_graph.php:2607
+#: ../../include/functions_graph.php:2617
msgid "Not fired alerts"
msgstr "Aucune alerte déclenchée"
-#: ../../include/functions_graph.php:3235 ../../include/functions_graph.php:5490
-#: ../../include/functions_ui.php:4233 ../../include/functions_events.php:108
-#: ../../include/functions_events.php:2946 ../../operation/events/events.php:698
+#: ../../include/functions_graph.php:3245 ../../include/functions_graph.php:5500
+#: ../../include/functions_ui.php:4307 ../../include/functions_events.php:108
+#: ../../include/functions_events.php:2951 ../../operation/events/events.php:703
msgid "SYSTEM"
msgstr "SYSTÈME"
-#: ../../include/functions_graph.php:5237
+#: ../../include/functions_graph.php:5247
msgid "Main node"
msgstr "Nœud principal"
@@ -45270,240 +45646,264 @@ msgstr "Cliquez ici pour voir ce module"
msgid "Module information"
msgstr "Informations sur le module"
-#: ../../include/functions_treeview.php:380
+#: ../../include/functions_treeview.php:329
+msgid "Go to module edition"
+msgstr "Accéder à l'édition de modules"
+
+#: ../../include/functions_treeview.php:384
msgid "There was a problem loading alerts"
msgstr "Erreur de chargement des alertes"
-#: ../../include/functions_treeview.php:467
+#: ../../include/functions_treeview.php:471
msgid "Go to alerts edition"
msgstr "Accéder à l'édition d'alertes"
-#: ../../include/functions_treeview.php:559
+#: ../../include/functions_treeview.php:563
#: ../../operation/agentes/agent_fields.php:24
#: ../../operation/agentes/custom_fields.php:24
#: ../../operation/agentes/estado_generalagente.php:62
msgid "There was a problem loading agent"
msgstr "Erreur de chargement de l'agent"
-#: ../../include/functions_treeview.php:611
+#: ../../include/functions_treeview.php:615
msgid "Click here for view this agent"
msgstr "Cliquez ici pour voir cet agent"
-#: ../../include/functions_treeview.php:633
-#: ../../operation/agentes/estado_generalagente.php:588
+#: ../../include/functions_treeview.php:637
+#: ../../operation/agentes/estado_generalagente.php:557
msgid "Other IP addresses"
msgstr "Autres adresses IP"
-#: ../../include/functions_treeview.php:676
+#: ../../include/functions_treeview.php:680
msgid "Remote contact"
msgstr "Contact à distance"
-#: ../../include/functions_treeview.php:684
+#: ../../include/functions_treeview.php:688
msgid "Next agent contact"
msgstr "Suivant contact avec l'agent"
-#: ../../include/functions_treeview.php:697
+#: ../../include/functions_treeview.php:701
msgid "Agent information"
msgstr "Informations sur l’agent"
-#: ../../include/functions_treeview.php:744
+#: ../../include/functions_treeview.php:748
msgid "Agent access rate (24h)"
msgstr "Accessibilité de l'agent (24h)"
-#: ../../include/functions_treeview.php:800
+#: ../../include/functions_treeview.php:804
#: ../../operation/agentes/interface_view.functions.php:722
-#: ../../operation/agentes/pandora_networkmap.view.php:1303
-#: ../../operation/agentes/estado_generalagente.php:826
+#: ../../operation/agentes/pandora_networkmap.view.php:1304
+#: ../../operation/agentes/estado_generalagente.php:784
msgid "Interface traffic"
msgstr "Trafic d'interface"
-#: ../../include/functions_treeview.php:823
+#: ../../include/functions_treeview.php:827
msgid "Interface information"
msgstr "Informations d'interface"
-#: ../../include/functions_treeview.php:863
-#: ../../operation/agentes/estado_generalagente.php:549
+#: ../../include/functions_treeview.php:867
+#: ../../operation/agentes/estado_generalagente.php:524
msgid "Position (Long, Lat)"
msgstr "Position (Long, Lat)"
-#: ../../include/functions_treeview.php:872
-#: ../../operation/agentes/ver_agente.php:1552
-#: ../../operation/agentes/ver_agente.php:1889
-#: ../../operation/agentes/estado_generalagente.php:575
+#: ../../include/functions_treeview.php:876
+#: ../../operation/agentes/ver_agente.php:1548
+#: ../../operation/agentes/ver_agente.php:1885
+#: ../../operation/agentes/estado_generalagente.php:544
msgid "Url address"
msgstr "Adresse URL"
-#: ../../include/functions_treeview.php:886
-#: ../../operation/agentes/estado_generalagente.php:600
+#: ../../include/functions_treeview.php:890
+#: ../../operation/agentes/estado_generalagente.php:569
msgid "Timezone Offset"
msgstr "Fuseau horaire désactivé"
-#: ../../include/functions_treeview.php:917
+#: ../../include/functions_treeview.php:921
msgid "Advanced information"
msgstr "Informations avancées"
-#: ../../include/functions_menu.php:561
+#: ../../include/functions_treeview.php:940
+msgid "Go to cluster edition"
+msgstr "Accéder à l’édition cluster"
+
+#: ../../include/functions_treeview.php:949
+msgid "Go to module creation"
+msgstr "Accéder à la création des modules"
+
+#: ../../include/functions_treeview.php:958
+msgid "Go to agent edition"
+msgstr "Accéder à l'édition de l'agent"
+
+#: ../../include/functions_menu.php:563
msgid "Configure user"
msgstr "Configurer l'utilisateur"
-#: ../../include/functions_menu.php:562
+#: ../../include/functions_menu.php:564
msgid "Configure profile"
msgstr "Configurer le profil"
-#: ../../include/functions_menu.php:564
+#: ../../include/functions_menu.php:566
msgid "Module templates management"
msgstr "Gestion des modèles de module"
-#: ../../include/functions_menu.php:565
+#: ../../include/functions_menu.php:567
msgid "Inventory modules management"
msgstr "Gestion des modules d'inventaire"
-#: ../../include/functions_menu.php:572
+#: ../../include/functions_menu.php:574
msgid "Builder visual console"
msgstr "Outil de conception de la console visuelle"
-#: ../../include/functions_menu.php:574
+#: ../../include/functions_menu.php:576
msgid "View reporting"
msgstr "Afficher le rapport"
-#: ../../include/functions_menu.php:575
+#: ../../include/functions_menu.php:577
msgid "Graph viewer"
msgstr "Visualiseur de graphique"
-#: ../../include/functions_menu.php:577
+#: ../../include/functions_menu.php:579
msgid "Manage custom graphs"
msgstr "Gérer les graphiques personnalisés"
-#: ../../include/functions_menu.php:578
+#: ../../include/functions_menu.php:580
msgid "View graph containers"
msgstr "Afficher conteneurs de graphiques"
-#: ../../include/functions_menu.php:579
+#: ../../include/functions_menu.php:581
msgid "Manage graph containers"
msgstr "Gérer conteneurs de graphiques"
-#: ../../include/functions_menu.php:580
+#: ../../include/functions_menu.php:582
msgid "View graph templates"
msgstr "Afficher modèles de graphiques"
-#: ../../include/functions_menu.php:581
+#: ../../include/functions_menu.php:583
msgid "Manage graph templates"
msgstr "Gérer les modèles de graphiques"
-#: ../../include/functions_menu.php:582
+#: ../../include/functions_menu.php:584
msgid "Graph template items"
msgstr "Éléments du modèle de graphiques"
-#: ../../include/functions_menu.php:583
+#: ../../include/functions_menu.php:585
msgid "Graph template wizard"
msgstr "Assistant de modèles de graphiques"
-#: ../../include/functions_menu.php:586
+#: ../../include/functions_menu.php:588
+msgid "New custom reports"
+msgstr "Nouveaux rapports personnalisés"
+
+#: ../../include/functions_menu.php:589
msgid "Edit custom reports"
msgstr "Modifier des rapports personnalisés"
-#: ../../include/functions_menu.php:588
+#: ../../include/functions_menu.php:590
+msgid "Remove custom reports"
+msgstr "Effacer les rapports personnalisés globales"
+
+#: ../../include/functions_menu.php:592
msgid "Edit item"
msgstr "Modifier élément"
-#: ../../include/functions_menu.php:590
+#: ../../include/functions_menu.php:594
msgid "Wizard sla"
msgstr "SLA de l’assistant"
-#: ../../include/functions_menu.php:591
+#: ../../include/functions_menu.php:595
msgid "Global custom reports"
msgstr "Rapports personnalisés globales"
-#: ../../include/functions_menu.php:592
+#: ../../include/functions_menu.php:596
msgid "Avanced options"
msgstr "Options avancées"
-#: ../../include/functions_menu.php:595
+#: ../../include/functions_menu.php:599
msgid "Manage GIS Maps"
msgstr "Gérer cartes GIS"
-#: ../../include/functions_menu.php:598
+#: ../../include/functions_menu.php:602
msgid "Manage messages"
msgstr "Gérer les messages"
-#: ../../include/functions_menu.php:600
+#: ../../include/functions_menu.php:604
msgid "Manage module groups"
msgstr "Gérer les groupes de modules"
-#: ../../include/functions_menu.php:601
+#: ../../include/functions_menu.php:605
msgid "Manage custom field"
msgstr "Gérer champ personnalisé"
-#: ../../include/functions_menu.php:603
+#: ../../include/functions_menu.php:607
msgid "Manage alert actions"
msgstr "Gérer les actions d'alerte"
-#: ../../include/functions_menu.php:604
+#: ../../include/functions_menu.php:608
msgid "Manage commands"
msgstr "Gérer les commandes"
-#: ../../include/functions_menu.php:606
+#: ../../include/functions_menu.php:610
msgid "Manage export targets"
msgstr "Gérer les objectifs d'exportation"
-#: ../../include/functions_menu.php:608 ../../operation/menu.php:254
+#: ../../include/functions_menu.php:612 ../../operation/menu.php:254
msgid "SNMP trap generator"
msgstr "Générateur de déroutements SNMP"
-#: ../../include/functions_menu.php:611
+#: ../../include/functions_menu.php:615
msgid "Manage incident"
msgstr "Gérer l'incident"
-#: ../../include/functions_menu.php:613
+#: ../../include/functions_menu.php:617
msgid "Manage groups"
msgstr "Gérer les groupes"
-#: ../../include/functions_menu.php:673
+#: ../../include/functions_menu.php:677
msgid "Administration"
msgstr "Administration"
-#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303
+#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303
msgid "Information"
msgstr "Information"
-#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109
+#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114
#: ../../include/class/Diagnostics.class.php:251
msgid "System Info"
msgstr "Information du système"
-#: ../../include/functions_menu.php:939
+#: ../../include/functions_menu.php:944
msgid "PHP System"
msgstr "Système PHP"
-#: ../../include/functions_menu.php:954
+#: ../../include/functions_menu.php:959
msgid "MR version"
msgstr "Version MR"
-#: ../../include/functions_menu.php:962
+#: ../../include/functions_menu.php:967
msgid "Update manager"
msgstr "Gestionnaire de mises à jour"
-#: ../../include/functions_menu.php:974
+#: ../../include/functions_menu.php:979
msgid "System report"
msgstr "Rapport système"
-#: ../../include/functions_menu.php:1006
+#: ../../include/functions_menu.php:1011
#: ../../include/class/Diagnostics.class.php:243
msgid "Database health status"
msgstr "État de santé de la base de données"
-#: ../../include/functions_menu.php:1036
+#: ../../include/functions_menu.php:1041
#: ../../include/class/Diagnostics.class.php:247
msgid "Database status info"
msgstr "Information sur l'état de la base de données"
-#: ../../include/functions_menu.php:1074
+#: ../../include/functions_menu.php:1079
#: ../../include/class/Diagnostics.class.php:260
#, php-format
msgid "Tables fragmentation in the %s database"
msgstr "Fragmentation des tables dans la base de données %s"
-#: ../../include/functions_menu.php:1168
+#: ../../include/functions_menu.php:1173
msgid "PHP system"
msgstr "Système PHP"
@@ -45623,6 +46023,7 @@ msgstr ""
"Maintenant, déroulez le menu « Gérer les alertes » et cliquez sur « Actions ». "
#: ../../include/help/clippy/module_unknow.php:35
+#: ../../include/functions_clippy.php:321
msgid "You have unknown modules in this agent."
msgstr "Vous avez des modules inconnus dans cet agent."
@@ -46028,8 +46429,8 @@ msgid "Please check if the email configuration is correct."
msgstr "Veuillez vérifier que la configuration du courriel est correcte."
#: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:972
-#: ../../operation/users/user_edit.php:981
+#: ../../operation/users/user_edit.php:969
+#: ../../operation/users/user_edit.php:978
msgid "Profiles/Groups assigned to this user"
msgstr "Profils/Groupes assignés à cet utilisateur"
@@ -46065,111 +46466,111 @@ msgstr ""
"Il est possible que ce mode de visionnement utilise une partie de "
"l'information dont votre utilisateur n'a pas accès."
-#: ../../include/functions_ui.php:985
+#: ../../include/functions_ui.php:1017
msgid "Software"
msgstr "Logiciel"
-#: ../../include/functions_ui.php:1281
+#: ../../include/functions_ui.php:1318
msgid "Force check"
msgstr "Forcer la vérification"
-#: ../../include/functions_ui.php:1525
+#: ../../include/functions_ui.php:1568
msgid "The alert would fire when the value is over "
msgstr ""
"L'alerte sera déclenchée quand la valeur soit supérieure à "
"span>"
-#: ../../include/functions_ui.php:1530
+#: ../../include/functions_ui.php:1573
msgid "The alert would fire when the value is under "
msgstr ""
"L'alerte sera déclenchée quand la valeur soit inférieure à "
"span>"
-#: ../../include/functions_ui.php:1545
+#: ../../include/functions_ui.php:1588
msgid "Unknown option."
msgstr "Option inconnue."
-#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666
+#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686
msgid "the Flexible Monitoring System"
msgstr "Système de surveillance flexible"
-#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312
+#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355
#, php-format
msgid "Total items: %s"
msgstr "Nombre total d'éléments : %s"
-#: ../../include/functions_ui.php:2341
+#: ../../include/functions_ui.php:2384
msgid "First"
msgstr "Premier"
-#: ../../include/functions_ui.php:2797
+#: ../../include/functions_ui.php:2840
msgid "Unknown type"
msgstr "Type inconnu"
-#: ../../include/functions_ui.php:3752
+#: ../../include/functions_ui.php:3800
msgid "No matching records found"
msgstr "Aucun enregistrements correspondants trouvés"
-#: ../../include/functions_ui.php:3753
+#: ../../include/functions_ui.php:3801
msgid "No data available in table"
msgstr "Aucune donnée disponible dans le tableau"
-#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995
+#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067
msgid "Export current page to CSV"
msgstr "Exporter la page actuelle au format CSV"
-#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75
-#: ../../include/functions_events.php:101 ../../operation/events/events.php:689
-#: ../../operation/events/events.php:753
+#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75
+#: ../../include/functions_events.php:101 ../../operation/events/events.php:694
+#: ../../operation/events/events.php:758
msgid "ALERT"
msgstr "ALERTE"
-#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167
-#: ../../operation/events/events.php:613
+#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167
+#: ../../operation/events/events.php:618
msgid "MAINTENANCE"
msgstr "ENTRETIEN"
-#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170
-#: ../../operation/events/events.php:618
+#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170
+#: ../../operation/events/events.php:623
msgid "INFORMATIONAL"
msgstr "INFORMATIF"
-#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176
-#: ../../operation/events/events.php:628
+#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176
+#: ../../operation/events/events.php:633
msgid "MINOR"
msgstr "MINEUR"
-#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173
-#: ../../operation/events/events.php:623
+#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173
+#: ../../operation/events/events.php:628
msgid "MAJOR"
msgstr "MAJEUR"
-#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962
-#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158
-#: ../../include/functions_reporting.php:12166
-#: ../../include/functions_reporting.php:12319
-#: ../../include/functions_reporting.php:12333
-#: ../../include/functions_reporting.php:14672
-#: ../../include/functions_reporting.php:14747
-#: ../../include/functions_groups.php:2647
-#: ../../include/functions_groups.php:2661
-#: ../../include/functions_groups.php:2711
+#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967
+#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174
+#: ../../include/functions_reporting.php:12239
+#: ../../include/functions_reporting.php:12392
+#: ../../include/functions_reporting.php:12406
+#: ../../include/functions_reporting.php:14745
+#: ../../include/functions_reporting.php:14820
+#: ../../include/functions_groups.php:2672
+#: ../../include/functions_groups.php:2686
+#: ../../include/functions_groups.php:2736
msgid "Enterprise version not installed"
msgstr "Version Enterprise non installée"
-#: ../../include/functions_ui.php:5563
+#: ../../include/functions_ui.php:5638
msgid "Type at least two characters to search."
msgstr "Écrivez un minimum de deux caractères pour rechercher"
-#: ../../include/functions_ui.php:6503
+#: ../../include/functions_ui.php:6578
msgid "Unhandled error"
msgstr "Erreur non traitée"
-#: ../../include/functions_ui.php:6504
+#: ../../include/functions_ui.php:6579
msgid "An unhandled error occurs"
msgstr "Une erreur non gérée se produit"
-#: ../../include/functions_ui.php:6775
+#: ../../include/functions_ui.php:6850
#, php-format
msgid ""
"These controls are using the timezone of the system (%s) instead of yours "
@@ -46178,43 +46579,43 @@ msgstr ""
"Ces contrôles utilisent le fuseau horaire du système (%s) au lieu du vôtre "
"(%s). La différence avec votre fuseau horaire en heures est de %s."
-#: ../../include/functions_ui.php:7127
+#: ../../include/functions_ui.php:7199
msgid "Results"
msgstr "Résultats"
-#: ../../include/functions_ui.php:7173
+#: ../../include/functions_ui.php:7245
msgid "Execute query"
msgstr "Exécute la requête"
-#: ../../include/functions_ui.php:7196
+#: ../../include/functions_ui.php:7266
msgid "Show password"
msgstr "Afficher le mot de passe"
-#: ../../include/functions_ui.php:7296
+#: ../../include/functions_ui.php:7366
msgid "WEB server"
msgstr "Serveur web"
-#: ../../include/functions_ui.php:7306
+#: ../../include/functions_ui.php:7376
msgid "Wizard Module"
msgstr "Module assistant"
-#: ../../include/functions_ui.php:7399
+#: ../../include/functions_ui.php:7469
msgid "Select inventory module"
msgstr "Sélectionnez un module d'inventaire"
-#: ../../include/functions_ui.php:7455
+#: ../../include/functions_ui.php:7532
msgid "Use custom fields"
msgstr "utiliser les champs personnalisés."
-#: ../../include/functions_ui.php:7581
+#: ../../include/functions_ui.php:7672
msgid "Field name"
msgstr "Nom du champ"
-#: ../../include/functions_ui.php:7598
+#: ../../include/functions_ui.php:7689
msgid "It's a password"
msgstr "C'est un mot de passe"
-#: ../../include/functions_ui.php:7606
+#: ../../include/functions_ui.php:7697
msgid "Add field"
msgstr "Ajouter un champ"
@@ -46233,21 +46634,21 @@ msgstr "Agent ajouté au layout correctement"
msgid "Modules successfully added to layout"
msgstr "Modules ajoutés au layout correctement"
-#: ../../include/functions_visual_map.php:3108
+#: ../../include/functions_visual_map.php:3111
msgid "Agents successfully added to layout"
msgstr "Agents ajoutés correctement"
-#: ../../include/functions_visual_map.php:3504
+#: ../../include/functions_visual_map.php:3512
msgid "Cannot load the visualmap"
msgstr "Erreur de chargement de la carte visuelle"
-#: ../../include/functions_visual_map.php:4175
-#: ../../include/rest-api/models/VisualConsole/Item.php:2108
+#: ../../include/functions_visual_map.php:4184
+#: ../../include/rest-api/models/VisualConsole/Item.php:2111
msgid "Bars graph"
msgstr "Graphique à barres"
-#: ../../include/functions_visual_map.php:4185
-#: ../../include/rest-api/models/VisualConsole/Item.php:2116
+#: ../../include/functions_visual_map.php:4194
+#: ../../include/rest-api/models/VisualConsole/Item.php:2119
msgid "Percentile bar"
msgstr "Barre de centile"
@@ -46296,7 +46697,7 @@ msgstr "État pas normal"
msgid "No actions defined"
msgstr "Aucune action définie"
-#: ../../include/functions_alerts.php:2665
+#: ../../include/functions_alerts.php:2666
msgid "Alert and command group does not match"
msgstr "Le groupe d'alerte et de commande ne correspond pas"
@@ -46426,24 +46827,24 @@ msgid "Current ranges"
msgstr "Gammes actuelles"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-#: ../../include/rest-api/models/VisualConsole/Item.php:1995
+#: ../../include/rest-api/models/VisualConsole/Item.php:1998
msgid "width"
msgstr "largeur"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-#: ../../include/rest-api/models/VisualConsole/Item.php:2005
+#: ../../include/rest-api/models/VisualConsole/Item.php:2008
msgid "height"
msgstr "hauteur"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-#: ../../include/rest-api/models/VisualConsole/Item.php:2027
+#: ../../include/rest-api/models/VisualConsole/Item.php:2030
msgid "X"
msgstr "X"
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
-#: ../../include/rest-api/models/VisualConsole/Item.php:2064
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954
+#: ../../include/rest-api/models/VisualConsole/Item.php:2067
msgid "Show on top"
msgstr "Afficher en haut"
@@ -46486,11 +46887,15 @@ msgstr "Couleur de la légende"
msgid "Show legend"
msgstr "Afficher la légende"
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715
+msgid "Recursive"
+msgstr "Récursif"
+
#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:721
-#: ../../include/rest-api/models/VisualConsole/View.php:800
+#: ../../include/rest-api/models/VisualConsole/View.php:687
+#: ../../include/rest-api/models/VisualConsole/View.php:766
msgid "Failed to connect to node"
msgstr "Échec de la connexion au nœud"
@@ -46513,67 +46918,67 @@ msgstr "Paramètres généraux"
msgid "Specific settings"
msgstr "Paramètres spécifiques"
-#: ../../include/rest-api/models/VisualConsole/View.php:221
+#: ../../include/rest-api/models/VisualConsole/View.php:183
msgid "Item type not valid ["
msgstr "Type d’élément non valide ["
-#: ../../include/rest-api/models/VisualConsole/View.php:226
+#: ../../include/rest-api/models/VisualConsole/View.php:188
msgid "Item type has no getFormInputs method ["
msgstr "Le type d'élément n'a pas de méthode getFormInputs ["
-#: ../../include/rest-api/models/VisualConsole/View.php:738
+#: ../../include/rest-api/models/VisualConsole/View.php:704
msgid "NetworkLink from"
msgstr "NetworkLink de"
-#: ../../include/rest-api/models/VisualConsole/View.php:742
-#: ../../include/rest-api/models/VisualConsole/View.php:821
+#: ../../include/rest-api/models/VisualConsole/View.php:708
+#: ../../include/rest-api/models/VisualConsole/View.php:787
#, php-format
msgid "Interface %s status"
msgstr "État de l'interface %s"
-#: ../../include/rest-api/models/VisualConsole/View.php:747
-#: ../../include/rest-api/models/VisualConsole/View.php:826
+#: ../../include/rest-api/models/VisualConsole/View.php:713
+#: ../../include/rest-api/models/VisualConsole/View.php:792
#: ../../operation/agentes/interface_traffic_graph_win.php:78
msgid "In"
msgstr "Dans"
-#: ../../include/rest-api/models/VisualConsole/View.php:748
-#: ../../include/rest-api/models/VisualConsole/View.php:827
+#: ../../include/rest-api/models/VisualConsole/View.php:714
+#: ../../include/rest-api/models/VisualConsole/View.php:793
#: ../../operation/agentes/interface_traffic_graph_win.php:79
msgid "Out"
msgstr "À l'extérieur de"
-#: ../../include/rest-api/models/VisualConsole/View.php:817
+#: ../../include/rest-api/models/VisualConsole/View.php:783
msgid "NetworkLink to"
msgstr "NetworkLink vers"
-#: ../../include/rest-api/models/VisualConsole/View.php:869
+#: ../../include/rest-api/models/VisualConsole/View.php:835
#, php-format
msgid "Failed to generate charts: %s"
msgstr "Échec de la génération des graphiques : %s"
-#: ../../include/rest-api/models/VisualConsole/Item.php:1965
+#: ../../include/rest-api/models/VisualConsole/Item.php:1968
msgid "Label position"
msgstr "Position de l’étiquette"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2052
+#: ../../include/rest-api/models/VisualConsole/Item.php:2055
msgid "Link enabled"
msgstr "Lien activé"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2094
+#: ../../include/rest-api/models/VisualConsole/Item.php:2097
msgid "Static graph"
msgstr "Graphique statique"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2112
+#: ../../include/rest-api/models/VisualConsole/Item.php:2115
msgid "Event History Graph"
msgstr "Graphique de l'historique des événements"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2120
+#: ../../include/rest-api/models/VisualConsole/Item.php:2123
msgid "Percentile bubble"
msgstr "Bulle de centile"
-#: ../../include/rest-api/models/VisualConsole/Item.php:2590
-#: ../../include/rest-api/models/VisualConsole/Item.php:2591
+#: ../../include/rest-api/models/VisualConsole/Item.php:2593
+#: ../../include/rest-api/models/VisualConsole/Item.php:2594
msgid "Image Vc"
msgstr "Image Vc"
@@ -46615,8 +47020,8 @@ msgstr "Cliquez ici pour obtenir plus d’information…"
#: ../../include/functions_reports.php:651
#: ../../include/functions_reports.php:1102
-#: ../../include/functions_reporting.php:10729
-#: ../../include/functions_reporting.php:10889
+#: ../../include/functions_reporting.php:10738
+#: ../../include/functions_reporting.php:10898
msgid "Simple graph"
msgstr "Graphique simple"
@@ -46737,12 +47142,12 @@ msgid "Inventory changes"
msgstr "Changements d'inventaire"
#: ../../include/functions_reports.php:918
-#: ../../include/functions_reporting.php:6921
+#: ../../include/functions_reporting.php:6930
msgid "Agent configuration"
msgstr "Configuration des agents"
#: ../../include/functions_reports.php:922
-#: ../../include/functions_reporting.php:5230
+#: ../../include/functions_reporting.php:5239
msgid "Group configuration"
msgstr "Configuration du groupe"
@@ -46772,61 +47177,62 @@ msgstr "SQL"
msgid "Graph Sql"
msgstr "Graphe SQL"
-#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001
+#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006
msgid "Please select an item from this list."
msgstr "Veuillez sélectionner un élément dans cette liste."
-#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363
-msgid "Please select..."
-msgstr "Veuillez sélectionner..."
-
-#: ../../include/functions_html.php:1622
+#: ../../include/functions_html.php:1630
msgid "Type to search agents"
msgstr "Tapez pour rechercher des agents"
-#: ../../include/functions_html.php:1636
+#: ../../include/functions_html.php:1644
msgid "Type to search modules"
msgstr "Tapez pour rechercher des modules"
-#: ../../include/functions_html.php:1704
+#: ../../include/functions_html.php:1713
msgid "Only common modules"
msgstr "Seuls les modules communes"
-#: ../../include/functions_html.php:2139
+#: ../../include/functions_html.php:2147
msgid "weeks"
msgstr "semaines"
-#: ../../include/functions_html.php:2321
+#: ../../include/functions_html.php:2336
msgid "Month day"
msgstr "Jour du mois"
-#: ../../include/functions_html.php:2323
+#: ../../include/functions_html.php:2338
msgid "Week day"
msgstr "Jour de la semaine"
-#: ../../include/functions_html.php:4800
+#: ../../include/functions_html.php:4824
msgid "Select a file"
msgstr "Séléctionner un fichier"
-#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020
+#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044
msgid "Type at least two characters to search the module."
msgstr "Introduire au moins deux caractères pour rechercher le module."
-#: ../../include/functions_html.php:5182 ../../index.php:533 ../../index.php:817
-#: ../../index.php:891
+#: ../../include/functions_html.php:5206 ../../index.php:533 ../../index.php:818
+#: ../../index.php:892
#, php-format
msgid "%s cannot verify the origin of the request. Try again, please."
msgstr ""
"%s ne peut pas vérifier l'origine de requête. Veuillez essayer à nouveau."
-#: ../../include/functions_html.php:6104
+#: ../../include/functions_html.php:6128
msgid "Type at least two characters to search the user."
msgstr "Tapez au moins deux caractères pour rechercher l'utilisateur."
-#: ../../include/functions_html.php:6507
+#: ../../include/functions_html.php:6535
msgid "Primary group cannot be secondary too."
msgstr "Le groupe principal ne peut pas non plus être secondaire."
+#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938
+#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942
+msgid "Go to top"
+msgstr "Aller en haut"
+
#: ../../include/functions_register.php:105
#, php-format
msgid "%s configuration wizard"
@@ -46893,7 +47299,7 @@ msgstr "Utiliser le certificat"
msgid "Integria inventory"
msgstr "Inventaire d'Integria IMS"
-#: ../../include/functions_config.php:252 ../../include/functions_config.php:1876
+#: ../../include/functions_config.php:252 ../../include/functions_config.php:1888
msgid "Integria API password"
msgstr "Mot de passe de l'API d'Integria IMS"
@@ -46941,481 +47347,489 @@ msgid "alias_as_name"
msgstr "Alias comme nom"
#: ../../include/functions_config.php:374
+msgid "keep_in_process_status_extra_id"
+msgstr "keep_in_process_status_extra_id"
+
+#: ../../include/functions_config.php:378
msgid "Console log enabled"
msgstr "Journal de la console activé"
-#: ../../include/functions_config.php:378
+#: ../../include/functions_config.php:382
msgid "Audit log enabled"
msgstr "Journal d'audit activé"
-#: ../../include/functions_config.php:382
+#: ../../include/functions_config.php:386
msgid "Module Custom ID read only"
msgstr "ID personnalisé du module en lecture seule"
-#: ../../include/functions_config.php:446
+#: ../../include/functions_config.php:454
msgid "Replication DB host"
msgstr "Hôte de BD de réplication"
-#: ../../include/functions_config.php:450
+#: ../../include/functions_config.php:458
msgid "Replication DB database"
msgstr "Nom de la BD de réplication"
-#: ../../include/functions_config.php:454
+#: ../../include/functions_config.php:462
msgid "Replication DB user"
msgstr "Utilisateur de BD de réplication"
-#: ../../include/functions_config.php:458
+#: ../../include/functions_config.php:466
msgid "Replication DB password"
msgstr "Mot de passe de BD de réplication"
-#: ../../include/functions_config.php:462
+#: ../../include/functions_config.php:470
msgid "Replication DB port"
msgstr "Port de BD de réplication"
-#: ../../include/functions_config.php:466
+#: ../../include/functions_config.php:474
msgid "Metaconsole agent cache"
msgstr "Cache de l'agent de la Métaconsole"
-#: ../../include/functions_config.php:474
+#: ../../include/functions_config.php:482
msgid "Enable Update Manager"
msgstr "Activer le Update Manager"
-#: ../../include/functions_config.php:478
+#: ../../include/functions_config.php:486
msgid "Legacy database HA"
msgstr "Base de données HA héritée"
-#: ../../include/functions_config.php:482
+#: ../../include/functions_config.php:490
msgid "Ipam Ocuppied Manager Critical"
msgstr "Ipam Occupé Manager Critique"
-#: ../../include/functions_config.php:486
+#: ../../include/functions_config.php:494
msgid "Ipam Ocuppied Manager Warning"
msgstr "Avertissement du gestionnaire occupé par Ipam"
-#: ../../include/functions_config.php:583
+#: ../../include/functions_config.php:591
msgid "Automatically timezone visual"
msgstr "Visuel de fuseau horaire automatique"
-#: ../../include/functions_config.php:655
+#: ../../include/functions_config.php:611
+msgid "Recursive search"
+msgstr "Recherche récursive"
+
+#: ../../include/functions_config.php:667
msgid "Ldap search timeout"
msgstr "Délai d’expiration de la recherche Ldap"
-#: ../../include/functions_config.php:671
+#: ../../include/functions_config.php:683
msgid "Secontary start TLS"
msgstr "Démarrage secondaire TLS"
-#: ../../include/functions_config.php:787
+#: ../../include/functions_config.php:799
msgid "Saml profile parameters"
msgstr "Paramètres de profils SAML"
-#: ../../include/functions_config.php:803
+#: ../../include/functions_config.php:815
msgid "2FA all users"
msgstr "2FA tous les utilisateurs"
-#: ../../include/functions_config.php:810
+#: ../../include/functions_config.php:822
msgid "Session timeout forced to 90 minutes"
msgstr "Délai d'expiration de la session forcé à 90 minutes"
-#: ../../include/functions_config.php:830
+#: ../../include/functions_config.php:842
msgid "Event purge"
msgstr "Purge d’événements"
-#: ../../include/functions_config.php:866
+#: ../../include/functions_config.php:878
msgid "Max. days before autodisable deletion"
msgstr "Nombre de jours maximum avant suppression d'éléments désactivés"
-#: ../../include/functions_config.php:870
+#: ../../include/functions_config.php:882
msgid "Item limit for realtime reports)"
msgstr "Limite d'éléments pour rapports en temps réel"
-#: ../../include/functions_config.php:906
+#: ../../include/functions_config.php:918
msgid "Big Operatiopn Step to purge old data"
msgstr "Étape majeure pour nettoyer les données anciennes"
-#: ../../include/functions_config.php:940
+#: ../../include/functions_config.php:952
msgid "Max execution event response"
msgstr "Réponse maximale à l'événement d'exécution"
-#: ../../include/functions_config.php:948
+#: ../../include/functions_config.php:960
msgid "SNMP walk binary path"
msgstr "Chemin binaire de SNMP walk"
-#: ../../include/functions_config.php:952
+#: ../../include/functions_config.php:964
msgid "SNMP walk binary path (fallback for v1)"
msgstr "Chemin binaire SNMP walk (repli pour v1)"
-#: ../../include/functions_config.php:956
+#: ../../include/functions_config.php:968
msgid "Default WMI Binary"
msgstr "Binaire WMI par défaut"
-#: ../../include/functions_config.php:966
+#: ../../include/functions_config.php:978
msgid "SNMP Interface Agent Wizard"
msgstr "Assistant de l’agent d’interface SNMP"
-#: ../../include/functions_config.php:977
+#: ../../include/functions_config.php:989
msgid "Notification Autoclose time"
msgstr "Heure de fermeture automatique des notifications"
-#: ../../include/functions_config.php:997
+#: ../../include/functions_config.php:1009
msgid "Graph color #4"
msgstr "Couleur du graphique #4"
-#: ../../include/functions_config.php:1001
+#: ../../include/functions_config.php:1013
msgid "Graph color #5"
msgstr "Couleur du graphique #5"
-#: ../../include/functions_config.php:1005
+#: ../../include/functions_config.php:1017
msgid "Graph color #6"
msgstr "Couleur du graphique #6"
-#: ../../include/functions_config.php:1009
+#: ../../include/functions_config.php:1021
msgid "Graph color #7"
msgstr "Couleur du graphique #7"
-#: ../../include/functions_config.php:1013
+#: ../../include/functions_config.php:1025
msgid "Graph color #8"
msgstr "Couleur du graphique #8"
-#: ../../include/functions_config.php:1017
+#: ../../include/functions_config.php:1029
msgid "Graph color #9"
msgstr "Couleur du graphique #9"
-#: ../../include/functions_config.php:1021
+#: ../../include/functions_config.php:1033
msgid "Graph color #10"
msgstr "Couleur du graphique #10"
-#: ../../include/functions_config.php:1054
+#: ../../include/functions_config.php:1066
msgid "Show QR code header"
msgstr "Afficher code QR dans l'en-tête"
-#: ../../include/functions_config.php:1082
+#: ../../include/functions_config.php:1094
msgid "Custom logo white background"
msgstr "Logo personnalisé (fond blanc)"
-#: ../../include/functions_config.php:1110
+#: ../../include/functions_config.php:1122
msgid "Custom title header"
msgstr "En-tête de titre personnalisé"
-#: ../../include/functions_config.php:1114
+#: ../../include/functions_config.php:1126
msgid "Custom subtitle header"
msgstr "En-tête de sous-titre personnalisé"
-#: ../../include/functions_config.php:1134
+#: ../../include/functions_config.php:1146
msgid "Login background"
msgstr "Fond d'écran de connexion"
-#: ../../include/functions_config.php:1138
-#: ../../include/functions_config.php:1186
+#: ../../include/functions_config.php:1150
+#: ../../include/functions_config.php:1198
msgid "Custom Docs url"
msgstr "URL de documents personnalisée"
-#: ../../include/functions_config.php:1142
-#: ../../include/functions_config.php:1190
+#: ../../include/functions_config.php:1154
+#: ../../include/functions_config.php:1202
msgid "Custom support url"
msgstr "URL d'assistance personnalisée"
-#: ../../include/functions_config.php:1162
+#: ../../include/functions_config.php:1174
msgid "Custom logo metaconsole (white background)"
msgstr "Logo personnalisé de la Métaconsole (fond blanc d’en-tête)"
-#: ../../include/functions_config.php:1166
+#: ../../include/functions_config.php:1178
msgid "Custom logo login metaconsole"
msgstr "Logo personnalisé pour écran de connexion de la Métaconsole"
-#: ../../include/functions_config.php:1170
+#: ../../include/functions_config.php:1182
msgid "Custom splash login metaconsole"
msgstr "Splash personnalisé pour écran de connexion de la Métaconsole"
-#: ../../include/functions_config.php:1174
+#: ../../include/functions_config.php:1186
msgid "Custom title1 login metaconsole"
msgstr "Titre1 personnalisé pour écran de connexion de la Métaconsole"
-#: ../../include/functions_config.php:1178
+#: ../../include/functions_config.php:1190
msgid "Custom title2 login metaconsole"
msgstr "Titre2 personnalisé pour écran de connexion de la Métaconsole"
-#: ../../include/functions_config.php:1182
+#: ../../include/functions_config.php:1194
msgid "Login background metaconsole"
msgstr "Fond d'écran de connexion à la Métaconsole"
-#: ../../include/functions_config.php:1206
+#: ../../include/functions_config.php:1218
msgid "Default line favourite_view for the Visual Console"
msgstr "Ligne par défaut favourite_view pour la console visuelle"
-#: ../../include/functions_config.php:1210
+#: ../../include/functions_config.php:1222
msgid "Default line menu items for the Visual Console"
msgstr "Éléments prédéterminés de menu de ligne pour console visuelle"
-#: ../../include/functions_config.php:1222
+#: ../../include/functions_config.php:1238
msgid "Default line menu items for the Services"
msgstr "Éléments de menu de ligne par défaut pour les Services"
-#: ../../include/functions_config.php:1254
+#: ../../include/functions_config.php:1270
msgid "Show units in values report"
msgstr "Afficher unités dans les valeurs du rapport"
-#: ../../include/functions_config.php:1262
+#: ../../include/functions_config.php:1278
msgid "Autohidden menu"
msgstr "Menu caché automatiquement"
-#: ../../include/functions_config.php:1266
+#: ../../include/functions_config.php:1282
msgid "Visual animation"
msgstr "Animation visuelle"
-#: ../../include/functions_config.php:1282
+#: ../../include/functions_config.php:1298
msgid "Fixed graph"
msgstr "Graphique fixe"
-#: ../../include/functions_config.php:1290
+#: ../../include/functions_config.php:1306
msgid "Paginate module"
msgstr "Paginer module"
-#: ../../include/functions_config.php:1294
+#: ../../include/functions_config.php:1310
#: ../../include/class/ExternalTools.class.php:323
msgid "Custom graphviz directory"
msgstr "Répertoire personnalisé graphviz"
-#: ../../include/functions_config.php:1302
+#: ../../include/functions_config.php:1318
msgid "Shortened module graph data"
msgstr "Graphique de module de données raccourcies"
-#: ../../include/functions_config.php:1310
+#: ../../include/functions_config.php:1326
msgid "Show empty groups in group view."
msgstr "Afficher les groupes vides dans la vue de groupe."
-#: ../../include/functions_config.php:1318
+#: ../../include/functions_config.php:1334
msgid "Default type of module charts."
msgstr "Type de graphiques de modules par défaut"
-#: ../../include/functions_config.php:1322
+#: ../../include/functions_config.php:1338
msgid "Default Number of elements in Custom Graph."
msgstr "Nombre d'éléments par défaut dans le graphique personnalisé."
-#: ../../include/functions_config.php:1326
+#: ../../include/functions_config.php:1342
msgid "Default type of interface charts."
msgstr "Type de graphiques d'interface par défaut"
-#: ../../include/functions_config.php:1342
+#: ../../include/functions_config.php:1358
msgid "Display lateral menus with left click"
msgstr "Afficher menus latéraux en faisant clic gauche"
-#: ../../include/functions_config.php:1351
+#: ../../include/functions_config.php:1367
msgid "Service item padding size"
msgstr "Espace entre les nœuds de la carte de service"
-#: ../../include/functions_config.php:1356
+#: ../../include/functions_config.php:1372
msgid "Default percentil"
msgstr "Centile par défaut"
-#: ../../include/functions_config.php:1360
+#: ../../include/functions_config.php:1376
msgid "Default full scale (TIP)"
msgstr "Pleine échelle par défaut (TIP)"
-#: ../../include/functions_config.php:1364
+#: ../../include/functions_config.php:1380
msgid "Default soft graphs"
msgstr "Graphiques logiciels par défaut"
-#: ../../include/functions_config.php:1368
+#: ../../include/functions_config.php:1384
msgid "Default zoom graphs"
msgstr "Graphiques de zoom par défaut"
-#: ../../include/functions_config.php:1377
+#: ../../include/functions_config.php:1393
msgid "Default height of the chart image"
msgstr "Hauteur par défaut de l'image du graphique"
-#: ../../include/functions_config.php:1399
+#: ../../include/functions_config.php:1415
msgid "Add the custom post process"
msgstr "Ajouter personnalisation au processus postérieur"
-#: ../../include/functions_config.php:1407
+#: ../../include/functions_config.php:1423
msgid "Delete the custom post process"
msgstr "Supprimer personnalisation du processus postérieur"
-#: ../../include/functions_config.php:1461
+#: ../../include/functions_config.php:1477
msgid "Add custom module unit"
msgstr "Ajouter une unité de module personnalisée"
-#: ../../include/functions_config.php:1467
+#: ../../include/functions_config.php:1483
msgid "Delete custom module unit"
msgstr "Supprimer l'unité de module personnalisé"
-#: ../../include/functions_config.php:1524
+#: ../../include/functions_config.php:1540
msgid "Thousand separator"
msgstr "Séparateur de milliers"
-#: ../../include/functions_config.php:1531
+#: ../../include/functions_config.php:1547
msgid "Name storage path"
msgstr "Chemin de stockage du nom"
-#: ../../include/functions_config.php:1574
+#: ../../include/functions_config.php:1586
msgid "Sflow name dir"
msgstr "Répertoire du nom de Sflow"
-#: ../../include/functions_config.php:1617
+#: ../../include/functions_config.php:1629
msgid "IP ElasticSearch server"
msgstr "IP du serveur ElasticSearch"
-#: ../../include/functions_config.php:1621
+#: ../../include/functions_config.php:1633
msgid "Port ElasticSearch server"
msgstr "Port du serveur ElasticSearch"
-#: ../../include/functions_config.php:1668
+#: ../../include/functions_config.php:1680
msgid "Enable history trap"
msgstr "Activer le déroutement d’historique"
-#: ../../include/functions_config.php:1688
+#: ../../include/functions_config.php:1700
msgid "Enable history database advanced"
msgstr "Activer la base de données d’historique avancée"
-#: ../../include/functions_config.php:1697
+#: ../../include/functions_config.php:1709
msgid "String Days"
msgstr "Jours de chaîne"
-#: ../../include/functions_config.php:1713
+#: ../../include/functions_config.php:1725
msgid "Trap Days"
msgstr "Jours de déroutements"
-#: ../../include/functions_config.php:1721
+#: ../../include/functions_config.php:1733
msgid "Trap history purge"
msgstr "Purge de déroutements d’historique"
-#: ../../include/functions_config.php:1793
+#: ../../include/functions_config.php:1805
msgid "Historical database traps purge"
msgstr "Purge des déroutements de la base de données historique"
-#: ../../include/functions_config.php:1816
+#: ../../include/functions_config.php:1828
msgid "eHorus user login"
msgstr "Connexion utilisateur eHorus"
-#: ../../include/functions_config.php:1828
+#: ../../include/functions_config.php:1840
msgid "eHorus API hostname"
msgstr "Nom d'hôte API eHorus"
-#: ../../include/functions_config.php:1832
+#: ../../include/functions_config.php:1844
msgid "eHorus API port"
msgstr "Port API eHorus"
-#: ../../include/functions_config.php:1836
+#: ../../include/functions_config.php:1848
msgid "eHorus request timeout"
msgstr "Délai de requête eHorus"
-#: ../../include/functions_config.php:1840
+#: ../../include/functions_config.php:1852
msgid "eHorus id custom field"
msgstr "Identifiant du champ personnalisé eHorus"
-#: ../../include/functions_config.php:1846
+#: ../../include/functions_config.php:1858
msgid "Integria user login"
msgstr "Connexion utilisateur Integria"
-#: ../../include/functions_config.php:1854
+#: ../../include/functions_config.php:1866
msgid "Integria user"
msgstr "Utilisateur d’Integria"
-#: ../../include/functions_config.php:1858
+#: ../../include/functions_config.php:1870
msgid "Integria password"
msgstr "Mot de passe d’Integria"
-#: ../../include/functions_config.php:1872
+#: ../../include/functions_config.php:1884
msgid "integria API hostname"
msgstr "nom d'hôte de l'API d’Integria"
-#: ../../include/functions_config.php:1880
+#: ../../include/functions_config.php:1892
msgid "Integria request timeout"
msgstr "Délai d'expiration de la requête d’Integria"
-#: ../../include/functions_config.php:1884
+#: ../../include/functions_config.php:1896
msgid "Integria default group"
msgstr "Groupe par défaut d’Integria"
-#: ../../include/functions_config.php:1888
+#: ../../include/functions_config.php:1900
msgid "Integria custom response default group"
msgstr "Groupe par défaut de réponse personnalisée d’Integria"
-#: ../../include/functions_config.php:1892
+#: ../../include/functions_config.php:1904
msgid "Integria default priority"
msgstr "Priorité par défaut d’Integria"
-#: ../../include/functions_config.php:1896
+#: ../../include/functions_config.php:1908
msgid "Integria custom response default priority"
msgstr "Priorité par défaut de la réponse personnalisée d’Integria"
-#: ../../include/functions_config.php:1900
+#: ../../include/functions_config.php:1912
msgid "Integria default creator"
msgstr "Créateur par défaut d’Integria"
-#: ../../include/functions_config.php:1904
+#: ../../include/functions_config.php:1916
msgid "Integria default owner"
msgstr "Propriétaire par défaut d’Integria"
-#: ../../include/functions_config.php:1908
+#: ../../include/functions_config.php:1920
msgid "Integria custom response default owner"
msgstr "Propriétaire par défaut de la réponse personnalisée d’Integria"
-#: ../../include/functions_config.php:1912
+#: ../../include/functions_config.php:1924
msgid "Integria default ticket type"
msgstr "Type de ticket par défaut d’Integria"
-#: ../../include/functions_config.php:1916
+#: ../../include/functions_config.php:1928
msgid "Integria custom response default ticket type"
msgstr "Type de ticket par défaut de réponse personnalisée d’Integria"
-#: ../../include/functions_config.php:1920
+#: ../../include/functions_config.php:1932
msgid "Integria default ticket status"
msgstr "État du ticket par défaut d'Integria"
-#: ../../include/functions_config.php:1924
+#: ../../include/functions_config.php:1936
msgid "Integria custom response default ticket status"
msgstr "État du ticket par défaut de la réponse personnalisée d’Integria"
-#: ../../include/functions_config.php:1928
+#: ../../include/functions_config.php:1940
msgid "Integria default ticket title"
msgstr "Titre du ticket par défaut d’Integria"
-#: ../../include/functions_config.php:1932
+#: ../../include/functions_config.php:1944
msgid "Integria custom response default ticket title"
msgstr "Titre du ticket par défaut de la réponse personnalisée d’Integria"
-#: ../../include/functions_config.php:1936
+#: ../../include/functions_config.php:1948
msgid "Integria default ticket content"
msgstr "Contenu du ticket par défaut d'Integria"
-#: ../../include/functions_config.php:1940
+#: ../../include/functions_config.php:1952
msgid "Integria custom response default ticket content"
msgstr "Contenu du ticket par défaut de la réponse personnalisée d’Integria"
-#: ../../include/functions_config.php:1946
+#: ../../include/functions_config.php:1958
msgid "Module Library User"
msgstr "Utilisateur de la bibliothèque de modules"
-#: ../../include/functions_config.php:1950
+#: ../../include/functions_config.php:1962
msgid "Module Library Password"
msgstr "Mot de passe de la bibliothèque de modules"
-#: ../../include/functions_config.php:1956
+#: ../../include/functions_config.php:1968
msgid "WebSocket bind address"
msgstr "Adresse de liaison WebSocket"
-#: ../../include/functions_config.php:1960
+#: ../../include/functions_config.php:1972
msgid "WebSocket port"
msgstr "Port WebSocket"
-#: ../../include/functions_config.php:1983
+#: ../../include/functions_config.php:1995
#, php-format
msgid "Update failed. The next values could not be updated:
-%s"
msgstr ""
"La mise à jour a échoué. Les valeurs suivantes n’ont pas pu être mises à "
"jour :
-%s"
-#: ../../include/functions_config.php:2662
-#: ../../operation/agentes/networkmap.dinamic.php:220
+#: ../../include/functions_config.php:2682
+#: ../../operation/agentes/networkmap.dinamic.php:228
msgid "Pandora FMS"
msgstr "Pandora FMS"
-#: ../../include/functions_config.php:2670
+#: ../../include/functions_config.php:2690
msgid "PandoraFMS Metaconsole"
msgstr "Métaconsole PandoraFMS"
-#: ../../include/functions_config.php:2674
+#: ../../include/functions_config.php:2694
msgid "Centralized operation console"
msgstr "Console d'exploitation centralisée"
@@ -47518,7 +47932,7 @@ msgstr "Agréger par %s"
msgid "Resolution %s"
msgstr "Résolution %s"
-#: ../../include/class/Tree.class.php:790
+#: ../../include/class/Tree.class.php:813
msgid "Module alerts"
msgstr "Alertes des modules"
@@ -47675,7 +48089,6 @@ msgid "Sound not exist"
msgstr "Le son n’existe pas"
#: ../../include/class/EventSound.class.php:188
-#: ../../operation/events/sound_events.php:261
msgid "Sounds"
msgstr "Événements sonores"
@@ -47684,8 +48097,8 @@ msgid "Add new sound"
msgstr "Ajouter un nouveau son"
#: ../../include/class/EventSound.class.php:212
-msgid "Accoustic console sound list"
-msgstr "Liste des sons de la console acoustique"
+msgid "Acoustic console sound list"
+msgstr "Liste de sons de la console visuelle"
#: ../../include/class/EventSound.class.php:253
msgid "Name:"
@@ -47728,7 +48141,7 @@ msgid "Something is wrong"
msgstr "Il y a un problème"
#: ../../include/class/HelpFeedBack.class.php:172
-#: ../../include/class/Diagnostics.class.php:1922
+#: ../../include/class/Diagnostics.class.php:1926
msgid "What happened?"
msgstr "Que s'est-il passé?"
@@ -47741,7 +48154,7 @@ msgid "Submit"
msgstr "Envoyer"
#: ../../include/class/HelpFeedBack.class.php:214
-#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364
+#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364
#: ../../general/header.php:366
msgid "Feedback"
msgstr "Commentaires"
@@ -47801,7 +48214,7 @@ msgid "%s Licence Information"
msgstr "Informations sur la licence %s"
#: ../../include/class/Diagnostics.class.php:274
-#: ../../include/class/Diagnostics.class.php:1274
+#: ../../include/class/Diagnostics.class.php:1278
msgid "Status of the attachment folder"
msgstr "État du dossier d’attachements"
@@ -47994,7 +48407,7 @@ msgstr "Système d'exploitation"
#: ../../include/class/Diagnostics.class.php:759
#: ../../include/class/Diagnostics.class.php:777
-#: ../../include/class/NetworkMap.class.php:3066
+#: ../../include/class/NetworkMap.class.php:3072
msgid "Ip"
msgstr "IP"
@@ -48135,39 +48548,39 @@ msgstr "Fragmentation des tables (valeur actuelle)"
msgid "Table fragmentation status"
msgstr "État de fragmentation de la table"
-#: ../../include/class/Diagnostics.class.php:1048
+#: ../../include/class/Diagnostics.class.php:1052
msgid "Size server logs (current value)"
msgstr "Taille des journaux du serveur (valeur actuelle)"
-#: ../../include/class/Diagnostics.class.php:1052
+#: ../../include/class/Diagnostics.class.php:1056
msgid "Status server logs"
msgstr "Journaux du serveur d'état"
-#: ../../include/class/Diagnostics.class.php:1057
+#: ../../include/class/Diagnostics.class.php:1061
msgid "Size error logs (current value)"
msgstr "Journaux d'erreur de taille (valeur actuelle)"
-#: ../../include/class/Diagnostics.class.php:1061
+#: ../../include/class/Diagnostics.class.php:1065
msgid "Status error logs"
msgstr "Journaux d’erreur d’état"
-#: ../../include/class/Diagnostics.class.php:1066
+#: ../../include/class/Diagnostics.class.php:1070
msgid "Size console logs (current value)"
msgstr "Journaux de la taille de la console (valeur actuelle)"
-#: ../../include/class/Diagnostics.class.php:1070
+#: ../../include/class/Diagnostics.class.php:1074
msgid "Status console logs"
msgstr "Journaux de la console d'état"
-#: ../../include/class/Diagnostics.class.php:1105
+#: ../../include/class/Diagnostics.class.php:1109
msgid "License capacity is less than 90 percent"
msgstr "La capacité de la licence est inférieure à 90 %"
-#: ../../include/class/Diagnostics.class.php:1108
+#: ../../include/class/Diagnostics.class.php:1112
msgid "License capacity exceeds 90 percent"
msgstr "La capacité de licence dépasse 90 pour cent"
-#: ../../include/class/Diagnostics.class.php:1116
+#: ../../include/class/Diagnostics.class.php:1120
msgid ""
"The average of modules per agent is more than 40. You can have performance "
"problems"
@@ -48175,48 +48588,48 @@ msgstr ""
"La moyenne des modules par agent est supérieure à 40. Vous pouvez avoir des "
"problèmes de performances"
-#: ../../include/class/Diagnostics.class.php:1121
+#: ../../include/class/Diagnostics.class.php:1125
msgid "The average of modules per agent is less than 40"
msgstr "La moyenne des modules par agent est inférieure à 40"
-#: ../../include/class/Diagnostics.class.php:1159
+#: ../../include/class/Diagnostics.class.php:1163
msgid "The system has no load"
msgstr "Le système n'a pas de charge"
-#: ../../include/class/Diagnostics.class.php:1203
+#: ../../include/class/Diagnostics.class.php:1207
msgid "Network Management System"
msgstr "Système de gestion réseau"
-#: ../../include/class/Diagnostics.class.php:1204
#: ../../include/class/Diagnostics.class.php:1208
+#: ../../include/class/Diagnostics.class.php:1212
msgid "Off"
msgstr "Off"
-#: ../../include/class/Diagnostics.class.php:1215
+#: ../../include/class/Diagnostics.class.php:1219
msgid "Status of agents capacity"
msgstr "État de la capacité des agents"
-#: ../../include/class/Diagnostics.class.php:1220
+#: ../../include/class/Diagnostics.class.php:1224
msgid "Status of average modules per agent"
msgstr "État des modules moyens par agent"
-#: ../../include/class/Diagnostics.class.php:1226
+#: ../../include/class/Diagnostics.class.php:1230
msgid "Interval average of the network modules"
msgstr "Moyenne d'intervalle des modules réseau"
-#: ../../include/class/Diagnostics.class.php:1256
+#: ../../include/class/Diagnostics.class.php:1260
msgid "The attached folder contains more than 700 files."
msgstr "Le dossier joint contient plus de 700 fichiers."
-#: ../../include/class/Diagnostics.class.php:1261
+#: ../../include/class/Diagnostics.class.php:1265
msgid "The attached folder contains less than 700 files."
msgstr "Le dossier joint contient moins de 700 fichiers."
-#: ../../include/class/Diagnostics.class.php:1270
+#: ../../include/class/Diagnostics.class.php:1274
msgid "Total files in the attached folder"
msgstr "Nombre total de fichiers dans le dossier joint"
-#: ../../include/class/Diagnostics.class.php:1305
+#: ../../include/class/Diagnostics.class.php:1309
msgid ""
"The tagente_datos table contains too much data. A historical database is "
"recommended."
@@ -48224,31 +48637,31 @@ msgstr ""
"La table tagent_données contient trop de données. Une base de données "
"historique est recommandée."
-#: ../../include/class/Diagnostics.class.php:1310
+#: ../../include/class/Diagnostics.class.php:1314
msgid "The tagente_datos table contains an acceptable amount of data."
msgstr "La table tagent_données contient une quantité de données acceptable."
-#: ../../include/class/Diagnostics.class.php:1319
+#: ../../include/class/Diagnostics.class.php:1323
msgid "Total data in tagente_datos table"
msgstr "Données totales dans la table tagent_données"
-#: ../../include/class/Diagnostics.class.php:1323
+#: ../../include/class/Diagnostics.class.php:1327
msgid "Tagente_datos table status"
msgstr "État de la table Tagent_données"
-#: ../../include/class/Diagnostics.class.php:1359
+#: ../../include/class/Diagnostics.class.php:1363
msgid "Threads"
msgstr "Threads"
-#: ../../include/class/Diagnostics.class.php:1369
+#: ../../include/class/Diagnostics.class.php:1373
msgid "Total threads"
msgstr "Fils maximales"
-#: ../../include/class/Diagnostics.class.php:1376
+#: ../../include/class/Diagnostics.class.php:1380
msgid "Current pandora_server running threads"
msgstr "Threads en cours d'exécution de pandora_server"
-#: ../../include/class/Diagnostics.class.php:1380
+#: ../../include/class/Diagnostics.class.php:1384
msgid ""
"There's more pandora_server threads than configured, are you running multiple "
"servers simultaneusly?."
@@ -48256,7 +48669,7 @@ msgstr ""
"Il y a plus de threads pandora_server que configurés, exécutez-vous plusieurs "
"serveurs simultanément ?"
-#: ../../include/class/Diagnostics.class.php:1514
+#: ../../include/class/Diagnostics.class.php:1518
msgid ""
"Please check your Pandora Server setup and make sure that the database "
"maintenance daemon is running."
@@ -48265,7 +48678,7 @@ msgstr ""
"assurer que le démon de maintenance de la base de données est en cours "
"d'exécution."
-#: ../../include/class/Diagnostics.class.php:1518
+#: ../../include/class/Diagnostics.class.php:1522
msgid ""
"It' is very important to keep the database up-to-date to get the best "
"performance and results in Pandora"
@@ -48273,45 +48686,45 @@ msgstr ""
"Il est très important de maintenir la base de données à jour pour obtenir les "
"meilleures performances et résultats dans Pandora FMS"
-#: ../../include/class/Diagnostics.class.php:1780
+#: ../../include/class/Diagnostics.class.php:1784
msgid "You have more than 10 MB of logs"
msgstr "Vous avez plus de 10 Mo de journaux"
-#: ../../include/class/Diagnostics.class.php:1783
+#: ../../include/class/Diagnostics.class.php:1787
msgid "You have less than 10 MB of logs"
msgstr "Vous avez moins de 10 Mo de journaux"
-#: ../../include/class/Diagnostics.class.php:1950
+#: ../../include/class/Diagnostics.class.php:1954
msgid "Include installation data"
msgstr "Inclure les données d'installation"
-#: ../../include/class/Diagnostics.class.php:1987
+#: ../../include/class/Diagnostics.class.php:1991
msgid "Hello Feedback-Men"
msgstr "Hello Feedback-Men"
-#: ../../include/class/Diagnostics.class.php:1997
+#: ../../include/class/Diagnostics.class.php:2001
msgid "Hello"
msgstr "Hello"
-#: ../../include/class/Diagnostics.class.php:2001
+#: ../../include/class/Diagnostics.class.php:2005
#, php-format
msgid "User %s is reporting an issue in its %s experience"
msgstr "L'utilisateur %s signale un problème dans son expérience %s"
-#: ../../include/class/Diagnostics.class.php:2010
+#: ../../include/class/Diagnostics.class.php:2014
msgid "Find some files attached to this mail"
msgstr "Retrouver quelques fichiers joints à ce mail"
-#: ../../include/class/Diagnostics.class.php:2013
+#: ../../include/class/Diagnostics.class.php:2017
msgid "PDF is the diagnostic information retrieved at report time"
msgstr ""
"PDF correspond aux informations de diagnostic récupérées au moment du rapport"
-#: ../../include/class/Diagnostics.class.php:2016
+#: ../../include/class/Diagnostics.class.php:2020
msgid "CSV contains the statuses of every product file"
msgstr "CSV contient les états de chaque fiche produit"
-#: ../../include/class/Diagnostics.class.php:2021
+#: ../../include/class/Diagnostics.class.php:2025
#, php-format
msgid ""
"If you think this report must be escalated, feel free to forward this mail to "
@@ -48320,11 +48733,11 @@ msgstr ""
"Si vous pensez que ce rapport doit être escaladé, n'hésitez pas à transmettre "
"ce courrier à \"%s\""
-#: ../../include/class/Diagnostics.class.php:2025
+#: ../../include/class/Diagnostics.class.php:2029
msgid "LEGAL WARNING"
msgstr "AVERTISSEMENT LÉGAL"
-#: ../../include/class/Diagnostics.class.php:2027
+#: ../../include/class/Diagnostics.class.php:2031
msgid ""
"The information contained in this transmission is privileged and confidential "
"information intended only for the use of the individual or entity named above"
@@ -48333,7 +48746,7 @@ msgstr ""
"privilégiées et confidentielles destinées uniquement à l'usage de la personne "
"ou de l'entité nommée ci-dessus."
-#: ../../include/class/Diagnostics.class.php:2031
+#: ../../include/class/Diagnostics.class.php:2035
msgid ""
"If the reader of this message is not the intended recipient, you are hereby "
"notified that any dissemination, distribution or copying of this communication "
@@ -48343,11 +48756,11 @@ msgstr ""
"vous informons que toute diffusion, distribution ou copie de ces documents est "
"strictement interdite."
-#: ../../include/class/Diagnostics.class.php:2035
+#: ../../include/class/Diagnostics.class.php:2039
msgid "If you have received this transmission in error, do not read it"
msgstr "Si vous avez reçu cette transmission par erreur, ne la lisez pas"
-#: ../../include/class/Diagnostics.class.php:2039
+#: ../../include/class/Diagnostics.class.php:2043
msgid ""
"Please immediately reply to the sender that you have received this "
"communication in error and then delete it"
@@ -48355,83 +48768,83 @@ msgstr ""
"Veuillez répondre immédiatement à l'expéditeur que vous avez reçu cette "
"communication par erreur, puis la supprimer"
-#: ../../include/class/Diagnostics.class.php:2118
+#: ../../include/class/Diagnostics.class.php:2122
msgid "Invalid cron task"
msgstr "Tâche cron non valide"
-#: ../../include/class/Diagnostics.class.php:2119
+#: ../../include/class/Diagnostics.class.php:2123
msgid "Sending of information has been processed"
msgstr "L'envoi des informations a été traité"
-#: ../../include/class/Diagnostics.class.php:2154
-#: ../../include/class/Diagnostics.class.php:2164
+#: ../../include/class/Diagnostics.class.php:2158
+#: ../../include/class/Diagnostics.class.php:2168
msgid "Diagnostics Info"
msgstr "Informations de diagnostic"
-#: ../../include/class/Diagnostics.class.php:2272
-#: ../../include/class/Diagnostics.class.php:2282
+#: ../../include/class/Diagnostics.class.php:2276
+#: ../../include/class/Diagnostics.class.php:2286
msgid "PHP Info"
msgstr "Info PHP"
-#: ../../include/class/NetworkMap.class.php:2382
+#: ../../include/class/NetworkMap.class.php:2388
msgid "Failed to generate dotmap, please select different layout schema"
msgstr ""
"Échec de la génération de dotmap, veuillez sélectionner un schéma de mise en "
"page différent"
-#: ../../include/class/NetworkMap.class.php:2524
+#: ../../include/class/NetworkMap.class.php:2530
msgid "Failed to retrieve graph data."
msgstr "Échec de la récupération des données du graphique."
-#: ../../include/class/NetworkMap.class.php:2808
+#: ../../include/class/NetworkMap.class.php:2814
msgid "Holding Area"
msgstr "Zone d'attente"
-#: ../../include/class/NetworkMap.class.php:2935
+#: ../../include/class/NetworkMap.class.php:2941
#, php-format
msgid "Edit node %s"
msgstr "Modifier le nœud %s"
-#: ../../include/class/NetworkMap.class.php:2937
+#: ../../include/class/NetworkMap.class.php:2943
msgid "Show details and options"
msgstr "Afficher les détails et les options"
-#: ../../include/class/NetworkMap.class.php:2938
+#: ../../include/class/NetworkMap.class.php:2944
msgid "Add a interface link"
msgstr "Ajouter lien d'interface"
-#: ../../include/class/NetworkMap.class.php:2939
+#: ../../include/class/NetworkMap.class.php:2945
msgid "Set parent interface"
msgstr "Configurer parent d'interface"
-#: ../../include/class/NetworkMap.class.php:2940
+#: ../../include/class/NetworkMap.class.php:2946
msgid "Set as children"
msgstr "Configurer comme enfants"
-#: ../../include/class/NetworkMap.class.php:2941
+#: ../../include/class/NetworkMap.class.php:2947
msgid "Set parent"
msgstr "Configurer parent"
-#: ../../include/class/NetworkMap.class.php:2942
-#: ../../include/class/NetworkMap.class.php:2954
+#: ../../include/class/NetworkMap.class.php:2948
+#: ../../include/class/NetworkMap.class.php:2960
msgid "Abort the action of set relationship"
msgstr "Abandonner l'action de configuration de relations"
-#: ../../include/class/NetworkMap.class.php:2944
-#: ../../include/class/NetworkMap.class.php:3344
+#: ../../include/class/NetworkMap.class.php:2950
+#: ../../include/class/NetworkMap.class.php:3350
msgid "Add node"
msgstr "Ajouter un nœud"
-#: ../../include/class/NetworkMap.class.php:2945
+#: ../../include/class/NetworkMap.class.php:2951
msgid "Set center"
msgstr "Configurer le centre"
-#: ../../include/class/NetworkMap.class.php:2947
-#: ../../include/class/NetworkMap.class.php:2950
+#: ../../include/class/NetworkMap.class.php:2953
+#: ../../include/class/NetworkMap.class.php:2956
msgid "Proceed"
msgstr "Continuer"
-#: ../../include/class/NetworkMap.class.php:2948
+#: ../../include/class/NetworkMap.class.php:2954
msgid ""
"Resetting the map will delete all customizations you have done, including "
"manual relationships between elements, new items, etc."
@@ -48439,144 +48852,144 @@ msgstr ""
"Si vous réinitialisez la carte, tous vos réglages personnalisés, y compris les "
"relations manuelles entre éléments, nouveaux éléments, etc. seront supprimés."
-#: ../../include/class/NetworkMap.class.php:2952
+#: ../../include/class/NetworkMap.class.php:2958
msgid "Restart map"
msgstr "Réinitialiser la carte"
-#: ../../include/class/NetworkMap.class.php:2953
+#: ../../include/class/NetworkMap.class.php:2959
msgid "Abort the interface relationship"
msgstr "Annuler la relation d'interface"
-#: ../../include/class/NetworkMap.class.php:2971
-#: ../../include/class/NetworkMap.class.php:3020
+#: ../../include/class/NetworkMap.class.php:2977
+#: ../../include/class/NetworkMap.class.php:3026
msgid "Edit node"
msgstr "Modifier le nœud"
-#: ../../include/class/NetworkMap.class.php:2981
-#: ../../include/class/NetworkMap.class.php:3036
+#: ../../include/class/NetworkMap.class.php:2987
+#: ../../include/class/NetworkMap.class.php:3042
msgid "Adresses"
msgstr "Adresses"
-#: ../../include/class/NetworkMap.class.php:2983
-#: ../../include/class/NetworkMap.class.php:3041
+#: ../../include/class/NetworkMap.class.php:2989
+#: ../../include/class/NetworkMap.class.php:3047
msgid "OS type"
msgstr "Type de système d’exploitation"
-#: ../../include/class/NetworkMap.class.php:2990
-#: ../../include/class/NetworkMap.class.php:2991
-#: ../../include/class/NetworkMap.class.php:3052
-#: ../../include/class/NetworkMap.class.php:3053
+#: ../../include/class/NetworkMap.class.php:2996
+#: ../../include/class/NetworkMap.class.php:2997
+#: ../../include/class/NetworkMap.class.php:3058
+#: ../../include/class/NetworkMap.class.php:3059
msgid "Node Details"
msgstr "Détails du nœud"
-#: ../../include/class/NetworkMap.class.php:3078
-#: ../../include/class/NetworkMap.class.php:3079
+#: ../../include/class/NetworkMap.class.php:3084
+#: ../../include/class/NetworkMap.class.php:3085
msgid "Interface Information (SNMP)"
msgstr "Information de l'interface (SNMP)"
-#: ../../include/class/NetworkMap.class.php:3092
+#: ../../include/class/NetworkMap.class.php:3098
msgid "Shape"
msgstr "Forme"
-#: ../../include/class/NetworkMap.class.php:3095
+#: ../../include/class/NetworkMap.class.php:3101
msgid "Circle"
msgstr "Cercle"
-#: ../../include/class/NetworkMap.class.php:3096
+#: ../../include/class/NetworkMap.class.php:3102
msgid "Square"
msgstr "Carré"
-#: ../../include/class/NetworkMap.class.php:3097
+#: ../../include/class/NetworkMap.class.php:3103
msgid "Rhombus"
msgstr "Losange"
-#: ../../include/class/NetworkMap.class.php:3113
+#: ../../include/class/NetworkMap.class.php:3119
msgid "name node"
msgstr "Nommer le nœud"
-#: ../../include/class/NetworkMap.class.php:3125
-#: ../../include/class/NetworkMap.class.php:3495
+#: ../../include/class/NetworkMap.class.php:3131
+#: ../../include/class/NetworkMap.class.php:3501
msgid "name fictional node"
msgstr "Nom du nœud fictif"
-#: ../../include/class/NetworkMap.class.php:3133
-#: ../../include/class/NetworkMap.class.php:3503
+#: ../../include/class/NetworkMap.class.php:3139
+#: ../../include/class/NetworkMap.class.php:3509
msgid "Networkmap to link"
msgstr "Lien à la carte de réseau"
-#: ../../include/class/NetworkMap.class.php:3147
+#: ../../include/class/NetworkMap.class.php:3153
msgid "Update fictional node"
msgstr "Mettre à jour le nœud fictif"
-#: ../../include/class/NetworkMap.class.php:3175
-#: ../../include/class/NetworkMap.class.php:3176
+#: ../../include/class/NetworkMap.class.php:3181
+#: ../../include/class/NetworkMap.class.php:3182
msgid "Node options"
msgstr "Options du nœud"
-#: ../../include/class/NetworkMap.class.php:3187
-#: ../../include/class/NetworkMap.class.php:3281
+#: ../../include/class/NetworkMap.class.php:3193
+#: ../../include/class/NetworkMap.class.php:3287
msgid "Node source"
msgstr "Source du nœud"
-#: ../../include/class/NetworkMap.class.php:3188
-#: ../../include/class/NetworkMap.class.php:3282
+#: ../../include/class/NetworkMap.class.php:3194
+#: ../../include/class/NetworkMap.class.php:3288
msgid "Interface source"
msgstr "Source de l'interface"
-#: ../../include/class/NetworkMap.class.php:3189
-#: ../../include/class/NetworkMap.class.php:3283
+#: ../../include/class/NetworkMap.class.php:3195
+#: ../../include/class/NetworkMap.class.php:3289
msgid "Interface Target"
msgstr "Cible de l'interface"
-#: ../../include/class/NetworkMap.class.php:3191
-#: ../../include/class/NetworkMap.class.php:3284
+#: ../../include/class/NetworkMap.class.php:3197
+#: ../../include/class/NetworkMap.class.php:3290
msgid "Node target"
msgstr "Cible du nœud"
-#: ../../include/class/NetworkMap.class.php:3192
+#: ../../include/class/NetworkMap.class.php:3198
msgid "E."
msgstr "E."
-#: ../../include/class/NetworkMap.class.php:3254
+#: ../../include/class/NetworkMap.class.php:3260
msgid "There are not relations"
msgstr "Aucune relation"
-#: ../../include/class/NetworkMap.class.php:3327
+#: ../../include/class/NetworkMap.class.php:3333
msgid "Add interface link"
msgstr "Ajouter lien d'interface"
-#: ../../include/class/NetworkMap.class.php:3372
-#: ../../include/class/NetworkMap.class.php:3399
-#: ../../include/class/NetworkMap.class.php:3400
-#: ../../include/class/NetworkMap.class.php:3463
-#: ../../include/class/NetworkMap.class.php:3479
-#: ../../include/class/NetworkMap.class.php:3536
+#: ../../include/class/NetworkMap.class.php:3378
+#: ../../include/class/NetworkMap.class.php:3405
+#: ../../include/class/NetworkMap.class.php:3406
+#: ../../include/class/NetworkMap.class.php:3469
+#: ../../include/class/NetworkMap.class.php:3485
+#: ../../include/class/NetworkMap.class.php:3542
msgid "Add agent node"
msgstr "Ajouter nœud d'agent"
-#: ../../include/class/NetworkMap.class.php:3478
+#: ../../include/class/NetworkMap.class.php:3484
msgid "Add agent node (filter by group)"
msgstr "Ajouter nœud d'agent (filtrer par groupe)"
-#: ../../include/class/NetworkMap.class.php:3520
+#: ../../include/class/NetworkMap.class.php:3526
msgid "Add fictional node"
msgstr "Ajouter nœud fictif"
-#: ../../include/class/NetworkMap.class.php:3535
+#: ../../include/class/NetworkMap.class.php:3541
msgid "Add fictional point"
msgstr "Ajouter un point fictif"
-#: ../../include/class/NetworkMap.class.php:3620
+#: ../../include/class/NetworkMap.class.php:3626
#: ../../operation/visual_console/legacy_public_view.php:198
-#: ../../operation/visual_console/legacy_view.php:335
+#: ../../operation/visual_console/legacy_view.php:346
msgid "Until refresh"
msgstr "Jusqu'à la suivante mise à jour"
-#: ../../include/class/NetworkMap.class.php:3775
+#: ../../include/class/NetworkMap.class.php:3781
msgid "Open Minimap"
msgstr "Ouvrir minicarte"
-#: ../../include/class/NetworkMap.class.php:3781
+#: ../../include/class/NetworkMap.class.php:3787
msgid "Hide Labels"
msgstr "Cacher les étiquettes"
@@ -48638,11 +49051,11 @@ msgstr "Êtes-vous sûr de supprimer le script ?"
msgid "Delete Script"
msgstr "Supprimer le script"
-#: ../../include/class/ManageNetScanScripts.class.php:490
+#: ../../include/class/ManageNetScanScripts.class.php:486
msgid "There are no net scan scripts in the system"
msgstr "Il n'y a pas de scripts net scan dans le système"
-#: ../../include/class/ManageNetScanScripts.class.php:560
+#: ../../include/class/ManageNetScanScripts.class.php:556
msgid "Script fullpath"
msgstr "Chemin complet du script"
@@ -48702,12 +49115,12 @@ msgid "Extra (2)"
msgstr "Supplément (2)"
#: ../../include/class/CredentialStore.class.php:986
-#: ../../include/class/CredentialStore.class.php:1307
+#: ../../include/class/CredentialStore.class.php:1309
msgid "Access key ID"
msgstr "ID de clé d’accès :"
#: ../../include/class/CredentialStore.class.php:987
-#: ../../include/class/CredentialStore.class.php:1308
+#: ../../include/class/CredentialStore.class.php:1310
msgid "Secret access key"
msgstr "Clé d'accès secrète"
@@ -48717,22 +49130,22 @@ msgid "Account ID"
msgstr "ID de compte"
#: ../../include/class/CredentialStore.class.php:994
-#: ../../include/class/CredentialStore.class.php:1315
+#: ../../include/class/CredentialStore.class.php:1318
msgid "Application secret"
msgstr "Application secret"
#: ../../include/class/CredentialStore.class.php:995
-#: ../../include/class/CredentialStore.class.php:1316
+#: ../../include/class/CredentialStore.class.php:1319
msgid "Tenant or domain name"
msgstr "Locataire ou nom de domaine"
#: ../../include/class/CredentialStore.class.php:996
-#: ../../include/class/CredentialStore.class.php:1317
+#: ../../include/class/CredentialStore.class.php:1320
msgid "Subscription id"
msgstr "ID Abonnement"
#: ../../include/class/CredentialStore.class.php:1000
-#: ../../include/class/CredentialStore.class.php:1333
+#: ../../include/class/CredentialStore.class.php:1338
msgid "Auth JSON"
msgstr "Authentification JSON"
@@ -48753,45 +49166,45 @@ msgid "3"
msgstr "3"
#: ../../include/class/CredentialStore.class.php:1134
-#: ../../include/class/CredentialStore.class.php:1425
+#: ../../include/class/CredentialStore.class.php:1434
msgid "Authenticated and non-private method"
msgstr "Méthode authentifiée et non privée"
#: ../../include/class/CredentialStore.class.php:1135
-#: ../../include/class/CredentialStore.class.php:1427
+#: ../../include/class/CredentialStore.class.php:1436
msgid "Authenticated and private method"
msgstr "Méthode authentifiée et privée"
#: ../../include/class/CredentialStore.class.php:1136
-#: ../../include/class/CredentialStore.class.php:1429
+#: ../../include/class/CredentialStore.class.php:1438
msgid "Non-authenticated and non-private method"
msgstr "Méthode non authentifiée et non privée"
#: ../../include/class/CredentialStore.class.php:1144
-#: ../../include/class/CredentialStore.class.php:1442
+#: ../../include/class/CredentialStore.class.php:1451
#: ../../include/class/AgentWizard.class.php:910
msgid "User authentication"
msgstr "Authentification de l'utilisateur"
#: ../../include/class/CredentialStore.class.php:1179
-#: ../../include/class/CredentialStore.class.php:1476
+#: ../../include/class/CredentialStore.class.php:1485
#: ../../include/class/AgentWizard.class.php:939
msgid "Password authentication"
msgstr "Authentification par mot de passe"
-#: ../../include/class/CredentialStore.class.php:1314
+#: ../../include/class/CredentialStore.class.php:1317
msgid "Client ID"
msgstr "ID Client"
-#: ../../include/class/CredentialStore.class.php:1323
+#: ../../include/class/CredentialStore.class.php:1327
msgid "Account ID."
msgstr "ID de compte"
-#: ../../include/class/CredentialStore.class.php:1648
+#: ../../include/class/CredentialStore.class.php:1657
msgid "Register new key into keystore"
msgstr "Enregistrer une nouvelle clé dans le magasin de clés"
-#: ../../include/class/CredentialStore.class.php:1652
+#: ../../include/class/CredentialStore.class.php:1661
msgid "Update key"
msgstr "Mettre à jour la clé"
@@ -48800,9 +49213,9 @@ msgid "Trap subtype"
msgstr "Sous-type de déroutements"
#: ../../include/class/SnmpConsole.class.php:291
-#: ../../include/functions_reporting.php:5890
-#: ../../include/functions_reporting.php:5907
-#: ../../include/functions_reporting.php:5924
+#: ../../include/functions_reporting.php:5899
+#: ../../include/functions_reporting.php:5916
+#: ../../include/functions_reporting.php:5933
msgid "Not triggered"
msgstr "Non déclenché"
@@ -48812,25 +49225,25 @@ msgstr "Déclenché"
#: ../../include/class/SnmpConsole.class.php:309
#: ../../include/class/SnmpConsole.class.php:503
-#: ../../include/class/SnmpConsole.class.php:761
+#: ../../include/class/SnmpConsole.class.php:763
#: ../../include/functions_reporting.php:2366
-#: ../../include/functions_reporting.php:4597
-#: ../../include/functions_reporting.php:11390
+#: ../../include/functions_reporting.php:4606
+#: ../../include/functions_reporting.php:11399
msgid "Not validated"
msgstr "Non validé"
#: ../../include/class/SnmpConsole.class.php:310
#: ../../include/class/SnmpConsole.class.php:501
-#: ../../include/class/SnmpConsole.class.php:771
+#: ../../include/class/SnmpConsole.class.php:773
#: ../../include/functions_reporting.php:2365
-#: ../../include/functions_reporting.php:4596
-#: ../../include/functions_reporting.php:11389
+#: ../../include/functions_reporting.php:4605
+#: ../../include/functions_reporting.php:11398
#: ../../include/functions_events.php:2547
-#: ../../include/functions_events.php:3269
-#: ../../include/functions_events.php:3544
-#: ../../include/functions_events.php:3553
-#: ../../include/functions_events.php:3560
-#: ../../include/functions_events.php:3567
+#: ../../include/functions_events.php:3274
+#: ../../include/functions_events.php:3549
+#: ../../include/functions_events.php:3558
+#: ../../include/functions_events.php:3565
+#: ../../include/functions_events.php:3572
msgid "Validated"
msgstr "Validé"
@@ -48838,46 +49251,46 @@ msgstr "Validé"
msgid "Group by Enterprise String/IP"
msgstr "Regrouper par chaîne Enterprise / IP"
-#: ../../include/class/SnmpConsole.class.php:783
+#: ../../include/class/SnmpConsole.class.php:785
#: ../../operation/snmpconsole/snmp_statistics.php:199
msgid "View agent details"
msgstr "Voir les détails de l'agent"
-#: ../../include/class/SnmpConsole.class.php:902
-#: ../../include/class/SnmpConsole.class.php:903
+#: ../../include/class/SnmpConsole.class.php:904
+#: ../../include/class/SnmpConsole.class.php:905
msgid "Hide details"
msgstr "Masquer les détails"
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "Count:"
msgstr "Total :"
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "First trap:"
msgstr "Premier déroutement :"
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "Last trap:"
msgstr "Dernier déroutement :"
-#: ../../include/class/SnmpConsole.class.php:1403
+#: ../../include/class/SnmpConsole.class.php:1405
msgid "Type:"
msgstr "Type :"
-#: ../../include/class/SnmpConsole.class.php:1410
+#: ../../include/class/SnmpConsole.class.php:1412
msgid "Description:"
msgstr "Description :"
-#: ../../include/class/SnmpConsole.class.php:1417
+#: ../../include/class/SnmpConsole.class.php:1419
msgid "Enterprise String:"
msgstr "Chaîne Enterprise :"
-#: ../../include/class/SnmpConsole.class.php:1426
-#: ../../include/class/SnmpConsole.class.php:1440
+#: ../../include/class/SnmpConsole.class.php:1428
+#: ../../include/class/SnmpConsole.class.php:1442
msgid "Variable bindings:"
msgstr "Liens variables :"
-#: ../../include/class/SnmpConsole.class.php:1436
+#: ../../include/class/SnmpConsole.class.php:1438
msgid "See more details"
msgstr "Afficher plus de détails"
@@ -48952,51 +49365,51 @@ msgstr "résultats trouvés"
msgid "Press enter to search"
msgstr "Cliquez enter pour rechercher"
-#: ../../include/class/TipsWindow.class.php:432
+#: ../../include/class/TipsWindow.class.php:444
msgid "Tip deleted"
msgstr "Astuce supprimée"
-#: ../../include/class/TipsWindow.class.php:482
+#: ../../include/class/TipsWindow.class.php:494
msgid "Search by title"
msgstr "Rechercher par titre"
-#: ../../include/class/TipsWindow.class.php:683
+#: ../../include/class/TipsWindow.class.php:703
msgid "Tip created"
msgstr "Astuce créée"
-#: ../../include/class/TipsWindow.class.php:743
-#: ../../include/class/TipsWindow.class.php:911
+#: ../../include/class/TipsWindow.class.php:763
+#: ../../include/class/TipsWindow.class.php:931
msgid "Wrong size, we recommend images of 464x260 px"
msgstr "Mauvaise taille, nous recommandons des images de 464x260 px"
-#: ../../include/class/TipsWindow.class.php:751
-#: ../../include/class/TipsWindow.class.php:919
+#: ../../include/class/TipsWindow.class.php:771
+#: ../../include/class/TipsWindow.class.php:939
msgid "Please select a image"
msgstr "Veuillez sélectionner une image"
-#: ../../include/class/TipsWindow.class.php:755
-#: ../../include/class/TipsWindow.class.php:923
+#: ../../include/class/TipsWindow.class.php:775
+#: ../../include/class/TipsWindow.class.php:943
msgid "Add image"
msgstr "Ajouter une image"
-#: ../../include/class/TipsWindow.class.php:758
-#: ../../include/class/TipsWindow.class.php:926
+#: ../../include/class/TipsWindow.class.php:778
+#: ../../include/class/TipsWindow.class.php:946
msgid "Images"
msgstr "Images"
-#: ../../include/class/TipsWindow.class.php:823
+#: ../../include/class/TipsWindow.class.php:843
msgid "Tip edited"
msgstr "Astuce modifiée"
-#: ../../include/class/TipsWindow.class.php:1096
+#: ../../include/class/TipsWindow.class.php:1116
msgid "Incorrect file"
msgstr "Fichier incorrect"
-#: ../../include/class/TipsWindow.class.php:1100
+#: ../../include/class/TipsWindow.class.php:1120
msgid "Format image invalid"
msgstr "Format d’image non valide"
-#: ../../include/class/TipsWindow.class.php:1104
+#: ../../include/class/TipsWindow.class.php:1124
msgid "Image size too large"
msgstr "Taille de l’image trop grande"
@@ -49005,15 +49418,19 @@ msgstr "Taille de l’image trop grande"
msgid "NetScan Custom"
msgstr "NetScan personnalisé"
-#: ../../include/class/CustomNetScan.class.php:623
+#: ../../include/class/CustomNetScan.class.php:527
+msgid "The minimum recomended interval for Recon Task is 5 minutes"
+msgstr "L'intervalle minimal conseillé pour les tâches Recon est de 5 minutes."
+
+#: ../../include/class/CustomNetScan.class.php:622
msgid "Recon script"
msgstr "Script Recon"
-#: ../../include/class/CustomNetScan.class.php:663
+#: ../../include/class/CustomNetScan.class.php:662
msgid "Explanation"
msgstr "Explication"
-#: ../../include/class/CustomNetScan.class.php:679
+#: ../../include/class/CustomNetScan.class.php:678
msgid "macro_desc"
msgstr "macro_desc"
@@ -49087,7 +49504,7 @@ msgid "The modules is already added"
msgstr "Les modules sont déjà ajoutés"
#: ../../include/class/ModuleTemplates.class.php:1097
-#: ../../include/class/ModuleTemplates.class.php:1361
+#: ../../include/class/ModuleTemplates.class.php:1365
msgid "Add components"
msgstr "Ajouter des composants"
@@ -49124,11 +49541,11 @@ msgstr "Supprimer ce module"
msgid "Do you want delete this module?"
msgstr "Voulez-vous supprimer ce module ?"
-#: ../../include/class/ModuleTemplates.class.php:1454
+#: ../../include/class/ModuleTemplates.class.php:1458
msgid "Do you want delete all templates?"
msgstr "Voulez-vous supprimer tous les modèles ?"
-#: ../../include/class/ModuleTemplates.class.php:1457
+#: ../../include/class/ModuleTemplates.class.php:1461
msgid "Do you want delete the selected templates?"
msgstr "Voulez-vous supprimer les modèles sélectionnés ?"
@@ -49861,6 +50278,108 @@ msgstr ""
"Si quelque chose ne fonctionne pas comme prévu, recherchez cette icône et "
"signalez-le !"
+#: ../../include/class/AgentDeployWizard.class.php:306
+msgid "Please note that all OS must be 64-bit based architecture"
+msgstr ""
+"Notez que tous les systèmes d’exploitation doivent être des architectures "
+"basées sur 64-bits"
+
+#: ../../include/class/AgentDeployWizard.class.php:309
+msgid "Choose your OS"
+msgstr "Choisissez votre système d’exploitation"
+
+#: ../../include/class/AgentDeployWizard.class.php:321
+#, php-format
+msgid ""
+"Use your %s Data Server IP address here. It must be possible to establish a "
+"connection from the agent to port 41121/tcp of this address."
+msgstr ""
+"Utilisez votre %s adresse IP du serveur de données ici. Il doit être possible "
+"d’établir une connexion depuis l’agent au port 41121/tcp de cette adresse."
+
+#: ../../include/class/AgentDeployWizard.class.php:326
+msgid "Server address"
+msgstr "Adresse du serveur"
+
+#: ../../include/class/AgentDeployWizard.class.php:379
+msgid "view the following instructions"
+msgstr "veuillez lire les instructions suivantes"
+
+#: ../../include/class/AgentDeployWizard.class.php:385
+msgid "If you need more information regarding agents"
+msgstr "Si vous avez besoin de plus d’informations sur les agents"
+
+#: ../../include/class/AgentDeployWizard.class.php:415
+msgid "Generate installer"
+msgstr "Générer installateur"
+
+#: ../../include/class/AgentDeployWizard.class.php:436
+msgid "Linux agent"
+msgstr "Agent Linux"
+
+#: ../../include/class/AgentDeployWizard.class.php:446
+msgid ""
+"Run the following command in the shell of your Linux server to perform the "
+"installation of the generated agent:"
+msgstr ""
+"Exécutez la commande suivante dans la Shell de votre serveur Linux pour faire "
+"l’installation de l’agent génèré :"
+
+#: ../../include/class/AgentDeployWizard.class.php:449
+#: ../../include/class/AgentDeployWizard.class.php:491
+msgid ""
+"Once installed, you must run the following command to start the software agent "
+"service:"
+msgstr ""
+"Un fois installé, exécutez la commande suivante pour initialiser le service de "
+"l’agent logiciel:"
+
+#: ../../include/class/AgentDeployWizard.class.php:458
+msgid "dependencies"
+msgstr "dépendances"
+
+#: ../../include/class/AgentDeployWizard.class.php:460
+msgid ""
+"For the correct operation of the Linux agent it is necessary that the server "
+"has installed the following "
+msgstr ""
+"Pour la correcte opération de l’agent Linux il est nécessaire que le serveur "
+"installe le suivant "
+
+#: ../../include/class/AgentDeployWizard.class.php:478
+msgid "Windows agent"
+msgstr "Agent Windows"
+
+#: ../../include/class/AgentDeployWizard.class.php:488
+msgid "Run the following command in cmd.exe as an administrator:"
+msgstr "Exécutez la commande suivante dans cmd.exe en tant qu’administrateur :"
+
+#: ../../include/class/AgentDeployWizard.class.php:510
+msgid "Mac agent"
+msgstr "Agent Mac"
+
+#: ../../include/class/AgentDeployWizard.class.php:524
+msgid ""
+"To complete the installation process, please perform a manual installation and "
+"configure the server address to XXX and specify the group as XXX. Thank you "
+"for your cooperation."
+msgstr ""
+"Afin de compléter le processus d’installation, veuillez faire l’installation "
+"manuelle et configurez l’adresse du serveur à XXX et spécifiez le groupe en "
+"tant que XXX. Merci de votre coopération."
+
+#: ../../include/class/AgentDeployWizard.class.php:530
+msgid "Click to Download the agent"
+msgstr "Cliquez ici pour télécharger cet agent"
+
+#: ../../include/class/AgentDeployWizard.class.php:551
+msgid "Change configuration"
+msgstr "Modifier la configuration"
+
+#: ../../include/class/AgentDeployWizard.class.php:728
+msgid "Installer"
+msgstr "Installer"
+
#: ../../include/class/SatelliteCollection.class.php:306
msgid "Error adding collection"
msgstr "Erreur lors de l’ajout d’une collection"
@@ -50009,12 +50528,12 @@ msgstr "Informations sur les modules"
msgid "Current value"
msgstr "Valeur actuelle"
-#: ../../include/class/AgentWizard.class.php:5716
+#: ../../include/class/AgentWizard.class.php:5712
#, php-format
msgid "The operation '%s' is not permitted. Review for remote components."
msgstr "L'opération '%s' n'est pas autorisée. Examen des composants distants."
-#: ../../include/class/AgentWizard.class.php:6182
+#: ../../include/class/AgentWizard.class.php:6178
msgid "Modules about to be created"
msgstr "Modules sur le point d'être créés"
@@ -50216,210 +50735,210 @@ msgstr "Exclure"
msgid "Event Report Module"
msgstr "Module de rapports d'événements"
-#: ../../include/functions_reporting.php:3335
+#: ../../include/functions_reporting.php:3344
msgid "Agent/Modules"
msgstr "Agent/Modules"
-#: ../../include/functions_reporting.php:3432
+#: ../../include/functions_reporting.php:3441
msgid "Agent/Modules Status"
msgstr "État de l’agent/des modules"
-#: ../../include/functions_reporting.php:3581
+#: ../../include/functions_reporting.php:3590
msgid "Exception - Everything"
msgstr "Exception - Tout"
-#: ../../include/functions_reporting.php:3587
+#: ../../include/functions_reporting.php:3596
#, php-format
msgid "Exception - Modules over or equal to %s"
msgstr "Exception - Modules supérieurs ou égaux à %s"
-#: ../../include/functions_reporting.php:3590
+#: ../../include/functions_reporting.php:3599
#, php-format
msgid "Modules over or equal to %s"
msgstr "Modules supérieurs ou égaux à %s"
-#: ../../include/functions_reporting.php:3595
+#: ../../include/functions_reporting.php:3604
#, php-format
msgid "Exception - Modules under or equal to %s"
msgstr "Exception - Modules inférieurs ou égaux à %s"
-#: ../../include/functions_reporting.php:3598
+#: ../../include/functions_reporting.php:3607
#, php-format
msgid "Modules under or equal to %s"
msgstr "Modules inférieurs ou égaux à %s"
-#: ../../include/functions_reporting.php:3603
+#: ../../include/functions_reporting.php:3612
#, php-format
msgid "Exception - Modules under %s"
msgstr "Exception - Modules inférieurs à %s"
-#: ../../include/functions_reporting.php:3606
+#: ../../include/functions_reporting.php:3615
#, php-format
msgid "Modules under %s"
msgstr "Modules inférieurs à %s"
-#: ../../include/functions_reporting.php:3611
+#: ../../include/functions_reporting.php:3620
#, php-format
msgid "Exception - Modules over %s"
msgstr "Exception - Modules supérieurs à %s"
-#: ../../include/functions_reporting.php:3614
+#: ../../include/functions_reporting.php:3623
#, php-format
msgid "Modules over %s"
msgstr "Modules supérieurs à %s"
-#: ../../include/functions_reporting.php:3619
+#: ../../include/functions_reporting.php:3628
#, php-format
msgid "Exception - Equal to %s"
msgstr "Exception - Égal à %s"
-#: ../../include/functions_reporting.php:3622
+#: ../../include/functions_reporting.php:3631
#, php-format
msgid "Equal to %s"
msgstr "Égal à %s"
-#: ../../include/functions_reporting.php:3627
+#: ../../include/functions_reporting.php:3636
#, php-format
msgid "Exception - Not equal to %s"
msgstr "Exception - Pas égal à %s"
-#: ../../include/functions_reporting.php:3630
+#: ../../include/functions_reporting.php:3639
#, php-format
msgid "Not equal to %s"
msgstr "Pas égal à %s"
-#: ../../include/functions_reporting.php:3634
+#: ../../include/functions_reporting.php:3643
msgid "Exception - Modules at normal status"
msgstr "Exception - Modules en état normal"
-#: ../../include/functions_reporting.php:3635
+#: ../../include/functions_reporting.php:3644
msgid "Modules at normal status"
msgstr "Modules en état normal"
-#: ../../include/functions_reporting.php:3639
+#: ../../include/functions_reporting.php:3648
msgid "Exception - Modules at critical or warning status"
msgstr "Exception - Modules en état critique ou d'alerte"
-#: ../../include/functions_reporting.php:3640
+#: ../../include/functions_reporting.php:3649
msgid "Modules at critical or warning status"
msgstr "Modules en état critique ou d'alerte"
-#: ../../include/functions_reporting.php:3920
+#: ../../include/functions_reporting.php:3929
msgid "There are no Modules under those conditions."
msgstr "Aucun module sous ces conditions"
-#: ../../include/functions_reporting.php:3924
+#: ../../include/functions_reporting.php:3933
#, php-format
msgid "There are no Modules over or equal to %s."
msgstr "Aucun module supérieur ou égal à %s"
-#: ../../include/functions_reporting.php:3928
+#: ../../include/functions_reporting.php:3937
#, php-format
msgid "There are no Modules less or equal to %s."
msgstr "Aucun module inférieur ou égal à %s"
-#: ../../include/functions_reporting.php:3932
+#: ../../include/functions_reporting.php:3941
#, php-format
msgid "There are no Modules less %s."
msgstr "Aucun module inférieur à %s"
-#: ../../include/functions_reporting.php:3936
+#: ../../include/functions_reporting.php:3945
#, php-format
msgid "There are no Modules over %s."
msgstr "Aucun module supérieur à %s"
-#: ../../include/functions_reporting.php:3940
+#: ../../include/functions_reporting.php:3949
#, php-format
msgid "There are no Modules equal to %s"
msgstr "Aucun module égal à %s"
-#: ../../include/functions_reporting.php:3944
+#: ../../include/functions_reporting.php:3953
#, php-format
msgid "There are no Modules not equal to %s"
msgstr "Aucun module pas égal à %s"
-#: ../../include/functions_reporting.php:3948
+#: ../../include/functions_reporting.php:3957
msgid "There are no Modules normal status"
msgstr "Aucun module en état normal"
-#: ../../include/functions_reporting.php:3952
+#: ../../include/functions_reporting.php:3961
msgid "There are no Modules at critial or warning status"
msgstr "Aucun module en état critique ou d'alerte"
-#: ../../include/functions_reporting.php:4380
+#: ../../include/functions_reporting.php:4389
msgid "Event Report Agent"
msgstr "Agent de rapport d'événement"
-#: ../../include/functions_reporting.php:4799
+#: ../../include/functions_reporting.php:4808
msgid "Database Serialized"
msgstr "Base de données sérialisée"
-#: ../../include/functions_reporting.php:4995
+#: ../../include/functions_reporting.php:5004
msgid "Last Value"
msgstr "Dernière valeur"
-#: ../../include/functions_reporting.php:5045
-#: ../../include/functions_reporting.php:5088
+#: ../../include/functions_reporting.php:5054
+#: ../../include/functions_reporting.php:5097
msgid "No data to display within the selected interval"
msgstr "Aucune donnée à afficher dans l'intervalle sélectionné"
-#: ../../include/functions_reporting.php:5319
+#: ../../include/functions_reporting.php:5328
msgid "Network interfaces report"
msgstr "Rapport des interfaces du réseau"
-#: ../../include/functions_reporting.php:5413
+#: ../../include/functions_reporting.php:5422
msgid "Custom render report"
msgstr "Rapport de rendu personnalisé"
-#: ../../include/functions_reporting.php:5453
-#: ../../include/functions_reporting.php:5479
+#: ../../include/functions_reporting.php:5462
+#: ../../include/functions_reporting.php:5488
msgid ""
"This query is insecure, it could apply unwanted modiffications on the schema"
msgstr ""
"Cette requête n’est pas sécurisée, elle peut appliquer des modifications "
"indésirables sur le schéma"
-#: ../../include/functions_reporting.php:5658
+#: ../../include/functions_reporting.php:5667
msgid "The group has no agents or none of the agents has any network interface"
msgstr "Le groupe n'a pas d'agents ou aucun agent a une interface de réseau"
-#: ../../include/functions_reporting.php:5683
+#: ../../include/functions_reporting.php:5692
msgid "bytes/s"
msgstr "octets/s"
-#: ../../include/functions_reporting.php:6350
+#: ../../include/functions_reporting.php:6359
msgid "SQL Graph Vertical Bars"
msgstr "Barres verticales du graphique SQL"
-#: ../../include/functions_reporting.php:6354
+#: ../../include/functions_reporting.php:6363
msgid "SQL Graph Horizontal Bars"
msgstr "Barres horizontales du graphique SQL"
-#: ../../include/functions_reporting.php:6358
+#: ../../include/functions_reporting.php:6367
msgid "SQL Graph Pie"
msgstr "Diagramme circulaire SQL"
-#: ../../include/functions_reporting.php:6585
+#: ../../include/functions_reporting.php:6594
msgid "Netflow Area"
msgstr "Zone Netflow"
-#: ../../include/functions_reporting.php:6589
+#: ../../include/functions_reporting.php:6598
msgid "Netflow Summary"
msgstr "Résumé Netflow"
-#: ../../include/functions_reporting.php:6593
+#: ../../include/functions_reporting.php:6602
msgid "Netflow Data"
msgstr "Données Netflow"
-#: ../../include/functions_reporting.php:6601
+#: ../../include/functions_reporting.php:6610
msgid "Unknown report"
msgstr "Rapport inconnu"
-#: ../../include/functions_reporting.php:6695
+#: ../../include/functions_reporting.php:6704
msgid "Prediction Date"
msgstr "Date de prédiction"
-#: ../../include/functions_reporting.php:7705
+#: ../../include/functions_reporting.php:7714
msgid ""
"Illegal query: Due security restrictions, there are some tokens or words you "
"cannot use: *, delete, drop, alter, modify, password, pass, insert or update."
@@ -50428,226 +50947,226 @@ msgstr ""
"peuvent pas être employés : *, supprimer, déposer, altérer, modifier, mot de "
"passe, passe, introduire ou mettre à jour."
-#: ../../include/functions_reporting.php:9118
-#: ../../include/functions_reporting.php:9836
+#: ../../include/functions_reporting.php:9127
+#: ../../include/functions_reporting.php:9845
msgid "No Address"
msgstr "Aucune adresse"
-#: ../../include/functions_reporting.php:10135
+#: ../../include/functions_reporting.php:10144
msgid ""
"The monitor have no data in this range of dates or monitor type is not numeric"
msgstr ""
"Le moniteur ne dispose pas de données dans cette plage de dates ou le type de "
"moniteur n'est pas numérique."
-#: ../../include/functions_reporting.php:10153
+#: ../../include/functions_reporting.php:10162
msgid "The monitor type is not numeric"
msgstr "Le type de moniteur n'est pas numérique."
-#: ../../include/functions_reporting.php:10579
+#: ../../include/functions_reporting.php:10588
msgid "Maximum"
msgstr "Maximum"
-#: ../../include/functions_reporting.php:10657
+#: ../../include/functions_reporting.php:10666
msgid "Automatic combined graph"
msgstr "Graphique automatique combiné"
-#: ../../include/functions_reporting.php:12079
-#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12088
+#: ../../include/functions_reporting.php:12112
+#: ../../include/functions_reporting.php:12151
msgid "Server health"
msgstr "État du serveur"
-#: ../../include/functions_reporting.php:12079
+#: ../../include/functions_reporting.php:12088
#, php-format
msgid "%d Downed servers"
msgstr "%d serveurs hors service"
-#: ../../include/functions_reporting.php:12084
-#: ../../include/functions_reporting.php:12107
+#: ../../include/functions_reporting.php:12093
+#: ../../include/functions_reporting.php:12116
+#: ../../include/functions_reporting.php:12157
msgid "Monitor health"
msgstr "État du moniteur"
-#: ../../include/functions_reporting.php:12084
+#: ../../include/functions_reporting.php:12093
#, php-format
msgid "%d Not Normal monitors"
msgstr "%d Moniteurs anormaux"
-#: ../../include/functions_reporting.php:12084
-#: ../../include/functions_reporting.php:12108
+#: ../../include/functions_reporting.php:12093
+#: ../../include/functions_reporting.php:12117
msgid "of monitors up"
msgstr "de moniteurs actifs"
-#: ../../include/functions_reporting.php:12089
-msgid "Module sanityX"
-msgstr "Module sanityX"
+#: ../../include/functions_reporting.php:12098
+#: ../../include/functions_reporting.php:12120
+#: ../../include/functions_reporting.php:12163
+msgid "Module sanity"
+msgstr "État des modules"
-#: ../../include/functions_reporting.php:12089
+#: ../../include/functions_reporting.php:12098
#, php-format
msgid "%d Not inited monitors"
msgstr "%d moniteurs non initialisés"
-#: ../../include/functions_reporting.php:12089
-#: ../../include/functions_reporting.php:12112
+#: ../../include/functions_reporting.php:12098
+#: ../../include/functions_reporting.php:12121
msgid "of total modules inited"
msgstr "du total de modules initialisés"
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:13202
-#: ../../include/functions_reporting.php:13212
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:13275
+#: ../../include/functions_reporting.php:13285
#, php-format
msgid "%d Fired alerts"
msgstr "%d alertes déclenchées"
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:12116
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12125
msgid "of defined alerts not fired"
msgstr "d'alertes définies non déclenchées"
-#: ../../include/functions_reporting.php:12111
-msgid "Module sanity"
-msgstr "État des modules"
-
-#: ../../include/functions_reporting.php:12184
-#: ../../include/functions_groups.php:2733
+#: ../../include/functions_reporting.php:12257
+#: ../../include/functions_groups.php:2758
msgid "Defined and fired alerts"
msgstr "Alertes définies et déclenchées"
-#: ../../include/functions_reporting.php:12363
+#: ../../include/functions_reporting.php:12436
msgid "Defined users"
msgstr "Utilisateurs définis"
-#: ../../include/functions_reporting.php:13059
+#: ../../include/functions_reporting.php:13132
msgid "Agent without data"
msgstr "Agent sans données"
-#: ../../include/functions_reporting.php:13198
+#: ../../include/functions_reporting.php:13271
#, php-format
msgid "%d Normal modules"
msgstr "%d modules normaux"
-#: ../../include/functions_reporting.php:13199
+#: ../../include/functions_reporting.php:13272
#, php-format
msgid "%d Critical modules"
msgstr "%d modules critiques"
-#: ../../include/functions_reporting.php:13200
+#: ../../include/functions_reporting.php:13273
#, php-format
msgid "%d Warning modules"
msgstr "%d modules en état d'alerte"
-#: ../../include/functions_reporting.php:13201
+#: ../../include/functions_reporting.php:13274
#, php-format
msgid "%d Unknown modules"
msgstr "%d modules inconnus"
-#: ../../include/functions_reporting.php:13206
+#: ../../include/functions_reporting.php:13279
#, php-format
msgid "%d Total agents"
msgstr "%d agents au total"
-#: ../../include/functions_reporting.php:13207
+#: ../../include/functions_reporting.php:13280
#, php-format
msgid "%d Normal agents"
msgstr "%d agents normaux"
-#: ../../include/functions_reporting.php:13208
+#: ../../include/functions_reporting.php:13281
#, php-format
msgid "%d Critical agents"
msgstr "%d agents critiques"
-#: ../../include/functions_reporting.php:13209
+#: ../../include/functions_reporting.php:13282
#, php-format
msgid "%d Warning agents"
msgstr "%d agents en état d'alerte"
-#: ../../include/functions_reporting.php:13210
+#: ../../include/functions_reporting.php:13283
#, php-format
msgid "%d Unknown agents"
msgstr "%d agents inconnus"
-#: ../../include/functions_reporting.php:13211
+#: ../../include/functions_reporting.php:13284
#, php-format
msgid "%d not init agents"
msgstr "%d agents non initialisés"
-#: ../../include/functions_reporting.php:14639
+#: ../../include/functions_reporting.php:14712
msgid "Total running modules"
msgstr "Nombre total de modules en fonctionnement"
-#: ../../include/functions_reporting.php:14642
-#: ../../include/functions_reporting.php:14657
-#: ../../include/functions_reporting.php:14669
-#: ../../include/functions_reporting.php:14687
-#: ../../include/functions_reporting.php:14699
-#: ../../include/functions_reporting.php:14711
-#: ../../include/functions_reporting.php:14723
+#: ../../include/functions_reporting.php:14715
+#: ../../include/functions_reporting.php:14730
+#: ../../include/functions_reporting.php:14742
+#: ../../include/functions_reporting.php:14760
+#: ../../include/functions_reporting.php:14772
+#: ../../include/functions_reporting.php:14784
+#: ../../include/functions_reporting.php:14796
msgid "Ratio"
msgstr "Ratio"
-#: ../../include/functions_reporting.php:14642
-#: ../../include/functions_reporting.php:14657
-#: ../../include/functions_reporting.php:14669
-#: ../../include/functions_reporting.php:14687
-#: ../../include/functions_reporting.php:14699
-#: ../../include/functions_reporting.php:14711
-#: ../../include/functions_reporting.php:14723
+#: ../../include/functions_reporting.php:14715
+#: ../../include/functions_reporting.php:14730
+#: ../../include/functions_reporting.php:14742
+#: ../../include/functions_reporting.php:14760
+#: ../../include/functions_reporting.php:14772
+#: ../../include/functions_reporting.php:14784
+#: ../../include/functions_reporting.php:14796
msgid "Modules by second"
msgstr "Modules par seconde"
-#: ../../include/functions_reporting.php:14654
+#: ../../include/functions_reporting.php:14727
msgid "Local modules"
msgstr "Modules locaux"
-#: ../../include/functions_reporting.php:14664
+#: ../../include/functions_reporting.php:14737
msgid "Network modules"
msgstr "Modules de réseau"
-#: ../../include/functions_reporting.php:14683
+#: ../../include/functions_reporting.php:14756
msgid "Plugin modules"
msgstr "Modules plugin"
-#: ../../include/functions_reporting.php:14695
+#: ../../include/functions_reporting.php:14768
msgid "Prediction modules"
msgstr "Modules de prédiction"
-#: ../../include/functions_reporting.php:14707
+#: ../../include/functions_reporting.php:14780
msgid "WMI modules"
msgstr "Modules WMI"
-#: ../../include/functions_reporting.php:14719
+#: ../../include/functions_reporting.php:14792
msgid "Web modules"
msgstr "Modules Web"
-#: ../../include/functions_reporting.php:14757
+#: ../../include/functions_reporting.php:14830
#: ../../include/lib/Dashboard/Widgets/tactical.php:287
msgid "Server performance"
msgstr "Performance du serveur"
-#: ../../include/functions_reporting.php:14870
+#: ../../include/functions_reporting.php:14943
msgid "Start condition"
msgstr "Condition de démarrage"
-#: ../../include/functions_reporting.php:14870
+#: ../../include/functions_reporting.php:14943
msgid "Stop condition"
msgstr "Condition d’arrêt"
-#: ../../include/functions_reporting.php:14880
+#: ../../include/functions_reporting.php:14953
msgid "Weekly:"
msgstr "Hebdomadaire :"
-#: ../../include/functions_reporting.php:14922
+#: ../../include/functions_reporting.php:14995
msgid "Monthly:"
msgstr "Mensuel :"
-#: ../../include/functions_reporting.php:15473
+#: ../../include/functions_reporting.php:15546
msgid "Module Histogram Graph"
msgstr "Graphique de registres du module"
-#: ../../include/functions_reporting.php:15836
+#: ../../include/functions_reporting.php:15913
msgid "Attached to this email there's a PDF file of the"
msgstr "Ce courriel contient une pièce jointe en format PDF du"
-#: ../../include/functions_reporting.php:15837
+#: ../../include/functions_reporting.php:15914
msgid "report"
msgstr "rapport"
@@ -50705,85 +51224,85 @@ msgstr "Répertoire créé correctement"
msgid "Something gone wrong creating directory"
msgstr "Une erreur s'est produite lors de la création du répertoire"
-#: ../../include/functions_filemanager.php:541
-#: ../../include/functions_filemanager.php:821
+#: ../../include/functions_filemanager.php:553
+#: ../../include/functions_filemanager.php:838
msgid "Create a Directory"
msgstr "Créer un répertoire"
-#: ../../include/functions_filemanager.php:545
-#: ../../include/functions_filemanager.php:832
-#: ../../include/functions_filemanager.php:835
+#: ../../include/functions_filemanager.php:559
+#: ../../include/functions_filemanager.php:850
+#: ../../include/functions_filemanager.php:853
msgid "Create File"
msgstr "Créer un fichier"
-#: ../../include/functions_filemanager.php:549
-#: ../../include/functions_filemanager.php:846
-#: ../../include/functions_filemanager.php:849
+#: ../../include/functions_filemanager.php:564
+#: ../../include/functions_filemanager.php:864
+#: ../../include/functions_filemanager.php:867
msgid "Upload Files"
msgstr "Télécharger des fichiers"
-#: ../../include/functions_filemanager.php:583
-#: ../../include/functions_filemanager.php:793
+#: ../../include/functions_filemanager.php:598
+#: ../../include/functions_filemanager.php:808
msgid "Real path"
msgstr "Chemin réel"
-#: ../../include/functions_filemanager.php:618
+#: ../../include/functions_filemanager.php:633
#, php-format
msgid "Directory %s doesn't exist!"
msgstr "Le répertoire %s n'existe pas !"
-#: ../../include/functions_filemanager.php:663
+#: ../../include/functions_filemanager.php:678
msgid "Parent directory"
msgstr "Répertoire parent"
-#: ../../include/functions_filemanager.php:677
+#: ../../include/functions_filemanager.php:692
msgid "Directory"
msgstr "Répertoire"
-#: ../../include/functions_filemanager.php:685
+#: ../../include/functions_filemanager.php:700
msgid "Compressed file"
msgstr "Fichier compressé"
-#: ../../include/functions_filemanager.php:689
-#: ../../include/functions_filemanager.php:696
+#: ../../include/functions_filemanager.php:704
+#: ../../include/functions_filemanager.php:711
msgid "Text file"
msgstr "Fichier de texte"
-#: ../../include/functions_filemanager.php:729
+#: ../../include/functions_filemanager.php:744
msgid "This file could be executed by any user"
msgstr "Ce fichier peut être exécuté par n'importe quel utilisateur"
-#: ../../include/functions_filemanager.php:730
+#: ../../include/functions_filemanager.php:745
msgid "Make sure it can't perform dangerous tasks"
msgstr "Assurez-vous qu'il ne peut pas effectuer des tâches dangereuses."
-#: ../../include/functions_filemanager.php:804
+#: ../../include/functions_filemanager.php:819
msgid "No files or directories to show."
msgstr "Aucun fichier ou répertoire à afficher."
-#: ../../include/functions_filemanager.php:818
-#: ../../include/functions_filemanager.php:940
+#: ../../include/functions_filemanager.php:835
+#: ../../include/functions_filemanager.php:961
msgid "Create directory"
msgstr "Créer un répertoire"
-#: ../../include/functions_filemanager.php:880
+#: ../../include/functions_filemanager.php:900
msgid "The zip upload in this dir, easy to upload multiple files."
msgstr ""
"Téléversez le zip à ce répertoire, utile pour téléverser plusieurs fichiers."
-#: ../../include/functions_filemanager.php:882
+#: ../../include/functions_filemanager.php:902
msgid "Decompress"
msgstr "Décompresser"
-#: ../../include/functions_filemanager.php:954
+#: ../../include/functions_filemanager.php:976
msgid "Create file"
msgstr "Créer un fichier"
-#: ../../include/functions_filemanager.php:968
+#: ../../include/functions_filemanager.php:990
msgid "Upload file/s"
msgstr "Téléverser fichier(s)"
-#: ../../include/functions_filemanager.php:999
+#: ../../include/functions_filemanager.php:1021
msgid "The directory is read-only"
msgstr "Ce répertoire est seulement accessible en lecture."
@@ -50796,15 +51315,15 @@ msgstr "Cliquez ici pour ouvrir une fenêtre pop-up avec l'étiquette de l'URL"
msgid "Copy of %s"
msgstr "Copie de %s"
-#: ../../include/lib/Dashboard/Manager.php:1007
+#: ../../include/lib/Dashboard/Manager.php:1011
msgid "Error create or update dashboard"
msgstr "Erreur lors de la création ou de la mise à jour du tableau de bord"
-#: ../../include/lib/Dashboard/Manager.php:1479
+#: ../../include/lib/Dashboard/Manager.php:1483
msgid "Icon image dashboard"
msgstr "Tableau de bord des images d'icônes"
-#: ../../include/lib/Dashboard/Widget.php:468
+#: ../../include/lib/Dashboard/Widget.php:469
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347
#: ../../include/lib/Dashboard/Widgets/reports.php:336
@@ -50812,28 +51331,28 @@ msgstr "Tableau de bord des images d'icônes"
msgid "Failed to connect to node %d"
msgstr "Échec de la connexion au nœud %d"
-#: ../../include/lib/Dashboard/Widget.php:483
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:621
+#: ../../include/lib/Dashboard/Widget.php:484
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:634
msgid "Please configure this widget before usage"
msgstr "Veuillez configurer le widget avant de l'utiliser"
-#: ../../include/lib/Dashboard/Widget.php:491
+#: ../../include/lib/Dashboard/Widget.php:492
#: ../../include/lib/Dashboard/Widgets/maps_status.php:390
#: ../../include/lib/Dashboard/Widgets/events_list.php:561
msgid "Widget cannot be loaded"
msgstr "Le widget ne peut pas être chargé"
-#: ../../include/lib/Dashboard/Widget.php:491
+#: ../../include/lib/Dashboard/Widget.php:492
#: ../../include/lib/Dashboard/Widgets/maps_status.php:390
msgid "Please, configure the widget again to recover it"
msgstr "Veuillez le reconfigurer encore une fois"
#: ../../include/lib/Dashboard/Widgets/groups_status.php:158
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:510
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:533
msgid "General group status"
msgstr "État général du groupe"
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:464
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:477
msgid "Not agents in this group"
msgstr "Aucun agent dans ce groupe"
@@ -50863,7 +51382,7 @@ msgid "No modules in selected groups"
msgstr "Aucun module dans les groupes sélectionnés"
#: ../../include/lib/Dashboard/Widgets/heatmap.php:173
-#: ../../include/lib/Dashboard/Widgets/heatmap.php:385
+#: ../../include/lib/Dashboard/Widgets/heatmap.php:386
msgid "Heatmap"
msgstr "Carte de chaleur"
@@ -50900,7 +51419,7 @@ msgstr "Sinon, la mise en page est verticale"
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:471
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482
#: ../../include/lib/Dashboard/Widgets/events_list.php:528
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:646
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:659
msgid "You don't have access"
msgstr "Vous n'avez pas accès."
@@ -50922,13 +51441,14 @@ msgstr "Couleur de la police"
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256
msgid "Agent / module"
msgstr "Agent / module"
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408
msgid "Not found modules"
@@ -50961,9 +51481,9 @@ msgid "Maps"
msgstr "Cartes"
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175
-#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709
+#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711
msgid "Avg|Sum|Max|Min Module Data"
-msgstr "Données du module Moy| Somme| Max| Min"
+msgstr "Avg|Sum|Max|Min Module Data"
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:390
msgid "Last 30 days"
@@ -51047,7 +51567,7 @@ msgstr "Merci d'utiliser %s."
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172
-#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537
+#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545
msgid "Color tabs modules"
msgstr "Couleur des onglets des modules"
@@ -51134,21 +51654,21 @@ msgid "Zoom level"
msgstr "Niveau de zoom"
#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417
msgid "Triggered alerts report"
msgstr "Rapport d'alertes déclenchées"
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390
msgid "Not alert fired"
msgstr "Pas d'alerte déclenchée"
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399
#: ../../include/lib/Dashboard/Widgets/events_list.php:521
msgid "You must select some group"
msgstr "Sélectionnez un groupe"
#: ../../include/lib/Dashboard/Widgets/events_list.php:175
-#: ../../include/lib/Dashboard/Widgets/events_list.php:715
+#: ../../include/lib/Dashboard/Widgets/events_list.php:722
msgid "List of latest events"
msgstr "Liste des derniers événements"
@@ -51158,16 +51678,16 @@ msgstr "Filtres personnalisés"
#: ../../include/lib/Dashboard/Widgets/events_list.php:383
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299
-#: ../../include/functions_events.php:3261
-#: ../../include/functions_events.php:3267
-#: ../../include/functions_events.php:3289
+#: ../../include/functions_events.php:3266
+#: ../../include/functions_events.php:3272
+#: ../../include/functions_events.php:3294
msgid "All event"
msgstr "Tous les événements"
#: ../../include/lib/Dashboard/Widgets/events_list.php:384
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300
-#: ../../include/functions_events.php:3263
-#: ../../include/functions_events.php:3297
+#: ../../include/functions_events.php:3268
+#: ../../include/functions_events.php:3302
msgid "Only validated"
msgstr "Seulement les événements validés"
@@ -51180,10 +51700,38 @@ msgstr "Seulement ceux en attente"
msgid "Please, event filter has been removed."
msgstr "Veuillez noter que le filtre d’événements a été supprimé."
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420
+msgid "Color chart"
+msgstr "Couleur de la table"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431
+msgid "Show label"
+msgstr "Afficher l’étiquette"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458
+msgid "Label size in px"
+msgstr "Taille de l'étiquette en px"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470
+msgid "Color label"
+msgstr "Couleur de l’étiquette"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481
+msgid "Show Value"
+msgstr "Afficher la valeur"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501
+msgid "Value size in px"
+msgstr "Valeur de la taille en px"
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513
+msgid "Color value"
+msgstr "Valeur de la couleur"
+
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626
msgid "Event cardboard"
-msgstr "Carton événementiel"
+msgstr "Carte d’événement"
#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172
#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378
@@ -51316,12 +51864,12 @@ msgid "Missing Service id"
msgstr "ID de service manquant"
#: ../../include/lib/Dashboard/Widgets/agent_module.php:173
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:766
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:779
msgid "Agent/Module View"
msgstr "Vue Agent/Module"
#: ../../include/lib/Dashboard/Widgets/agent_module.php:250
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:454
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:459
msgid "Filter modules"
msgstr "Filtrer les modules"
@@ -51375,23 +51923,23 @@ msgstr "critique"
msgid "unknown"
msgstr "inconnu"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:354
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:357
msgid "Type tree"
msgstr "Type d'arbre"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:386
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:389
msgid "Open all groups"
msgstr "Ouvrir tous les groupes"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:407
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:411
msgid "Agents status"
msgstr "État des agents"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:442
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:447
msgid "Modules status"
msgstr "État des modules"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:508
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:513
#, php-format
msgid ""
"The user doesn't have permission to read agents. Please contact with your %s "
@@ -51400,38 +51948,38 @@ msgstr ""
"L'utilisateur n'est pas autorisé à lire les agents. Veuillez contacter votre "
"administrateur %s."
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:654
-#: ../../operation/tree.php:471
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:647
+#: ../../operation/tree.php:473
msgid "Operating systems found"
msgstr "Systèmes d'exploitation trouvés"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:658
-#: ../../operation/tree.php:474
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:651
+#: ../../operation/tree.php:476
msgid "Tags found"
msgstr "Étiquettes trouvées"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:662
-#: ../../operation/tree.php:477
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:655
+#: ../../operation/tree.php:479
msgid "Module Groups found"
msgstr "Groupes de modules trouvés"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:666
-#: ../../operation/tree.php:480 ../../operation/search_main.php:56
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:659
+#: ../../operation/tree.php:482 ../../operation/search_main.php:56
msgid "Modules found"
msgstr "Modules trouvés"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:671
-#: ../../operation/tree.php:484
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:664
+#: ../../operation/tree.php:486
msgid "Groups found"
msgstr "Groupes trouvés"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:732
-#: ../../operation/tree.php:536
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:725
+#: ../../operation/tree.php:538
msgid "Not normal agents"
msgstr "Agents anormales"
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:733
-#: ../../operation/tree.php:537
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:726
+#: ../../operation/tree.php:539
msgid "Not normal modules"
msgstr "Modules anormales"
@@ -51448,10 +51996,6 @@ msgstr ""
"Expression régulière ou chaîne insensible à la casse pour le nom du module. "
"Par exemple : .*usage.* correspondra à : cpu_usage, vram usage."
-#: ../../include/lib/Dashboard/Widgets/top_n.php:280
-msgid "Avg."
-msgstr "Moyenne"
-
#: ../../include/lib/Dashboard/Widgets/top_n.php:456
msgid "There are no agents/modules found matching filter set"
msgstr "Aucun agent/module trouvé correspondant à l'ensemble de filtres"
@@ -51515,11 +52059,11 @@ msgstr "Active-Passive"
msgid "Cluster already defined, please use another name."
msgstr "Grappe déjà définie, utilisez un autre nom."
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:782
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:783
msgid "Cluster name"
msgstr "Nom de grappe"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:783
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:784
msgid ""
"An agent with the same name of the cluster will be created, as well a special "
"service with the same name"
@@ -51527,11 +52071,11 @@ msgstr ""
"Un agent avec le m^me nom de la grappe sera créé, ainsi qu'un service special "
"avec le même nom"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:797
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:798
msgid "Cluster type"
msgstr "Type de grappe"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:798
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:799
msgid ""
"AA is a cluster where all members are working. In AP cluster only master "
"member is working"
@@ -51539,49 +52083,49 @@ msgstr ""
"AA c'est une grappe où tous les membres travaillent. Dans la grappe AP "
"seulement le membre master travaille"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:806
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:807
msgid "Active - Active"
msgstr "Active - Active"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:807
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:808
msgid "Active - Pasive"
msgstr "Active - Passive"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:827
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:828
msgid "Target cluster agent will be stored under this group"
msgstr "L'agent de grappe cible sera stocké sous ce groupe"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:844
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:845
msgid ""
"You must select a Prediction Server to perform all cluster status calculations"
msgstr ""
"Vous devez détecter un Serveur de prédiction pour accomplir toutes les "
"estimations d'état de grappe"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042
msgid "critical if"
msgstr "critique si"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074
#, php-format
msgid "% of balanced modules are down (equal or greater)."
msgstr "% des modules balancés sont désactivés (égal ou supérieur)"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090
msgid "Please, set thresholds for all active-passive modules"
msgstr "Veuillez définir des seuils pour tous les modules actifs-passifs"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101
msgid "Please, set thresholds for all active-active modules"
msgstr "Veuillez définir des seuils pour tous les modules actifs-actifs"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206
msgid "Please, check all active-passive modules critical for this cluster"
msgstr ""
"Veuillez vérifier tout les modules critiques active-passive pour cette grappe"
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208
msgid ""
"If a critical balanced module is going to critical status, then cluster will "
"be critical."
@@ -51589,7 +52133,7 @@ msgstr ""
"Si un module balancé critique entre un état critique, la grappe deviendra "
"critique."
-#: ../../include/lib/Core/DBMaintainer.php:174
+#: ../../include/lib/Core/DBMaintainer.php:177
#, php-format
msgid "Connection problems: %s"
msgstr "Problèmes de connexion : %s"
@@ -51706,52 +52250,52 @@ msgid "Collapse the tree"
msgstr "Réduire l'arborescence"
#: ../../include/functions_snmp_browser.php:1115
-#: ../../include/functions_snmp_browser.php:1170
+#: ../../include/functions_snmp_browser.php:1178
msgid "Search options"
msgstr "Rechercher les options"
-#: ../../include/functions_snmp_browser.php:1160
+#: ../../include/functions_snmp_browser.php:1168
msgid "SNMP v3 options"
msgstr "Options SNMP v3"
-#: ../../include/functions_snmp_browser.php:1192
+#: ../../include/functions_snmp_browser.php:1200
msgid "Search matches"
msgstr "Rechercher concordances"
-#: ../../include/functions_snmp_browser.php:1208
+#: ../../include/functions_snmp_browser.php:1216
msgid "Create agent modules"
msgstr "Créer des modules d'agent"
-#: ../../include/functions_snmp_browser.php:1217
+#: ../../include/functions_snmp_browser.php:1225
msgid "Create policy modules"
msgstr "Créer des modules de politique"
-#: ../../include/functions_snmp_browser.php:1226
+#: ../../include/functions_snmp_browser.php:1234
msgid "Create network components"
msgstr "Créer des composants de réseau"
-#: ../../include/functions_snmp_browser.php:1656
+#: ../../include/functions_snmp_browser.php:1665
msgid " available"
msgstr " disponible"
-#: ../../include/functions_snmp_browser.php:1663
+#: ../../include/functions_snmp_browser.php:1672
msgid " to apply"
msgstr " À appliquer"
-#: ../../include/functions_snmp_browser.php:1668
-#: ../../operation/snmpconsole/snmp_browser.php:535
+#: ../../include/functions_snmp_browser.php:1677
+#: ../../operation/snmpconsole/snmp_browser.php:540
msgid "Create new policy"
msgstr "Créer une nouvelle politique"
-#: ../../include/functions_snmp_browser.php:1723
+#: ../../include/functions_snmp_browser.php:1732
msgid "Undo"
msgstr "Annuler"
-#: ../../include/chart_generator.php:117 ../../operation/agentes/stat_win.php:51
+#: ../../include/chart_generator.php:122 ../../operation/agentes/stat_win.php:51
#: ../../operation/agentes/stat_win.php:176
#: ../../operation/agentes/realtime_win.php:51
#: ../../operation/agentes/interface_traffic_graph_win.php:54
-#: ../../operation/inventory/inventory.php:369
+#: ../../operation/inventory/inventory.php:371
msgid "There was a problem connecting with the node"
msgstr "Problème de connexion avec le nœud"
@@ -51790,7 +52334,8 @@ msgid "GIS map layers"
msgstr "Couches de carte GIS"
#: ../../include/functions_groups.php:251
-#: ../../operation/agentes/pandora_networkmap.view.php:2413
+#: ../../operation/agentes/networkmap.dinamic.php:150
+#: ../../operation/agentes/pandora_networkmap.view.php:2414
msgid "Network maps"
msgstr "Cartes de réseau"
@@ -51824,159 +52369,153 @@ msgstr "Impossible de se connecter : %s"
msgid "Latest events"
msgstr "Derniers événements"
-#: ../../include/functions_events.php:2910
+#: ../../include/functions_events.php:2915
msgid "Going to unknown"
msgstr "Changement à état inconnu"
-#: ../../include/functions_events.php:2918
+#: ../../include/functions_events.php:2923
msgid "Alert manually validated"
msgstr "Alerte validée manuellement"
-#: ../../include/functions_events.php:2922
+#: ../../include/functions_events.php:2927
msgid "Going from critical to warning"
msgstr "Changement de l'état critique à l'état d'alerte"
-#: ../../include/functions_events.php:2928
+#: ../../include/functions_events.php:2933
msgid "Going up to critical state"
msgstr "Passage à l'état critique"
-#: ../../include/functions_events.php:2934
+#: ../../include/functions_events.php:2939
msgid "Going up to normal state"
msgstr "Passage à l'état normal"
-#: ../../include/functions_events.php:2938
+#: ../../include/functions_events.php:2943
msgid "Going down from normal to warning"
msgstr "Passage de l'état normal à l'état d'alerte"
-#: ../../include/functions_events.php:2950
+#: ../../include/functions_events.php:2955
msgid "Discovery server detected a new host"
msgstr "Le serveur Discovery a détecté un nouvel hôte"
-#: ../../include/functions_events.php:2954
+#: ../../include/functions_events.php:2959
msgid "New agent created"
msgstr "Nouvel agent créé"
-#: ../../include/functions_events.php:2971
+#: ../../include/functions_events.php:2976
msgid "Unknown type:"
msgstr "Type inconnu :"
-#: ../../include/functions_events.php:3262
-#: ../../include/functions_events.php:3293
+#: ../../include/functions_events.php:3267
+#: ../../include/functions_events.php:3298
msgid "Only new"
msgstr "Uniquement les nouveaux"
-#: ../../include/functions_events.php:3264
-#: ../../include/functions_events.php:3301
+#: ../../include/functions_events.php:3269
+#: ../../include/functions_events.php:3306
msgid "Only in process"
msgstr "Uniquement ceux en cours"
-#: ../../include/functions_events.php:3265
-#: ../../include/functions_events.php:3305
+#: ../../include/functions_events.php:3270
+#: ../../include/functions_events.php:3310
msgid "Only not validated"
msgstr "Uniquement les non validés"
-#: ../../include/functions_events.php:3270
-#: ../../include/functions_events.php:3543
-#: ../../include/functions_events.php:3552
-msgid "In process"
-msgstr "En cours"
-
-#: ../../include/functions_events.php:3271
+#: ../../include/functions_events.php:3276
msgid "Not Validated"
msgstr "Non validés"
-#: ../../include/functions_events.php:3463
+#: ../../include/functions_events.php:3468
msgid "Change owner"
msgstr "Changer de propriétaire"
-#: ../../include/functions_events.php:3528
+#: ../../include/functions_events.php:3533
msgid "Change status"
msgstr "Modifier l'état"
-#: ../../include/functions_events.php:3625
-#: ../../include/functions_events.php:5361
+#: ../../include/functions_events.php:3630
+#: ../../include/functions_events.php:5366
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330
msgid "Add comment"
msgstr "Ajouter un commentaire"
-#: ../../include/functions_events.php:3648
-#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978
+#: ../../include/functions_events.php:3653
+#: ../../include/functions_events.php:3657 ../../operation/events/events.php:983
msgid "Delete event"
msgstr "Supprimer l'événement"
-#: ../../include/functions_events.php:3675
+#: ../../include/functions_events.php:3680
msgid "Custom responses"
msgstr "Réponses personnalisées"
-#: ../../include/functions_events.php:4281
+#: ../../include/functions_events.php:4286
msgid "Extended information"
msgstr "Informations étendues"
-#: ../../include/functions_events.php:4312
+#: ../../include/functions_events.php:4317
msgid "There was an error connecting to the node"
msgstr "Erreur de connexion au nœud"
-#: ../../include/functions_events.php:4333
+#: ../../include/functions_events.php:4338
msgid "Agent details"
msgstr "Détails de l'agent"
-#: ../../include/functions_events.php:4347
+#: ../../include/functions_events.php:4352
msgid "This agent belongs to metaconsole, is not possible display it"
msgstr ""
"Cet agent appartient à la Métaconsole, il n'est pas possible de l'afficher"
-#: ../../include/functions_events.php:4442
+#: ../../include/functions_events.php:4447
msgid "View custom fields"
msgstr "Afficher les champs personnalisés"
-#: ../../include/functions_events.php:4465
+#: ../../include/functions_events.php:4470
msgid "Module details"
msgstr "Détails du module"
-#: ../../include/functions_events.php:4481
+#: ../../include/functions_events.php:4486
msgid "No assigned"
msgstr "Non attribué"
-#: ../../include/functions_events.php:4562
-#: ../../include/functions_events.php:4571
+#: ../../include/functions_events.php:4567
+#: ../../include/functions_events.php:4576
msgid "Go to data overview"
msgstr "Accéder à l'aperçu de données"
-#: ../../include/functions_events.php:4688
+#: ../../include/functions_events.php:4693
#, php-format
msgid "Invalid custom data: %s"
msgstr "Données personnalisées non valides : %s"
-#: ../../include/functions_events.php:4917
+#: ../../include/functions_events.php:4922
msgid "First event"
msgstr "Premier événement"
-#: ../../include/functions_events.php:4920
+#: ../../include/functions_events.php:4925
msgid "Last event"
msgstr "Dernier événement"
-#: ../../include/functions_events.php:5017
+#: ../../include/functions_events.php:5022
msgid "Autovalidated"
msgstr "Autovalidé"
-#: ../../include/functions_events.php:5093
+#: ../../include/functions_events.php:5098
msgid "ID extra"
msgstr "Identifiant supplémentaire"
-#: ../../include/functions_events.php:5210
+#: ../../include/functions_events.php:5215
msgid "There are no comments"
msgstr "Aucun commentaire"
-#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214
+#: ../../include/functions_events.php:5279
msgid "by"
msgstr "par"
-#: ../../include/functions_events.php:5941
+#: ../../include/functions_events.php:5946
#, php-format
msgid "Event # %d"
msgstr "Événement # %d"
-#: ../../include/functions_events.php:5944
+#: ../../include/functions_events.php:5949
msgid "Executing command: "
msgstr "Exécution de la commande : "
@@ -52052,15 +52591,15 @@ msgstr "Erreur SAML"
msgid "User is blocked"
msgstr "L’utilisateur est bloqué"
-#: ../../index.php:1003
+#: ../../index.php:1004
msgid "User doesn\\'t exist."
msgstr "L'utilisateur n'existe pas"
-#: ../../index.php:1025
+#: ../../index.php:1026
msgid "User only can use the API."
msgstr "L'utilisateur peut seulement utiliser l'API."
-#: ../../index.php:1231
+#: ../../index.php:1232
#, php-format
msgid "Metaconsole MR (%d) is different than this one (%d)"
msgstr "La Métaconsole MR (%d) est différent de celui-ci (%d)"
@@ -52097,35 +52636,35 @@ msgstr "groupes de modules"
msgid "policies"
msgstr "politiques"
-#: ../../operation/tree.php:215
+#: ../../operation/tree.php:216
msgid "Search group"
msgstr "Rechercher groupe"
-#: ../../operation/tree.php:221 ../../operation/tree.php:310
+#: ../../operation/tree.php:222 ../../operation/tree.php:312
msgid "Show not init modules"
msgstr "Afficher les modules non initialisés"
-#: ../../operation/tree.php:232
+#: ../../operation/tree.php:233
msgid "Search agent"
msgstr "Rechercher agent"
-#: ../../operation/tree.php:244
+#: ../../operation/tree.php:245
msgid "Show not init agents"
msgstr "Afficher les agents non initialisés"
-#: ../../operation/tree.php:254
+#: ../../operation/tree.php:255
msgid "Show full hirearchy"
msgstr "Afficher hiérarchie complète"
-#: ../../operation/tree.php:288
+#: ../../operation/tree.php:289
msgid "Show only disabled"
msgstr "Afficher uniquement désactivé"
-#: ../../operation/tree.php:305
+#: ../../operation/tree.php:307
msgid "Search module"
msgstr "Rechercher module"
-#: ../../operation/tree.php:355
+#: ../../operation/tree.php:357
msgid "Tree search"
msgstr "Rechercher arborescence"
@@ -52208,34 +52747,29 @@ msgstr ""
"Si vous cochez cette case, la taille du bloc de la configuration globale sera "
"utilisée"
-#: ../../operation/users/user_edit.php:519
-#: ../../operation/users/user_edit.php:528
+#: ../../operation/users/user_edit.php:524
msgid "Theme"
msgstr "Thème"
-#: ../../operation/users/user_edit.php:529
-msgid "This change will only apply to nodes"
-msgstr "Cette modification ne s’appliquera qu’aux nœuds"
-
-#: ../../operation/users/user_edit.php:846
+#: ../../operation/users/user_edit.php:843
msgid "eHorus user configuration"
msgstr "Configuration utilisateur eHorus"
-#: ../../operation/users/user_edit.php:851
+#: ../../operation/users/user_edit.php:848
msgid "eHorus user acces enabled"
msgstr "Accès utilisateur eHorus activé"
-#: ../../operation/users/user_edit.php:905
+#: ../../operation/users/user_edit.php:902
msgid "Integria user configuration"
msgstr "Configuration d’utilisateur Integria"
-#: ../../operation/users/user_edit.php:948
+#: ../../operation/users/user_edit.php:945
msgid "You can not change your user info under the current authentication scheme"
msgstr ""
"Vous ne pouvez pas modifier vos informations d'utilisateur sous le schéma "
"d'authentification actuel"
-#: ../../operation/users/user_edit.php:1036
+#: ../../operation/users/user_edit.php:1033
msgid "This user doesn't have any assigned profile/group."
msgstr "Cet utilisateur n'a aucun profil/groupe assigné."
@@ -52267,41 +52801,41 @@ msgstr ""
msgid "Matches"
msgstr "Concordances"
-#: ../../operation/visual_console/view.php:407
+#: ../../operation/visual_console/view.php:409
msgid "Delete Item"
msgstr "Supprimer l'élément"
-#: ../../operation/visual_console/view.php:413
+#: ../../operation/visual_console/view.php:415
msgid "Copy Item"
msgstr "Copier l'élément"
-#: ../../operation/visual_console/view.php:430
+#: ../../operation/visual_console/view.php:432
msgid "Force remote checks"
msgstr "Forcer les vérifications à distance"
-#: ../../operation/visual_console/view.php:788
+#: ../../operation/visual_console/view.php:790
msgid "Are you sure you wish to set the visual console in maintenance mode"
msgstr ""
"Êtes-vous sûr de vouloir mettre la console visuelle en mode maintenance ?"
-#: ../../operation/visual_console/view.php:791
-#: ../../operation/visual_console/view.php:798
+#: ../../operation/visual_console/view.php:793
+#: ../../operation/visual_console/view.php:800
msgid "Are you sure you wish to disable maintenance mode"
msgstr "Êtes-vous sûr de vouloir désactiver le mode maintenance ?"
-#: ../../operation/visual_console/view.php:794
+#: ../../operation/visual_console/view.php:796
msgid "The visual console was set to maintenance mode"
msgstr "La console visuelle a été réglée en mode maintenance"
-#: ../../operation/visual_console/view.php:796
+#: ../../operation/visual_console/view.php:798
msgid "ago by user"
msgstr "par l’utilisateur"
-#: ../../operation/visual_console/view.php:803
+#: ../../operation/visual_console/view.php:805
msgid "Maintenance mode"
msgstr "Mode maintenance"
-#: ../../operation/visual_console/view.php:864
+#: ../../operation/visual_console/view.php:866
msgid "Are you sure"
msgstr "Êtes-vous certain"
@@ -52333,64 +52867,65 @@ msgstr "Heure de rafraîchissement"
msgid "Show events"
msgstr "Afficher les événements"
-#: ../../operation/agentes/stat_win.php:299
+#: ../../operation/agentes/stat_win.php:303
#: ../../operation/agentes/graphs.php:239
msgid "Show alerts"
msgstr "Afficher les alertes"
-#: ../../operation/agentes/stat_win.php:307
-#: ../../operation/agentes/stat_win.php:418
-#: ../../operation/agentes/interface_traffic_graph_win.php:209
+#: ../../operation/agentes/stat_win.php:311
+#: ../../operation/agentes/stat_win.php:430
+#: ../../operation/agentes/interface_traffic_graph_win.php:214
msgid "Begin time"
msgstr "Heure de début"
-#: ../../operation/agentes/stat_win.php:325
-#: ../../operation/agentes/stat_win.php:428
-#: ../../operation/agentes/interface_traffic_graph_win.php:215
+#: ../../operation/agentes/stat_win.php:333
+#: ../../operation/agentes/stat_win.php:444
+#: ../../operation/agentes/interface_traffic_graph_win.php:231
#: ../../operation/agentes/graphs.php:233
#: ../../operation/reporting/graph_viewer.php:346
msgid "Time range"
msgstr "Intervalle de temps"
-#: ../../operation/agentes/stat_win.php:340
+#: ../../operation/agentes/stat_win.php:348
#: ../../operation/reporting/graph_viewer.php:390
msgid "Zoom"
msgstr "Zoom"
-#: ../../operation/agentes/stat_win.php:360
-#: ../../operation/agentes/interface_traffic_graph_win.php:229
+#: ../../operation/agentes/stat_win.php:368
+#: ../../operation/agentes/interface_traffic_graph_win.php:245
msgid "Show percentil"
msgstr "Afficher centile"
-#: ../../operation/agentes/stat_win.php:386
+#: ../../operation/agentes/stat_win.php:394
msgid "Show AVG/MAX/MIN data series in graph"
msgstr "Afficher les séries de données MOY/MAX/MIN dans le graphique"
-#: ../../operation/agentes/stat_win.php:484
-#: ../../operation/agentes/interface_traffic_graph_win.php:308
+#: ../../operation/agentes/stat_win.php:500
+#: ../../operation/agentes/interface_traffic_graph_win.php:318
+#: ../../operation/agentes/interface_traffic_graph_win.php:322
msgid "Graph configuration menu"
msgstr "Menu de configuration du graphique"
-#: ../../operation/agentes/alerts_status.php:344
+#: ../../operation/agentes/alerts_status.php:346
msgid "No actions"
msgstr "Aucune action"
-#: ../../operation/agentes/alerts_status.php:378
-#: ../../operation/agentes/estado_monitores.php:577
+#: ../../operation/agentes/alerts_status.php:380
+#: ../../operation/agentes/estado_monitores.php:575
#: ../../operation/agentes/alerts_status.functions.php:223
msgid "Free text for search (*):"
msgstr "Texte libre pour la recherche (*):"
-#: ../../operation/agentes/alerts_status.php:379
+#: ../../operation/agentes/alerts_status.php:381
#: ../../operation/agentes/alerts_status.functions.php:224
msgid "Filter by module name, template name or action name"
msgstr "Filtrer par nom de module, nom de modèle ou nom d'action"
-#: ../../operation/agentes/alerts_status.php:475
+#: ../../operation/agentes/alerts_status.php:481
msgid "Full list of alerts"
msgstr "Liste complète des alertes"
-#: ../../operation/agentes/alerts_status.php:567
+#: ../../operation/agentes/alerts_status.php:577
msgid "You must select at least one alert."
msgstr "Vous devez sélectionner au moins une alerte."
@@ -52464,15 +52999,15 @@ msgid "Search in custom fields"
msgstr "Rechercher dans les champs personnalisés"
#: ../../operation/agentes/estado_agente.php:467
-#: ../../operation/agentes/status_monitor.php:1058
+#: ../../operation/agentes/status_monitor.php:1060
msgid "Manage filter"
msgstr "Gérer le filtre"
-#: ../../operation/agentes/estado_agente.php:1059
+#: ../../operation/agentes/estado_agente.php:1067
msgid "L.S change"
msgstr "Changement L.S"
-#: ../../operation/agentes/estado_agente.php:1238
+#: ../../operation/agentes/estado_agente.php:1247
msgid "Agent events"
msgstr "Evénements de l’agent"
@@ -52519,14 +53054,14 @@ msgid "Latest events for this agent"
msgstr "Derniers événements pour cet agent"
#: ../../operation/agentes/networkmap.dinamic.php:102
-#: ../../operation/agentes/pandora_networkmap.view.php:2347
+#: ../../operation/agentes/pandora_networkmap.view.php:2348
#: ../../operation/snmpconsole/snmp_statistics.php:45
#: ../../operation/snmpconsole/snmp_browser.php:56
msgid "Normal screen"
msgstr "Écran normal"
#: ../../operation/agentes/networkmap.dinamic.php:126
-#: ../../operation/agentes/pandora_networkmap.view.php:2375
+#: ../../operation/agentes/pandora_networkmap.view.php:2376
msgid "List of networkmap"
msgstr "Liste de cartes de réseau"
@@ -52706,39 +53241,39 @@ msgid "Succesfully created"
msgstr "Créée correctement"
#: ../../operation/agentes/pandora_networkmap.php:215
-#: ../../operation/agentes/pandora_networkmap.php:514
+#: ../../operation/agentes/pandora_networkmap.php:515
msgid "Succesfully updated"
msgstr "Mise à jour correctement"
-#: ../../operation/agentes/pandora_networkmap.php:539
+#: ../../operation/agentes/pandora_networkmap.php:540
msgid "Succesfully duplicate"
msgstr "Dupliquée correctement"
-#: ../../operation/agentes/pandora_networkmap.php:562
+#: ../../operation/agentes/pandora_networkmap.php:563
msgid "Succesfully deleted"
msgstr "Supprimée correctement"
-#: ../../operation/agentes/pandora_networkmap.php:672
+#: ../../operation/agentes/pandora_networkmap.php:673
msgid "List of network maps"
msgstr "Liste des cartes du réseau"
-#: ../../operation/agentes/pandora_networkmap.php:787
+#: ../../operation/agentes/pandora_networkmap.php:788
msgid "Empty map"
msgstr "Carte vide"
-#: ../../operation/agentes/pandora_networkmap.php:791
+#: ../../operation/agentes/pandora_networkmap.php:792
msgid "Pending to generate"
msgstr "En attente de générer"
-#: ../../operation/agentes/pandora_networkmap.php:846
+#: ../../operation/agentes/pandora_networkmap.php:847
msgid "There are no maps defined."
msgstr "Aucune carte définie"
-#: ../../operation/agentes/pandora_networkmap.php:860
+#: ../../operation/agentes/pandora_networkmap.php:861
msgid "Create network map"
msgstr "Créer une carte de réseau"
-#: ../../operation/agentes/pandora_networkmap.php:860
+#: ../../operation/agentes/pandora_networkmap.php:861
msgid "Create empty network map"
msgstr "Créer une carte réseau vide"
@@ -52747,11 +53282,11 @@ msgstr "Créer une carte réseau vide"
msgid "%s Interface Graph"
msgstr "%s Graphique d'interface"
-#: ../../operation/agentes/interface_traffic_graph_win.php:252
+#: ../../operation/agentes/interface_traffic_graph_win.php:268
msgid "Zoom factor"
msgstr "Facteur de zoom"
-#: ../../operation/agentes/interface_traffic_graph_win.php:259
+#: ../../operation/agentes/interface_traffic_graph_win.php:275
msgid "Full"
msgstr "Complet"
@@ -52816,15 +53351,15 @@ msgid "Custom graph create from the tab graphs in the agent."
msgstr ""
"Graphique personnalisé créé à partir de la section des graphiques de l'agent"
-#: ../../operation/agentes/datos_agente.php:173
+#: ../../operation/agentes/datos_agente.php:174
msgid "Received data from"
msgstr "Données reçues de"
-#: ../../operation/agentes/datos_agente.php:180
+#: ../../operation/agentes/datos_agente.php:181
msgid "Main database"
msgstr "Base de données principale"
-#: ../../operation/agentes/datos_agente.php:181
+#: ../../operation/agentes/datos_agente.php:182
msgid ""
"Switch between the main database and the history database to retrieve module "
"data"
@@ -52832,7 +53367,7 @@ msgstr ""
"Changez entre la base de données principale et la base de données de "
"l'historique pour récupérer les données du module."
-#: ../../operation/agentes/datos_agente.php:211
+#: ../../operation/agentes/datos_agente.php:213
#: ../../operation/agentes/alerts_status.functions.php:151
msgid "Free text for search"
msgstr "Texte libre pour recherche"
@@ -52867,7 +53402,7 @@ msgid "% Bandwidth usage (out)"
msgstr "% d'utilisation de la bande passante (sortie)"
#: ../../operation/agentes/interface_view.functions.php:731
-#: ../../operation/agentes/pandora_networkmap.view.php:1308
+#: ../../operation/agentes/pandora_networkmap.view.php:1309
msgid "inOctets and outOctets must be enabled."
msgstr "inOctets et outOctets doivent être activés."
@@ -52922,28 +53457,24 @@ msgstr "Aucun champ défini"
msgid "Interface view"
msgstr "Vue de l'interface"
-#: ../../operation/agentes/status_monitor.php:327 ../../operation/menu.php:186
-msgid "Monitor detail"
-msgstr "Détail des moniteurs"
-
-#: ../../operation/agentes/status_monitor.php:592
+#: ../../operation/agentes/status_monitor.php:591
#: ../../operation/agentes/alerts_status.functions.php:127
msgid "No tags"
msgstr "Aucune étiquette"
-#: ../../operation/agentes/status_monitor.php:675
+#: ../../operation/agentes/status_monitor.php:674
msgid "Wux server module"
msgstr "Module du serveur WUX"
-#: ../../operation/agentes/status_monitor.php:971
+#: ../../operation/agentes/status_monitor.php:973
msgid "Min. hours in current status"
msgstr "Heures min. dans l'état actuel"
-#: ../../operation/agentes/status_monitor.php:981
+#: ../../operation/agentes/status_monitor.php:983
msgid "Not condition"
msgstr "Pas de condition"
-#: ../../operation/agentes/status_monitor.php:996
+#: ../../operation/agentes/status_monitor.php:998
msgid ""
"If you check this option, those elements that do NOT meet any of the "
"requirements will be shown"
@@ -52951,26 +53482,26 @@ msgstr ""
"Si vous cochez cette option, les éléments qui ne répondent à aucune des "
"exigences seront affichés"
-#: ../../operation/agentes/status_monitor.php:1541
+#: ../../operation/agentes/status_monitor.php:1543
msgid "Data Type"
msgstr "Type de données"
-#: ../../operation/agentes/status_monitor.php:1585
+#: ../../operation/agentes/status_monitor.php:1587
msgid "W/C"
msgstr "W/C"
-#: ../../operation/agentes/status_monitor.php:1671
-#: ../../operation/agentes/pandora_networkmap.view.php:1819
+#: ../../operation/agentes/status_monitor.php:1673
+#: ../../operation/agentes/pandora_networkmap.view.php:1820
msgid "(Adopt) "
msgstr "(Adopter) "
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/pandora_networkmap.view.php:1827
+#: ../../operation/agentes/status_monitor.php:1681
+#: ../../operation/agentes/pandora_networkmap.view.php:1828
msgid "(Unlinked) (Adopt) "
msgstr "(Dissocié) (Adopter) "
-#: ../../operation/agentes/status_monitor.php:1682
-#: ../../operation/agentes/pandora_networkmap.view.php:1830
+#: ../../operation/agentes/status_monitor.php:1684
+#: ../../operation/agentes/pandora_networkmap.view.php:1831
msgid "(Unlinked) "
msgstr "(Dissocié) "
@@ -52978,6 +53509,10 @@ msgstr "(Dissocié) "
msgid "Summary of the status groups"
msgstr "Résumé des groupes par état"
+#: ../../operation/agentes/group_view.php:233
+msgid "Total items"
+msgstr "Total des éléments"
+
#: ../../operation/agentes/estado_monitores.php:51
msgid "Tag's information"
msgstr "Information des étiquettes"
@@ -52994,23 +53529,15 @@ msgstr "Modules non initialisés trouvés."
msgid "List of modules"
msgstr "Liste de modules"
-#: ../../operation/agentes/estado_monitores.php:191
-msgid ""
-"To see the list of modules paginated, enable this option in the Styles "
-"Configuration."
-msgstr ""
-"Pour afficher la liste de modules paginés, activez cette option dans la "
-"configuration de styles."
-
-#: ../../operation/agentes/estado_monitores.php:519
+#: ../../operation/agentes/estado_monitores.php:516
msgid "Not Normal"
msgstr "Pas normal"
-#: ../../operation/agentes/estado_monitores.php:559
+#: ../../operation/agentes/estado_monitores.php:557
msgid "Status:"
msgstr "État :"
-#: ../../operation/agentes/estado_monitores.php:578
+#: ../../operation/agentes/estado_monitores.php:576
msgid "Search by module name, list matches."
msgstr "Rechercher par nom de module, concordances de listes"
@@ -53020,24 +53547,24 @@ msgstr ""
"Afficher uniquement la tâche avec le script de reconnaissance \"SNMP L2 Recon"
"\"."
-#: ../../operation/agentes/pandora_networkmap.view.php:1687
+#: ../../operation/agentes/pandora_networkmap.view.php:1688
msgid "Success be updated."
msgstr "Mis à jour correctement"
-#: ../../operation/agentes/pandora_networkmap.view.php:1784
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
msgid "Name: "
msgstr "Nom : "
-#: ../../operation/agentes/pandora_networkmap.view.php:1834
+#: ../../operation/agentes/pandora_networkmap.view.php:1835
msgid "Policy: "
msgstr "Politique : "
-#: ../../operation/agentes/pandora_networkmap.view.php:1931
+#: ../../operation/agentes/pandora_networkmap.view.php:1932
msgid "Data: "
msgstr "Données : "
-#: ../../operation/agentes/pandora_networkmap.view.php:1933
-#: ../../operation/agentes/estado_generalagente.php:923
+#: ../../operation/agentes/pandora_networkmap.view.php:1934
+#: ../../operation/agentes/estado_generalagente.php:830
msgid "Last contact: "
msgstr "Dernier contact : "
@@ -53045,27 +53572,27 @@ msgstr "Dernier contact : "
msgid "Sons"
msgstr "Fils"
-#: ../../operation/agentes/ver_agente.php:1596
+#: ../../operation/agentes/ver_agente.php:1592
msgid "Log Viewer"
msgstr "Visionneur de journaux"
-#: ../../operation/agentes/ver_agente.php:1635
+#: ../../operation/agentes/ver_agente.php:1631
msgid "Terminal"
msgstr "Terminal"
-#: ../../operation/agentes/ver_agente.php:1657
+#: ../../operation/agentes/ver_agente.php:1653
msgid "Processes"
msgstr "Processus"
-#: ../../operation/agentes/ver_agente.php:1840
+#: ../../operation/agentes/ver_agente.php:1836
msgid "Data View"
msgstr "Vue des données"
-#: ../../operation/agentes/ver_agente.php:1910
+#: ../../operation/agentes/ver_agente.php:1906
msgid "Network configuration"
msgstr "Configuration réseau"
-#: ../../operation/agentes/ver_agente.php:1925
+#: ../../operation/agentes/ver_agente.php:1921
msgid "Agent main view"
msgstr "Vue principale de l’agent"
@@ -53078,43 +53605,27 @@ msgstr ""
msgid "In scheduled downtime"
msgstr "En arrêt planifié"
-#: ../../operation/agentes/estado_generalagente.php:395
+#: ../../operation/agentes/estado_generalagente.php:366
msgid "Agent contact"
msgstr "Contact de l'agent"
-#: ../../operation/agentes/estado_generalagente.php:401
+#: ../../operation/agentes/estado_generalagente.php:372
msgid "Refresh data"
msgstr "Rafraîchir les données"
-#: ../../operation/agentes/estado_generalagente.php:435
-msgid "Out of bounds"
-msgstr "Hors limites"
-
-#: ../../operation/agentes/estado_generalagente.php:470
-msgid "Next contact"
-msgstr "Contact suivant"
-
-#: ../../operation/agentes/estado_generalagente.php:555
-msgid "There is no GIS data."
-msgstr "Aucune donnée GIS"
-
-#: ../../operation/agentes/estado_generalagente.php:688
+#: ../../operation/agentes/estado_generalagente.php:657
msgid "Agent access rate (Last 24h)"
msgstr "Taux d'accès des agents (dernières 24h)"
-#: ../../operation/agentes/estado_generalagente.php:745
+#: ../../operation/agentes/estado_generalagente.php:714
msgid "Active incident on this agent"
msgstr "Incident actif sur cet agent"
-#: ../../operation/agentes/estado_generalagente.php:903
-msgid "Events info (24hr.)"
-msgstr "Information des événements (24h)"
-
-#: ../../operation/agentes/estado_generalagente.php:1050
+#: ../../operation/agentes/estado_generalagente.php:957
msgid "Agent data"
msgstr "Données de l'agent"
-#: ../../operation/agentes/estado_generalagente.php:1111
+#: ../../operation/agentes/estado_generalagente.php:1018
msgid "Interface information (SNMP)"
msgstr "Information de l'interface (SNMP)"
@@ -53122,8 +53633,8 @@ msgstr "Information de l'interface (SNMP)"
msgid "This agent has not modules inventory"
msgstr "Cet agent n'a pas de modules d'inventaire."
-#: ../../operation/agentes/agent_inventory.php:193
-#: ../../operation/agentes/agent_inventory.php:194
+#: ../../operation/agentes/agent_inventory.php:248
+#: ../../operation/agentes/agent_inventory.php:249
msgid "Diff view"
msgstr "Affichage des différence"
@@ -53278,7 +53789,7 @@ msgstr "Nombre de résultat à afficher"
#: ../../operation/network/network_report.php:183
#: ../../operation/network/network_usage_map.php:189
-#: ../../operation/netflow/nf_live_view.php:483
+#: ../../operation/netflow/nf_live_view.php:556
msgid "Defined period"
msgstr "Période définie"
@@ -53314,47 +53825,56 @@ msgstr "Afficher la carte netflow"
msgid "Results to show"
msgstr "Résultats à afficher"
-#: ../../operation/netflow/nf_live_view.php:130
+#: ../../operation/netflow/nf_live_view.php:135
msgid "Netflow live view"
msgstr "Netflow en temps réel"
-#: ../../operation/netflow/nf_live_view.php:163
+#: ../../operation/netflow/nf_live_view.php:172
msgid "Error creating filter"
msgstr "Erreur de création du filtre"
-#: ../../operation/netflow/nf_live_view.php:165
+#: ../../operation/netflow/nf_live_view.php:174
msgid "Filter created successfully"
msgstr "Filtre créé correctement"
-#: ../../operation/netflow/nf_live_view.php:184
+#: ../../operation/netflow/nf_live_view.php:193
msgid "Filter updated successfully"
msgstr "Filtre mis à jour correctement"
-#: ../../operation/netflow/nf_live_view.php:185
+#: ../../operation/netflow/nf_live_view.php:194
msgid "Error updating filter"
msgstr "Erreur de mise à jour du filtre"
-#: ../../operation/netflow/nf_live_view.php:228
+#: ../../operation/netflow/nf_live_view.php:237
msgid "Connection"
msgstr "Connexion"
-#: ../../operation/netflow/nf_live_view.php:284
+#: ../../operation/netflow/nf_live_view.php:293
msgid "Select a filter"
msgstr "Sélectionner un filtre"
-#: ../../operation/netflow/nf_live_view.php:357
+#: ../../operation/netflow/nf_live_view.php:366
msgid "IP address resolution"
msgstr "Résolution de l'adresse IP"
-#: ../../operation/netflow/nf_live_view.php:357
+#: ../../operation/netflow/nf_live_view.php:366
msgid "Resolve the IP addresses to get their hostnames."
msgstr "Résoudre les adresses IP pour obtenir leurs noms d'hôte"
-#: ../../operation/netflow/nf_live_view.php:360
+#: ../../operation/netflow/nf_live_view.php:369
msgid "Source ip"
msgstr "IP source"
-#: ../../operation/netflow/nf_live_view.php:465
+#: ../../operation/netflow/nf_live_view.php:387
+msgid "New filter name"
+msgstr "Nouveau nom de filtre"
+
+#: ../../operation/netflow/nf_live_view.php:425
+#, php-format
+msgid "WARNING threshold for the maximum % of traffic of an IP."
+msgstr "Seuil d’AVERTISSEMENT pour le maximum % de traffic pour une IP."
+
+#: ../../operation/netflow/nf_live_view.php:538
#: ../../operation/incidents/integriaims_export_csv.php:84
#: ../../operation/incidents/configure_integriaims_incident.php:353
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:339
@@ -53362,31 +53882,31 @@ msgstr "IP source"
msgid "Resolution"
msgstr "Résolution"
-#: ../../operation/netflow/nf_live_view.php:477
+#: ../../operation/netflow/nf_live_view.php:550
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:508
+#: ../../operation/netflow/nf_live_view.php:581
msgid "Aggregated by"
-msgstr "Agrégé par"
+msgstr "Ajouté par"
-#: ../../operation/netflow/nf_live_view.php:525
+#: ../../operation/netflow/nf_live_view.php:598
msgid "Max values"
msgstr "Valeurs maximales"
-#: ../../operation/netflow/nf_live_view.php:575
+#: ../../operation/netflow/nf_live_view.php:648
msgid "Draw"
msgstr "Dessiner"
-#: ../../operation/netflow/nf_live_view.php:587
+#: ../../operation/netflow/nf_live_view.php:660
msgid "Save as new filter"
msgstr "Enregistrer comme nouveau filtre"
-#: ../../operation/netflow/nf_live_view.php:588
+#: ../../operation/netflow/nf_live_view.php:661
msgid "Update current filter"
msgstr "Mise à jour de ce filtre"
-#: ../../operation/netflow/nf_live_view.php:618
+#: ../../operation/netflow/nf_live_view.php:691
msgid "No filter selected"
msgstr "Aucun filtre sélectionné"
@@ -53419,19 +53939,20 @@ msgstr "Déroutements reçus par la chaîne d'Enterprise"
msgid "Trap Enterprise String"
msgstr "Déroutement Enterprise de chaîne"
-#: ../../operation/snmpconsole/snmp_browser.php:77
+#: ../../operation/snmpconsole/snmp_browser.php:79
msgid "SNMP Browser"
msgstr "Explorateur SNMP"
-#: ../../operation/snmpconsole/snmp_browser.php:218
+#: ../../operation/snmpconsole/snmp_browser.php:223
msgid "Adding modules in progress"
msgstr "Ajout de modules en cours"
-#: ../../operation/snmpconsole/snmp_browser.php:546
+#: ../../operation/snmpconsole/snmp_browser.php:551
msgid "Create policy"
msgstr "Créer une politique"
-#: ../../operation/snmpconsole/snmp_browser.php:638
+#: ../../operation/snmpconsole/snmp_browser.php:621
+#: ../../operation/snmpconsole/snmp_browser.php:697
msgid "Are you sure you want add module?"
msgstr "Êtes-vous sûr de vouloir ajouter un module ?"
@@ -53478,11 +53999,10 @@ msgid "RSS"
msgstr "RSS"
#: ../../operation/menu.php:570 ../../operation/menu.php:583
-#: ../../operation/events/sound_events.php:63
-#: ../../operation/events/sound_events.php:164
-#: ../../operation/events/events.php:1532 ../../operation/events/events.php:1582
-msgid "Accoustic console"
-msgstr "Console acoustique"
+#: ../../operation/events/sound_events.php:62
+#: ../../operation/events/events.php:1586 ../../operation/events/events.php:1636
+msgid "Acoustic console"
+msgstr "Console sonore"
#: ../../operation/menu.php:648
msgid "Configure user notifications"
@@ -53744,44 +54264,42 @@ msgstr "Mis à jour/Démarré"
msgid "No tickets to show"
msgstr "Aucun ticket à afficher"
-#: ../../operation/inventory/inventory.php:535
-#: ../../operation/inventory/inventory.php:570
+#: ../../operation/inventory/inventory.php:537
+#: ../../operation/inventory/inventory.php:572
msgid "Basic info"
msgstr "Infos de base"
-#: ../../operation/inventory/inventory.php:661
+#: ../../operation/inventory/inventory.php:663
msgid "Order by agent"
msgstr "Ordonner par agent"
-#: ../../operation/inventory/inventory.php:733
+#: ../../operation/inventory/inventory.php:734
msgid "You must select at least one filter."
msgstr "Vous devez sélectionner au moins un filtre."
-#: ../../operation/inventory/inventory.php:859
-#: ../../operation/inventory/inventory.php:860
-#: ../../operation/inventory/inventory.php:948
-#: ../../operation/inventory/inventory.php:949
-#: ../../operation/inventory/inventory.php:1100
-#: ../../operation/inventory/inventory.php:1101
-#: ../../operation/inventory/inventory.php:1211
-#: ../../operation/inventory/inventory.php:1212
+#: ../../operation/inventory/inventory.php:814
+#: ../../operation/inventory/inventory.php:815
+#: ../../operation/inventory/inventory.php:925
+#: ../../operation/inventory/inventory.php:926
+#: ../../operation/inventory/inventory.php:1086
+#: ../../operation/inventory/inventory.php:1087
+#: ../../operation/inventory/inventory.php:1176
+#: ../../operation/inventory/inventory.php:1177
+#: ../../operation/inventory/inventory.php:1206
+#: ../../operation/inventory/inventory.php:1207
msgid "No inventory found"
msgstr "Aucun inventaire trouvé"
-#: ../../operation/inventory/inventory.php:1001
-#: ../../operation/inventory/inventory.php:1295
+#: ../../operation/inventory/inventory.php:1247
msgid "Secondary IP"
msgstr "IP secondaire"
-#: ../../operation/inventory/inventory.php:1010
-#: ../../operation/inventory/inventory.php:1304
+#: ../../operation/inventory/inventory.php:1256
msgid "Values Custom Fields"
msgstr "Valeurs des champs personnalisés"
-#: ../../operation/inventory/inventory.php:1031
-#: ../../operation/inventory/inventory.php:1032
-#: ../../operation/inventory/inventory.php:1325
-#: ../../operation/inventory/inventory.php:1326
+#: ../../operation/inventory/inventory.php:1278
+#: ../../operation/inventory/inventory.php:1279
msgid "Agent info not found"
msgstr "Informations sur l’agent introuvables"
@@ -53871,14 +54389,6 @@ msgstr "Aucune donnée"
msgid "Custom graph viewer"
msgstr "Affichage personnalisé du tableau"
-#: ../../operation/events/sound_events.php:229
-msgid "Time Sound"
-msgstr "Cronométrer mélodie"
-
-#: ../../operation/events/sound_events.php:288
-msgid "Events not found"
-msgstr "Événements introuvables"
-
#: ../../operation/events/events_rss.php:195
msgid "Your IP is not into the IP list with API access."
msgstr "Votre adresse IP n'est pas dans la liste IP avec accès à l'API"
@@ -53887,174 +54397,174 @@ msgstr "Votre adresse IP n'est pas dans la liste IP avec accès à l'API"
msgid "The URL of your feed has bad hash."
msgstr "L'URL de votre flux a un mauvais hachage."
-#: ../../operation/events/events.php:884
+#: ../../operation/events/events.php:889
msgid "Validate events"
msgstr "Valider les événements"
-#: ../../operation/events/events.php:901
+#: ../../operation/events/events.php:906
msgid "Validate event"
msgstr "Valider l'événement"
-#: ../../operation/events/events.php:936
+#: ../../operation/events/events.php:941
msgid "Change to in progress status"
msgstr "Passer à état en cours"
-#: ../../operation/events/events.php:961
+#: ../../operation/events/events.php:966
msgid "Delete events"
msgstr "Supprimer les évènements"
-#: ../../operation/events/events.php:1440
+#: ../../operation/events/events.php:1494
msgid "Event viewer"
msgstr "Visionneur d'événements"
-#: ../../operation/events/events.php:1482
+#: ../../operation/events/events.php:1536
msgid "History event list"
msgstr "Liste des événements de l'historique"
-#: ../../operation/events/events.php:1493
+#: ../../operation/events/events.php:1547
msgid "RSS Events"
msgstr "Événements RSS"
-#: ../../operation/events/events.php:1504
+#: ../../operation/events/events.php:1558
msgid "Export to CSV file"
msgstr "Exporter dans un fichier CSV"
-#: ../../operation/events/events.php:1587
+#: ../../operation/events/events.php:1641
msgid "History"
msgstr "Historique"
-#: ../../operation/events/events.php:1641
+#: ../../operation/events/events.php:1695
msgid "Errors"
msgstr "Erreurs"
-#: ../../operation/events/events.php:1706 ../../operation/events/events.php:1727
+#: ../../operation/events/events.php:1760 ../../operation/events/events.php:1781
msgid "WARNING: This could cause a performace impact."
msgstr "AVERTISSEMENT : Cela pourrait avoir un impact sur les performances."
-#: ../../operation/events/events.php:1725
+#: ../../operation/events/events.php:1779
msgid "Search in secondary groups"
msgstr "Recherche dans les groupes secondaires"
-#: ../../operation/events/events.php:1815
+#: ../../operation/events/events.php:1869
msgid "Search for elements NOT containing given text."
msgstr "Rechercher des éléments ne contenant PAS de texte donné."
-#: ../../operation/events/events.php:2076
+#: ../../operation/events/events.php:2130
msgid "Id source event"
msgstr "Événements de source d'ID"
-#: ../../operation/events/events.php:2134
+#: ../../operation/events/events.php:2188
msgid "From (date:time)"
msgstr "Du (date:heure)"
-#: ../../operation/events/events.php:2192
+#: ../../operation/events/events.php:2246
msgid "To (date:time)"
msgstr "À (date:heure)"
-#: ../../operation/events/events.php:2203
+#: ../../operation/events/events.php:2257
msgid "Filter custom data by field name"
msgstr "Filtrer les données personnalisées par nom de champ"
-#: ../../operation/events/events.php:2204
+#: ../../operation/events/events.php:2258
msgid "Filter custom data by field value"
msgstr "Filtrer les données personnalisées par valeur de champ"
-#: ../../operation/events/events.php:2224
+#: ../../operation/events/events.php:2278
msgid "Custom data filter"
msgstr "Filtre de données personnalisé"
-#: ../../operation/events/events.php:2246
+#: ../../operation/events/events.php:2300
msgid "Custom data search"
msgstr "Recherche de données personnalisée"
-#: ../../operation/events/events.php:2372
+#: ../../operation/events/events.php:2426
msgid "Current filter"
msgstr "Filtre actuel"
-#: ../../operation/events/events.php:2377
+#: ../../operation/events/events.php:2431
msgid "Not set."
msgstr "Non paramétré."
-#: ../../operation/events/events.php:2390
+#: ../../operation/events/events.php:2444
msgid "Any status."
msgstr "Tout état."
-#: ../../operation/events/events.php:2394
+#: ../../operation/events/events.php:2448
msgid "New events."
msgstr "Nouveaux événements."
-#: ../../operation/events/events.php:2398
+#: ../../operation/events/events.php:2452
msgid "Validated."
msgstr "Validé."
-#: ../../operation/events/events.php:2402
+#: ../../operation/events/events.php:2456
msgid "In proccess."
msgstr "En cours."
-#: ../../operation/events/events.php:2406
+#: ../../operation/events/events.php:2460
msgid "Not validated."
msgstr "Pas validé."
-#: ../../operation/events/events.php:2418
+#: ../../operation/events/events.php:2472
msgid "Any time."
msgstr "À tout moment."
-#: ../../operation/events/events.php:2420 ../../operation/events/events.php:3030
+#: ../../operation/events/events.php:2474 ../../operation/events/events.php:3089
msgid "Last hour."
msgstr "Dernière heure."
-#: ../../operation/events/events.php:2422
+#: ../../operation/events/events.php:2476
#, php-format
msgid "Last %d hours."
msgstr "%d dernières heures."
-#: ../../operation/events/events.php:2430
+#: ../../operation/events/events.php:2484
msgid "Duplicated"
msgstr "Dupliqué"
-#: ../../operation/events/events.php:2433
+#: ../../operation/events/events.php:2487
msgid "All events."
msgstr "Tous les événements."
-#: ../../operation/events/events.php:2437
+#: ../../operation/events/events.php:2491
msgid "Group agents."
msgstr "Agents du groupe."
-#: ../../operation/events/events.php:2439
+#: ../../operation/events/events.php:2493
msgid "Group extra id."
msgstr "ID supplémentaire de groupe."
-#: ../../operation/events/events.php:2543
+#: ../../operation/events/events.php:2597
msgid "In progress selected"
msgstr "En cours sélectionné"
-#: ../../operation/events/events.php:2544
+#: ../../operation/events/events.php:2598
msgid "Validate selected"
msgstr "Valider la sélection"
-#: ../../operation/events/events.php:2566
+#: ../../operation/events/events.php:2620
msgid "Execute event response"
msgstr "Exécuter la réponse à l'événement"
-#: ../../operation/events/events.php:2598
+#: ../../operation/events/events.php:2652
#, php-format
msgid "A maximum of %s event custom responses can be selected"
msgstr ""
"Un maximum de %s réponses personnalisées d'événement peut être sélectionné"
-#: ../../operation/events/events.php:2603
+#: ../../operation/events/events.php:2657
msgid "Please, select an event"
msgstr "Veuillez sélectionner un événement"
-#: ../../operation/events/events.php:2689
+#: ../../operation/events/events.php:2743
msgid "has at least"
msgstr "a au moins"
-#: ../../operation/events/events.php:2691
+#: ../../operation/events/events.php:2745
msgid "events"
msgstr "événements"
-#: ../../operation/events/events.php:3032
+#: ../../operation/events/events.php:3091
msgid "hours."
msgstr "heures."
@@ -54598,15 +55108,15 @@ msgstr "Signaler un problème"
msgid "Console only reporting node"
msgstr "Nœud de création de rapports de console uniquement"
-#: ../../general/reporting_console_node.php:77
+#: ../../general/reporting_console_node.php:82
msgid "Mr"
msgstr "Mr"
-#: ../../general/reporting_console_node.php:85
+#: ../../general/reporting_console_node.php:90
msgid "Memory limit"
msgstr "Limite de mémoire"
-#: ../../general/reporting_console_node.php:93
+#: ../../general/reporting_console_node.php:98
msgid "Php version"
msgstr "Version PHP"
@@ -54913,16 +55423,80 @@ msgstr "Cliquez ici pour ne plus afficher ce message"
msgid "Maintenance tasks in progress"
msgstr "Taches de maintenance en progrès"
-#: ../../general/logon_ok.php:175
+#: ../../general/logon_ok.php:184
#, php-format
msgid "%s Overview"
msgstr "%s Aperçu"
-#: ../../general/logon_ok.php:228
+#: ../../general/logon_ok.php:226
+msgid "By"
+msgstr "Par"
+
+#: ../../general/logon_ok.php:237
+msgid "Welcome to our monitoring tool so grand,"
+msgstr "Bienvenue à notre outil de supervision si grand,"
+
+#: ../../general/logon_ok.php:238
+msgid "Where data insights are at your command."
+msgstr "Où les données sont à votre commande."
+
+#: ../../general/logon_ok.php:239
+msgid "Sales, marketing, operations too,"
+msgstr "Ventes, marketing, opérations aussi"
+
+#: ../../general/logon_ok.php:240
+msgid "Customer support, we've got you."
+msgstr "Service client, comptez sur nous"
+
+#: ../../general/logon_ok.php:243
+msgid "Our interface is user-friendly,"
+msgstr "Notre interface est facile à utiliser,"
+
+#: ../../general/logon_ok.php:244
+msgid "Customize your dashboard, it's easy."
+msgstr "N’oubliez votre tableau de bord configurer."
+
+#: ../../general/logon_ok.php:245
+msgid "Set up alerts and gain insights so keen,"
+msgstr "Définissez vos alertes et contrôlez tout,"
+
+#: ../../general/logon_ok.php:246
+msgid "Optimize your data, like you've never seen."
+msgstr "Optimisez vos données comme un fou."
+
+#: ../../general/logon_ok.php:249
+msgid "Unleash its power now, and join the pro league,"
+msgstr "Déclenchez sa puissance comme un professionel,"
+
+#: ../../general/logon_ok.php:250
+msgid "Unlock the potential of your data to intrigue."
+msgstr "Surprenez et débloquez tout le potentiel."
+
+#: ../../general/logon_ok.php:251
+msgid "Monitoring made simple, efficient and fun,"
+msgstr "Supervision simplifiée, efficace et amusante."
+
+#: ../../general/logon_ok.php:252
+msgid "Discover a whole new way to get things done."
+msgstr "Découvrez un nouvelle manière de tout faire sans redoute,"
+
+#: ../../general/logon_ok.php:255
+msgid "And take control of your IT once and for all."
+msgstr "Contrôlez l’informatique une fois pour toutes."
+
+#: ../../general/logon_ok.php:257
+msgid ""
+"You can replace this message with a personalized one at Admin tools -> Site "
+"news."
+msgstr ""
+"Vous pouvez remplacer ce message par un personnalisé dans Outils "
+"d’administration -> Nouvelles du site."
+
+#: ../../general/logon_ok.php:273
msgid "News board"
msgstr "Tableau de nouvelles"
-#: ../../general/logon_ok.php:304
+#: ../../general/logon_ok.php:349
msgid "Latest activity"
msgstr "Dernière activité"
@@ -54952,7 +55526,7 @@ msgstr ""
msgid "You cannot use this node until system is unified"
msgstr "Vous ne pouvez utiliser ce noeud jusqu'à que le système soit unifié"
-#: ../../general/node_deactivated.php:56
+#: ../../general/node_deactivated.php:61
#, php-format
msgid "Please navigate to %s to unify system"
msgstr "Naviguez ves %s pour unifier le système"
@@ -54975,7 +55549,7 @@ msgstr ""
"enregistrées dans les journaux de sécurité de la base de données du système "
"Pandora FMS."
-#: ../../general/main_menu.php:79 ../../general/main_menu.php:86
+#: ../../general/main_menu.php:80 ../../general/main_menu.php:87
msgid "Management"
msgstr "Gestion"
@@ -55014,14 +55588,14 @@ msgstr "Aller vers la page WEB %s"
msgid "Go to Login"
msgstr "Aller à Connexion"
-#: ../../general/login_page.php:297 ../../general/login_page.php:302
-msgid "Login as admin"
-msgstr "Connexion en tant qu'administateur"
-
-#: ../../general/login_page.php:355
+#: ../../general/login_page.php:297 ../../general/login_page.php:355
msgid "Let's go"
msgstr "Commencer"
+#: ../../general/login_page.php:302
+msgid "Login as admin"
+msgstr "Connexion en tant qu'administateur"
+
#: ../../general/login_page.php:409
msgid "View details"
msgstr "Voir les détails"
@@ -55291,6 +55865,12 @@ msgstr ""
#~ msgid "Queue filter"
#~ msgstr "Filtre de la file d'attente"
+#~ msgid "SMNP"
+#~ msgstr "SMNP"
+
+#~ msgid "SMNP community"
+#~ msgstr "Communauté SNMP"
+
#~ msgid "Events Configuration Information"
#~ msgstr "Informations sur la configuration des événements"
@@ -55444,6 +56024,9 @@ msgstr ""
#~ msgid "Update Filter"
#~ msgstr "Mise à jour du filtre"
+#~ msgid "Manage satellite hosts"
+#~ msgstr "Gérer les hôtes satellites"
+
#~ msgid "No tags defined"
#~ msgstr "Aucune étiquette définie"
@@ -55453,21 +56036,15 @@ msgstr ""
#~ msgid "Create Tag"
#~ msgstr "Créer une étiquette"
+#~ msgid "No maps defined"
+#~ msgstr "Aucune carte définie"
+
#~ msgid "Warning
Critical"
#~ msgstr "Alerte
Critique"
#~ msgid "Scheduled jobs"
#~ msgstr "Tâches planifiées"
-#~ msgid "Go to module edition"
-#~ msgstr "Accéder à l'édition de modules"
-
-#~ msgid "Go to cluster edition"
-#~ msgstr "Accéder à l’édition cluster"
-
-#~ msgid "Go to agent edition"
-#~ msgstr "Accéder à l'édition de l'agent"
-
#~ msgid "PANDORA FMS"
#~ msgstr "PANDORA FMS"
@@ -55510,6 +56087,9 @@ msgstr ""
#~ "d'opérer avec eux. L'opération, lorsque la réplication d'événement est "
#~ "activée, doit être effectuée uniquement dans la Métaconsole."
+#~ msgid "This change will only apply to nodes"
+#~ msgstr "Cette modification ne s’appliquera qu’aux nœuds"
+
#~ msgid "No log sources found"
#~ msgstr "Aucune source de journal trouvée"
@@ -55522,12 +56102,25 @@ msgstr ""
#~ msgid "This group doesn't have any monitor"
#~ msgstr "Ce groupe n'a aucun moniteur"
+#~ msgid ""
+#~ "To see the list of modules paginated, enable this option in the Styles "
+#~ "Configuration."
+#~ msgstr ""
+#~ "Pour afficher la liste de modules paginés, activez cette option dans la "
+#~ "configuration de styles."
+
#~ msgid "Remote configuration enabled"
#~ msgstr "Configuration à distance activée"
#~ msgid "Agent info"
#~ msgstr "Information de l'agent"
+#~ msgid "There is no GIS data."
+#~ msgstr "Aucune donnée GIS"
+
+#~ msgid "Events info (24hr.)"
+#~ msgstr "Information des événements (24h)"
+
#~ msgid "Select this checkbox to write interval instead a date."
#~ msgstr "Cochez cette case pour écrire un intervalle à la place d'une date."
@@ -55543,6 +56136,12 @@ msgstr ""
#~ msgid "Sound console"
#~ msgstr "Console sonore"
+#~ msgid "Time Sound"
+#~ msgstr "Cronométrer mélodie"
+
+#~ msgid "Events not found"
+#~ msgstr "Événements introuvables"
+
#~ msgid "Sound events"
#~ msgstr "Événements sonores"
@@ -55952,9 +56551,6 @@ msgstr ""
#~ msgid "Events replication"
#~ msgstr "Réplication d'événements"
-#~ msgid "Replication interval"
-#~ msgstr "Intervalle de réplication"
-
#~ msgid "Replication limit"
#~ msgstr "Limite de réplication"
@@ -56383,9 +56979,6 @@ msgstr ""
#~ msgid "Could not be updated, it already exists"
#~ msgstr "N'a pas pu être mis à jour, il existe déjà"
-#~ msgid "Welcome to Pandora FMS Web Console"
-#~ msgstr "Bienvenue à Pandora FMS Web Console"
-
#~ msgid "Welcome to Pandora FMS"
#~ msgstr "Bienvenue à Pandora FMS"
@@ -56820,9 +57413,6 @@ msgstr ""
#~ msgid "First date"
#~ msgstr "Première date"
-#~ msgid "Latest data"
-#~ msgstr "Dernier donnés"
-
#~ msgid "Purge event data over 90 days"
#~ msgstr "Effacer les données d'événements sauf pour le dernier trimestre"
@@ -56927,26 +57517,9 @@ msgstr ""
#~ msgid "Number lines of log"
#~ msgstr "Nobre de lignes de registre"
-#~ msgid "Generate file"
-#~ msgstr "Générer fichier"
-
#~ msgid "VNC view"
#~ msgstr "Vue VNC"
-#, 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 ""
-#~ "Cet extension fait enregistrement du plugins du serveur plus facile. Ici "
-#~ "vous pouvez télécharger un plugin du serveur dans le format comprimé de "
-#~ "Pandora FMS 3.x (.pspz). Si vous plaît lire la documentation pour obtenir "
-#~ "et utiliser les plugins du serveur de Pandora FMS.
Vous pouvez "
-#~ "obtenir plus de plugins dans notre Public Resource Library"
-
#~ msgid "Ping to "
#~ msgstr "Faire un ping dans "
@@ -58189,9 +58762,6 @@ msgstr ""
#~ msgid "There was an error with the zip file"
#~ msgstr "Il y avait une erreur avec le fichier zip"
-#~ msgid "At least one option must be selected"
-#~ msgstr "Au moins une option doit être sélectionnée"
-
#~ msgid "Agents:"
#~ msgstr "Agents :"
@@ -59940,9 +60510,6 @@ msgstr ""
#~ msgid "Event graph by user"
#~ msgstr "Graphique d'événements par utilisateur"
-#~ msgid "Successfully set in process"
-#~ msgstr "Démarré correctement"
-
#~ msgid "Successfully validated"
#~ msgstr "Validé correctement"
diff --git a/pandora_console/include/languages/index.pot b/pandora_console/include/languages/index.pot
index bd3f78dca8..48f69dd8ca 100644
--- a/pandora_console/include/languages/index.pot
+++ b/pandora_console/include/languages/index.pot
@@ -7,24 +7,24 @@
#: ../../enterprise/meta/monitoring/group_view.php:211
#: ../../enterprise/meta/monitoring/group_view.php:228
#: ../../enterprise/include/functions_reporting_csv.php:2304
-#: ../../include/functions_reporting_html.php:4147
-#: ../../include/functions_reporting_html.php:4153
-#: ../../include/functions_reporting_html.php:4159
-#: ../../include/functions_reporting_html.php:4165
-#: ../../include/functions_reporting_html.php:4171
-#: ../../include/functions_reporting_html.php:4177
-#: ../../include/functions_reporting_html.php:4183
-#: ../../include/functions_reporting_html.php:4241
-#: ../../include/functions_reporting_html.php:4247
-#: ../../include/functions_reporting_html.php:4253
-#: ../../include/functions_reporting_html.php:4259
-#: ../../include/functions_reporting_html.php:4265
+#: ../../include/functions_reporting_html.php:4175
+#: ../../include/functions_reporting_html.php:4181
+#: ../../include/functions_reporting_html.php:4187
+#: ../../include/functions_reporting_html.php:4193
+#: ../../include/functions_reporting_html.php:4199
+#: ../../include/functions_reporting_html.php:4205
+#: ../../include/functions_reporting_html.php:4211
+#: ../../include/functions_reporting_html.php:4269
+#: ../../include/functions_reporting_html.php:4275
+#: ../../include/functions_reporting_html.php:4281
+#: ../../include/functions_reporting_html.php:4287
+#: ../../include/functions_reporting_html.php:4293
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-09 10:50+0200\n"
+"POT-Creation-Date: 2023-06-06 09:26+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME
WARNING: you also need to delete config."
"php options in your console or delete the whole console."
msgstr ""
-#: ../../views/consoles/list.php:127
+#: ../../views/consoles/list.php:128
#: ../../views/calendar/special_days_edit.php:209
#: ../../views/calendar/special_days.php:430
#: ../../views/calendar/special_days.php:530
@@ -596,23 +619,23 @@ msgstr ""
#: ../../enterprise/include/class/DeploymentCenter.class.php:1824
#: ../../enterprise/include/class/AgentRepository.class.php:903
#: ../../enterprise/include/class/AgentRepository.class.php:1001
-#: ../../enterprise/include/class/LogSource.class.php:824
-#: ../../enterprise/include/class/LogSource.class.php:877
+#: ../../enterprise/include/class/LogSource.class.php:821
+#: ../../enterprise/include/class/LogSource.class.php:874
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3114
#: ../../enterprise/include/class/ManageBackups.class.php:455
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1435
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1459
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:926
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:949
-#: ../../update_manager_client/views/register.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:254
+#: ../../update_manager_client/views/register.php:86
+#: ../../godmode/agentes/status_monitor_custom_fields.php:274
#: ../../godmode/snmpconsole/snmp_alert.php:2226
#: ../../godmode/snmpconsole/snmp_alert.php:2241
#: ../../godmode/massive/massive_operations.php:416
#: ../../godmode/setup/snmp_wizard.php:100
#: ../../godmode/events/custom_events.php:234
-#: ../../include/functions_visual_map_editor.php:878
-#: ../../include/functions_visual_map_editor.php:882
+#: ../../include/functions_visual_map_editor.php:926
+#: ../../include/functions_visual_map_editor.php:930
#: ../../include/functions_register.php:179
#: ../../include/class/ConfigPEN.class.php:675
#: ../../include/class/ConfigPEN.class.php:699
@@ -621,24 +644,25 @@ msgstr ""
#: ../../include/class/SatelliteAgent.class.php:1199
#: ../../include/class/SatelliteAgent.class.php:1261
#: ../../include/class/TreeGroupEdition.class.php:165
-#: ../../include/class/NetworkMap.class.php:2951
-#: ../../include/class/CredentialStore.class.php:1647
-#: ../../include/class/CredentialStore.class.php:1699
-#: ../../include/class/ModuleTemplates.class.php:1360
+#: ../../include/class/NetworkMap.class.php:2957
+#: ../../include/class/CredentialStore.class.php:1656
+#: ../../include/class/CredentialStore.class.php:1708
+#: ../../include/class/ModuleTemplates.class.php:1364
#: ../../include/class/WelcomeWindow.class.php:174
#: ../../include/class/SatelliteCollection.class.php:536
#: ../../include/class/SatelliteCollection.class.php:579
-#: ../../include/class/AgentWizard.class.php:6234
+#: ../../include/class/AgentWizard.class.php:6230
#: ../../operation/agentes/pandora_networkmap.editor.php:746
-#: ../../operation/snmpconsole/snmp_browser.php:174
-#: ../../operation/snmpconsole/snmp_browser.php:545
-#: ../../operation/snmpconsole/snmp_browser.php:625
-#: ../../operation/snmpconsole/snmp_browser.php:640
+#: ../../operation/snmpconsole/snmp_browser.php:179
+#: ../../operation/snmpconsole/snmp_browser.php:550
+#: ../../operation/snmpconsole/snmp_browser.php:623
+#: ../../operation/snmpconsole/snmp_browser.php:684
+#: ../../operation/snmpconsole/snmp_browser.php:699
#: ../../general/header.php:834
msgid "Cancel"
msgstr ""
-#: ../../views/consoles/list.php:164
+#: ../../views/consoles/list.php:165
#: ../../enterprise/godmode/services/services.elements.php:956
#: ../../enterprise/godmode/services/services.elements.php:967
#: ../../enterprise/godmode/setup/setup.php:595
@@ -648,7 +672,7 @@ msgstr ""
#: ../../enterprise/include/class/DeploymentCenter.class.php:1647
#: ../../enterprise/include/class/AgentRepository.class.php:944
#: ../../enterprise/include/class/Omnishell.class.php:1306
-#: ../../enterprise/include/class/LogSource.class.php:767
+#: ../../enterprise/include/class/LogSource.class.php:764
#: ../../enterprise/include/class/ManageBackups.class.php:482
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1079
#: ../../include/ajax/snmp_browser.ajax.php:260
@@ -656,17 +680,18 @@ msgstr ""
#: ../../include/class/ConfigPEN.class.php:743
#: ../../include/class/SatelliteAgent.class.php:1046
#: ../../include/class/HelpFeedBack.class.php:360
-#: ../../include/class/Diagnostics.class.php:2115
-#: ../../include/class/CredentialStore.class.php:1590
-#: ../../include/class/ModuleTemplates.class.php:1395
+#: ../../include/class/Diagnostics.class.php:2119
+#: ../../include/class/CredentialStore.class.php:1599
+#: ../../include/class/ModuleTemplates.class.php:1399
+#: ../../include/class/AgentDeployWizard.class.php:604
#: ../../include/class/SatelliteCollection.class.php:616
#: ../../include/class/WebServerModuleDebug.class.php:359
-#: ../../include/class/AgentWizard.class.php:6027
-#: ../../operation/visual_console/view.php:937
+#: ../../include/class/AgentWizard.class.php:6023
+#: ../../operation/visual_console/view.php:939
msgid "Success"
msgstr ""
-#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179
+#: ../../views/consoles/list.php:175 ../../views/consoles/list.php:180
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657
#: ../../enterprise/include/functions_HA_cluster.php:542
#: ../../enterprise/include/functions_HA_cluster.php:547
@@ -676,8 +701,8 @@ msgstr ""
#: ../../enterprise/include/class/AgentRepository.class.php:951
#: ../../enterprise/include/class/AgentRepository.class.php:956
#: ../../enterprise/include/class/Omnishell.class.php:1302
-#: ../../enterprise/include/class/LogSource.class.php:774
-#: ../../enterprise/include/class/LogSource.class.php:779
+#: ../../enterprise/include/class/LogSource.class.php:771
+#: ../../enterprise/include/class/LogSource.class.php:776
#: ../../enterprise/include/class/ManageBackups.class.php:493
#: ../../enterprise/include/class/ManageBackups.class.php:498
#: ../../enterprise/include/functions_ux_console.php:483
@@ -691,19 +716,21 @@ msgstr ""
#: ../../include/class/SatelliteAgent.class.php:1055
#: ../../include/class/SatelliteAgent.class.php:1060
#: ../../include/class/HelpFeedBack.class.php:355
-#: ../../include/class/Diagnostics.class.php:2114
-#: ../../include/class/CredentialStore.class.php:1597
-#: ../../include/class/CredentialStore.class.php:1602
-#: ../../include/class/ModuleTemplates.class.php:1402
-#: ../../include/class/ModuleTemplates.class.php:1407
+#: ../../include/class/Diagnostics.class.php:2118
+#: ../../include/class/CredentialStore.class.php:1606
+#: ../../include/class/CredentialStore.class.php:1611
+#: ../../include/class/ModuleTemplates.class.php:1406
+#: ../../include/class/ModuleTemplates.class.php:1411
+#: ../../include/class/AgentDeployWizard.class.php:611
+#: ../../include/class/AgentDeployWizard.class.php:616
#: ../../include/class/SatelliteCollection.class.php:626
#: ../../include/class/SatelliteCollection.class.php:631
#: ../../include/class/WebServerModuleDebug.class.php:366
#: ../../include/class/WebServerModuleDebug.class.php:371
-#: ../../include/class/AgentWizard.class.php:6034
-#: ../../include/class/AgentWizard.class.php:6039
-#: ../../operation/visual_console/view.php:944
-#: ../../operation/visual_console/view.php:949
+#: ../../include/class/AgentWizard.class.php:6030
+#: ../../include/class/AgentWizard.class.php:6035
+#: ../../operation/visual_console/view.php:946
+#: ../../operation/visual_console/view.php:951
msgid "Failed"
msgstr ""
@@ -730,22 +757,22 @@ msgstr ""
#: ../../enterprise/include/functions_policies.php:3734
#: ../../enterprise/operation/agentes/tag_view.php:702
#: ../../enterprise/operation/services/massive/services.create.php:897
-#: ../../godmode/groups/configure_group.php:224
-#: ../../godmode/groups/group_list.php:880
+#: ../../godmode/groups/configure_group.php:243
+#: ../../godmode/groups/group_list.php:881
#: ../../godmode/groups/tactical.php:181
#: ../../godmode/agentes/configurar_agente.php:441
#: ../../godmode/agentes/configurar_agente.php:745
-#: ../../godmode/agentes/modificar_agente.php:829
-#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:265
+#: ../../godmode/agentes/modificar_agente.php:841
+#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:263
#: ../../godmode/massive/massive_copy_modules.php:216
#: ../../godmode/alerts/configure_alert_command.php:58
#: ../../godmode/alerts/alert_actions.php:70
#: ../../godmode/alerts/alert_commands.php:581
-#: ../../godmode/alerts/alert_templates.php:126
-#: ../../godmode/alerts/alert_templates.php:135
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
+#: ../../godmode/alerts/alert_templates.php:129
+#: ../../godmode/alerts/alert_templates.php:138
+#: ../../godmode/alerts/alert_templates.php:192
+#: ../../godmode/alerts/alert_templates.php:215
+#: ../../godmode/alerts/alert_templates.php:236
#: ../../godmode/alerts/configure_alert_action.php:72
#: ../../godmode/alerts/configure_alert_action.php:92
#: ../../godmode/alerts/configure_alert_template.php:95
@@ -755,21 +782,21 @@ msgstr ""
#: ../../godmode/alerts/alert_list.php:504
#: ../../godmode/alerts/alert_list.php:523
#: ../../mobile/include/functions_web.php:26
-#: ../../mobile/operation/agents.php:98 ../../mobile/operation/agents.php:407
-#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:355
+#: ../../mobile/operation/agents.php:98 ../../mobile/operation/agents.php:408
+#: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:358
#: ../../mobile/operation/alerts.php:194
-#: ../../include/functions_reporting_html.php:2594
-#: ../../include/functions_reporting_html.php:5671
-#: ../../include/functions_treeview.php:392
+#: ../../include/functions_reporting_html.php:2615
+#: ../../include/functions_reporting_html.php:5699
+#: ../../include/functions_treeview.php:396
#: ../../include/functions_reports.php:855
#: ../../include/functions_reports.php:859
#: ../../include/functions_reports.php:865
#: ../../include/functions_reports.php:871
#: ../../include/class/AgentsAlerts.class.php:567
#: ../../operation/search_agents.php:57 ../../operation/search_results.php:107
-#: ../../operation/agentes/estado_agente.php:1052
+#: ../../operation/agentes/estado_agente.php:1060
#: ../../operation/agentes/ver_agente.php:1436
-#: ../../operation/agentes/ver_agente.php:1848
+#: ../../operation/agentes/ver_agente.php:1844
msgid "Alerts"
msgstr ""
@@ -793,7 +820,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:68
#: ../../enterprise/godmode/policies/configure_policy.php:85
#: ../../enterprise/godmode/policies/policy_modules.php:481
-#: ../../enterprise/godmode/policies/policy_queue.php:211
+#: ../../enterprise/godmode/policies/policy_queue.php:213
#: ../../enterprise/godmode/policies/policies.php:268
#: ../../enterprise/godmode/policies/policy_linking.php:120
#: ../../enterprise/godmode/policies/policy_external_alerts.php:322
@@ -813,11 +840,11 @@ msgstr ""
#: ../../extensions/resource_registration.php:1105
#: ../../godmode/modules/manage_nc_groups.php:315
#: ../../godmode/modules/manage_inventory_modules.php:67
-#: ../../godmode/modules/manage_network_components.php:314
+#: ../../godmode/modules/manage_network_components.php:315
#: ../../godmode/groups/group_list.php:393
#: ../../godmode/groups/modu_group_list.php:95
#: ../../godmode/users/profile_list.php:117
-#: ../../godmode/users/user_list.php:537
+#: ../../godmode/users/user_list.php:538
#: ../../godmode/agentes/modificar_agente.php:118
#: ../../godmode/massive/massive_operations.php:433
#: ../../godmode/massive/massive_edit_users.php:47
@@ -826,7 +853,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_command.php:194
#: ../../godmode/alerts/alert_actions.php:218
#: ../../godmode/alerts/alert_commands.php:730
-#: ../../godmode/alerts/alert_templates.php:266
+#: ../../godmode/alerts/alert_templates.php:270
#: ../../godmode/alerts/configure_alert_action.php:125
#: ../../godmode/alerts/configure_alert_template.php:429
#: ../../godmode/setup/os.list.php:49
@@ -847,7 +874,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:70
#: ../../enterprise/godmode/policies/configure_policy.php:87
#: ../../enterprise/godmode/policies/policy_modules.php:483
-#: ../../enterprise/godmode/policies/policy_queue.php:213
+#: ../../enterprise/godmode/policies/policy_queue.php:215
#: ../../enterprise/godmode/policies/policies.php:270
#: ../../enterprise/godmode/policies/policy_linking.php:122
#: ../../enterprise/godmode/policies/policy_external_alerts.php:324
@@ -865,11 +892,11 @@ msgstr ""
#: ../../extensions/resource_registration.php:1107
#: ../../godmode/modules/manage_nc_groups.php:317
#: ../../godmode/modules/manage_inventory_modules.php:69
-#: ../../godmode/modules/manage_network_components.php:316
+#: ../../godmode/modules/manage_network_components.php:317
#: ../../godmode/groups/group_list.php:395
#: ../../godmode/groups/modu_group_list.php:97
#: ../../godmode/users/profile_list.php:119
-#: ../../godmode/users/user_list.php:539
+#: ../../godmode/users/user_list.php:540
#: ../../godmode/agentes/modificar_agente.php:120
#: ../../godmode/massive/massive_operations.php:435
#: ../../godmode/massive/massive_edit_users.php:49
@@ -878,7 +905,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_command.php:196
#: ../../godmode/alerts/alert_actions.php:220
#: ../../godmode/alerts/alert_commands.php:732
-#: ../../godmode/alerts/alert_templates.php:268
+#: ../../godmode/alerts/alert_templates.php:272
#: ../../godmode/alerts/configure_alert_action.php:127
#: ../../godmode/alerts/configure_alert_template.php:431
#: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188
@@ -904,7 +931,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:778
#: ../../extensions/api_checker.php:286
#: ../../godmode/modules/module_list.php:97
-#: ../../godmode/groups/group_list.php:874
+#: ../../godmode/groups/group_list.php:875
#: ../../godmode/groups/modu_group_list.php:260
#: ../../godmode/agentes/fields_manager.php:152
#: ../../godmode/agentes/agent_manager.php:364
@@ -932,7 +959,7 @@ msgstr ""
#: ../../enterprise/views/ncm/vendors/edit.php:67
#: ../../enterprise/views/ipam/sites/list.php:46
#: ../../enterprise/views/ipam/sites/edit.php:40
-#: ../../enterprise/meta/advanced/servers.build_table.php:61
+#: ../../enterprise/meta/advanced/servers.build_table.php:77
#: ../../enterprise/meta/advanced/collections.data.php:350
#: ../../enterprise/meta/include/functions_autoprovision.php:495
#: ../../enterprise/meta/include/functions_autoprovision.php:603
@@ -955,7 +982,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:580
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130
#: ../../enterprise/godmode/policies/configure_policy.php:112
-#: ../../enterprise/godmode/policies/policy_modules.php:1544
+#: ../../enterprise/godmode/policies/policy_modules.php:1589
#: ../../enterprise/godmode/policies/policies.php:437
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270
#: ../../enterprise/godmode/policies/policy_collections.php:240
@@ -1018,25 +1045,25 @@ msgstr ""
#: ../../godmode/modules/manage_inventory_modules_form.php:115
#: ../../godmode/modules/module_list.php:99
#: ../../godmode/modules/manage_network_templates.php:248
-#: ../../godmode/groups/configure_group.php:132
-#: ../../godmode/groups/group_list.php:876
+#: ../../godmode/groups/configure_group.php:142
+#: ../../godmode/groups/group_list.php:877
#: ../../godmode/groups/configure_modu_group.php:82
#: ../../godmode/groups/modu_group_list.php:261
-#: ../../godmode/users/user_list.php:574
+#: ../../godmode/users/user_list.php:575
#: ../../godmode/agentes/inventory_manager.php:233
#: ../../godmode/agentes/planned_downtime.editor.php:882
#: ../../godmode/agentes/planned_downtime.editor.php:1356
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:128
#: ../../godmode/agentes/configure_field.php:115
#: ../../godmode/agentes/module_manager_editor_common.php:252
-#: ../../godmode/agentes/module_manager_editor_common.php:1430
+#: ../../godmode/agentes/module_manager_editor_common.php:1440
#: ../../godmode/agentes/module_manager.php:605
#: ../../godmode/netflow/nf_edit.php:166
-#: ../../godmode/netflow/nf_edit_form.php:199
+#: ../../godmode/netflow/nf_edit_form.php:242
#: ../../godmode/alerts/configure_alert_command.php:220
#: ../../godmode/alerts/alert_actions.php:351
#: ../../godmode/alerts/alert_commands.php:749
-#: ../../godmode/alerts/alert_templates.php:409
+#: ../../godmode/alerts/alert_templates.php:413
#: ../../godmode/alerts/configure_alert_action.php:183
#: ../../godmode/alerts/configure_alert_template.php:1080
#: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73
@@ -1046,44 +1073,49 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.data.php:151
#: ../../godmode/reporting/create_container.php:247
#: ../../godmode/reporting/reporting_builder.item_editor.php:83
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1085
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1087
#: ../../godmode/reporting/reporting_builder.main.php:91
#: ../../godmode/reporting/reporting_builder.main.php:95
#: ../../godmode/reporting/graph_builder.main.php:128
#: ../../godmode/events/event_filter.php:144
#: ../../godmode/events/event_responses.editor.php:97
#: ../../godmode/events/event_responses.list.php:66
-#: ../../godmode/servers/servers.build_table.php:77
+#: ../../godmode/servers/servers.build_table.php:79
#: ../../godmode/servers/modificar_server.php:91
-#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:992
-#: ../../godmode/tag/tag.php:230 ../../godmode/tag/edit_tag.php:190
+#: ../../godmode/servers/plugin.php:419 ../../godmode/servers/plugin.php:984
+#: ../../godmode/tag/tag.php:231 ../../godmode/tag/edit_tag.php:194
#: ../../godmode/category/edit_category.php:189
+#: ../../mobile/operation/module_data.php:264
+#: ../../mobile/operation/server_status.php:283
+#: ../../mobile/operation/server_status.php:321
+#: ../../mobile/operation/server_status.php:351
+#: ../../mobile/operation/server_status.php:447
#: ../../include/functions_reporting_html.php:1058
#: ../../include/functions_reporting_html.php:1066
-#: ../../include/functions_reporting_html.php:1760
-#: ../../include/functions_reporting_html.php:2643
-#: ../../include/functions_reporting_html.php:2993
-#: ../../include/functions_reporting_html.php:3709
-#: ../../include/functions_reporting_html.php:6370
+#: ../../include/functions_reporting_html.php:1769
+#: ../../include/functions_reporting_html.php:2662
+#: ../../include/functions_reporting_html.php:3021
+#: ../../include/functions_reporting_html.php:3737
+#: ../../include/functions_reporting_html.php:6404
#: ../../include/functions_treeview.php:69
#: ../../include/class/EventSound.class.php:306
-#: ../../include/class/NetworkMap.class.php:3063
-#: ../../include/class/NetworkMap.class.php:3109
-#: ../../include/class/NetworkMap.class.php:3121
-#: ../../include/class/NetworkMap.class.php:3491
+#: ../../include/class/NetworkMap.class.php:3069
+#: ../../include/class/NetworkMap.class.php:3115
+#: ../../include/class/NetworkMap.class.php:3127
+#: ../../include/class/NetworkMap.class.php:3497
#: ../../include/class/ManageNetScanScripts.class.php:403
-#: ../../include/class/ManageNetScanScripts.class.php:553
+#: ../../include/class/ManageNetScanScripts.class.php:549
#: ../../include/class/ModuleTemplates.class.php:848
#: ../../include/class/ModuleTemplates.class.php:1030
#: ../../include/class/CalendarManager.class.php:1026
#: ../../include/class/SatelliteCollection.class.php:132
-#: ../../include/functions_filemanager.php:644
-#: ../../include/functions_snmp_browser.php:1851
-#: ../../include/functions_events.php:4339
-#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44
+#: ../../include/functions_filemanager.php:659
+#: ../../include/functions_snmp_browser.php:1860
+#: ../../include/functions_events.php:4344
+#: ../../include/functions_events.php:4477 ../../operation/search_users.php:44
#: ../../operation/search_helps.php:31
#: ../../operation/agentes/pandora_networkmap.editor.php:332
-#: ../../operation/agentes/pandora_networkmap.php:716
+#: ../../operation/agentes/pandora_networkmap.php:717
#: ../../operation/agentes/pandora_networkmap.view.php:137
#: ../../operation/gis_maps/gis_map.php:115
#: ../../operation/incidents/configure_integriaims_incident.php:232
@@ -1151,7 +1183,7 @@ msgstr ""
#: ../../enterprise/include/class/Omnishell.class.php:861
#: ../../enterprise/include/class/DB2.app.php:477
#: ../../enterprise/include/class/Aws.S3.php:441
-#: ../../enterprise/include/class/SAP.app.php:635
+#: ../../enterprise/include/class/SAP.app.php:636
#: ../../enterprise/include/class/Aws.cloud.php:566
#: ../../enterprise/include/class/Aws.cloud.php:1252
#: ../../enterprise/include/class/MySQL.app.php:482
@@ -1167,31 +1199,31 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:698
#: ../../enterprise/operation/agentes/ver_agente.php:70
#: ../../enterprise/operation/agentes/ver_agente.php:91
-#: ../../enterprise/operation/log/log_viewer.php:616
+#: ../../enterprise/operation/log/log_viewer.php:614
#: ../../enterprise/operation/services/services.service.php:112
#: ../../enterprise/operation/services/massive/services.create.php:678
#: ../../enterprise/operation/services/services.list.php:268
#: ../../enterprise/operation/services/services.list.php:540
#: ../../enterprise/operation/services/services.table_services.php:218
#: ../../enterprise/tools/ipam/ipam_editor.php:335
-#: ../../extensions/agents_modules.php:419
+#: ../../extensions/agents_modules.php:427
#: ../../godmode/modules/manage_network_templates_form.php:235
#: ../../godmode/modules/manage_network_templates_form.php:303
#: ../../godmode/modules/manage_network_templates_form.php:339
#: ../../godmode/modules/manage_network_components_form_common.php:131
-#: ../../godmode/modules/manage_network_components.php:659
-#: ../../godmode/modules/manage_network_components.php:778
-#: ../../godmode/users/user_list.php:469
+#: ../../godmode/modules/manage_network_components.php:662
+#: ../../godmode/modules/manage_network_components.php:781
+#: ../../godmode/users/user_list.php:470
#: ../../godmode/agentes/configurar_agente.php:518
#: ../../godmode/agentes/modificar_agente.php:314
-#: ../../godmode/agentes/modificar_agente.php:697
+#: ../../godmode/agentes/modificar_agente.php:707
#: ../../godmode/agentes/planned_downtime.list.php:735
#: ../../godmode/agentes/planned_downtime.editor.php:895
#: ../../godmode/agentes/planned_downtime.editor.php:1357
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
#: ../../godmode/agentes/agent_incidents.php:91
#: ../../godmode/netflow/nf_edit.php:167
-#: ../../godmode/netflow/nf_edit_form.php:211
+#: ../../godmode/netflow/nf_edit_form.php:256
#: ../../godmode/snmpconsole/snmp_alert.php:837
#: ../../godmode/gis_maps/configure_gis_map.php:509
#: ../../godmode/gis_maps/configure_gis_map.php:646
@@ -1201,7 +1233,7 @@ msgstr ""
#: ../../godmode/massive/massive_delete_action_alerts.php:210
#: ../../godmode/massive/massive_add_alerts.php:211
#: ../../godmode/massive/massive_enable_disable_alerts.php:170
-#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:711
#: ../../godmode/massive/massive_delete_profiles.php:153
#: ../../godmode/massive/massive_delete_alerts.php:290
#: ../../godmode/massive/massive_add_action_alerts.php:198
@@ -1211,10 +1243,10 @@ msgstr ""
#: ../../godmode/alerts/alert_actions.php:353
#: ../../godmode/alerts/alert_list.list.php:220
#: ../../godmode/alerts/alert_commands.php:751
-#: ../../godmode/alerts/alert_templates.php:410
+#: ../../godmode/alerts/alert_templates.php:414
#: ../../godmode/alerts/configure_alert_action.php:220
#: ../../godmode/alerts/configure_alert_template.php:1116
-#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70
+#: ../../godmode/setup/news.php:216 ../../godmode/setup/gis.php:70
#: ../../godmode/setup/gis_step_2.php:237
#: ../../godmode/setup/setup_integria.php:426
#: ../../godmode/setup/setup_integria.php:560
@@ -1230,10 +1262,10 @@ msgstr ""
#: ../../godmode/reporting/visual_console_favorite.php:182
#: ../../godmode/reporting/reporting_builder.item_editor.php:72
#: ../../godmode/reporting/reporting_builder.item_editor.php:87
-#: ../../godmode/reporting/reporting_builder.item_editor.php:213
-#: ../../godmode/reporting/reporting_builder.item_editor.php:892
+#: ../../godmode/reporting/reporting_builder.item_editor.php:214
+#: ../../godmode/reporting/reporting_builder.item_editor.php:893
#: ../../godmode/reporting/reporting_builder.item_editor.php:1641
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3494
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3503
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.elements.php:343
#: ../../godmode/reporting/reporting_builder.main.php:119
@@ -1243,13 +1275,13 @@ msgstr ""
#: ../../godmode/reporting/graph_builder.main.php:176
#: ../../godmode/events/event_filter.php:145
#: ../../godmode/events/event_responses.editor.php:120
-#: ../../godmode/events/event_edit_filter.php:334
+#: ../../godmode/events/event_edit_filter.php:336
#: ../../godmode/events/event_responses.list.php:68
#: ../../godmode/events/custom_events.php:98
-#: ../../godmode/wizards/HostDevices.class.php:933
-#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:157
-#: ../../mobile/operation/agents.php:234 ../../mobile/operation/agents.php:235
-#: ../../mobile/operation/agents.php:405 ../../mobile/operation/modules.php:171
+#: ../../godmode/wizards/HostDevices.class.php:935
+#: ../../mobile/operation/agents.php:95 ../../mobile/operation/agents.php:158
+#: ../../mobile/operation/agents.php:235 ../../mobile/operation/agents.php:236
+#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:171
#: ../../mobile/operation/modules.php:176
#: ../../mobile/operation/modules.php:266
#: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113
@@ -1257,30 +1289,32 @@ msgstr ""
#: ../../mobile/operation/alerts.php:232
#: ../../mobile/operation/visualmaps.php:113
#: ../../mobile/operation/visualmaps.php:118
-#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671
-#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954
-#: ../../mobile/operation/events.php:955
+#: ../../mobile/operation/events.php:695 ../../mobile/operation/events.php:700
+#: ../../mobile/operation/events.php:861 ../../mobile/operation/events.php:998
+#: ../../mobile/operation/events.php:999
+#: ../../mobile/operation/server_status.php:162
+#: ../../mobile/operation/server_status.php:167
#: ../../include/functions_visual_map_editor.php:70
-#: ../../include/functions_visual_map_editor.php:594
-#: ../../include/functions_visual_map_editor.php:1395
-#: ../../include/functions_reporting_html.php:1604
-#: ../../include/functions_reporting_html.php:2355
-#: ../../include/functions_reporting_html.php:3660
-#: ../../include/functions_reporting_html.php:6458
-#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113
-#: ../../include/ajax/heatmap.ajax.php:358
+#: ../../include/functions_visual_map_editor.php:588
+#: ../../include/functions_visual_map_editor.php:1453
+#: ../../include/functions_reporting_html.php:1613
+#: ../../include/functions_reporting_html.php:2376
+#: ../../include/functions_reporting_html.php:3688
+#: ../../include/functions_reporting_html.php:6492
+#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:142
+#: ../../include/ajax/heatmap.ajax.php:523
#: ../../include/ajax/custom_fields.php:630
#: ../../include/ajax/custom_fields.php:679
-#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228
+#: ../../include/functions_graph.php:4947 ../../include/functions_gis.php:228
#: ../../include/functions_profile.php:204
-#: ../../include/functions_visual_map.php:4215
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551
-#: ../../include/rest-api/models/VisualConsole/Item.php:2140
-#: ../../include/functions_html.php:1561
+#: ../../include/functions_visual_map.php:4224
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:697
+#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../include/functions_html.php:1566
#: ../../include/functions_massive_operations.php:124
-#: ../../include/class/NetworkMap.class.php:2985
-#: ../../include/class/NetworkMap.class.php:3046
-#: ../../include/class/NetworkMap.class.php:3412
+#: ../../include/class/NetworkMap.class.php:2991
+#: ../../include/class/NetworkMap.class.php:3052
+#: ../../include/class/NetworkMap.class.php:3418
#: ../../include/class/AgentsAlerts.class.php:774
#: ../../include/class/CredentialStore.class.php:814
#: ../../include/class/CredentialStore.class.php:846
@@ -1288,39 +1322,39 @@ msgstr ""
#: ../../include/class/CustomNetScan.class.php:506
#: ../../include/class/ModuleTemplates.class.php:728
#: ../../include/class/CalendarManager.class.php:1027
+#: ../../include/class/AgentDeployWizard.class.php:342
#: ../../include/functions_container.php:149
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:826
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:241
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:827
#: ../../include/lib/Group.php:566
-#: ../../include/functions_snmp_browser.php:1863
+#: ../../include/functions_snmp_browser.php:1872
#: ../../include/functions_events.php:203
#: ../../include/functions_events.php:256
-#: ../../include/functions_events.php:5051 ../../operation/heatmap.php:122
+#: ../../include/functions_events.php:5056 ../../operation/heatmap.php:122
#: ../../operation/heatmap.php:124 ../../operation/search_agents.php:46
-#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:999
-#: ../../operation/visual_console/view.php:371
+#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:996
+#: ../../operation/visual_console/view.php:373
#: ../../operation/agentes/estado_agente.php:291
-#: ../../operation/agentes/estado_agente.php:1039
+#: ../../operation/agentes/estado_agente.php:1047
#: ../../operation/agentes/pandora_networkmap.editor.php:344
#: ../../operation/agentes/pandora_networkmap.editor.php:428
#: ../../operation/agentes/interface_view.functions.php:37
#: ../../operation/agentes/exportdata.php:328
-#: ../../operation/agentes/status_monitor.php:816
-#: ../../operation/agentes/group_view.php:240
+#: ../../operation/agentes/status_monitor.php:815
+#: ../../operation/agentes/group_view.php:243
#: ../../operation/agentes/pandora_networkmap.view.php:140
#: ../../operation/agentes/pandora_networkmap.view.php:176
#: ../../operation/agentes/ver_agente.php:1036
-#: ../../operation/agentes/estado_generalagente.php:492
+#: ../../operation/agentes/estado_generalagente.php:463
#: ../../operation/agentes/alerts_status.functions.php:73
#: ../../operation/gis_maps/gis_map.php:116
#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438
#: ../../operation/incidents/configure_integriaims_incident.php:269
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:340
#: ../../operation/incidents/list_integriaims_incidents.php:347
-#: ../../operation/inventory/inventory.php:510
-#: ../../operation/inventory/inventory.php:1002
-#: ../../operation/inventory/inventory.php:1296
-#: ../../operation/events/events.php:1687 ../../operation/search_maps.php:29
+#: ../../operation/inventory/inventory.php:512
+#: ../../operation/inventory/inventory.php:1248
+#: ../../operation/events/events.php:1741 ../../operation/search_maps.php:29
#: ../../general/ui/agents_list.php:76
msgid "Group"
msgstr ""
@@ -1335,7 +1369,7 @@ msgstr ""
#: ../../enterprise/views/ipam/sites/list.php:73
#: ../../enterprise/meta/advanced/metasetup.consoles.php:965
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295
#: ../../enterprise/include/class/LogSource.class.php:634
@@ -1346,17 +1380,17 @@ msgstr ""
#: ../../godmode/update_manager/update_manager.history.php:67
#: ../../godmode/agentes/modificar_agente.php:381
#: ../../godmode/snmpconsole/snmp_alert.php:1742
-#: ../../godmode/events/event_edit_filter.php:409
-#: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318
-#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992
-#: ../../include/ajax/module.php:312
+#: ../../godmode/events/event_edit_filter.php:411
+#: ../../mobile/operation/agents.php:254 ../../mobile/operation/modules.php:318
+#: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:1036
+#: ../../include/ajax/module.php:335
#: ../../include/class/ConfigPEN.class.php:630
#: ../../include/class/EventSound.class.php:337
#: ../../include/class/CredentialStore.class.php:858
#: ../../include/class/SnmpConsole.class.php:374
#: ../../include/class/AuditLog.class.php:197
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241
-#: ../../operation/events/events.php:1820
+#: ../../operation/events/events.php:1874
msgid "Free search"
msgstr ""
@@ -1408,8 +1442,8 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collections.php:593
#: ../../enterprise/godmode/policies/configure_policy.php:169
#: ../../enterprise/godmode/policies/policy_modules.php:433
-#: ../../enterprise/godmode/policies/policy_modules.php:1746
-#: ../../enterprise/godmode/policies/policy_modules.php:1871
+#: ../../enterprise/godmode/policies/policy_modules.php:1791
+#: ../../enterprise/godmode/policies/policy_modules.php:1916
#: ../../enterprise/godmode/policies/policies.php:728
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165
@@ -1434,50 +1468,50 @@ msgstr ""
#: ../../godmode/modules/manage_network_templates_form.php:180
#: ../../godmode/modules/manage_nc_groups.php:344
#: ../../godmode/modules/manage_inventory_modules.php:374
-#: ../../godmode/modules/manage_network_components_form.php:379
-#: ../../godmode/modules/manage_network_components.php:896
+#: ../../godmode/modules/manage_network_components_form.php:382
+#: ../../godmode/modules/manage_network_components.php:899
#: ../../godmode/modules/manage_inventory_modules_form.php:249
#: ../../godmode/modules/manage_network_templates.php:311
-#: ../../godmode/groups/configure_group.php:277
+#: ../../godmode/groups/configure_group.php:296
#: ../../godmode/groups/configure_modu_group.php:102
-#: ../../godmode/users/configure_user.php:1665
+#: ../../godmode/users/configure_user.php:1717
#: ../../godmode/agentes/module_manager_editor.php:817
#: ../../godmode/agentes/planned_downtime.list.php:680
#: ../../godmode/agentes/planned_downtime.list.php:989
-#: ../../godmode/agentes/agent_manager.php:1081
+#: ../../godmode/agentes/agent_manager.php:1087
#: ../../godmode/agentes/configure_field.php:203
-#: ../../godmode/agentes/module_manager.php:1119
-#: ../../godmode/netflow/nf_edit_form.php:338
+#: ../../godmode/agentes/module_manager.php:1134
+#: ../../godmode/netflow/nf_edit_form.php:454
#: ../../godmode/snmpconsole/snmp_alert.php:1711
#: ../../godmode/snmpconsole/snmp_alert.php:2177
#: ../../godmode/snmpconsole/snmp_filters.php:275
#: ../../godmode/snmpconsole/snmp_filters.php:366
#: ../../godmode/alerts/configure_alert_command.php:395
#: ../../godmode/alerts/alert_actions.php:502
-#: ../../godmode/alerts/alert_list.list.php:1096
+#: ../../godmode/alerts/alert_list.list.php:1095
#: ../../godmode/alerts/alert_commands.php:839
-#: ../../godmode/alerts/alert_templates.php:514
+#: ../../godmode/alerts/alert_templates.php:518
#: ../../godmode/alerts/configure_alert_action.php:446
-#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321
+#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:325
#: ../../godmode/setup/gis.php:100 ../../godmode/setup/os.php:95
#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:165
#: ../../godmode/reporting/create_container.php:383
#: ../../godmode/reporting/map_builder.php:586
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2330
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2339
#: ../../godmode/reporting/reporting_builder.main.php:45
#: ../../godmode/reporting/graph_builder.main.php:298
#: ../../godmode/events/event_responses.editor.php:328
-#: ../../godmode/events/event_edit_filter.php:957
-#: ../../godmode/servers/plugin.php:713 ../../godmode/tag/edit_tag.php:258
+#: ../../godmode/events/event_edit_filter.php:959
+#: ../../godmode/servers/plugin.php:705 ../../godmode/tag/edit_tag.php:262
#: ../../godmode/category/edit_category.php:201
-#: ../../include/functions_visual_map_editor.php:882
+#: ../../include/functions_visual_map_editor.php:930
#: ../../include/class/EventSound.class.php:199
#: ../../include/class/EventSound.class.php:282
-#: ../../include/class/ManageNetScanScripts.class.php:769
+#: ../../include/class/ManageNetScanScripts.class.php:765
#: ../../include/class/ModuleTemplates.class.php:933
#: ../../include/class/ModuleTemplates.class.php:987
-#: ../../include/functions_filemanager.php:859
-#: ../../include/functions_filemanager.php:920
+#: ../../include/functions_filemanager.php:878
+#: ../../include/functions_filemanager.php:940
#: ../../operation/gis_maps/gis_map.php:220
#: ../../operation/incidents/configure_integriaims_incident.php:406
#: ../../operation/incidents/list_integriaims_incidents.php:654
@@ -1503,28 +1537,28 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:2234
#: ../../enterprise/include/functions_reporting.php:2252
#: ../../extensions/insert_data.php:196
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2200
-#: ../../mobile/operation/tactical.php:350
-#: ../../include/functions_reporting_html.php:2018
-#: ../../include/functions_reporting_html.php:2835
-#: ../../include/functions_reporting_html.php:2844
-#: ../../include/functions_reporting_html.php:2849
-#: ../../include/functions_reporting_html.php:2858
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2209
+#: ../../mobile/operation/tactical.php:351
+#: ../../include/functions_reporting_html.php:2034
#: ../../include/functions_reporting_html.php:2863
-#: ../../include/functions_reporting_html.php:2870
-#: ../../include/functions_reporting_html.php:2920
-#: ../../include/functions_reporting_html.php:2994
-#: ../../include/functions_reporting_html.php:6014
-#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065
+#: ../../include/functions_reporting_html.php:2872
+#: ../../include/functions_reporting_html.php:2877
+#: ../../include/functions_reporting_html.php:2886
+#: ../../include/functions_reporting_html.php:2891
+#: ../../include/functions_reporting_html.php:2898
+#: ../../include/functions_reporting_html.php:2948
+#: ../../include/functions_reporting_html.php:3022
+#: ../../include/functions_reporting_html.php:6048
+#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1175
#: ../../include/class/AuditLog.class.php:112
-#: ../../include/functions_reporting.php:4728
-#: ../../include/functions_reporting.php:4769
+#: ../../include/functions_reporting.php:4737
+#: ../../include/functions_reporting.php:4778
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624
-#: ../../operation/agentes/agent_inventory.php:127
+#: ../../operation/agentes/agent_inventory.php:135
#: ../../operation/incidents/list_integriaims_incidents.php:441
-#: ../../operation/inventory/inventory.php:681
+#: ../../operation/inventory/inventory.php:682
#: ../../operation/reporting/graph_viewer.php:321
-#: ../../general/logon_ok.php:257
+#: ../../general/logon_ok.php:302
msgid "Date"
msgstr ""
@@ -1540,7 +1574,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4403
#: ../../godmode/alerts/alert_templates.php:62
#: ../../godmode/reporting/reporting_builder.item_editor.php:1530
-#: ../../include/functions_html.php:2300
+#: ../../include/functions_html.php:2315
msgid "Monday"
msgstr ""
@@ -1556,7 +1590,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4404
#: ../../godmode/alerts/alert_templates.php:63
#: ../../godmode/reporting/reporting_builder.item_editor.php:1538
-#: ../../include/functions_html.php:2301
+#: ../../include/functions_html.php:2316
msgid "Tuesday"
msgstr ""
@@ -1572,7 +1606,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4405
#: ../../godmode/alerts/alert_templates.php:64
#: ../../godmode/reporting/reporting_builder.item_editor.php:1546
-#: ../../include/functions_html.php:2302
+#: ../../include/functions_html.php:2317
msgid "Wednesday"
msgstr ""
@@ -1588,7 +1622,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4406
#: ../../godmode/alerts/alert_templates.php:65
#: ../../godmode/reporting/reporting_builder.item_editor.php:1554
-#: ../../include/functions_html.php:2303
+#: ../../include/functions_html.php:2318
msgid "Thursday"
msgstr ""
@@ -1604,7 +1638,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4407
#: ../../godmode/alerts/alert_templates.php:66
#: ../../godmode/reporting/reporting_builder.item_editor.php:1562
-#: ../../include/functions_html.php:2304
+#: ../../include/functions_html.php:2319
msgid "Friday"
msgstr ""
@@ -1620,7 +1654,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4408
#: ../../godmode/alerts/alert_templates.php:67
#: ../../godmode/reporting/reporting_builder.item_editor.php:1570
-#: ../../include/functions_html.php:2305
+#: ../../include/functions_html.php:2320
msgid "Saturday"
msgstr ""
@@ -1636,7 +1670,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4409
#: ../../godmode/alerts/alert_templates.php:68
#: ../../godmode/reporting/reporting_builder.item_editor.php:1578
-#: ../../include/functions_html.php:2299
+#: ../../include/functions_html.php:2314
msgid "Sunday"
msgstr ""
@@ -1708,7 +1742,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_collections.php:352
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:153
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:429
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:345
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:350
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:355
@@ -1743,7 +1777,7 @@ msgstr ""
#: ../../enterprise/include/class/DatabaseHA.class.php:892
#: ../../enterprise/include/class/AgentRepository.class.php:1004
#: ../../enterprise/include/class/Omnishell.class.php:829
-#: ../../enterprise/include/class/LogSource.class.php:828
+#: ../../enterprise/include/class/LogSource.class.php:825
#: ../../enterprise/include/class/SAPView.class.php:325
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314
#: ../../enterprise/operation/agentes/policy_view.php:209
@@ -1758,24 +1792,24 @@ msgstr ""
#: ../../godmode/modules/manage_nc_groups_form.php:95
#: ../../godmode/modules/manage_network_templates_form.php:178
#: ../../godmode/modules/manage_inventory_modules.php:338
-#: ../../godmode/modules/manage_network_components_form.php:373
+#: ../../godmode/modules/manage_network_components_form.php:376
#: ../../godmode/modules/manage_inventory_modules_form.php:245
-#: ../../godmode/groups/configure_group.php:268
+#: ../../godmode/groups/configure_group.php:287
#: ../../godmode/groups/configure_modu_group.php:99
#: ../../godmode/update_manager/update_manager.setup.php:406
#: ../../godmode/users/configure_profile.php:418
-#: ../../godmode/users/configure_user.php:1669
-#: ../../godmode/agentes/status_monitor_custom_fields.php:211
+#: ../../godmode/users/configure_user.php:1721
+#: ../../godmode/agentes/status_monitor_custom_fields.php:231
#: ../../godmode/agentes/module_manager_editor.php:795
#: ../../godmode/agentes/inventory_manager.php:184
-#: ../../godmode/agentes/inventory_manager.php:266
+#: ../../godmode/agentes/inventory_manager.php:267
#: ../../godmode/agentes/agent_conf_gis.php:161
#: ../../godmode/agentes/planned_downtime.list.php:891
#: ../../godmode/agentes/planned_downtime.list.php:936
#: ../../godmode/agentes/planned_downtime.editor.php:1305
-#: ../../godmode/agentes/agent_manager.php:1056
+#: ../../godmode/agentes/agent_manager.php:1062
#: ../../godmode/agentes/configure_field.php:199
-#: ../../godmode/netflow/nf_edit_form.php:334
+#: ../../godmode/netflow/nf_edit_form.php:450
#: ../../godmode/snmpconsole/snmp_alert.php:1700
#: ../../godmode/snmpconsole/snmp_alert.php:2002
#: ../../godmode/snmpconsole/snmp_filters.php:264
@@ -1783,18 +1817,18 @@ msgstr ""
#: ../../godmode/snmpconsole/snmp_filters.php:337
#: ../../godmode/alerts/configure_alert_command.php:386
#: ../../godmode/alerts/alert_list.list.php:227
-#: ../../godmode/alerts/alert_list.list.php:1041
+#: ../../godmode/alerts/alert_list.list.php:1040
#: ../../godmode/alerts/configure_alert_action.php:424
-#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216
+#: ../../godmode/setup/news.php:333 ../../godmode/setup/setup_ehorus.php:216
#: ../../godmode/setup/setup_sflow.php:95
-#: ../../godmode/setup/setup_websocket_engine.php:93
+#: ../../godmode/setup/setup_websocket_engine.php:117
#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142
#: ../../godmode/setup/setup_auth.php:515
#: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168
#: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/setup/setup_netflow.php:95
-#: ../../godmode/setup/setup_visuals.php:2130
-#: ../../godmode/setup/setup_general.php:841
+#: ../../godmode/setup/setup_netflow.php:91
+#: ../../godmode/setup/setup_visuals.php:2145
+#: ../../godmode/setup/setup_general.php:867
#: ../../godmode/setup/performance.php:880
#: ../../godmode/reporting/visual_console_builder.data.php:313
#: ../../godmode/reporting/create_container.php:365
@@ -1802,24 +1836,24 @@ msgstr ""
#: ../../godmode/reporting/reporting_builder.main.php:56
#: ../../godmode/reporting/graph_builder.main.php:298
#: ../../godmode/events/event_responses.editor.php:332
-#: ../../godmode/events/event_edit_filter.php:954
+#: ../../godmode/events/event_edit_filter.php:956
#: ../../godmode/events/custom_events.php:192
#: ../../godmode/servers/modificar_server.php:134
-#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721
-#: ../../godmode/tag/edit_tag.php:247
+#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:713
+#: ../../godmode/tag/edit_tag.php:251
#: ../../godmode/category/edit_category.php:196
-#: ../../include/functions_visual_map_editor.php:878
+#: ../../include/functions_visual_map_editor.php:926
#: ../../include/ajax/alert_list.ajax.php:564
#: ../../include/class/ConfigPEN.class.php:703
#: ../../include/class/ConfigPEN.class.php:704
-#: ../../include/class/ManageNetScanScripts.class.php:773
-#: ../../include/class/CredentialStore.class.php:1651
+#: ../../include/class/ManageNetScanScripts.class.php:769
+#: ../../include/class/CredentialStore.class.php:1660
#: ../../include/class/ModuleTemplates.class.php:992
#: ../../include/class/ExternalTools.class.php:420
-#: ../../include/functions_events.php:3512
-#: ../../include/functions_events.php:3594
-#: ../../operation/users/user_edit.php:951
-#: ../../operation/agentes/datos_agente.php:218
+#: ../../include/functions_events.php:3517
+#: ../../include/functions_events.php:3599
+#: ../../operation/users/user_edit.php:948
+#: ../../operation/agentes/datos_agente.php:220
#: ../../operation/incidents/configure_integriaims_incident.php:415
#: ../../operation/reporting/reporting_viewer.php:284
msgid "Update"
@@ -1831,7 +1865,7 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4420
#: ../../godmode/agentes/planned_downtime.list.php:819
#: ../../godmode/alerts/configure_alert_template.php:1600
-#: ../../include/class/AgentWizard.class.php:6186
+#: ../../include/class/AgentWizard.class.php:6182
msgid "Loading, this operation might take several minutes..."
msgstr ""
@@ -1857,7 +1891,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:535
#: ../../extensions/extension_uploader.php:134
#: ../../extensions/resource_registration.php:1145
-#: ../../godmode/servers/plugin_registration.php:123
+#: ../../godmode/servers/plugin_registration.php:119
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234
msgid "Upload"
msgstr ""
@@ -1881,26 +1915,27 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129
#: ../../enterprise/operation/agentes/policy_view.php:333
-#: ../../godmode/users/configure_user.php:1102
+#: ../../godmode/users/configure_user.php:58
+#: ../../godmode/users/configure_user.php:1166
#: ../../godmode/users/user_management.php:37
-#: ../../godmode/users/user_management.php:564
-#: ../../godmode/agentes/module_manager_editor_common.php:681
+#: ../../godmode/users/user_management.php:570
+#: ../../godmode/agentes/module_manager_editor_common.php:686
#: ../../godmode/massive/massive_edit_users.php:242
#: ../../godmode/massive/massive_edit_users.php:273
-#: ../../godmode/massive/massive_edit_agents.php:1034
+#: ../../godmode/massive/massive_edit_agents.php:1051
#: ../../godmode/alerts/alert_list.list.php:702
#: ../../godmode/alerts/alert_view.php:58
#: ../../godmode/setup/gis_step_2.php:599
#: ../../godmode/setup/gis_step_2.php:685
-#: ../../godmode/setup/setup_visuals.php:402
-#: ../../godmode/setup/setup_visuals.php:433
-#: ../../godmode/setup/setup_visuals.php:573
-#: ../../godmode/setup/setup_visuals.php:689
-#: ../../godmode/setup/setup_visuals.php:729
-#: ../../godmode/setup/setup_visuals.php:1543
-#: ../../godmode/events/event_edit_filter.php:463
-#: ../../include/functions_ui.php:1404
-#: ../../include/class/AgentsAlerts.class.php:947
+#: ../../godmode/setup/setup_visuals.php:406
+#: ../../godmode/setup/setup_visuals.php:437
+#: ../../godmode/setup/setup_visuals.php:577
+#: ../../godmode/setup/setup_visuals.php:693
+#: ../../godmode/setup/setup_visuals.php:733
+#: ../../godmode/setup/setup_visuals.php:1558
+#: ../../godmode/events/event_edit_filter.php:465
+#: ../../include/auth/mysql.php:806 ../../include/functions_ui.php:1447
+#: ../../include/class/AgentsAlerts.class.php:948
#: ../../include/class/SnmpConsole.class.php:299
#: ../../operation/users/user_edit.php:429
#: ../../operation/users/user_edit.php:432
@@ -1915,7 +1950,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1059
#: ../../include/functions.php:1157
#: ../../include/class/CalendarManager.class.php:1035
-#: ../../include/functions_reporting.php:14913
+#: ../../include/functions_reporting.php:14986
msgid "Sun"
msgstr ""
@@ -1924,7 +1959,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1053
#: ../../include/functions.php:1133
#: ../../include/class/CalendarManager.class.php:1029
-#: ../../include/functions_reporting.php:14883
+#: ../../include/functions_reporting.php:14956
msgid "Mon"
msgstr ""
@@ -1933,7 +1968,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1054
#: ../../include/functions.php:1137
#: ../../include/class/CalendarManager.class.php:1030
-#: ../../include/functions_reporting.php:14888
+#: ../../include/functions_reporting.php:14961
msgid "Tue"
msgstr ""
@@ -1942,7 +1977,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1055
#: ../../include/functions.php:1141
#: ../../include/class/CalendarManager.class.php:1031
-#: ../../include/functions_reporting.php:14893
+#: ../../include/functions_reporting.php:14966
msgid "Wed"
msgstr ""
@@ -1951,7 +1986,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1056
#: ../../include/functions.php:1145
#: ../../include/class/CalendarManager.class.php:1032
-#: ../../include/functions_reporting.php:14898
+#: ../../include/functions_reporting.php:14971
msgid "Thu"
msgstr ""
@@ -1960,7 +1995,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1057
#: ../../include/functions.php:1149
#: ../../include/class/CalendarManager.class.php:1033
-#: ../../include/functions_reporting.php:14903
+#: ../../include/functions_reporting.php:14976
msgid "Fri"
msgstr ""
@@ -1969,7 +2004,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1058
#: ../../include/functions.php:1153
#: ../../include/class/CalendarManager.class.php:1034
-#: ../../include/functions_reporting.php:14908
+#: ../../include/functions_reporting.php:14981
msgid "Sat"
msgstr ""
@@ -2086,7 +2121,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collections.data.php:300
#: ../../enterprise/godmode/agentes/collections.data.php:429
#: ../../enterprise/godmode/agentes/collections.editor.php:255
-#: ../../enterprise/godmode/policies/policy_modules.php:1944
+#: ../../enterprise/godmode/policies/policy_modules.php:1989
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:205
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:580
#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:383
@@ -2107,34 +2142,34 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_ajax.php:122
#: ../../enterprise/tools/ipam/ipam_ajax.php:530
#: ../../extensions/files_repo/files_repo_list.php:139
-#: ../../godmode/groups/group_list.php:951
-#: ../../godmode/groups/group_list.php:952
+#: ../../godmode/groups/group_list.php:963
+#: ../../godmode/groups/group_list.php:964
#: ../../godmode/users/profile_list.php:444
#: ../../godmode/agentes/agent_template.php:306
-#: ../../godmode/agentes/modificar_agente.php:810
+#: ../../godmode/agentes/modificar_agente.php:822
#: ../../godmode/agentes/planned_downtime.list.php:747
#: ../../godmode/agentes/planned_downtime.editor.php:1416
#: ../../godmode/agentes/fields_manager.php:191
#: ../../godmode/agentes/configure_field.php:83
#: ../../godmode/setup/snmp_wizard.php:110
-#: ../../godmode/reporting/reporting_builder.list_items.php:626
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2338
+#: ../../godmode/reporting/reporting_builder.list_items.php:627
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2347
#: ../../godmode/reporting/reporting_builder.php:1164
#: ../../godmode/events/event_responses.list.php:105
-#: ../../godmode/servers/servers.build_table.php:237
-#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050
+#: ../../godmode/servers/servers.build_table.php:250
+#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1042
#: ../../godmode/category/category.php:182
#: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918
#: ../../include/functions_cron.php:944
-#: ../../include/class/NetworkMap.class.php:3192
+#: ../../include/class/NetworkMap.class.php:3198
#: ../../include/class/CredentialStore.class.php:1263
-#: ../../include/class/TipsWindow.class.php:457
+#: ../../include/class/TipsWindow.class.php:469
#: ../../include/class/CalendarManager.class.php:703
#: ../../include/lib/ClusterViewer/ClusterManager.php:618
-#: ../../operation/visual_console/view.php:465
-#: ../../operation/agentes/estado_agente.php:1262
-#: ../../operation/agentes/pandora_networkmap.php:815
-#: ../../operation/agentes/status_monitor.php:2248
+#: ../../operation/visual_console/view.php:467
+#: ../../operation/agentes/estado_agente.php:1271
+#: ../../operation/agentes/pandora_networkmap.php:816
+#: ../../operation/agentes/status_monitor.php:2250
#: ../../operation/gis_maps/gis_map.php:203
#: ../../operation/incidents/list_integriaims_incidents.php:621
#: ../../operation/search_reports.php:68
@@ -2151,12 +2186,12 @@ msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:743
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:78
#: ../../enterprise/godmode/policies/policy_alerts.php:565
-#: ../../enterprise/godmode/policies/policy_modules.php:1626
-#: ../../enterprise/godmode/policies/policy_modules.php:1642
-#: ../../enterprise/godmode/policies/policy_modules.php:1703
-#: ../../enterprise/godmode/policies/policy_queue.php:810
-#: ../../enterprise/godmode/policies/policy_queue.php:852
-#: ../../enterprise/godmode/policies/policy_queue.php:875
+#: ../../enterprise/godmode/policies/policy_modules.php:1671
+#: ../../enterprise/godmode/policies/policy_modules.php:1687
+#: ../../enterprise/godmode/policies/policy_modules.php:1748
+#: ../../enterprise/godmode/policies/policy_queue.php:814
+#: ../../enterprise/godmode/policies/policy_queue.php:856
+#: ../../enterprise/godmode/policies/policy_queue.php:879
#: ../../enterprise/godmode/policies/policies.php:633
#: ../../enterprise/godmode/policies/policies.php:652
#: ../../enterprise/godmode/policies/policies.php:687
@@ -2193,7 +2228,7 @@ msgstr ""
#: ../../enterprise/include/class/Omnishell.class.php:702
#: ../../enterprise/include/class/Omnishell.class.php:1390
#: ../../enterprise/include/class/Omnishell.class.php:1525
-#: ../../enterprise/include/class/LogSource.class.php:871
+#: ../../enterprise/include/class/LogSource.class.php:868
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3151
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471
#: ../../enterprise/include/class/ManageBackups.class.php:452
@@ -2207,28 +2242,30 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:844
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:975
#: ../../update_manager_client/views/offline.php:72
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/online.php:125
+#: ../../update_manager_client/views/online.php:166
#: ../../extensions/files_repo/files_repo_list.php:149
#: ../../godmode/modules/manage_nc_groups.php:300
#: ../../godmode/modules/manage_inventory_modules.php:341
-#: ../../godmode/modules/manage_network_components.php:852
+#: ../../godmode/modules/manage_network_components.php:855
#: ../../godmode/modules/manage_network_templates.php:274
#: ../../godmode/modules/manage_network_templates.php:289
-#: ../../godmode/groups/group_list.php:960
+#: ../../godmode/groups/group_list.php:972
#: ../../godmode/groups/modu_group_list.php:284
#: ../../godmode/groups/modu_group_list.php:287
#: ../../godmode/extensions.php:283 ../../godmode/extensions.php:301
#: ../../godmode/users/profile_list.php:452
-#: ../../godmode/users/configure_user.php:1935
-#: ../../godmode/users/configure_user.php:2171
+#: ../../godmode/users/user_list.php:984
+#: ../../godmode/users/configure_user.php:1987
+#: ../../godmode/users/configure_user.php:2223
#: ../../godmode/agentes/agent_template.php:298
-#: ../../godmode/agentes/inventory_manager.php:261
-#: ../../godmode/agentes/modificar_agente.php:941
+#: ../../godmode/agentes/inventory_manager.php:262
+#: ../../godmode/agentes/modificar_agente.php:953
#: ../../godmode/agentes/planned_downtime.editor.php:1453
#: ../../godmode/agentes/fields_manager.php:210
-#: ../../godmode/agentes/module_manager.php:1014
-#: ../../godmode/agentes/module_manager.php:1235
+#: ../../godmode/agentes/module_manager.php:1012
+#: ../../godmode/agentes/module_manager.php:1028
+#: ../../godmode/agentes/module_manager.php:1256
#: ../../godmode/netflow/nf_item_list.php:262
#: ../../godmode/netflow/nf_edit.php:202
#: ../../godmode/snmpconsole/snmp_alert.php:1945
@@ -2240,11 +2277,11 @@ msgstr ""
#: ../../godmode/massive/massive_edit_plugins.php:576
#: ../../godmode/massive/massive_enable_disable_alerts.php:227
#: ../../godmode/alerts/alert_actions.php:449
-#: ../../godmode/alerts/alert_list.list.php:1256
+#: ../../godmode/alerts/alert_list.list.php:1255
#: ../../godmode/alerts/alert_commands.php:812
#: ../../godmode/alerts/alert_commands.php:815
-#: ../../godmode/alerts/alert_templates.php:465
-#: ../../godmode/setup/news.php:393 ../../godmode/setup/links.php:210
+#: ../../godmode/alerts/alert_templates.php:469
+#: ../../godmode/setup/news.php:392 ../../godmode/setup/links.php:210
#: ../../godmode/reporting/create_container.php:801
#: ../../godmode/reporting/map_builder.php:544
#: ../../godmode/reporting/map_builder.php:555
@@ -2259,7 +2296,7 @@ msgstr ""
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1019
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1032
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
-#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420
+#: ../../godmode/servers/plugin.php:1054 ../../godmode/tag/tag.php:421
#: ../../godmode/category/category.php:186
#: ../../godmode/category/category.php:222
#: ../../include/functions_profile.php:319
@@ -2268,25 +2305,26 @@ msgstr ""
#: ../../include/class/SatelliteAgent.class.php:1193
#: ../../include/class/SatelliteAgent.class.php:1255
#: ../../include/class/TreeGroupEdition.class.php:166
-#: ../../include/class/CredentialStore.class.php:1693
+#: ../../include/class/CredentialStore.class.php:1702
#: ../../include/class/SnmpConsole.class.php:472
-#: ../../include/class/SnmpConsole.class.php:1266
-#: ../../include/class/SnmpConsole.class.php:1293
-#: ../../include/class/TipsWindow.class.php:618
+#: ../../include/class/SnmpConsole.class.php:1268
+#: ../../include/class/SnmpConsole.class.php:1295
+#: ../../include/class/TipsWindow.class.php:640
#: ../../include/class/ModuleTemplates.class.php:874
#: ../../include/class/ModuleTemplates.class.php:889
#: ../../include/class/WelcomeWindow.class.php:171
#: ../../include/class/SatelliteCollection.class.php:531
#: ../../include/class/SatelliteCollection.class.php:574
-#: ../../include/functions_filemanager.php:754
+#: ../../include/functions_filemanager.php:769
#: ../../include/functions_container.php:190
#: ../../include/functions_container.php:324
#: ../../include/lib/Dashboard/Widgets/events_list.php:655
-#: ../../include/functions_events.php:3655
-#: ../../operation/users/user_edit.php:1345
+#: ../../include/functions_events.php:3660
+#: ../../operation/users/user_edit.php:1342
#: ../../operation/agentes/pandora_networkmap.editor.php:743
#: ../../operation/messages/message_list.php:300
-#: ../../operation/snmpconsole/snmp_browser.php:637
+#: ../../operation/snmpconsole/snmp_browser.php:620
+#: ../../operation/snmpconsole/snmp_browser.php:696
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213
#: ../../operation/incidents/list_integriaims_incidents.php:625
msgid "Are you sure?"
@@ -2299,13 +2337,13 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4418
#: ../../godmode/alerts/configure_alert_template.php:1598
-#: ../../godmode/events/event_edit_filter.php:681
-#: ../../godmode/events/event_edit_filter.php:746
-#: ../../include/functions_ui.php:7521 ../../include/functions_ui.php:7569
+#: ../../godmode/events/event_edit_filter.php:683
+#: ../../godmode/events/event_edit_filter.php:748
+#: ../../include/functions_ui.php:7605 ../../include/functions_ui.php:7661
#: ../../include/rest-api/index.php:363
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:546
-#: ../../operation/events/events.php:1284
-#: ../../operation/events/events.php:1356
+#: ../../operation/events/events.php:1311
+#: ../../operation/events/events.php:1401
msgid "Remove"
msgstr ""
@@ -2334,12 +2372,13 @@ msgstr ""
#: ../../enterprise/include/class/SAPView.class.php:155
#: ../../enterprise/include/class/SAPView.class.php:199
#: ../../enterprise/operation/agentes/tag_view.php:50
-#: ../../enterprise/operation/log/log_viewer.php:494
+#: ../../enterprise/operation/log/log_viewer.php:492
#: ../../enterprise/tools/ipam/ipam_editor.php:303
-#: ../../extensions/agents_modules.php:552
+#: ../../extensions/agents_modules.php:560
#: ../../extensions/module_groups.php:260
#: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71
-#: ../../godmode/groups/tactical.php:126
+#: ../../godmode/groups/tactical.php:125
+#: ../../godmode/agentes/status_monitor_custom_fields.php:44
#: ../../godmode/snmpconsole/snmp_trap_generator.php:47
#: ../../godmode/snmpconsole/snmp_filters.php:55
#: ../../include/class/AgentsAlerts.class.php:751
@@ -2348,17 +2387,17 @@ msgstr ""
#: ../../operation/agentes/alerts_status.php:198
#: ../../operation/agentes/estado_agente.php:246
#: ../../operation/agentes/interface_view.php:72
-#: ../../operation/agentes/status_monitor.php:336
+#: ../../operation/agentes/status_monitor.php:335
#: ../../operation/agentes/group_view.php:98
#: ../../operation/agentes/tactical.php:81
#: ../../operation/network/network_usage_map.php:48
-#: ../../operation/netflow/nf_live_view.php:139
+#: ../../operation/netflow/nf_live_view.php:144
#: ../../operation/netflow/netflow_explorer.php:55
#: ../../operation/snmpconsole/snmp_statistics.php:100
-#: ../../operation/snmpconsole/snmp_browser.php:86
+#: ../../operation/snmpconsole/snmp_browser.php:88
#: ../../operation/snmpconsole/snmp_mib_uploader.php:56
#: ../../operation/menu.php:159 ../../operation/menu.php:276
-#: ../../operation/inventory/inventory.php:310
+#: ../../operation/inventory/inventory.php:312
#: ../../general/first_task/cluster_builder.php:38
msgid "Monitoring"
msgstr ""
@@ -2371,13 +2410,13 @@ msgid "Clusters"
msgstr ""
#: ../../views/cluster/list.php:72
-#: ../../enterprise/meta/advanced/servers.build_table.php:63
+#: ../../enterprise/meta/advanced/servers.build_table.php:79
#: ../../enterprise/meta/advanced/metasetup.relations.php:335
#: ../../enterprise/meta/advanced/metasetup.relations.php:413
#: ../../enterprise/meta/advanced/metasetup.relations.php:548
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68
#: ../../enterprise/godmode/modules/configure_local_component.php:214
-#: ../../enterprise/godmode/policies/policy_modules.php:1545
+#: ../../enterprise/godmode/policies/policy_modules.php:1590
#: ../../enterprise/godmode/services/services.elements.php:113
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:72
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93
@@ -2394,48 +2433,48 @@ msgstr ""
#: ../../enterprise/operation/agentes/ver_agente.php:50
#: ../../godmode/modules/manage_network_templates_form.php:232
#: ../../godmode/modules/manage_network_components_form_common.php:64
-#: ../../godmode/modules/manage_network_components.php:776
+#: ../../godmode/modules/manage_network_components.php:779
#: ../../godmode/update_manager/update_manager.history.php:41
#: ../../godmode/agentes/agent_template.php:275
-#: ../../godmode/agentes/modificar_agente.php:696
+#: ../../godmode/agentes/modificar_agente.php:706
#: ../../godmode/agentes/planned_downtime.list.php:736
#: ../../godmode/agentes/planned_downtime.editor.php:926
#: ../../godmode/agentes/module_manager_editor_common.php:293
-#: ../../godmode/agentes/module_manager_editor_common.php:1536
+#: ../../godmode/agentes/module_manager_editor_common.php:1546
#: ../../godmode/agentes/module_manager.php:630
#: ../../godmode/alerts/alert_templates.php:35
-#: ../../godmode/alerts/alert_templates.php:307
-#: ../../godmode/alerts/alert_templates.php:412
-#: ../../godmode/setup/news.php:350 ../../godmode/setup/gis_step_2.php:256
+#: ../../godmode/alerts/alert_templates.php:311
+#: ../../godmode/alerts/alert_templates.php:416
+#: ../../godmode/setup/news.php:354 ../../godmode/setup/gis_step_2.php:256
#: ../../godmode/setup/setup_integria.php:479
#: ../../godmode/setup/setup_integria.php:613
#: ../../godmode/reporting/reporting_builder.list_items.php:245
#: ../../godmode/reporting/reporting_builder.list_items.php:374
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1055
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1057
#: ../../godmode/reporting/visual_console_builder.wizard.php:131
#: ../../godmode/reporting/visual_console_builder.wizard.php:315
#: ../../godmode/events/event_responses.editor.php:234
-#: ../../godmode/servers/servers.build_table.php:79
+#: ../../godmode/servers/servers.build_table.php:81
#: ../../godmode/servers/modificar_server.php:105
-#: ../../godmode/servers/plugin.php:993
+#: ../../godmode/servers/plugin.php:985
#: ../../mobile/operation/visualmaps.php:125
#: ../../mobile/operation/visualmaps.php:126
-#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659
-#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972
-#: ../../mobile/operation/events.php:973
-#: ../../include/functions_visual_map_editor.php:700
-#: ../../include/functions_visual_map_editor.php:718
-#: ../../include/functions_visual_map_editor.php:846
+#: ../../mobile/operation/events.php:687 ../../mobile/operation/events.php:688
+#: ../../mobile/operation/events.php:841 ../../mobile/operation/events.php:1016
+#: ../../mobile/operation/events.php:1017
+#: ../../include/functions_visual_map_editor.php:750
+#: ../../include/functions_visual_map_editor.php:768
+#: ../../include/functions_visual_map_editor.php:894
#: ../../include/functions_reporting_html.php:1056
#: ../../include/functions_reporting_html.php:1065
#: ../../include/functions_reporting_html.php:1306
#: ../../include/functions_reporting_html.php:1314
-#: ../../include/functions_reporting_html.php:2638
-#: ../../include/functions_reporting_html.php:5490
-#: ../../include/ajax/heatmap.ajax.php:77
+#: ../../include/functions_reporting_html.php:2657
+#: ../../include/functions_reporting_html.php:5518
+#: ../../include/ajax/heatmap.ajax.php:96
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467
#: ../../include/functions_reports.php:1086
-#: ../../include/functions_html.php:5952
+#: ../../include/functions_html.php:5976
#: ../../include/class/ModuleTemplates.class.php:1185
#: ../../include/class/CalendarManager.class.php:1028
#: ../../include/class/CalendarManager.class.php:1062
@@ -2448,27 +2487,27 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/clock.php:221
#: ../../include/functions_snmp_browser.php:564
#: ../../include/functions_events.php:2525
-#: ../../include/functions_events.php:4958
-#: ../../operation/agentes/estado_agente.php:1043
+#: ../../include/functions_events.php:4963
+#: ../../operation/agentes/estado_agente.php:1051
#: ../../operation/agentes/ver_agente.php:1171
-#: ../../operation/netflow/nf_live_view.php:495
+#: ../../operation/netflow/nf_live_view.php:568
#: ../../operation/incidents/configure_integriaims_incident.php:251
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342
-#: ../../operation/search_modules.php:34
+#: ../../operation/search_modules.php:37
#: ../../operation/reporting/graph_viewer.php:363
msgid "Type"
msgstr ""
#: ../../views/cluster/list.php:73
-#: ../../include/functions_reporting_html.php:5925
+#: ../../include/functions_reporting_html.php:5953
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325
-#: ../../operation/agentes/pandora_networkmap.php:717
+#: ../../operation/agentes/pandora_networkmap.php:718
msgid "Nodes"
msgstr ""
#: ../../views/cluster/list.php:74
#: ../../enterprise/views/ncm/devices/list.php:120
-#: ../../enterprise/meta/advanced/servers.build_table.php:62
+#: ../../enterprise/meta/advanced/servers.build_table.php:78
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584
#: ../../enterprise/meta/advanced/policymanager.queue.php:225
#: ../../enterprise/meta/monitoring/custom_fields_view.php:719
@@ -2479,8 +2518,8 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collection_manager.php:164
#: ../../enterprise/godmode/agentes/collection_manager.php:264
#: ../../enterprise/godmode/policies/policy_alerts.php:368
-#: ../../enterprise/godmode/policies/policy_modules.php:1546
-#: ../../enterprise/godmode/policies/policy_queue.php:335
+#: ../../enterprise/godmode/policies/policy_modules.php:1591
+#: ../../enterprise/godmode/policies/policy_queue.php:337
#: ../../enterprise/godmode/policies/policies.php:436
#: ../../enterprise/godmode/policies/policy_collections.php:243
#: ../../enterprise/godmode/policies/policy_collections.php:324
@@ -2516,15 +2555,15 @@ msgstr ""
#: ../../enterprise/operation/services/services.table_services.php:183
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:490
#: ../../godmode/groups/tactical.php:180
-#: ../../godmode/agentes/status_monitor_custom_fields.php:97
-#: ../../godmode/agentes/status_monitor_custom_fields.php:146
+#: ../../godmode/agentes/status_monitor_custom_fields.php:117
+#: ../../godmode/agentes/status_monitor_custom_fields.php:166
#: ../../godmode/agentes/agent_incidents.php:88
#: ../../godmode/agentes/module_manager.php:645
#: ../../godmode/massive/massive_copy_modules.php:121
#: ../../godmode/massive/massive_copy_modules.php:281
#: ../../godmode/massive/massive_delete_modules.php:415
#: ../../godmode/massive/massive_edit_users.php:501
-#: ../../godmode/massive/massive_edit_agents.php:926
+#: ../../godmode/massive/massive_edit_agents.php:943
#: ../../godmode/alerts/alert_list.list.php:174
#: ../../godmode/alerts/alert_list.list.php:569
#: ../../godmode/alerts/alert_view.php:120
@@ -2533,71 +2572,81 @@ msgstr ""
#: ../../godmode/reporting/reporting_builder.item_editor.php:77
#: ../../godmode/events/custom_events.php:99
#: ../../godmode/wizards/DiscoveryTaskList.class.php:605
-#: ../../godmode/servers/servers.build_table.php:78
-#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:144
-#: ../../mobile/operation/agents.php:243 ../../mobile/operation/agents.php:244
-#: ../../mobile/operation/agents.php:406 ../../mobile/operation/modules.php:163
+#: ../../godmode/servers/servers.build_table.php:80
+#: ../../mobile/operation/agents.php:97 ../../mobile/operation/agents.php:145
+#: ../../mobile/operation/agents.php:244 ../../mobile/operation/agents.php:245
+#: ../../mobile/operation/agents.php:407 ../../mobile/operation/modules.php:163
#: ../../mobile/operation/modules.php:164
#: ../../mobile/operation/modules.php:275
#: ../../mobile/operation/modules.php:276
-#: ../../mobile/operation/modules.php:603
-#: ../../mobile/operation/modules.php:609
-#: ../../mobile/operation/modules.php:615
-#: ../../mobile/operation/modules.php:621
+#: ../../mobile/operation/modules.php:614
+#: ../../mobile/operation/modules.php:620
+#: ../../mobile/operation/modules.php:626
#: ../../mobile/operation/modules.php:632
-#: ../../mobile/operation/modules.php:640
-#: ../../mobile/operation/modules.php:648
-#: ../../mobile/operation/modules.php:720
+#: ../../mobile/operation/modules.php:643
+#: ../../mobile/operation/modules.php:651
+#: ../../mobile/operation/modules.php:659
#: ../../mobile/operation/modules.php:732
-#: ../../mobile/operation/modules.php:850 ../../mobile/operation/alerts.php:105
+#: ../../mobile/operation/modules.php:742
+#: ../../mobile/operation/modules.php:751
+#: ../../mobile/operation/modules.php:763
+#: ../../mobile/operation/modules.php:909 ../../mobile/operation/alerts.php:105
#: ../../mobile/operation/alerts.php:106 ../../mobile/operation/alerts.php:247
-#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:350
-#: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650
-#: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963
-#: ../../mobile/operation/events.php:964
+#: ../../mobile/operation/alerts.php:248 ../../mobile/operation/alerts.php:334
+#: ../../mobile/operation/module_data.php:262
+#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679
+#: ../../mobile/operation/events.php:853 ../../mobile/operation/events.php:1007
+#: ../../mobile/operation/events.php:1008
+#: ../../mobile/operation/server_status.php:154
+#: ../../mobile/operation/server_status.php:155
+#: ../../mobile/operation/server_status.php:281
+#: ../../mobile/operation/server_status.php:319
+#: ../../mobile/operation/server_status.php:349
+#: ../../mobile/operation/server_status.php:445
#: ../../include/functions_reporting_html.php:553
#: ../../include/functions_reporting_html.php:1055
#: ../../include/functions_reporting_html.php:1064
#: ../../include/functions_reporting_html.php:1305
#: ../../include/functions_reporting_html.php:1313
-#: ../../include/functions_reporting_html.php:1624
-#: ../../include/functions_reporting_html.php:2356
-#: ../../include/functions_reporting_html.php:2637
-#: ../../include/functions_reporting_html.php:2996
-#: ../../include/functions_reporting_html.php:3664
-#: ../../include/functions_reporting_html.php:3714
-#: ../../include/functions_reporting_html.php:5303
+#: ../../include/functions_reporting_html.php:1633
+#: ../../include/functions_reporting_html.php:2377
+#: ../../include/functions_reporting_html.php:2656
+#: ../../include/functions_reporting_html.php:3024
+#: ../../include/functions_reporting_html.php:3692
+#: ../../include/functions_reporting_html.php:3742
+#: ../../include/functions_reporting_html.php:5331
+#: ../../include/ajax/heatmap.ajax.php:391
#: ../../include/ajax/alert_list.ajax.php:296
#: ../../include/ajax/alert_list.ajax.php:321
-#: ../../include/ajax/module.php:1003 ../../include/ajax/custom_fields.php:416
+#: ../../include/ajax/module.php:1026 ../../include/ajax/custom_fields.php:416
#: ../../include/functions_snmp.php:369
#: ../../include/functions_massive_operations.php:152
-#: ../../include/class/NetworkMap.class.php:3064
-#: ../../include/class/AgentsAlerts.class.php:913
+#: ../../include/class/NetworkMap.class.php:3070
+#: ../../include/class/AgentsAlerts.class.php:914
#: ../../include/class/SnmpConsole.class.php:273
#: ../../include/class/SnmpConsole.class.php:382
#: ../../include/class/SnmpConsole.class.php:500
#: ../../include/class/ExternalTools.class.php:877
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:322
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:547
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:562
#: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594
#: ../../include/functions_events.php:204
#: ../../include/functions_events.php:259
#: ../../include/functions_events.php:2543
-#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56
+#: ../../include/functions_events.php:5009 ../../operation/search_agents.php:56
#: ../../operation/agentes/estado_agente.php:324
-#: ../../operation/agentes/estado_agente.php:1049
+#: ../../operation/agentes/estado_agente.php:1057
#: ../../operation/agentes/interface_view.functions.php:516
-#: ../../operation/agentes/status_monitor.php:1566
+#: ../../operation/agentes/status_monitor.php:1568
#: ../../operation/agentes/alerts_status.functions.php:108
#: ../../operation/messages/message_list.php:188
#: ../../operation/incidents/integriaims_export_csv.php:83
#: ../../operation/incidents/configure_integriaims_incident.php:305
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:338
#: ../../operation/incidents/list_integriaims_incidents.php:334
-#: ../../operation/search_modules.php:36 ../../operation/search_policies.php:38
+#: ../../operation/search_modules.php:39 ../../operation/search_policies.php:38
msgid "Status"
msgstr ""
@@ -2621,10 +2670,10 @@ msgstr ""
#: ../../enterprise/include/ajax/log_viewer.ajax.php:352
#: ../../enterprise/include/class/Omnishell.class.php:1016
#: ../../enterprise/include/class/Omnishell.class.php:1095
-#: ../../include/ajax/module.php:2251 ../../include/ajax/agent.php:598
-#: ../../include/ajax/events.php:804 ../../include/functions_html.php:1276
-#: ../../include/functions_html.php:1427
-#: ../../include/functions_snmp_browser.php:1617
+#: ../../include/ajax/module.php:2280 ../../include/ajax/agent.php:598
+#: ../../include/ajax/events.php:805 ../../include/functions_html.php:1281
+#: ../../include/functions_html.php:1432
+#: ../../include/functions_snmp_browser.php:1626
msgid "Filter group"
msgstr ""
@@ -2670,27 +2719,27 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323
#: ../../enterprise/include/lib/NetworkManager.php:190
-#: ../../godmode/groups/group_list.php:942
-#: ../../godmode/agentes/modificar_agente.php:779
+#: ../../godmode/groups/group_list.php:954
+#: ../../godmode/agentes/modificar_agente.php:791
#: ../../godmode/agentes/module_manager_editor_common.php:253
-#: ../../godmode/agentes/module_manager_editor_common.php:696
-#: ../../godmode/agentes/module_manager_editor_common.php:1311
-#: ../../godmode/agentes/module_manager.php:974
-#: ../../godmode/agentes/module_manager.php:987
-#: ../../godmode/massive/massive_edit_agents.php:938
-#: ../../godmode/massive/massive_edit_agents.php:1138
+#: ../../godmode/agentes/module_manager_editor_common.php:702
+#: ../../godmode/agentes/module_manager_editor_common.php:1321
+#: ../../godmode/agentes/module_manager.php:988
+#: ../../godmode/agentes/module_manager.php:1001
+#: ../../godmode/massive/massive_edit_agents.php:955
+#: ../../godmode/massive/massive_edit_agents.php:1154
#: ../../godmode/massive/massive_edit_modules.php:780
#: ../../godmode/alerts/alert_list.list.php:172
#: ../../godmode/alerts/configure_alert_template.php:918
-#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:167
+#: ../../godmode/alerts/alert_view.php:547 ../../mobile/operation/agent.php:173
#: ../../mobile/operation/alerts.php:68
-#: ../../include/functions_visual_map_editor.php:824
-#: ../../include/functions_reporting_html.php:3676
+#: ../../include/functions_visual_map_editor.php:872
+#: ../../include/functions_reporting_html.php:3704
#: ../../include/functions_agents.php:1472
#: ../../include/functions_treeview.php:66
-#: ../../include/functions_treeview.php:602
+#: ../../include/functions_treeview.php:606
#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405
-#: ../../include/functions_reporting.php:6992
+#: ../../include/functions_reporting.php:7001
#: ../../operation/search_agents.php:93
#: ../../operation/agentes/estado_generalagente.php:92
#: ../../operation/agentes/alerts_status.functions.php:101
@@ -2701,24 +2750,24 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028
#: ../../enterprise/godmode/services/services.service.php:773
#: ../../enterprise/operation/services/massive/services.create.php:839
-#: ../../godmode/agentes/modificar_agente.php:788
+#: ../../godmode/agentes/modificar_agente.php:800
#: ../../godmode/agentes/planned_downtime.list.php:778
#: ../../godmode/agentes/planned_downtime.editor.php:929
-#: ../../godmode/agentes/agent_manager.php:826
-#: ../../godmode/agentes/module_manager_editor_common.php:1394
+#: ../../godmode/agentes/agent_manager.php:834
+#: ../../godmode/agentes/module_manager_editor_common.php:1404
#: ../../godmode/agentes/module_manager.php:765
-#: ../../godmode/massive/massive_edit_agents.php:1108
+#: ../../godmode/massive/massive_edit_agents.php:1125
#: ../../godmode/massive/massive_edit_modules.php:1119
-#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1114
-#: ../../include/class/Tree.class.php:936 ../../operation/search_agents.php:100
-#: ../../operation/agentes/estado_agente.php:1145
+#: ../../mobile/operation/agent.php:180 ../../include/ajax/module.php:1137
+#: ../../include/class/Tree.class.php:964 ../../operation/search_agents.php:100
+#: ../../operation/agentes/estado_agente.php:1153
#: ../../operation/agentes/estado_generalagente.php:94
msgid "Quiet"
msgstr ""
#: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185
#: ../../operation/search_agents.php:111
-#: ../../operation/agentes/estado_agente.php:1153
+#: ../../operation/agentes/estado_agente.php:1161
msgid "Agent in scheduled downtime"
msgstr ""
@@ -2743,25 +2792,24 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_network.php:426
#: ../../godmode/modules/manage_inventory_modules.php:291
#: ../../godmode/modules/manage_inventory_modules_form.php:140
-#: ../../godmode/agentes/modificar_agente.php:694
+#: ../../godmode/agentes/modificar_agente.php:704
#: ../../godmode/agentes/planned_downtime.editor.php:1358
#: ../../godmode/agentes/agent_manager.php:523
-#: ../../godmode/massive/massive_edit_agents.php:733
+#: ../../godmode/massive/massive_edit_agents.php:750
#: ../../godmode/reporting/reporting_builder.item_editor.php:71
-#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404
-#: ../../include/functions_reporting_html.php:1600
-#: ../../include/functions_reporting_html.php:3661
-#: ../../include/ajax/heatmap.ajax.php:339
+#: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:405
+#: ../../include/functions_reporting_html.php:1609
+#: ../../include/functions_reporting_html.php:3689
+#: ../../include/ajax/heatmap.ajax.php:467
#: ../../include/class/Diagnostics.class.php:769
#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:345
-#: ../../include/functions_events.php:4377 ../../operation/search_agents.php:44
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:348
+#: ../../include/functions_events.php:4382 ../../operation/search_agents.php:44
#: ../../operation/search_agents.php:50 ../../operation/tree.php:79
-#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1031
+#: ../../operation/tree.php:145 ../../operation/agentes/estado_agente.php:1038
#: ../../operation/agentes/estado_generalagente.php:216
#: ../../operation/gis_maps/ajax.php:297
-#: ../../operation/inventory/inventory.php:1005
-#: ../../operation/inventory/inventory.php:1299
+#: ../../operation/inventory/inventory.php:1251
msgid "OS"
msgstr ""
@@ -2771,12 +2819,12 @@ msgid "IP address"
msgstr ""
#: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292
-#: ../../enterprise/meta/advanced/servers.build_table.php:101
-#: ../../enterprise/meta/advanced/servers.build_table.php:102
-#: ../../enterprise/meta/advanced/servers.build_table.php:108
+#: ../../enterprise/meta/advanced/servers.build_table.php:125
+#: ../../enterprise/meta/advanced/servers.build_table.php:126
+#: ../../enterprise/meta/advanced/servers.build_table.php:132
#: ../../enterprise/meta/advanced/metasetup.visual.php:964
#: ../../enterprise/include/functions_visual_map.php:320
-#: ../../enterprise/include/functions_servicemap.php:471
+#: ../../enterprise/include/functions_servicemap.php:483
#: ../../enterprise/include/functions_aws.php:509
#: ../../enterprise/include/functions_aws.php:510
#: ../../enterprise/include/functions_reporting.php:6178
@@ -2789,92 +2837,92 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_network.php:543
#: ../../enterprise/tools/ipam/ipam_ajax.php:369
#: ../../enterprise/tools/ipam/ipam_ajax.php:390
-#: ../../godmode/modules/manage_network_components.php:802
-#: ../../godmode/modules/manage_network_components.php:803
+#: ../../godmode/modules/manage_network_components.php:805
+#: ../../godmode/modules/manage_network_components.php:806
#: ../../godmode/extensions.php:207 ../../godmode/extensions.php:222
#: ../../godmode/agentes/planned_downtime.list.php:942
#: ../../godmode/alerts/alert_view.php:141
-#: ../../godmode/servers/servers.build_table.php:151
-#: ../../godmode/servers/servers.build_table.php:152
-#: ../../godmode/servers/servers.build_table.php:158
-#: ../../mobile/operation/agent.php:192 ../../mobile/operation/agent.php:200
-#: ../../mobile/operation/events.php:307 ../../mobile/operation/events.php:319
-#: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443
-#: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509
-#: ../../include/functions_servers.php:1275
+#: ../../godmode/servers/servers.build_table.php:153
+#: ../../godmode/servers/servers.build_table.php:154
+#: ../../godmode/servers/servers.build_table.php:160
+#: ../../mobile/operation/agent.php:198 ../../mobile/operation/agent.php:203
+#: ../../mobile/operation/events.php:303 ../../mobile/operation/events.php:315
+#: ../../mobile/operation/events.php:327 ../../mobile/operation/events.php:435
+#: ../../mobile/operation/events.php:485 ../../mobile/operation/events.php:501
+#: ../../include/functions_servers.php:1298
#: ../../include/functions_reporting_html.php:659
#: ../../include/functions_reporting_html.php:662
-#: ../../include/functions_reporting_html.php:5564
-#: ../../include/functions_reporting_html.php:5617
+#: ../../include/functions_reporting_html.php:5592
+#: ../../include/functions_reporting_html.php:5645
#: ../../include/functions.php:1180 ../../include/functions.php:1186
-#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156
+#: ../../include/functions.php:1190 ../../include/ajax/module.php:1183
#: ../../include/functions_treeview.php:153
#: ../../include/functions_treeview.php:311
-#: ../../include/functions_treeview.php:410
-#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874
-#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241
-#: ../../include/class/SnmpConsole.class.php:794
-#: ../../include/class/SnmpConsole.class.php:812
-#: ../../include/functions_events.php:3684
-#: ../../include/functions_events.php:3818
-#: ../../include/functions_events.php:3838
-#: ../../include/functions_events.php:3847
-#: ../../include/functions_events.php:3856
-#: ../../include/functions_events.php:3857
-#: ../../include/functions_events.php:3869
-#: ../../include/functions_events.php:3929
-#: ../../include/functions_events.php:3962
-#: ../../include/functions_events.php:4028
-#: ../../include/functions_events.php:4045
-#: ../../include/functions_events.php:4052
-#: ../../include/functions_events.php:4118
-#: ../../include/functions_events.php:4210
-#: ../../include/functions_events.php:4334
-#: ../../include/functions_events.php:4373
-#: ../../include/functions_events.php:4413
-#: ../../include/functions_events.php:4436
-#: ../../include/functions_events.php:4466
-#: ../../include/functions_events.php:4549
-#: ../../include/functions_events.php:4630
-#: ../../include/functions_events.php:4640
-#: ../../include/functions_events.php:4857
-#: ../../include/functions_events.php:4938
-#: ../../include/functions_events.php:5043
-#: ../../include/functions_events.php:5072
-#: ../../include/functions_events.php:5087
-#: ../../include/functions_events.php:5097
-#: ../../include/functions_events.php:5107
-#: ../../include/functions_events.php:5590
-#: ../../include/functions_events.php:5604
+#: ../../include/functions_treeview.php:414
+#: ../../include/functions_treeview.php:643 ../../include/functions_ui.php:2917
+#: ../../include/functions_ui.php:2925 ../../include/functions_db.php:241
+#: ../../include/class/SnmpConsole.class.php:796
+#: ../../include/class/SnmpConsole.class.php:814
+#: ../../include/functions_events.php:3689
+#: ../../include/functions_events.php:3823
+#: ../../include/functions_events.php:3843
+#: ../../include/functions_events.php:3852
+#: ../../include/functions_events.php:3861
+#: ../../include/functions_events.php:3862
+#: ../../include/functions_events.php:3874
+#: ../../include/functions_events.php:3934
+#: ../../include/functions_events.php:3967
+#: ../../include/functions_events.php:4033
+#: ../../include/functions_events.php:4050
+#: ../../include/functions_events.php:4057
+#: ../../include/functions_events.php:4123
+#: ../../include/functions_events.php:4215
+#: ../../include/functions_events.php:4339
+#: ../../include/functions_events.php:4378
+#: ../../include/functions_events.php:4418
+#: ../../include/functions_events.php:4441
+#: ../../include/functions_events.php:4471
+#: ../../include/functions_events.php:4554
+#: ../../include/functions_events.php:4635
+#: ../../include/functions_events.php:4645
+#: ../../include/functions_events.php:4862
+#: ../../include/functions_events.php:4943
+#: ../../include/functions_events.php:5048
+#: ../../include/functions_events.php:5077
+#: ../../include/functions_events.php:5092
+#: ../../include/functions_events.php:5102
+#: ../../include/functions_events.php:5112
+#: ../../include/functions_events.php:5595
#: ../../include/functions_events.php:5609
-#: ../../include/functions_events.php:5612
-#: ../../include/functions_events.php:5620
-#: ../../include/functions_events.php:5629
-#: ../../include/functions_events.php:5641
-#: ../../include/functions_events.php:5694
-#: ../../include/functions_events.php:5721
-#: ../../include/functions_events.php:5746
-#: ../../include/functions_events.php:5790
-#: ../../operation/agentes/estado_agente.php:1222
+#: ../../include/functions_events.php:5614
+#: ../../include/functions_events.php:5617
+#: ../../include/functions_events.php:5625
+#: ../../include/functions_events.php:5634
+#: ../../include/functions_events.php:5646
+#: ../../include/functions_events.php:5699
+#: ../../include/functions_events.php:5726
+#: ../../include/functions_events.php:5751
+#: ../../include/functions_events.php:5795
+#: ../../operation/agentes/estado_agente.php:1231
#: ../../operation/agentes/interface_view.functions.php:742
#: ../../operation/agentes/interface_view.functions.php:743
#: ../../operation/agentes/interface_view.functions.php:744
#: ../../operation/agentes/interface_view.functions.php:745
#: ../../operation/agentes/interface_view.functions.php:746
-#: ../../operation/agentes/status_monitor.php:1945
+#: ../../operation/agentes/status_monitor.php:1947
#: ../../operation/agentes/estado_generalagente.php:234
#: ../../operation/agentes/estado_generalagente.php:251
#: ../../operation/agentes/estado_generalagente.php:254
-#: ../../operation/agentes/estado_generalagente.php:440
-#: ../../operation/agentes/estado_generalagente.php:454
-#: ../../operation/agentes/estado_generalagente.php:513
-#: ../../operation/inventory/inventory.php:153
-#: ../../operation/inventory/inventory.php:173
-#: ../../operation/inventory/inventory.php:200
+#: ../../operation/agentes/estado_generalagente.php:411
+#: ../../operation/agentes/estado_generalagente.php:425
+#: ../../operation/agentes/estado_generalagente.php:484
+#: ../../operation/inventory/inventory.php:155
+#: ../../operation/inventory/inventory.php:175
+#: ../../operation/inventory/inventory.php:202
msgid "N/A"
msgstr ""
-#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839
+#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:843
#: ../../operation/agentes/estado_generalagente.php:250
#: ../../operation/gis_maps/ajax.php:341
msgid "Agent Version"
@@ -2885,12 +2933,12 @@ msgid "Cluster agent"
msgstr ""
#: ../../views/cluster/view.php:364
-#: ../../operation/agentes/estado_generalagente.php:1012
+#: ../../operation/agentes/estado_generalagente.php:919
msgid "Events (Last 24h)"
msgstr ""
-#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453
-#: ../../operation/agentes/interface_traffic_graph_win.php:278
+#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:469
+#: ../../operation/agentes/interface_traffic_graph_win.php:294
msgid "Reload"
msgstr ""
@@ -2908,24 +2956,24 @@ msgstr ""
#: ../../views/dashboard/header.php:43
#: ../../extensions/disabled/matrix_events.php:35
-#: ../../extensions/agents_modules.php:380
-#: ../../extensions/agents_modules.php:387
-#: ../../extensions/agents_modules.php:390
-#: ../../operation/visual_console/view.php:231
-#: ../../operation/visual_console/legacy_view.php:201
+#: ../../extensions/agents_modules.php:388
+#: ../../extensions/agents_modules.php:395
+#: ../../extensions/agents_modules.php:398
+#: ../../operation/visual_console/view.php:233
+#: ../../operation/visual_console/legacy_view.php:200
#: ../../operation/gis_maps/render_view.php:137
#: ../../operation/reporting/reporting_viewer.php:185
#: ../../operation/reporting/graph_viewer.php:234
msgid "Full screen mode"
msgstr ""
-#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:603
-#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:500
-#: ../../operation/visual_console/legacy_view.php:249
+#: ../../views/dashboard/header.php:58 ../../extensions/agents_modules.php:611
+#: ../../operation/heatmap.php:218 ../../operation/visual_console/view.php:502
+#: ../../operation/visual_console/legacy_view.php:260
#: ../../operation/gis_maps/render_view.php:139
#: ../../operation/reporting/reporting_viewer.php:194
#: ../../operation/reporting/graph_viewer.php:243
-#: ../../operation/events/events.php:1410
+#: ../../operation/events/events.php:1464
msgid "Back to normal mode"
msgstr ""
@@ -2953,11 +3001,11 @@ msgstr ""
#: ../../enterprise/operation/services/services.list.php:590
#: ../../godmode/snmpconsole/snmp_alert.php:2227
#: ../../godmode/snmpconsole/snmp_alert.php:2242
-#: ../../godmode/massive/massive_edit_agents.php:1043
-#: ../../godmode/reporting/graph_builder.graph_editor.php:241
-#: ../../godmode/reporting/graph_builder.graph_editor.php:262
-#: ../../include/functions_config.php:1333
-#: ../../include/functions_config.php:3537
+#: ../../godmode/massive/massive_edit_agents.php:1060
+#: ../../godmode/reporting/graph_builder.graph_editor.php:374
+#: ../../godmode/reporting/graph_builder.graph_editor.php:395
+#: ../../include/functions_config.php:1349
+#: ../../include/functions_config.php:3561
#: ../../include/class/SatelliteAgent.class.php:1269
#: ../../operation/gis_maps/render_view.php:167
msgid "Ok"
@@ -2982,23 +3030,23 @@ msgstr ""
#: ../../views/dashboard/header.php:163
#: ../../enterprise/views/ncm/devices/list.php:172
#: ../../enterprise/meta/advanced/policymanager.queue.php:238
-#: ../../enterprise/godmode/policies/policy_queue.php:849
+#: ../../enterprise/godmode/policies/policy_queue.php:853
#: ../../enterprise/godmode/servers/HA_cluster.php:437
#: ../../enterprise/include/class/Omnishell.class.php:559
#: ../../enterprise/include/class/Omnishell.class.php:1712
#: ../../enterprise/include/functions_ipam.php:1400
-#: ../../extensions/agents_modules.php:615
+#: ../../extensions/agents_modules.php:623
#: ../../godmode/wizards/DiscoveryTaskList.class.php:196
-#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1285
-#: ../../include/functions_ui.php:1284 ../../include/functions_ui.php:7720
-#: ../../include/class/NetworkMap.class.php:2946
-#: ../../operation/heatmap.php:175 ../../operation/visual_console/view.php:513
+#: ../../include/ajax/heatmap.ajax.php:49 ../../include/ajax/module.php:1313
+#: ../../include/functions_ui.php:1321 ../../include/functions_ui.php:7815
+#: ../../include/class/NetworkMap.class.php:2952
+#: ../../operation/heatmap.php:175 ../../operation/visual_console/view.php:515
#: ../../operation/visual_console/legacy_public_view.php:141
-#: ../../operation/visual_console/legacy_view.php:263
+#: ../../operation/visual_console/legacy_view.php:274
#: ../../operation/visual_console/public_view.php:129
#: ../../operation/agentes/pandora_networkmap.editor.php:553
#: ../../operation/gis_maps/render_view.php:161
-#: ../../operation/events/events.php:1422 ../../general/login_page.php:97
+#: ../../operation/events/events.php:1476 ../../general/login_page.php:97
#: ../../general/login_page.php:408
msgid "Refresh"
msgstr ""
@@ -3010,9 +3058,10 @@ msgstr ""
#: ../../views/dashboard/header.php:298
#: ../../enterprise/extensions/vmware/vmware_view.php:1377
#: ../../enterprise/extensions/vmware/vmware_view.php:1414
+#: ../../godmode/users/configure_user.php:66
#: ../../godmode/users/user_management.php:45
#: ../../godmode/massive/massive_edit_users.php:280
-#: ../../mobile/include/functions_web.php:22
+#: ../../mobile/include/functions_web.php:22 ../../include/auth/mysql.php:814
#: ../../include/class/OrderInterpreter.class.php:219
#: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478
msgid "Dashboard"
@@ -3023,7 +3072,7 @@ msgid "Hello! These are the tips of the day."
msgstr ""
#: ../../views/dashboard/tipsWindow.php:44
-#: ../../godmode/users/user_management.php:378
+#: ../../godmode/users/user_management.php:384
msgid "Show usage tips at startup"
msgstr ""
@@ -3063,11 +3112,11 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:132
#: ../../extensions/files_repo.php:206
#: ../../godmode/modules/manage_nc_groups.php:176
-#: ../../godmode/modules/manage_network_components.php:562
+#: ../../godmode/modules/manage_network_components.php:565
#: ../../godmode/users/profile_list.php:142
#: ../../godmode/users/user_list.php:357 ../../godmode/users/user_list.php:411
-#: ../../godmode/users/configure_user.php:101
-#: ../../godmode/users/configure_user.php:121
+#: ../../godmode/users/configure_user.php:871
+#: ../../godmode/users/configure_user.php:891
#: ../../godmode/agentes/planned_downtime.list.php:290
#: ../../godmode/netflow/nf_item_list.php:120
#: ../../godmode/netflow/nf_item_list.php:148
@@ -3079,7 +3128,7 @@ msgstr ""
#: ../../godmode/massive/massive_delete_alerts.php:201
#: ../../godmode/alerts/alert_actions.php:208
#: ../../godmode/alerts/alert_commands.php:698
-#: ../../godmode/alerts/alert_templates.php:257
+#: ../../godmode/alerts/alert_templates.php:261
#: ../../godmode/alerts/alert_list.php:239
#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137
#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89
@@ -3104,7 +3153,7 @@ msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:432
#: ../../enterprise/godmode/policies/policy_alerts.php:267
#: ../../enterprise/godmode/policies/policy_alerts.php:315
-#: ../../enterprise/godmode/policies/policy_modules.php:1329
+#: ../../enterprise/godmode/policies/policy_modules.php:1374
#: ../../enterprise/godmode/policies/policy_external_alerts.php:159
#: ../../enterprise/godmode/policies/policy_external_alerts.php:186
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:174
@@ -3121,18 +3170,18 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_action.php:100
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:130
#: ../../extensions/files_repo.php:206
-#: ../../godmode/modules/manage_network_components.php:563
-#: ../../godmode/users/configure_user.php:102
+#: ../../godmode/modules/manage_network_components.php:566
+#: ../../godmode/users/configure_user.php:872
#: ../../godmode/massive/massive_delete_action_alerts.php:171
#: ../../godmode/massive/massive_delete_alerts.php:202
#: ../../godmode/alerts/alert_actions.php:209
#: ../../godmode/alerts/alert_commands.php:699
-#: ../../godmode/alerts/alert_templates.php:258
+#: ../../godmode/alerts/alert_templates.php:262
#: ../../godmode/alerts/alert_list.php:240
#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138
#: ../../godmode/setup/gis.php:59
#: ../../godmode/reporting/reporting_builder.php:632
-#: ../../operation/agentes/pandora_networkmap.php:563
+#: ../../operation/agentes/pandora_networkmap.php:564
#: ../../operation/messages/message_list.php:110
#: ../../operation/gis_maps/gis_map.php:100
#: ../../operation/incidents/list_integriaims_incidents.php:306
@@ -3161,15 +3210,15 @@ msgstr ""
#: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90
#: ../../operation/agentes/networkmap.dinamic.php:115
-#: ../../operation/agentes/pandora_networkmap.view.php:2364
+#: ../../operation/agentes/pandora_networkmap.view.php:2365
#: ../../operation/snmpconsole/snmp_statistics.php:54
#: ../../operation/snmpconsole/snmp_browser.php:68
-#: ../../operation/events/events.php:1460
+#: ../../operation/events/events.php:1514
msgid "Full screen"
msgstr ""
#: ../../views/dashboard/list.php:106
-#: ../../enterprise/godmode/policies/policy_modules.php:1796
+#: ../../enterprise/godmode/policies/policy_modules.php:1841
#: ../../enterprise/godmode/policies/policies.php:643
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229
#: ../../godmode/agentes/planned_downtime.list.php:746
@@ -3177,8 +3226,8 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.list.php:925
#: ../../godmode/alerts/alert_actions.php:355
#: ../../godmode/reporting/map_builder.php:420
-#: ../../include/functions_filemanager.php:985
-#: ../../operation/agentes/pandora_networkmap.php:806
+#: ../../include/functions_filemanager.php:1007
+#: ../../operation/agentes/pandora_networkmap.php:807
msgid "Copy"
msgstr ""
@@ -3204,8 +3253,8 @@ msgid "Please select widget"
msgstr ""
#: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76
-#: ../../include/class/SnmpConsole.class.php:1550
-#: ../../operation/events/events.php:3160
+#: ../../include/class/SnmpConsole.class.php:1552
+#: ../../operation/events/events.php:3219
msgid "Until next"
msgstr ""
@@ -3226,7 +3275,7 @@ msgstr ""
msgid "Configure widget"
msgstr ""
-#: ../../views/dashboard/cell.php:68
+#: ../../views/dashboard/cell.php:69
msgid "Delete widget"
msgstr ""
@@ -3243,13 +3292,13 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211
#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252
#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212
-#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381
+#: ../../include/functions.php:3969 ../../include/functions_ui.php:2424
msgid "Previous"
msgstr ""
#: ../../views/dashboard/slides.php:218
#: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572
-#: ../../operation/events/events.php:1518
+#: ../../operation/events/events.php:1572
msgid "Stop"
msgstr ""
@@ -3277,9 +3326,9 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:1227
#: ../../godmode/alerts/configure_alert_template.php:1239
#: ../../godmode/wizards/HostDevices.class.php:779
-#: ../../include/functions_ui.php:2462
-#: ../../include/class/CustomNetScan.class.php:556
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1238
+#: ../../include/functions_ui.php:2505
+#: ../../include/class/CustomNetScan.class.php:555
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1239
msgid "Next"
msgstr ""
@@ -3315,7 +3364,7 @@ msgstr ""
#: ../../enterprise/views/ncm/models/edit.php:37
#: ../../enterprise/views/ncm/vendors/list.php:32
#: ../../enterprise/views/ncm/vendors/edit.php:35
-#: ../../include/functions.php:1294 ../../include/functions_events.php:3178
+#: ../../include/functions.php:1294 ../../include/functions_events.php:3183
msgid "Network configuration manager"
msgstr ""
@@ -3388,7 +3437,7 @@ msgid "Device model"
msgstr ""
#: ../../enterprise/views/ncm/agent/manage.php:102
-#: ../../godmode/agentes/module_manager_editor_network.php:502
+#: ../../godmode/agentes/module_manager_editor_network.php:507
msgid "Connection method"
msgstr ""
@@ -3410,11 +3459,11 @@ msgstr ""
#: ../../enterprise/include/class/Aws.S3.php:580
#: ../../enterprise/include/class/Aws.cloud.php:544
#: ../../extensions/quick_shell.php:183
-#: ../../godmode/modules/manage_network_components_form_network.php:53
-#: ../../godmode/agentes/module_manager_editor_network.php:83
+#: ../../godmode/modules/manage_network_components_form_network.php:83
+#: ../../godmode/agentes/module_manager_editor_network.php:84
#: ../../godmode/massive/massive_edit_modules.php:1160
#: ../../godmode/servers/modificar_server.php:117
-#: ../../include/functions_config.php:1651
+#: ../../include/functions_config.php:1663
#: ../../include/class/AgentWizard.class.php:648
#: ../../include/functions_snmp_browser.php:724
msgid "Port"
@@ -3465,7 +3514,7 @@ msgstr ""
#: ../../extensions/insert_data.php:256 ../../godmode/setup/gis_step_2.php:542
#: ../../godmode/setup/snmp_wizard.php:100
#: ../../godmode/reporting/visual_console_builder.data.php:310
-#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377
+#: ../../include/ajax/module.php:2240 ../../operation/agentes/graphs.php:377
msgid "Save"
msgstr ""
@@ -3492,10 +3541,10 @@ msgstr ""
#: ../../enterprise/views/ncm/agent/details.php:90
#: ../../enterprise/include/class/CommandCenter.class.php:470
#: ../../extensions/api_checker.php:363 ../../extensions/api_checker.php:371
-#: ../../include/functions_reporting_html.php:4310
-#: ../../include/functions_reporting_html.php:4457
-#: ../../include/functions_reporting_html.php:4800
-#: ../../include/functions_reporting_html.php:4811
+#: ../../include/functions_reporting_html.php:4338
+#: ../../include/functions_reporting_html.php:4485
+#: ../../include/functions_reporting_html.php:4828
+#: ../../include/functions_reporting_html.php:4839
#: ../../include/functions_db.php:1959
msgid "Result"
msgstr ""
@@ -3558,9 +3607,9 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:1632
#: ../../enterprise/meta/include/functions_wizard_meta.php:1757
#: ../../enterprise/meta/include/functions_wizard_meta.php:1832
-#: ../../godmode/setup/setup_visuals.php:1549
-#: ../../include/class/TipsWindow.class.php:777
-#: ../../include/class/TipsWindow.class.php:944
+#: ../../godmode/setup/setup_visuals.php:1564
+#: ../../include/class/TipsWindow.class.php:797
+#: ../../include/class/TipsWindow.class.php:964
msgid "Preview"
msgstr ""
@@ -3590,7 +3639,7 @@ msgstr ""
#: ../../enterprise/operation/services/services.list.php:609
#: ../../enterprise/operation/services/services.table_services.php:144
#: ../../extensions/module_groups.php:52
-#: ../../godmode/groups/group_list.php:1104
+#: ../../godmode/groups/group_list.php:1116
#: ../../godmode/massive/massive_copy_modules.php:118
#: ../../godmode/massive/massive_copy_modules.php:278
#: ../../godmode/massive/massive_delete_modules.php:421
@@ -3598,42 +3647,42 @@ msgstr ""
#: ../../godmode/massive/massive_edit_modules.php:388
#: ../../godmode/massive/massive_edit_modules.php:474
#: ../../godmode/alerts/alert_list.builder.php:326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3833
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3842
#: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72
-#: ../../include/graphs/functions_flot.php:310
-#: ../../include/functions_reporting_html.php:2563
-#: ../../include/functions_reporting_html.php:2576
-#: ../../include/functions_reporting_html.php:3563
-#: ../../include/functions_reporting_html.php:3966
-#: ../../include/functions.php:1281 ../../include/functions.php:4181
-#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946
+#: ../../include/graphs/functions_flot.php:311
+#: ../../include/functions_reporting_html.php:2584
+#: ../../include/functions_reporting_html.php:2597
+#: ../../include/functions_reporting_html.php:3591
+#: ../../include/functions_reporting_html.php:3994
+#: ../../include/functions.php:1281 ../../include/functions.php:4207
+#: ../../include/ajax/module.php:1080 ../../include/ajax/module.php:1974
#: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607
#: ../../include/functions_visual_map.php:2457
#: ../../include/functions_visual_map.php:2485
#: ../../include/functions_visual_map.php:2503
#: ../../include/functions_visual_map.php:2521
#: ../../include/functions_alerts.php:702
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:439
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:585
#: ../../include/functions_reports.php:569 ../../include/functions_maps.php:54
#: ../../include/functions_massive_operations.php:149
#: ../../include/functions_netflow.php:1884
-#: ../../include/functions_reporting.php:6772
-#: ../../include/functions_filemanager.php:708
+#: ../../include/functions_reporting.php:6781
+#: ../../include/functions_filemanager.php:723
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:256
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:401
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:435
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:719
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:404
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:439
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:712
#: ../../include/lib/ClusterViewer/ClusterManager.php:582
-#: ../../include/functions_events.php:3126 ../../operation/tree.php:211
-#: ../../operation/tree.php:301 ../../operation/tree.php:523
+#: ../../include/functions_events.php:3131 ../../operation/tree.php:211
+#: ../../operation/tree.php:302 ../../operation/tree.php:525
#: ../../operation/agentes/estado_agente.php:276
-#: ../../operation/agentes/status_monitor.php:567
-#: ../../operation/agentes/group_view.php:242
-#: ../../operation/agentes/group_view.php:247
-#: ../../operation/agentes/estado_monitores.php:521
-#: ../../operation/agentes/pandora_networkmap.view.php:1804
+#: ../../operation/agentes/status_monitor.php:566
+#: ../../operation/agentes/group_view.php:245
+#: ../../operation/agentes/group_view.php:250
+#: ../../operation/agentes/estado_monitores.php:518
+#: ../../operation/agentes/pandora_networkmap.view.php:1805
#: ../../operation/agentes/tactical.php:200
-#: ../../operation/events/events.php:815 ../../general/logon_ok.php:151
+#: ../../operation/events/events.php:820 ../../general/logon_ok.php:160
msgid "Unknown"
msgstr ""
@@ -3717,32 +3766,33 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1208
#: ../../enterprise/tools/ipam/ipam_ajax.php:535
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807
-#: ../../godmode/groups/group_list.php:887
-#: ../../godmode/users/user_list.php:583
+#: ../../godmode/groups/group_list.php:888
+#: ../../godmode/users/user_list.php:584
#: ../../godmode/agentes/inventory_manager.php:237
-#: ../../godmode/agentes/modificar_agente.php:700
+#: ../../godmode/agentes/modificar_agente.php:710
#: ../../godmode/agentes/planned_downtime.editor.php:1369
-#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279
+#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:277
#: ../../godmode/alerts/alert_list.list.php:136
#: ../../godmode/alerts/alert_list.list.php:571
#: ../../godmode/alerts/alert_commands.php:753
#: ../../godmode/alerts/alert_view.php:307
#: ../../godmode/alerts/alert_list.builder.php:112
+#: ../../godmode/setup/os.list.php:69
#: ../../godmode/reporting/reporting_builder.item_editor.php:2092
#: ../../godmode/events/event_responses.list.php:69
-#: ../../godmode/tag/tag.php:309 ../../godmode/category/category.php:161
-#: ../../include/functions_reporting_html.php:3450
-#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1008
-#: ../../include/functions_treeview.php:400
+#: ../../godmode/tag/tag.php:310 ../../godmode/category/category.php:161
+#: ../../include/functions_reporting_html.php:3478
+#: ../../include/functions_cron.php:505 ../../include/ajax/module.php:1031
+#: ../../include/functions_treeview.php:404
#: ../../include/class/SatelliteAgent.class.php:148
#: ../../include/class/AgentsAlerts.class.php:254
#: ../../include/class/AgentsAlerts.class.php:332
#: ../../include/class/SnmpConsole.class.php:281
#: ../../include/class/SatelliteCollection.class.php:135
-#: ../../include/functions_reporting.php:3233
-#: ../../include/functions_filemanager.php:647
-#: ../../operation/agentes/pandora_networkmap.php:721
-#: ../../operation/agentes/status_monitor.php:1605
+#: ../../include/functions_reporting.php:3242
+#: ../../include/functions_filemanager.php:662
+#: ../../operation/agentes/pandora_networkmap.php:722
+#: ../../operation/agentes/status_monitor.php:1607
msgid "Actions"
msgstr ""
@@ -3796,16 +3846,17 @@ msgstr ""
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1390
#: ../../enterprise/include/class/AgentRepository.class.php:692
#: ../../godmode/modules/manage_inventory_modules.php:54
-#: ../../godmode/modules/manage_network_components.php:298
+#: ../../godmode/modules/manage_network_components.php:299
#: ../../godmode/modules/manage_inventory_modules_form.php:45
#: ../../godmode/agentes/planned_downtime.list.php:738
-#: ../../godmode/menu.php:255 ../../godmode/massive/massive_operations.php:332
+#: ../../godmode/menu.php:254 ../../godmode/massive/massive_operations.php:332
#: ../../godmode/massive/massive_operations.php:354
#: ../../godmode/events/events.php:138 ../../include/functions_reports.php:917
#: ../../include/functions_reports.php:921
#: ../../include/class/ConfigPEN.class.php:329
#: ../../include/class/ModuleTemplates.class.php:195
#: ../../include/class/ModuleTemplates.class.php:213
+#: ../../include/class/AgentDeployWizard.class.php:727
msgid "Configuration"
msgstr ""
@@ -3864,11 +3915,11 @@ msgid "Customize script execution"
msgstr ""
#: ../../enterprise/views/ncm/agent/details.php:690
-#: ../../include/ajax/events.php:2199
+#: ../../include/ajax/events.php:2200
#: ../../include/class/ExternalTools.class.php:646
#: ../../include/functions_snmp_browser.php:974
-#: ../../include/functions_snmp_browser.php:1134
-#: ../../include/functions_events.php:3710
+#: ../../include/functions_snmp_browser.php:1142
+#: ../../include/functions_events.php:3715
msgid "Execute"
msgstr ""
@@ -3883,13 +3934,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/visual_console_template.php:123
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137
#: ../../enterprise/include/functions_reporting.php:146
-#: ../../enterprise/include/functions_reporting.php:8001
-#: ../../enterprise/include/functions_reporting.php:8029
-#: ../../enterprise/include/functions_reporting.php:8100
-#: ../../godmode/modules/manage_network_components.php:302
-#: ../../godmode/menu.php:172 ../../godmode/menu.php:275
+#: ../../enterprise/include/functions_reporting.php:8010
+#: ../../enterprise/include/functions_reporting.php:8038
+#: ../../enterprise/include/functions_reporting.php:8109
+#: ../../godmode/modules/manage_network_components.php:303
+#: ../../godmode/menu.php:172 ../../godmode/menu.php:273
#: ../../godmode/reporting/reporting_builder.item_editor.php:2027
-#: ../../include/functions_menu.php:585
+#: ../../include/functions_menu.php:587
#: ../../include/class/ConfigPEN.class.php:334
#: ../../include/class/ModuleTemplates.class.php:196
#: ../../include/class/ModuleTemplates.class.php:214
@@ -4030,7 +4081,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_excel.php:139
#: ../../enterprise/tools/ipam/ipam_ajax.php:362
#: ../../enterprise/tools/ipam/ipam_calculator.php:69
-#: ../../godmode/setup/setup_general.php:878
+#: ../../godmode/setup/setup_general.php:904
#: ../../operation/agentes/ver_agente.php:1199
msgid "Address"
msgstr ""
@@ -4054,14 +4105,14 @@ msgstr ""
#: ../../enterprise/operation/services/services.service.php:124
#: ../../enterprise/operation/services/services.list.php:548
#: ../../enterprise/tools/ipam/ipam_list.php:738
-#: ../../extensions/agents_modules.php:317
+#: ../../extensions/agents_modules.php:325
#: ../../operation/agentes/group_view.php:80
#: ../../operation/agentes/tactical.php:63
msgid "Last update"
msgstr ""
#: ../../enterprise/views/ncm/devices/list.php:123
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:154
#: ../../enterprise/godmode/policies/policy_alerts.php:368
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:243
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488
@@ -4069,7 +4120,7 @@ msgstr ""
#: ../../godmode/massive/massive_copy_modules.php:185
#: ../../godmode/alerts/alert_list.list.php:572
#: ../../godmode/wizards/DiscoveryTaskList.class.php:617
-#: ../../godmode/servers/plugin.php:996
+#: ../../godmode/servers/plugin.php:988
#: ../../operation/agentes/alerts_status.php:234
#: ../../operation/agentes/alerts_status.php:235
msgid "Operations"
@@ -4118,7 +4169,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:1587
#: ../../enterprise/meta/include/functions_wizard_meta.php:1707
#: ../../enterprise/meta/include/functions_wizard_meta.php:1727
-#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016
+#: ../../enterprise/meta/index.php:948 ../../enterprise/meta/index.php:1017
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:328
#: ../../enterprise/godmode/agentes/manage_config_remote.php:344
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:120
@@ -4144,52 +4195,52 @@ msgstr ""
#: ../../update_manager_client/views/offline.php:80
#: ../../extensions/dbmanager.php:124
#: ../../godmode/modules/manage_network_components_form_wizard.php:384
-#: ../../godmode/groups/group_list.php:1099
-#: ../../godmode/users/configure_user.php:1013
-#: ../../godmode/users/configure_user.php:1974
+#: ../../godmode/groups/group_list.php:1111
+#: ../../godmode/users/configure_user.php:1061
+#: ../../godmode/users/configure_user.php:2026
#: ../../godmode/massive/massive_copy_modules.php:116
#: ../../godmode/massive/massive_copy_modules.php:276
#: ../../godmode/massive/massive_delete_modules.php:419
#: ../../godmode/massive/massive_delete_modules.php:440
-#: ../../godmode/massive/massive_edit_agents.php:1061
+#: ../../godmode/massive/massive_edit_agents.php:1078
#: ../../godmode/massive/massive_edit_modules.php:386
#: ../../godmode/massive/massive_edit_modules.php:472
#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3831
+#: ../../godmode/setup/setup_netflow.php:80
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3840
#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70
-#: ../../include/functions_reporting_html.php:2575
+#: ../../include/functions_reporting_html.php:2596
#: ../../include/functions.php:1091 ../../include/functions.php:1329
#: ../../include/functions.php:1332 ../../include/functions.php:1371
-#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341
-#: ../../include/functions_graph.php:3343
-#: ../../include/functions_graph.php:4846 ../../include/functions_ui.php:314
-#: ../../include/functions_ui.php:2869
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425
+#: ../../include/ajax/module.php:1970 ../../include/functions_graph.php:3351
+#: ../../include/functions_graph.php:3353
+#: ../../include/functions_graph.php:4856 ../../include/functions_ui.php:314
+#: ../../include/functions_ui.php:2912
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:571
#: ../../include/functions_massive_operations.php:147
#: ../../include/class/SatelliteAgent.class.php:1337
#: ../../include/class/SatelliteAgent.class.php:1362
-#: ../../include/class/Diagnostics.class.php:1837
+#: ../../include/class/Diagnostics.class.php:1841
#: ../../include/class/AgentWizard.class.php:1401
#: ../../include/class/AgentWizard.class.php:4147
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:316
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:255
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:562
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:399
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:433
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:714
-#: ../../include/functions_events.php:3222 ../../index.php:1243
-#: ../../operation/tree.php:209 ../../operation/tree.php:299
-#: ../../operation/tree.php:518 ../../operation/users/user_edit.php:305
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:402
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:437
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:707
+#: ../../include/functions_events.php:3227 ../../index.php:1244
+#: ../../operation/tree.php:209 ../../operation/tree.php:300
+#: ../../operation/tree.php:520 ../../operation/users/user_edit.php:305
#: ../../operation/agentes/estado_agente.php:274
-#: ../../operation/agentes/status_monitor.php:565
-#: ../../operation/agentes/group_view.php:245
-#: ../../operation/agentes/group_view.php:250
-#: ../../operation/agentes/estado_monitores.php:520
+#: ../../operation/agentes/status_monitor.php:564
+#: ../../operation/agentes/group_view.php:248
+#: ../../operation/agentes/group_view.php:253
+#: ../../operation/agentes/estado_monitores.php:517
#: ../../operation/agentes/tactical.php:198
-#: ../../operation/netflow/nf_live_view.php:339
-#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149
+#: ../../operation/netflow/nf_live_view.php:348
+#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:158
msgid "Warning"
msgstr ""
@@ -4208,15 +4259,15 @@ msgstr ""
#: ../../enterprise/views/ipam/sites/list.php:48
#: ../../enterprise/views/ipam/sites/edit.php:54
#: ../../godmode/modules/manage_nc_groups_form.php:73
-#: ../../godmode/groups/configure_group.php:206
-#: ../../godmode/groups/group_list.php:882
-#: ../../godmode/agentes/agent_manager.php:645
-#: ../../godmode/massive/massive_edit_agents.php:655
+#: ../../godmode/groups/configure_group.php:225
+#: ../../godmode/groups/group_list.php:883
+#: ../../godmode/agentes/agent_manager.php:649
+#: ../../godmode/massive/massive_edit_agents.php:672
#: ../../godmode/reporting/visual_console_builder.elements.php:124
-#: ../../include/functions_visual_map_editor.php:954
-#: ../../include/rest-api/models/VisualConsole/Item.php:2176
+#: ../../include/functions_visual_map_editor.php:1002
+#: ../../include/rest-api/models/VisualConsole/Item.php:2179
#: ../../operation/agentes/ver_agente.php:1236
-#: ../../operation/agentes/estado_generalagente.php:511
+#: ../../operation/agentes/estado_generalagente.php:482
msgid "Parent"
msgstr ""
@@ -4242,9 +4293,9 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:727
#: ../../enterprise/godmode/modules/configure_local_component.php:733
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:501
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:632
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:728
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:499
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:630
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:726
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:152
#: ../../enterprise/godmode/policies/policy_external_alerts.php:637
#: ../../enterprise/godmode/policies/policy_agents.php:391
@@ -4265,12 +4316,12 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:250
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:265
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:117
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:197
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:121
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:142
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:144
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:164
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:471
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:862
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977
@@ -4363,8 +4414,8 @@ msgstr ""
#: ../../enterprise/include/class/Omnishell.class.php:1062
#: ../../enterprise/include/class/Omnishell.class.php:1063
#: ../../enterprise/include/class/SAP.app.php:604
-#: ../../enterprise/include/class/SAP.app.php:818
#: ../../enterprise/include/class/SAP.app.php:819
+#: ../../enterprise/include/class/SAP.app.php:820
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:922
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:949
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059
@@ -4375,7 +4426,7 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2590
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3594
#: ../../enterprise/operation/agentes/ver_agente.php:56
-#: ../../enterprise/operation/log/log_viewer.php:881
+#: ../../enterprise/operation/log/log_viewer.php:879
#: ../../enterprise/tools/ipam/ipam_network.php:622
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:565
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:748
@@ -4388,40 +4439,40 @@ msgstr ""
#: ../../godmode/modules/manage_nc_groups_form.php:80
#: ../../godmode/modules/manage_network_components_form_plugin.php:41
#: ../../godmode/modules/manage_network_components_form_common.php:354
-#: ../../godmode/modules/manage_network_components_form_network.php:248
-#: ../../godmode/modules/manage_network_components_form.php:669
-#: ../../godmode/modules/manage_network_components_form.php:675
-#: ../../godmode/modules/manage_network_components_form.php:684
-#: ../../godmode/modules/manage_network_components_form.php:690
-#: ../../godmode/groups/configure_group.php:170
-#: ../../godmode/groups/configure_group.php:192
-#: ../../godmode/users/configure_user.php:1270
-#: ../../godmode/users/configure_user.php:1286
-#: ../../godmode/users/configure_user.php:1437
-#: ../../godmode/users/configure_user.php:1449
-#: ../../godmode/users/configure_user.php:1573
-#: ../../godmode/users/configure_user.php:1588
-#: ../../godmode/users/configure_user.php:1750
-#: ../../godmode/users/configure_user.php:1758
-#: ../../godmode/users/configure_user.php:1767
-#: ../../godmode/users/configure_user.php:1774
-#: ../../godmode/users/user_management.php:577
-#: ../../godmode/users/user_management.php:600
-#: ../../godmode/agentes/status_monitor_custom_fields.php:230
-#: ../../godmode/agentes/status_monitor_custom_fields.php:278
+#: ../../godmode/modules/manage_network_components_form_network.php:266
+#: ../../godmode/modules/manage_network_components_form.php:672
+#: ../../godmode/modules/manage_network_components_form.php:678
+#: ../../godmode/modules/manage_network_components_form.php:687
+#: ../../godmode/modules/manage_network_components_form.php:693
+#: ../../godmode/groups/configure_group.php:189
+#: ../../godmode/groups/configure_group.php:211
+#: ../../godmode/users/configure_user.php:1334
+#: ../../godmode/users/configure_user.php:1350
+#: ../../godmode/users/configure_user.php:1486
+#: ../../godmode/users/configure_user.php:1502
+#: ../../godmode/users/configure_user.php:1627
+#: ../../godmode/users/configure_user.php:1642
+#: ../../godmode/users/configure_user.php:1802
+#: ../../godmode/users/configure_user.php:1810
+#: ../../godmode/users/configure_user.php:1819
+#: ../../godmode/users/configure_user.php:1826
+#: ../../godmode/users/user_management.php:583
+#: ../../godmode/users/user_management.php:610
+#: ../../godmode/agentes/status_monitor_custom_fields.php:250
+#: ../../godmode/agentes/status_monitor_custom_fields.php:298
#: ../../godmode/agentes/module_manager_editor_plugin.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:181
-#: ../../godmode/agentes/module_manager_editor_network.php:514
+#: ../../godmode/agentes/module_manager_editor_network.php:182
+#: ../../godmode/agentes/module_manager_editor_network.php:519
#: ../../godmode/agentes/agent_manager.php:558
-#: ../../godmode/agentes/agent_manager.php:750
-#: ../../godmode/agentes/agent_manager.php:1008
-#: ../../godmode/agentes/module_manager_editor_common.php:766
-#: ../../godmode/agentes/module_manager_editor_common.php:1125
-#: ../../godmode/agentes/module_manager_editor_common.php:1360
-#: ../../godmode/agentes/module_manager_editor_common.php:1654
-#: ../../godmode/agentes/module_manager_editor_common.php:1661
-#: ../../godmode/agentes/module_manager_editor_common.php:1672
-#: ../../godmode/agentes/module_manager_editor_common.php:1680
+#: ../../godmode/agentes/agent_manager.php:754
+#: ../../godmode/agentes/agent_manager.php:1014
+#: ../../godmode/agentes/module_manager_editor_common.php:776
+#: ../../godmode/agentes/module_manager_editor_common.php:1135
+#: ../../godmode/agentes/module_manager_editor_common.php:1370
+#: ../../godmode/agentes/module_manager_editor_common.php:1664
+#: ../../godmode/agentes/module_manager_editor_common.php:1671
+#: ../../godmode/agentes/module_manager_editor_common.php:1682
+#: ../../godmode/agentes/module_manager_editor_common.php:1690
#: ../../godmode/snmpconsole/snmp_alert.php:40
#: ../../godmode/snmpconsole/snmp_alert.php:1781
#: ../../godmode/massive/massive_copy_modules.php:374
@@ -4438,13 +4489,13 @@ msgstr ""
#: ../../godmode/massive/massive_delete_modules.php:835
#: ../../godmode/massive/massive_edit_users.php:338
#: ../../godmode/massive/massive_edit_users.php:399
-#: ../../godmode/massive/massive_edit_users.php:609
-#: ../../godmode/massive/massive_edit_users.php:617
-#: ../../godmode/massive/massive_edit_users.php:628
-#: ../../godmode/massive/massive_edit_users.php:636
+#: ../../godmode/massive/massive_edit_users.php:610
+#: ../../godmode/massive/massive_edit_users.php:618
+#: ../../godmode/massive/massive_edit_users.php:629
+#: ../../godmode/massive/massive_edit_users.php:637
#: ../../godmode/massive/massive_add_alerts.php:304
#: ../../godmode/massive/massive_edit_plugins.php:338
-#: ../../godmode/massive/massive_edit_agents.php:754
+#: ../../godmode/massive/massive_edit_agents.php:771
#: ../../godmode/massive/massive_delete_alerts.php:366
#: ../../godmode/massive/massive_add_action_alerts.php:342
#: ../../godmode/massive/massive_edit_modules.php:458
@@ -4471,23 +4522,23 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:730
#: ../../godmode/alerts/configure_alert_template.php:824
#: ../../godmode/setup/os.builder.php:51
-#: ../../godmode/setup/setup_visuals.php:611
-#: ../../godmode/setup/setup_visuals.php:651
-#: ../../godmode/setup/setup_visuals.php:1084
-#: ../../godmode/setup/setup_general.php:1051
-#: ../../godmode/setup/setup_general.php:1068
+#: ../../godmode/setup/setup_visuals.php:615
+#: ../../godmode/setup/setup_visuals.php:655
+#: ../../godmode/setup/setup_visuals.php:1088
#: ../../godmode/setup/setup_general.php:1077
#: ../../godmode/setup/setup_general.php:1094
+#: ../../godmode/setup/setup_general.php:1103
+#: ../../godmode/setup/setup_general.php:1120
#: ../../godmode/reporting/create_container.php:572
-#: ../../godmode/reporting/graph_builder.graph_editor.php:373
-#: ../../godmode/reporting/reporting_builder.item_editor.php:209
-#: ../../godmode/reporting/reporting_builder.item_editor.php:991
+#: ../../godmode/reporting/graph_builder.graph_editor.php:296
+#: ../../godmode/reporting/reporting_builder.item_editor.php:210
+#: ../../godmode/reporting/reporting_builder.item_editor.php:993
#: ../../godmode/reporting/reporting_builder.item_editor.php:2175
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2248
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2269
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2301
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3232
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3393
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2257
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2278
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2310
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3241
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3402
#: ../../godmode/reporting/visual_console_builder.elements.php:525
#: ../../godmode/reporting/visual_console_builder.elements.php:676
#: ../../godmode/reporting/visual_console_builder.elements.php:686
@@ -4501,25 +4552,25 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:783
#: ../../godmode/reporting/visual_console_builder.wizard.php:793
#: ../../godmode/reporting/visual_console_builder.wizard.php:825
-#: ../../godmode/events/event_edit_filter.php:977
+#: ../../godmode/events/event_edit_filter.php:979
#: ../../godmode/events/custom_events.php:210
#: ../../godmode/events/custom_events.php:258
-#: ../../godmode/wizards/HostDevices.class.php:1119
-#: ../../mobile/operation/events.php:930
-#: ../../include/functions_visual_map_editor.php:404
-#: ../../include/functions_visual_map_editor.php:406
-#: ../../include/functions_visual_map_editor.php:622
-#: ../../include/functions_visual_map_editor.php:955
-#: ../../include/functions_visual_map_editor.php:1008
-#: ../../include/functions_visual_map_editor.php:1070
+#: ../../godmode/wizards/HostDevices.class.php:1115
+#: ../../mobile/operation/events.php:974
+#: ../../include/functions_visual_map_editor.php:398
+#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_visual_map_editor.php:616
+#: ../../include/functions_visual_map_editor.php:1003
+#: ../../include/functions_visual_map_editor.php:1056
+#: ../../include/functions_visual_map_editor.php:1122
#: ../../include/functions.php:1129 ../../include/functions_cron.php:680
#: ../../include/functions_networkmap.php:1524
#: ../../include/ajax/audit_log.php:156
#: ../../include/ajax/planned_downtime.ajax.php:85
-#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614
+#: ../../include/ajax/module.php:2184 ../../include/ajax/module.php:2643
#: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838
#: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987
-#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589
+#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590
#: ../../include/functions_integriaims.php:135
#: ../../include/functions_profile.php:349
#: ../../include/functions_profile.php:367
@@ -4529,24 +4580,24 @@ msgstr ""
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634
-#: ../../include/rest-api/models/VisualConsole/Item.php:2088
-#: ../../include/rest-api/models/VisualConsole/Item.php:2207
-#: ../../include/rest-api/models/VisualConsole/Item.php:2325
-#: ../../include/rest-api/models/VisualConsole/Item.php:2447
+#: ../../include/rest-api/models/VisualConsole/Item.php:2091
+#: ../../include/rest-api/models/VisualConsole/Item.php:2210
+#: ../../include/rest-api/models/VisualConsole/Item.php:2328
+#: ../../include/rest-api/models/VisualConsole/Item.php:2450
#: ../../include/functions_html.php:397 ../../include/functions_html.php:848
-#: ../../include/functions_html.php:1271 ../../include/functions_html.php:1323
-#: ../../include/functions_html.php:1370 ../../include/functions_html.php:1371
-#: ../../include/functions_html.php:1422 ../../include/functions_html.php:1472
-#: ../../include/functions_html.php:6508
-#: ../../include/class/NetworkMap.class.php:2934
-#: ../../include/class/NetworkMap.class.php:3203
-#: ../../include/class/NetworkMap.class.php:3226
-#: ../../include/class/NetworkMap.class.php:3299
-#: ../../include/class/NetworkMap.class.php:3309
-#: ../../include/class/NetworkMap.class.php:3420
-#: ../../include/class/NetworkMap.class.php:3441
+#: ../../include/functions_html.php:1276 ../../include/functions_html.php:1328
+#: ../../include/functions_html.php:1375 ../../include/functions_html.php:1376
+#: ../../include/functions_html.php:1427 ../../include/functions_html.php:1477
+#: ../../include/functions_html.php:6536
+#: ../../include/class/NetworkMap.class.php:2940
+#: ../../include/class/NetworkMap.class.php:3209
+#: ../../include/class/NetworkMap.class.php:3232
+#: ../../include/class/NetworkMap.class.php:3305
+#: ../../include/class/NetworkMap.class.php:3315
+#: ../../include/class/NetworkMap.class.php:3426
+#: ../../include/class/NetworkMap.class.php:3447
#: ../../include/class/SnmpConsole.class.php:314
-#: ../../include/class/SnmpConsole.class.php:1375
+#: ../../include/class/SnmpConsole.class.php:1377
#: ../../include/class/AgentWizard.class.php:729
#: ../../include/class/AgentWizard.class.php:785
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:369
@@ -4558,6 +4609,8 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/network_map.php:365
#: ../../include/lib/Dashboard/Widgets/events_list.php:312
#: ../../include/lib/Dashboard/Widgets/events_list.php:470
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:401
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:413
#: ../../include/lib/Dashboard/Widgets/module_icon.php:388
#: ../../include/lib/Dashboard/Widgets/module_value.php:363
#: ../../include/lib/Dashboard/Widgets/module_table_value.php:336
@@ -4573,29 +4626,28 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/single_graph.php:352
#: ../../include/lib/Dashboard/Widgets/reports.php:552
#: ../../include/lib/Dashboard/Widgets/top_n.php:241
-#: ../../include/functions_events.php:3501
-#: ../../operation/users/user_edit.php:520
-#: ../../operation/users/user_edit.php:532
-#: ../../operation/users/user_edit.php:581
-#: ../../operation/users/user_edit.php:616
-#: ../../operation/users/user_edit.php:631
-#: ../../operation/users/user_edit.php:1081
-#: ../../operation/users/user_edit.php:1088
-#: ../../operation/users/user_edit.php:1097
-#: ../../operation/users/user_edit.php:1104
+#: ../../include/functions_events.php:3506
+#: ../../operation/users/user_edit.php:525
+#: ../../operation/users/user_edit.php:578
+#: ../../operation/users/user_edit.php:613
+#: ../../operation/users/user_edit.php:628
+#: ../../operation/users/user_edit.php:1078
+#: ../../operation/users/user_edit.php:1085
+#: ../../operation/users/user_edit.php:1094
+#: ../../operation/users/user_edit.php:1101
#: ../../operation/agentes/pandora_networkmap.editor.php:488
#: ../../operation/agentes/pandora_networkmap.view.php:227
#: ../../operation/agentes/ver_agente.php:1182
#: ../../operation/agentes/ver_agente.php:1238
#: ../../operation/agentes/ver_agente.php:1253
-#: ../../operation/snmpconsole/snmp_browser.php:383
-#: ../../operation/snmpconsole/snmp_browser.php:398
-#: ../../operation/snmpconsole/snmp_browser.php:408
-#: ../../operation/snmpconsole/snmp_browser.php:527
+#: ../../operation/snmpconsole/snmp_browser.php:388
+#: ../../operation/snmpconsole/snmp_browser.php:403
+#: ../../operation/snmpconsole/snmp_browser.php:413
+#: ../../operation/snmpconsole/snmp_browser.php:532
#: ../../operation/gis_maps/render_view.php:164
#: ../../operation/incidents/list_integriaims_incidents.php:601
#: ../../operation/incidents/list_integriaims_incidents.php:605
-#: ../../operation/events/events.php:2647
+#: ../../operation/events/events.php:2701
msgid "None"
msgstr ""
@@ -4603,12 +4655,21 @@ msgstr ""
msgid "Create visualmap"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:34
+#: ../../enterprise/meta/advanced/servers.build_table.php:33
+#: ../../godmode/servers/modificar_server.php:63
+#: ../../godmode/servers/modificar_server.php:223
+#: ../../godmode/servers/modificar_server.php:242
+#: ../../godmode/servers/modificar_server.php:284
+#, php-format
+msgid "%s servers"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:50
#: ../../godmode/servers/servers.build_table.php:52
msgid "There are no servers configured into the database"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:65
+#: ../../enterprise/meta/advanced/servers.build_table.php:81
#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647
@@ -4619,7 +4680,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:406
#: ../../enterprise/meta/include/functions_wizard_meta.php:1821
#: ../../enterprise/meta/agentsearch.php:138
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135
#: ../../enterprise/godmode/policies/policy_modules.php:459
#: ../../enterprise/godmode/policies/policy_modules.php:472
#: ../../enterprise/godmode/policies/policies.php:581
@@ -4635,10 +4696,10 @@ msgstr ""
#: ../../enterprise/operation/services/massive/services.create.php:986
#: ../../enterprise/operation/services/massive/service.create.elements.php:380
#: ../../enterprise/operation/services/services.service_map.php:153
-#: ../../extensions/agents_modules.php:841
+#: ../../extensions/agents_modules.php:865
#: ../../godmode/agentes/configurar_agente.php:423
#: ../../godmode/agentes/configurar_agente.php:735
-#: ../../godmode/agentes/modificar_agente.php:820
+#: ../../godmode/agentes/modificar_agente.php:832
#: ../../godmode/agentes/planned_downtime.list.php:85
#: ../../godmode/agentes/planned_downtime.list.php:116
#: ../../godmode/agentes/planned_downtime.editor.php:1360
@@ -4651,12 +4712,12 @@ msgstr ""
#: ../../godmode/reporting/reporting_builder.item_editor.php:1946
#: ../../godmode/reporting/reporting_builder.item_editor.php:2167
#: ../../godmode/reporting/visual_console_builder.wizard.php:447
-#: ../../godmode/servers/servers.build_table.php:81
-#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:409
+#: ../../godmode/servers/servers.build_table.php:83
+#: ../../mobile/operation/agents.php:96 ../../mobile/operation/agents.php:410
#: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88
-#: ../../mobile/operation/agent.php:327
-#: ../../include/functions_reporting_html.php:2094
-#: ../../include/functions_reporting_html.php:5662
+#: ../../mobile/operation/agent.php:330
+#: ../../include/functions_reporting_html.php:2115
+#: ../../include/functions_reporting_html.php:5690
#: ../../include/functions_reports.php:745
#: ../../include/functions_reports.php:749
#: ../../include/functions_reports.php:753
@@ -4666,52 +4727,52 @@ msgstr ""
#: ../../include/functions_reports.php:769
#: ../../include/functions_reports.php:773
#: ../../include/functions_reports.php:777
-#: ../../include/functions_html.php:1745 ../../include/functions_html.php:5982
+#: ../../include/functions_html.php:1755 ../../include/functions_html.php:6006
#: ../../include/class/AgentsAlerts.class.php:253
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:414
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:420
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:432
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:344
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:424
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:430
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:445
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:347
#: ../../operation/search_agents.php:55 ../../operation/tree.php:115
#: ../../operation/search_results.php:159
-#: ../../operation/agentes/estado_agente.php:1046
+#: ../../operation/agentes/estado_agente.php:1054
#: ../../operation/agentes/graphs.php:203
#: ../../operation/agentes/exportdata.php:354
#: ../../operation/agentes/group_view.php:185
-#: ../../operation/agentes/group_view.php:235
+#: ../../operation/agentes/group_view.php:238
msgid "Modules"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-#: ../../godmode/servers/servers.build_table.php:82
+#: ../../enterprise/meta/advanced/servers.build_table.php:82
+#: ../../godmode/servers/servers.build_table.php:84
msgid "Lag"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:66
-#: ../../godmode/servers/servers.build_table.php:82
+#: ../../enterprise/meta/advanced/servers.build_table.php:82
+#: ../../godmode/servers/servers.build_table.php:84
msgid "Avg. Delay(sec)/Modules delayed"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:67
-#: ../../godmode/servers/servers.build_table.php:83
+#: ../../enterprise/meta/advanced/servers.build_table.php:83
+#: ../../godmode/servers/servers.build_table.php:85
msgid "T/Q"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:67
-#: ../../godmode/servers/servers.build_table.php:83
+#: ../../enterprise/meta/advanced/servers.build_table.php:83
+#: ../../godmode/servers/servers.build_table.php:85
msgid "Threads / Queued modules currently"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:69
+#: ../../enterprise/meta/advanced/servers.build_table.php:85
#: ../../enterprise/include/class/DatabaseHA.class.php:800
#: ../../enterprise/tools/ipam/ipam_ajax.php:497
#: ../../godmode/agentes/agent_incidents.php:92
-#: ../../godmode/servers/servers.build_table.php:85
+#: ../../godmode/servers/servers.build_table.php:87
#: ../../operation/incidents/integriaims_export_csv.php:86
msgid "Updated"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:73
+#: ../../enterprise/meta/advanced/servers.build_table.php:89
#: ../../enterprise/meta/include/functions_autoprovision.php:701
#: ../../enterprise/godmode/modules/local_components.php:648
#: ../../enterprise/godmode/policies/policy_alerts.php:368
@@ -4720,46 +4781,52 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261
#: ../../godmode/users/profile_list.php:359
#: ../../godmode/alerts/alert_list.list.php:572
-#: ../../godmode/alerts/alert_templates.php:413
+#: ../../godmode/alerts/alert_templates.php:417
#: ../../godmode/reporting/reporting_builder.list_items.php:429
#: ../../godmode/reporting/graphs.php:375
#: ../../godmode/reporting/reporting_builder.php:931
#: ../../godmode/reporting/reporting_builder.php:1151
-#: ../../godmode/servers/servers.build_table.php:89
-#: ../../godmode/servers/plugin.php:996
+#: ../../godmode/servers/servers.build_table.php:91
#: ../../include/functions_container.php:157
#: ../../operation/gis_maps/gis_map.php:122
msgid "Op."
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:92
-#: ../../godmode/servers/servers.build_table.php:138
+#: ../../enterprise/meta/advanced/servers.build_table.php:116
+#: ../../godmode/servers/servers.build_table.php:140
msgid "This is a master server"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:107
-#: ../../enterprise/meta/advanced/servers.build_table.php:113
-#: ../../godmode/servers/servers.build_table.php:157
-#: ../../godmode/servers/servers.build_table.php:163
+#: ../../enterprise/meta/advanced/servers.build_table.php:131
+#: ../../enterprise/meta/advanced/servers.build_table.php:137
+#: ../../godmode/servers/servers.build_table.php:159
+#: ../../godmode/servers/servers.build_table.php:165
msgid "of"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:143
-#: ../../godmode/servers/servers.build_table.php:274
+#: ../../enterprise/meta/advanced/servers.build_table.php:170
+#: ../../godmode/servers/servers.build_table.php:262
+msgid "Manage server conf"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/servers.build_table.php:186
+#: ../../godmode/servers/servers.build_table.php:287
msgid "Modules run by this server will stop working. Do you want to continue?"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:170
-#: ../../godmode/servers/servers.build_table.php:301
+#: ../../enterprise/meta/advanced/servers.build_table.php:213
+#: ../../godmode/servers/servers.build_table.php:314
msgid "Tactical server information"
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:180
+#: ../../enterprise/meta/advanced/servers.build_table.php:223
+#: ../../godmode/servers/servers.build_table.php:327
#: ../../include/help/clippy/server_queued_modules.php:35
msgid "Excesive Queued."
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:181
+#: ../../enterprise/meta/advanced/servers.build_table.php:224
+#: ../../godmode/servers/servers.build_table.php:328
msgid ""
"You have too many items in the processing queue. This can happen if your "
"server is overloaded and/or improperly configured. This could be something "
@@ -4767,7 +4834,7 @@ msgid ""
"with modules going to unknown, try increasing the number of threads."
msgstr ""
-#: ../../enterprise/meta/advanced/servers.build_table.php:182
+#: ../../enterprise/meta/advanced/servers.build_table.php:225
#: ../../enterprise/meta/advanced/cron_main.php:408
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163
@@ -4775,39 +4842,41 @@ msgstr ""
#: ../../enterprise/godmode/wizards/consoletask_js.php:47
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4106
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4416
-#: ../../enterprise/operation/log/log_viewer.php:1201
-#: ../../enterprise/operation/log/log_viewer.php:1216
+#: ../../enterprise/operation/log/log_viewer.php:1199
+#: ../../enterprise/operation/log/log_viewer.php:1214
#: ../../enterprise/operation/services/services.treeview_services.php:416
#: ../../extensions/insert_data.php:285
-#: ../../godmode/agentes/planned_downtime.editor.php:2017
+#: ../../godmode/agentes/planned_downtime.editor.php:2013
#: ../../godmode/alerts/configure_alert_template.php:1512
#: ../../godmode/alerts/configure_alert_template.php:1596
-#: ../../godmode/setup/news.php:437
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5168
+#: ../../godmode/setup/news.php:436
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5177
#: ../../godmode/wizards/HostDevices.class.php:797
-#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749
-#: ../../include/functions_menu.php:941
+#: ../../godmode/servers/servers.build_table.php:329
+#: ../../mobile/include/ui.class.php:717 ../../mobile/include/ui.class.php:775
+#: ../../include/functions_menu.php:946 ../../include/functions_clippy.php:323
#: ../../include/class/WelcomeWindow.class.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:743
-#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:631
-#: ../../operation/agentes/stat_win.php:591
-#: ../../operation/agentes/interface_traffic_graph_win.php:442
-#: ../../operation/agentes/datos_agente.php:318
-#: ../../operation/agentes/estado_monitores.php:470
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:736
+#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:633
+#: ../../operation/agentes/stat_win.php:607
+#: ../../operation/agentes/interface_traffic_graph_win.php:451
+#: ../../operation/agentes/datos_agente.php:320
+#: ../../operation/agentes/estado_monitores.php:467
#: ../../operation/network/network_report.php:463
#: ../../operation/network/network_usage_map.php:300
-#: ../../operation/netflow/nf_live_view.php:871
+#: ../../operation/netflow/nf_live_view.php:982
+#: ../../operation/search_modules.php:359
#: ../../operation/reporting/reporting_viewer.php:366
#: ../../operation/reporting/reporting_viewer.php:385
#: ../../operation/reporting/graph_viewer.php:472
-#: ../../operation/events/events.php:3229
+#: ../../operation/events/events.php:3288
msgid "Close"
msgstr ""
#: ../../enterprise/meta/advanced/massive_operations.php:55
#: ../../enterprise/meta/monitoring/wizard/wizard.php:71
#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:64
-#: ../../general/node_deactivated.php:59
+#: ../../general/node_deactivated.php:64
msgid "command center"
msgstr ""
@@ -4820,7 +4889,7 @@ msgid ""
msgstr ""
#: ../../enterprise/meta/advanced/component_management.php:35
-#: ../../include/functions_menu.php:614
+#: ../../include/functions_menu.php:618
msgid "Tags management"
msgstr ""
@@ -4837,7 +4906,7 @@ msgstr ""
#: ../../godmode/groups/configure_modu_group.php:43
#: ../../godmode/groups/modu_group_list.php:83 ../../godmode/menu.php:116
#: ../../godmode/reporting/reporting_builder.item_editor.php:86
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:343
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:346
#: ../../operation/tree.php:103
msgid "Module groups"
msgstr ""
@@ -4881,56 +4950,56 @@ msgid "Successfully update"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:100
-#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137
+#: ../../godmode/menu.php:364 ../../godmode/setup/setup.php:137
#: ../../godmode/setup/setup.php:285
msgid "Visual styles"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:106
#: ../../enterprise/meta/include/functions_meta.php:1364
-#: ../../godmode/setup/setup_visuals.php:1757
-#: ../../include/functions_config.php:973
+#: ../../godmode/setup/setup_visuals.php:1772
+#: ../../include/functions_config.php:985
msgid "Date format string"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:108
#: ../../enterprise/tools/ipam/ipam_editor.php:147
-#: ../../godmode/setup/setup_visuals.php:1766
+#: ../../godmode/setup/setup_visuals.php:1781
msgid "Example"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:138
-#: ../../godmode/setup/setup_visuals.php:1801
+#: ../../godmode/setup/setup_visuals.php:1816
msgid "Timestamp, time comparison, or compact mode"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:140
-#: ../../godmode/setup/setup_visuals.php:1611
+#: ../../godmode/setup/setup_visuals.php:1626
msgid "Comparation in rollover"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:147
-#: ../../godmode/setup/setup_visuals.php:1618
+#: ../../godmode/setup/setup_visuals.php:1633
msgid "Timestamp in rollover"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:154
-#: ../../godmode/setup/setup_visuals.php:1625
+#: ../../godmode/setup/setup_visuals.php:1640
msgid "Compact mode"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:164
-#: ../../include/functions_config.php:985
+#: ../../include/functions_config.php:997
msgid "Graph color #1"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:175
-#: ../../include/functions_config.php:989
+#: ../../include/functions_config.php:1001
msgid "Graph color #2"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:186
-#: ../../include/functions_config.php:993
+#: ../../include/functions_config.php:1005
msgid "Graph color #3"
msgstr ""
@@ -4944,10 +5013,10 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:215
#: ../../enterprise/meta/include/functions_meta.php:1414
-#: ../../godmode/setup/setup_visuals.php:1256
+#: ../../godmode/setup/setup_visuals.php:1260
#: ../../godmode/reporting/visual_console_builder.elements.php:233
#: ../../godmode/reporting/visual_console_builder.wizard.php:288
-#: ../../include/functions_visual_map_editor.php:684
+#: ../../include/functions_visual_map_editor.php:734
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458
msgid "Percentile"
msgstr ""
@@ -4958,46 +5027,46 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:231
#: ../../enterprise/meta/include/functions_meta.php:1499
-#: ../../godmode/setup/setup_visuals.php:1160
-#: ../../include/functions_config.php:1025
+#: ../../godmode/setup/setup_visuals.php:1164
+#: ../../include/functions_config.php:1037
msgid "Value to interface graphics"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:247
#: ../../enterprise/meta/include/functions_meta.php:1512
-#: ../../godmode/users/configure_user.php:1380
-#: ../../godmode/users/user_management.php:583
+#: ../../godmode/users/configure_user.php:1429
+#: ../../godmode/users/user_management.php:589
#: ../../godmode/massive/massive_edit_users.php:263
-#: ../../godmode/setup/setup_visuals.php:92
-#: ../../godmode/events/event_edit_filter.php:457
-#: ../../include/functions_config.php:1042
+#: ../../godmode/setup/setup_visuals.php:96
+#: ../../godmode/events/event_edit_filter.php:459
+#: ../../include/functions_config.php:1054
#: ../../operation/users/user_edit.php:420
msgid "Block size for pagination"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:263
#: ../../enterprise/meta/include/functions_meta.php:1428
-#: ../../godmode/setup/setup_visuals.php:1185
+#: ../../godmode/setup/setup_visuals.php:1189
msgid "Number of elements in Custom Graph"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:278
#: ../../enterprise/meta/include/functions_meta.php:1522
-#: ../../godmode/setup/setup_visuals.php:1199
-#: ../../include/functions_config.php:1046
+#: ../../godmode/setup/setup_visuals.php:1203
+#: ../../include/functions_config.php:1058
msgid "Use round corners"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:288
#: ../../enterprise/meta/include/functions_meta.php:1533
-#: ../../godmode/setup/setup_visuals.php:1210
-#: ../../include/functions_config.php:1050
+#: ../../godmode/setup/setup_visuals.php:1214
+#: ../../include/functions_config.php:1062
msgid "Chart fit to content"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:298
#: ../../enterprise/meta/include/functions_meta.php:1544
-#: ../../include/functions_config.php:1278
+#: ../../include/functions_config.php:1294
msgid "Disable help"
msgstr ""
@@ -5024,10 +5093,10 @@ msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:555
#: ../../enterprise/godmode/modules/local_components.php:588
#: ../../enterprise/godmode/agentes/collections.data.php:485
-#: ../../enterprise/godmode/policies/policy_queue.php:292
-#: ../../enterprise/godmode/policies/policy_queue.php:304
-#: ../../enterprise/godmode/policies/policy_queue.php:329
-#: ../../enterprise/godmode/policies/policy_queue.php:732
+#: ../../enterprise/godmode/policies/policy_queue.php:294
+#: ../../enterprise/godmode/policies/policy_queue.php:306
+#: ../../enterprise/godmode/policies/policy_queue.php:331
+#: ../../enterprise/godmode/policies/policy_queue.php:734
#: ../../enterprise/godmode/policies/policy_external_alerts.php:383
#: ../../enterprise/godmode/policies/policy_agents.php:453
#: ../../enterprise/godmode/policies/policy_agents.php:588
@@ -5064,15 +5133,15 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:316
#: ../../enterprise/operation/agentes/tag_view.php:328
#: ../../enterprise/operation/agentes/tag_view.php:430
-#: ../../enterprise/operation/log/log_viewer.php:755
-#: ../../enterprise/operation/log/log_viewer.php:776
-#: ../../enterprise/operation/log/log_viewer.php:830
+#: ../../enterprise/operation/log/log_viewer.php:753
+#: ../../enterprise/operation/log/log_viewer.php:774
+#: ../../enterprise/operation/log/log_viewer.php:828
#: ../../enterprise/operation/snmpconsole/snmp_view.php:33
#: ../../extensions/resource_registration.php:1137
-#: ../../extensions/agents_modules.php:454
+#: ../../extensions/agents_modules.php:462
#: ../../extensions/files_repo/files_repo_form.php:44
#: ../../godmode/modules/manage_network_templates_form.php:303
-#: ../../godmode/modules/manage_network_components.php:665
+#: ../../godmode/modules/manage_network_components.php:668
#: ../../godmode/massive/massive_copy_modules.php:127
#: ../../godmode/massive/massive_copy_modules.php:287
#: ../../godmode/massive/massive_delete_modules.php:327
@@ -5087,12 +5156,12 @@ msgstr ""
#: ../../godmode/alerts/alert_list.list.php:152
#: ../../godmode/alerts/alert_list.list.php:169
#: ../../godmode/alerts/alert_list.list.php:201
-#: ../../godmode/alerts/alert_templates.php:313
+#: ../../godmode/alerts/alert_templates.php:317
#: ../../godmode/alerts/alert_list.php:553
#: ../../godmode/alerts/alert_list.php:574
#: ../../godmode/alerts/alert_list.php:588
#: ../../godmode/setup/gis_step_2.php:238
-#: ../../godmode/setup/setup_visuals.php:1085
+#: ../../godmode/setup/setup_visuals.php:1089
#: ../../godmode/reporting/reporting_builder.list_items.php:217
#: ../../godmode/reporting/reporting_builder.list_items.php:234
#: ../../godmode/reporting/reporting_builder.list_items.php:251
@@ -5100,29 +5169,30 @@ msgstr ""
#: ../../godmode/reporting/reporting_builder.item_editor.php:1710
#: ../../godmode/reporting/reporting_builder.item_editor.php:1728
#: ../../godmode/reporting/reporting_builder.item_editor.php:2153
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3007
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3685
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3766
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3788
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3846
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3016
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3043
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3694
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3775
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3797
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3855
#: ../../godmode/reporting/visual_console_builder.wizard.php:359
-#: ../../godmode/events/event_edit_filter.php:358
-#: ../../godmode/events/event_edit_filter.php:378
-#: ../../godmode/events/event_edit_filter.php:762
+#: ../../godmode/events/event_edit_filter.php:360
+#: ../../godmode/events/event_edit_filter.php:380
+#: ../../godmode/events/event_edit_filter.php:764
#: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68
#: ../../mobile/operation/modules.php:289
#: ../../mobile/operation/modules.php:304 ../../mobile/operation/alerts.php:65
-#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:974
-#: ../../mobile/operation/events.php:984 ../../mobile/operation/events.php:1460
-#: ../../mobile/operation/events.php:1489 ../../include/functions.php:1127
-#: ../../include/functions.php:1387 ../../include/ajax/events.php:521
+#: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:1018
+#: ../../mobile/operation/events.php:1028
+#: ../../mobile/operation/events.php:1585
+#: ../../mobile/operation/events.php:1614 ../../include/functions.php:1127
+#: ../../include/functions.php:1387 ../../include/ajax/events.php:522
#: ../../include/functions_groupview.php:96
#: ../../include/functions_modules.php:3604
#: ../../include/functions_modules.php:3606
#: ../../include/functions_users.php:428 ../../include/functions_users.php:686
#: ../../include/functions_notifications.php:105
-#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606
+#: ../../include/functions_html.php:952 ../../include/functions_html.php:1614
#: ../../include/functions_massive_operations.php:158
#: ../../include/functions_massive_operations.php:172
#: ../../include/class/EventSound.class.php:347
@@ -5132,24 +5202,24 @@ msgstr ""
#: ../../include/class/SnmpConsole.class.php:308
#: ../../include/class/AuditLog.class.php:232
#: ../../include/class/AuditLog.class.php:242
-#: ../../include/class/TipsWindow.class.php:719
-#: ../../include/class/TipsWindow.class.php:886
-#: ../../include/functions_reporting.php:3343
-#: ../../include/functions_reporting.php:3440
+#: ../../include/class/TipsWindow.class.php:739
+#: ../../include/class/TipsWindow.class.php:906
+#: ../../include/functions_reporting.php:3352
+#: ../../include/functions_reporting.php:3449
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:422
#: ../../include/lib/Dashboard/Widgets/events_list.php:412
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:397
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:431
-#: ../../include/functions_groups.php:646
-#: ../../include/functions_groups.php:1959 ../../operation/heatmap.php:122
-#: ../../operation/tree.php:205 ../../operation/tree.php:296
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:400
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:435
+#: ../../include/functions_groups.php:671
+#: ../../include/functions_groups.php:1984 ../../operation/heatmap.php:122
+#: ../../operation/tree.php:205 ../../operation/tree.php:297
#: ../../operation/agentes/estado_agente.php:330
-#: ../../operation/agentes/status_monitor.php:599
-#: ../../operation/agentes/status_monitor.php:680
-#: ../../operation/agentes/status_monitor.php:977
-#: ../../operation/agentes/estado_monitores.php:515
-#: ../../operation/agentes/estado_monitores.php:536
-#: ../../operation/agentes/agent_inventory.php:122
+#: ../../operation/agentes/status_monitor.php:598
+#: ../../operation/agentes/status_monitor.php:679
+#: ../../operation/agentes/status_monitor.php:979
+#: ../../operation/agentes/estado_monitores.php:512
+#: ../../operation/agentes/estado_monitores.php:533
+#: ../../operation/agentes/agent_inventory.php:124
#: ../../operation/agentes/alerts_status.functions.php:98
#: ../../operation/agentes/alerts_status.functions.php:134
#: ../../operation/agentes/alerts_status.functions.php:165
@@ -5160,25 +5230,25 @@ msgstr ""
#: ../../operation/incidents/list_integriaims_incidents.php:407
#: ../../operation/inventory/inventory.php:78
#: ../../operation/inventory/inventory.php:79
-#: ../../operation/inventory/inventory.php:319
-#: ../../operation/inventory/inventory.php:320
-#: ../../operation/inventory/inventory.php:496
-#: ../../operation/inventory/inventory.php:529
-#: ../../operation/inventory/inventory.php:564
-#: ../../operation/events/events.php:840 ../../operation/events/events.php:1745
-#: ../../operation/events/events.php:1839
-#: ../../operation/events/events.php:2039
+#: ../../operation/inventory/inventory.php:321
+#: ../../operation/inventory/inventory.php:322
+#: ../../operation/inventory/inventory.php:498
+#: ../../operation/inventory/inventory.php:531
+#: ../../operation/inventory/inventory.php:566
+#: ../../operation/events/events.php:845 ../../operation/events/events.php:1799
+#: ../../operation/events/events.php:1893
+#: ../../operation/events/events.php:2093
#: ../../general/subselect_data_module.php:62
msgid "All"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:310
-#: ../../godmode/setup/setup_visuals.php:1086
+#: ../../godmode/setup/setup_visuals.php:1090
msgid "On Boolean graphs"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:313
-#: ../../godmode/setup/setup_visuals.php:1268
+#: ../../godmode/setup/setup_visuals.php:1272
msgid "Graph TIP view"
msgstr ""
@@ -5187,17 +5257,17 @@ msgid "This option may cause performance issues"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:328
-#: ../../godmode/setup/setup_visuals.php:1089
+#: ../../godmode/setup/setup_visuals.php:1093
msgid "Show only average by default"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:329
-#: ../../godmode/setup/setup_visuals.php:1090
+#: ../../godmode/setup/setup_visuals.php:1094
msgid "Show MAX/AVG/MIN by default"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:332
-#: ../../godmode/setup/setup_visuals.php:1284
+#: ../../godmode/setup/setup_visuals.php:1288
msgid "Graph mode"
msgstr ""
@@ -5206,16 +5276,16 @@ msgid "Zoom graphs:"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:369
-#: ../../godmode/setup/setup_visuals.php:1220
+#: ../../godmode/setup/setup_visuals.php:1224
msgid "Type of module charts"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:371
#: ../../enterprise/godmode/reporting/graph_template_editor.php:260
-#: ../../godmode/setup/setup_visuals.php:1227
+#: ../../godmode/setup/setup_visuals.php:1231
#: ../../godmode/reporting/create_container.php:430
#: ../../godmode/reporting/graph_builder.main.php:208
-#: ../../include/functions_visual_map_editor.php:558
+#: ../../include/functions_visual_map_editor.php:552
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:352
#: ../../operation/agentes/graphs.php:251
@@ -5228,16 +5298,16 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:378
#: ../../enterprise/godmode/reporting/graph_template_editor.php:262
-#: ../../godmode/setup/setup_visuals.php:1239
+#: ../../godmode/setup/setup_visuals.php:1243
#: ../../godmode/reporting/create_container.php:431
#: ../../godmode/reporting/visual_console_builder.elements.php:365
#: ../../godmode/reporting/graph_builder.main.php:210
#: ../../include/functions_visual_map_editor.php:72
-#: ../../include/functions_visual_map_editor.php:557
-#: ../../include/functions_visual_map_editor.php:1397
+#: ../../include/functions_visual_map_editor.php:551
+#: ../../include/functions_visual_map_editor.php:1455
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:354
-#: ../../operation/visual_console/view.php:381
+#: ../../operation/visual_console/view.php:383
#: ../../operation/agentes/graphs.php:253
#: ../../operation/agentes/graphs.php:259
#: ../../operation/agentes/graphs.php:451
@@ -5258,33 +5328,33 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:401
#: ../../enterprise/meta/advanced/metasetup.visual.php:919
#: ../../enterprise/meta/advanced/metasetup.visual.php:920
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:467
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:480
#: ../../enterprise/include/ajax/log_viewer.ajax.php:282
#: ../../godmode/snmpconsole/snmp_alert.php:1608
-#: ../../godmode/setup/setup_visuals.php:1319
-#: ../../godmode/setup/setup_visuals.php:1320
-#: ../../godmode/setup/setup_visuals.php:1898
-#: ../../include/functions_visual_map_editor.php:1221
-#: ../../include/functions_visual_map_editor.php:1222
+#: ../../godmode/setup/setup_visuals.php:1323
+#: ../../godmode/setup/setup_visuals.php:1324
+#: ../../godmode/setup/setup_visuals.php:1913
+#: ../../include/functions_visual_map_editor.php:1279
+#: ../../include/functions_visual_map_editor.php:1280
#: ../../include/functions.php:509 ../../include/functions.php:640
-#: ../../include/ajax/events.php:2352 ../../include/ajax/events.php:2353
-#: ../../include/ajax/events.php:2354 ../../include/ajax/events.php:2355
-#: ../../include/ajax/events.php:2359 ../../include/ajax/events.php:2360
-#: ../../include/ajax/events.php:2361 ../../include/ajax/events.php:2362
-#: ../../include/ajax/events.php:2363 ../../include/ajax/events.php:2364
-#: ../../include/functions_html.php:2135
-#: ../../operation/events/sound_events.php:199
-#: ../../operation/events/sound_events.php:200
-#: ../../operation/events/sound_events.php:201
-#: ../../operation/events/sound_events.php:202
-#: ../../operation/events/sound_events.php:206
-#: ../../operation/events/sound_events.php:207
-#: ../../operation/events/sound_events.php:208
-#: ../../operation/events/sound_events.php:209
-#: ../../operation/events/sound_events.php:210
-#: ../../operation/events/sound_events.php:211
+#: ../../include/ajax/events.php:2353 ../../include/ajax/events.php:2354
+#: ../../include/ajax/events.php:2355 ../../include/ajax/events.php:2356
+#: ../../include/ajax/events.php:2360 ../../include/ajax/events.php:2361
+#: ../../include/ajax/events.php:2362 ../../include/ajax/events.php:2363
+#: ../../include/ajax/events.php:2364 ../../include/ajax/events.php:2365
+#: ../../include/functions_html.php:2143
+#: ../../operation/events/sound_events.php:229
+#: ../../operation/events/sound_events.php:230
+#: ../../operation/events/sound_events.php:231
+#: ../../operation/events/sound_events.php:232
+#: ../../operation/events/sound_events.php:236
+#: ../../operation/events/sound_events.php:237
+#: ../../operation/events/sound_events.php:238
+#: ../../operation/events/sound_events.php:239
+#: ../../operation/events/sound_events.php:240
+#: ../../operation/events/sound_events.php:241
msgid "seconds"
msgstr ""
@@ -5294,45 +5364,45 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:923
#: ../../enterprise/meta/advanced/metasetup.visual.php:924
#: ../../enterprise/include/ajax/log_viewer.ajax.php:284
-#: ../../godmode/setup/setup_visuals.php:1321
-#: ../../godmode/setup/setup_visuals.php:1322
-#: ../../godmode/setup/setup_visuals.php:1323
-#: ../../godmode/setup/setup_visuals.php:1324
-#: ../../godmode/setup/setup_visuals.php:1899
-#: ../../include/functions_visual_map_editor.php:1223
-#: ../../include/functions_visual_map_editor.php:1224
-#: ../../include/functions_visual_map_editor.php:1225
-#: ../../include/functions_visual_map_editor.php:1226
+#: ../../godmode/setup/setup_visuals.php:1325
+#: ../../godmode/setup/setup_visuals.php:1326
+#: ../../godmode/setup/setup_visuals.php:1327
+#: ../../godmode/setup/setup_visuals.php:1328
+#: ../../godmode/setup/setup_visuals.php:1914
+#: ../../include/functions_visual_map_editor.php:1281
+#: ../../include/functions_visual_map_editor.php:1282
+#: ../../include/functions_visual_map_editor.php:1283
+#: ../../include/functions_visual_map_editor.php:1284
#: ../../include/functions.php:513 ../../include/functions.php:644
-#: ../../include/functions_html.php:2136
+#: ../../include/functions_html.php:2144
msgid "minutes"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:403
#: ../../enterprise/include/ajax/log_viewer.ajax.php:286
-#: ../../godmode/setup/setup_visuals.php:1900 ../../include/functions.php:514
+#: ../../godmode/setup/setup_visuals.php:1915 ../../include/functions.php:514
#: ../../include/functions.php:645 ../../include/functions_snmp.php:402
-#: ../../include/functions_html.php:2137
+#: ../../include/functions_html.php:2145
msgid "hours"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:404
#: ../../enterprise/include/ajax/log_viewer.ajax.php:288
#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92
-#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510
-#: ../../include/functions.php:641 ../../include/functions_html.php:2138
+#: ../../godmode/setup/setup_visuals.php:1916 ../../include/functions.php:510
+#: ../../include/functions.php:641 ../../include/functions_html.php:2146
msgid "days"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:405
-#: ../../godmode/setup/setup_visuals.php:1902 ../../include/functions.php:511
-#: ../../include/functions.php:642 ../../include/functions_html.php:2140
+#: ../../godmode/setup/setup_visuals.php:1917 ../../include/functions.php:511
+#: ../../include/functions.php:642 ../../include/functions_html.php:2148
msgid "months"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:406
-#: ../../godmode/setup/setup_visuals.php:1903 ../../include/functions.php:512
-#: ../../include/functions.php:643 ../../include/functions_html.php:2141
+#: ../../godmode/setup/setup_visuals.php:1918 ../../include/functions.php:512
+#: ../../include/functions.php:643 ../../include/functions_html.php:2149
msgid "years"
msgstr ""
@@ -5392,67 +5462,67 @@ msgstr ""
#: ../../godmode/snmpconsole/snmp_alert.php:2135
#: ../../godmode/gis_maps/configure_gis_map.php:642
#: ../../godmode/alerts/alert_list.list.php:893
-#: ../../godmode/setup/news.php:402 ../../godmode/setup/links.php:226
-#: ../../godmode/setup/setup_visuals.php:1833
-#: ../../godmode/setup/setup_visuals.php:1923
-#: ../../godmode/setup/setup_visuals.php:2005
-#: ../../godmode/reporting/graph_builder.graph_editor.php:397
+#: ../../godmode/setup/news.php:401 ../../godmode/setup/links.php:226
+#: ../../godmode/setup/setup_visuals.php:1848
+#: ../../godmode/setup/setup_visuals.php:1938
+#: ../../godmode/setup/setup_visuals.php:2020
+#: ../../godmode/reporting/graph_builder.graph_editor.php:324
#: ../../godmode/reporting/visual_console_builder.wizard.php:575
-#: ../../godmode/events/event_edit_filter.php:647
-#: ../../godmode/events/event_edit_filter.php:712
+#: ../../godmode/events/event_edit_filter.php:649
+#: ../../godmode/events/event_edit_filter.php:714
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:483
#: ../../include/functions_notifications.php:970
#: ../../include/class/SatelliteAgent.class.php:1147
-#: ../../include/class/ManageNetScanScripts.class.php:475
-#: ../../include/functions_snmp_browser.php:1713
+#: ../../include/class/ManageNetScanScripts.class.php:473
+#: ../../include/functions_snmp_browser.php:1722
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287
-#: ../../operation/events/events.php:1267
-#: ../../operation/events/events.php:1341
+#: ../../operation/events/events.php:1294
+#: ../../operation/events/events.php:1386
msgid "Add"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:443
#: ../../enterprise/meta/include/functions_meta.php:1853
-#: ../../include/functions_config.php:1449
+#: ../../include/functions_config.php:1465
msgid "Delete interval"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:475
#: ../../enterprise/meta/include/functions_meta.php:1644
-#: ../../godmode/setup/setup_visuals.php:1736
+#: ../../godmode/setup/setup_visuals.php:1751
msgid "Show only the group name"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:475
-#: ../../include/functions_config.php:1306
+#: ../../include/functions_config.php:1322
msgid "Show the group name instead the group icon."
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:485
#: ../../enterprise/meta/include/functions_meta.php:1945
-#: ../../godmode/setup/setup_visuals.php:129
-#: ../../include/functions_config.php:1330
+#: ../../godmode/setup/setup_visuals.php:133
+#: ../../include/functions_config.php:1346
msgid "Display data of proc modules in other format"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:495
#: ../../enterprise/meta/include/functions_meta.php:1955
-#: ../../godmode/setup/setup_visuals.php:140
-#: ../../include/functions_config.php:1334
+#: ../../godmode/setup/setup_visuals.php:144
+#: ../../include/functions_config.php:1350
msgid "Display text proc modules have state is ok"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:507
#: ../../enterprise/meta/include/functions_meta.php:1965
-#: ../../godmode/setup/setup_visuals.php:144
-#: ../../include/functions_config.php:1338
+#: ../../godmode/setup/setup_visuals.php:148
+#: ../../include/functions_config.php:1354
msgid "Display text when proc modules have state critical"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:528
#: ../../enterprise/meta/include/functions_meta.php:1684
-#: ../../godmode/setup/setup_visuals.php:393
-#: ../../include/functions_config.php:1070
+#: ../../godmode/setup/setup_visuals.php:397
+#: ../../include/functions_config.php:1082
msgid "Custom favicon"
msgstr ""
@@ -5463,7 +5533,7 @@ msgid ""
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:563
-#: ../../godmode/setup/setup_visuals.php:424
+#: ../../godmode/setup/setup_visuals.php:428
msgid "Custom background logo"
msgstr ""
@@ -5481,108 +5551,107 @@ msgstr ""
#: ../../enterprise/operation/agentes/policy_view.php:70
#: ../../godmode/agentes/configurar_agente.php:386
#: ../../godmode/agentes/modificar_agente.php:83
-#: ../../godmode/agentes/modificar_agente.php:837 ../../godmode/menu.php:596
-#: ../../godmode/setup/setup_visuals.php:375
-#: ../../godmode/setup/setup_visuals.php:442
-#: ../../godmode/setup/setup_visuals.php:465
-#: ../../godmode/setup/setup_visuals.php:490
-#: ../../godmode/setup/setup_visuals.php:516
-#: ../../godmode/setup/setup_visuals.php:541
-#: ../../godmode/setup/setup_visuals.php:582
-#: ../../godmode/setup/setup_visuals.php:620
-#: ../../godmode/setup/setup_visuals.php:660
-#: ../../godmode/setup/setup_visuals.php:698
-#: ../../godmode/setup/setup_visuals.php:738
-#: ../../godmode/setup/setup_visuals.php:924
-#: ../../godmode/reporting/visual_console_builder.php:841
+#: ../../godmode/agentes/modificar_agente.php:849 ../../godmode/menu.php:594
+#: ../../godmode/setup/setup_visuals.php:379
+#: ../../godmode/setup/setup_visuals.php:446
+#: ../../godmode/setup/setup_visuals.php:469
+#: ../../godmode/setup/setup_visuals.php:494
+#: ../../godmode/setup/setup_visuals.php:520
+#: ../../godmode/setup/setup_visuals.php:545
+#: ../../godmode/setup/setup_visuals.php:586
+#: ../../godmode/setup/setup_visuals.php:624
+#: ../../godmode/setup/setup_visuals.php:664
+#: ../../godmode/setup/setup_visuals.php:702
+#: ../../godmode/setup/setup_visuals.php:742
+#: ../../godmode/setup/setup_visuals.php:928
+#: ../../godmode/reporting/visual_console_builder.php:849
#: ../../godmode/module_library/module_library_view.php:59
-#: ../../include/functions_ui.php:1299 ../../include/functions_ui.php:1312
#: ../../include/lib/ClusterViewer/ClusterManager.php:601
-#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:212
+#: ../../operation/tree.php:189 ../../operation/visual_console/view.php:214
#: ../../operation/visual_console/legacy_view.php:189
#: ../../operation/agentes/status_monitor.php:77
-#: ../../operation/agentes/status_monitor.php:306
+#: ../../operation/agentes/status_monitor.php:305
msgid "View"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:602
-#: ../../godmode/setup/setup_visuals.php:460
+#: ../../godmode/setup/setup_visuals.php:464
msgid "Custom logo (menu)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:633
-#: ../../godmode/setup/setup_visuals.php:485
+#: ../../godmode/setup/setup_visuals.php:489
msgid "Custom logo collapsed (menu)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:663
-#: ../../godmode/setup/setup_visuals.php:511
+#: ../../godmode/setup/setup_visuals.php:515
msgid "Custom logo (header white background)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:694
-#: ../../godmode/setup/setup_visuals.php:536
+#: ../../godmode/setup/setup_visuals.php:540
msgid "Custom logo (login)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:724
-#: ../../godmode/setup/setup_visuals.php:564
+#: ../../godmode/setup/setup_visuals.php:568
msgid "Custom Splash (login)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:754
#: ../../enterprise/meta/advanced/metasetup.visual.php:847
#: ../../enterprise/meta/include/functions_meta.php:1714
-#: ../../godmode/setup/setup_visuals.php:798
-#: ../../include/functions_config.php:1146
+#: ../../godmode/setup/setup_visuals.php:802
+#: ../../include/functions_config.php:1158
msgid "Product name"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:767
#: ../../enterprise/meta/advanced/metasetup.visual.php:859
#: ../../enterprise/meta/include/functions_meta.php:1724
-#: ../../godmode/setup/setup_visuals.php:803
-#: ../../include/functions_config.php:1150
+#: ../../godmode/setup/setup_visuals.php:807
+#: ../../include/functions_config.php:1162
msgid "Copyright notice"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:780
#: ../../enterprise/meta/include/functions_meta.php:1614
-#: ../../godmode/setup/setup_visuals.php:809
-#: ../../include/functions_config.php:1154
-#: ../../include/functions_config.php:1158
+#: ../../godmode/setup/setup_visuals.php:813
+#: ../../include/functions_config.php:1166
+#: ../../include/functions_config.php:1170
msgid "Background opacity % (login)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:786
-#: ../../godmode/setup/setup_visuals.php:762
+#: ../../godmode/setup/setup_visuals.php:766
msgid "Title (header)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:792
-#: ../../godmode/setup/setup_visuals.php:768
+#: ../../godmode/setup/setup_visuals.php:772
msgid "Subtitle (header)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:798
-#: ../../godmode/setup/setup_visuals.php:776
+#: ../../godmode/setup/setup_visuals.php:780
msgid "Title 1 (login)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:811
-#: ../../godmode/setup/setup_visuals.php:781
+#: ../../godmode/setup/setup_visuals.php:785
msgid "Title 2 (login)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:823
#: ../../enterprise/meta/include/functions_meta.php:1774
-#: ../../godmode/setup/setup_visuals.php:787
+#: ../../godmode/setup/setup_visuals.php:791
msgid "Docs URL (login)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:835
#: ../../enterprise/meta/include/functions_meta.php:1784
-#: ../../godmode/setup/setup_visuals.php:792
+#: ../../godmode/setup/setup_visuals.php:796
msgid "Support URL (login)"
msgstr ""
@@ -5592,17 +5661,17 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:884
#: ../../enterprise/meta/include/functions_meta.php:1594
-#: ../../godmode/setup/setup_visuals.php:864
+#: ../../godmode/setup/setup_visuals.php:868
msgid "Visual effects and animation"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:894
-#: ../../godmode/setup/setup_visuals.php:875
+#: ../../godmode/setup/setup_visuals.php:879
msgid "Random background (login)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:906
-#: ../../godmode/setup/setup_visuals.php:1340
+#: ../../godmode/setup/setup_visuals.php:1344
msgid "Legacy Visual Console View"
msgstr ""
@@ -5611,26 +5680,26 @@ msgid "To use the old view when using the Visual Console visor"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:925
-#: ../../godmode/setup/setup_visuals.php:1325
-#: ../../include/functions_visual_map_editor.php:1227
+#: ../../godmode/setup/setup_visuals.php:1329
+#: ../../include/functions_visual_map_editor.php:1285
msgid "hour"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:928
-#: ../../godmode/setup/setup_visuals.php:1350
+#: ../../godmode/setup/setup_visuals.php:1354
msgid "Default cache expiration"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:933
-#: ../../godmode/setup/setup_visuals.php:1355
-#: ../../include/functions_visual_map_editor.php:1253
+#: ../../godmode/setup/setup_visuals.php:1359
+#: ../../include/functions_visual_map_editor.php:1311
msgid "No cache"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:955
#: ../../enterprise/meta/include/functions_meta.php:1992
-#: ../../godmode/setup/setup_visuals.php:1369
-#: ../../include/functions_config.php:1202
+#: ../../godmode/setup/setup_visuals.php:1373
+#: ../../include/functions_config.php:1214
msgid "Default interval for refresh on Visual Console"
msgstr ""
@@ -5639,34 +5708,36 @@ msgid "This interval will affect to Visual Console pages"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:973
-#: ../../godmode/setup/setup_visuals.php:1710
+#: ../../godmode/setup/setup_visuals.php:1725
msgid "Use 1024 when module unit are bytes"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:974
-#: ../../godmode/setup/setup_visuals.php:1711
+#: ../../godmode/setup/setup_visuals.php:1726
msgid "Use always 1000"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:975
-#: ../../godmode/setup/setup_visuals.php:1712
+#: ../../godmode/setup/setup_visuals.php:1727
msgid "Use always 1024"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:978
-#: ../../godmode/setup/setup_visuals.php:2072
+#: ../../godmode/setup/setup_visuals.php:2087
msgid "Data multiplier to use in graphs/data"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:993
#: ../../enterprise/meta/include/functions_meta.php:1997
-#: ../../godmode/setup/setup_visuals.php:1416
-#: ../../include/functions_config.php:1218
+#: ../../godmode/setup/setup_visuals.php:1420
+#: ../../include/functions_config.php:1230
msgid "Mobile view not allow visual console orientation"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1003
#: ../../enterprise/meta/include/functions_meta.php:2002
+#: ../../godmode/setup/setup_visuals.php:1430
+#: ../../include/functions_config.php:1234
msgid "Display item frame on alert triggered"
msgstr ""
@@ -5675,7 +5746,7 @@ msgid "Reports configuration"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1028
-#: ../../godmode/setup/setup_visuals.php:1482
+#: ../../godmode/setup/setup_visuals.php:1497
msgid "Show report info with description"
msgstr ""
@@ -5686,7 +5757,7 @@ msgid ""
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1042
-#: ../../godmode/setup/setup_visuals.php:1492
+#: ../../godmode/setup/setup_visuals.php:1507
msgid "Custom report front page"
msgstr ""
@@ -5698,21 +5769,21 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1055
#: ../../enterprise/meta/include/functions_meta.php:1459
-#: ../../godmode/setup/setup_visuals.php:1503
-#: ../../include/functions_config.php:1480
+#: ../../godmode/setup/setup_visuals.php:1518
+#: ../../include/functions_config.php:1496
msgid "PDF font size (px)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1060
#: ../../enterprise/meta/include/functions_meta.php:1449
-#: ../../godmode/setup/setup_visuals.php:1507
-#: ../../include/functions_config.php:1476
+#: ../../godmode/setup/setup_visuals.php:1522
+#: ../../include/functions_config.php:1492
msgid "HTML font size for SLA (em)"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1065
#: ../../enterprise/meta/include/functions_meta.php:1574
-#: ../../godmode/setup/setup_visuals.php:1513
+#: ../../godmode/setup/setup_visuals.php:1528
msgid "Graph image height for HTML reports"
msgstr ""
@@ -5724,21 +5795,21 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1127
#: ../../enterprise/meta/include/functions_meta.php:1479
-#: ../../godmode/setup/setup_visuals.php:2061
-#: ../../include/functions_config.php:1508
+#: ../../godmode/setup/setup_visuals.php:2076
+#: ../../include/functions_config.php:1524
msgid "CSV divider"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1136
#: ../../enterprise/meta/include/functions_meta.php:1489
-#: ../../godmode/setup/setup_visuals.php:2066
-#: ../../include/functions_config.php:1512
+#: ../../godmode/setup/setup_visuals.php:2081
+#: ../../include/functions_config.php:1528
msgid "CSV decimal separator"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:1146
#: ../../enterprise/meta/include/functions_meta.php:1469
-#: ../../godmode/setup/setup_visuals.php:1517
+#: ../../godmode/setup/setup_visuals.php:1532
msgid "Interval description"
msgstr ""
@@ -5753,9 +5824,9 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1905
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125
-#: ../../godmode/setup/setup_visuals.php:1534
-#: ../../include/functions_config.php:1074
-#: ../../include/functions_config.php:1492
+#: ../../godmode/setup/setup_visuals.php:1549
+#: ../../include/functions_config.php:1086
+#: ../../include/functions_config.php:1508
msgid "Custom logo"
msgstr ""
@@ -5778,17 +5849,17 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1915
#: ../../enterprise/meta/include/functions_meta.php:1925
#: ../../enterprise/meta/include/functions_meta.php:1935
-#: ../../godmode/setup/setup_visuals.php:1534
#: ../../godmode/setup/setup_visuals.php:1549
-#: ../../godmode/setup/setup_visuals.php:1555
-#: ../../godmode/setup/setup_visuals.php:1568
-#: ../../godmode/setup/setup_visuals.php:1582
-#: ../../include/functions_config.php:1484
-#: ../../include/functions_config.php:1488
-#: ../../include/functions_config.php:1492
-#: ../../include/functions_config.php:1496
+#: ../../godmode/setup/setup_visuals.php:1564
+#: ../../godmode/setup/setup_visuals.php:1570
+#: ../../godmode/setup/setup_visuals.php:1583
+#: ../../godmode/setup/setup_visuals.php:1597
#: ../../include/functions_config.php:1500
#: ../../include/functions_config.php:1504
+#: ../../include/functions_config.php:1508
+#: ../../include/functions_config.php:1512
+#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1520
msgid "Custom report front"
msgstr ""
@@ -5796,8 +5867,8 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1915
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:139
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137
-#: ../../godmode/setup/setup_visuals.php:1555
-#: ../../include/functions_config.php:1496
+#: ../../godmode/setup/setup_visuals.php:1570
+#: ../../include/functions_config.php:1512
msgid "Header"
msgstr ""
@@ -5806,23 +5877,91 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1925
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:149
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:147
-#: ../../godmode/setup/setup_visuals.php:1568
-#: ../../include/functions_config.php:1500
+#: ../../godmode/setup/setup_visuals.php:1583
+#: ../../include/functions_config.php:1516
msgid "First page"
msgstr ""
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1420
-#: ../../godmode/setup/setup_visuals.php:2356
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1266
+#: ../../godmode/setup/setup_visuals.php:73
+msgid "Legacy visual console Information"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1267
+#: ../../godmode/setup/setup_visuals.php:74
+msgid "Visual console in legacy mode will no longer be supported as of LTS 772"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1400
+#: ../../enterprise/godmode/services/services.service.php:1025
+#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425
+#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608
+#: ../../enterprise/include/functions_reporting_csv.php:1589
+#: ../../enterprise/include/functions_reporting_csv.php:1635
+#: ../../enterprise/include/functions_reporting_csv.php:1953
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1704
+#: ../../enterprise/include/class/DeploymentCenter.class.php:1756
+#: ../../enterprise/include/class/DatabaseHA.class.php:390
+#: ../../enterprise/include/class/DatabaseHA.class.php:625
+#: ../../enterprise/include/class/DatabaseHA.class.php:727
+#: ../../enterprise/include/class/AgentRepository.class.php:1000
+#: ../../enterprise/include/class/LogSource.class.php:820
+#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142
+#: ../../enterprise/include/class/ManageBackups.class.php:298
+#: ../../enterprise/include/class/ManageBackups.class.php:454
+#: ../../enterprise/include/class/NewDatabaseHA.class.php:182
+#: ../../enterprise/include/class/NewDatabaseHA.class.php:225
+#: ../../enterprise/include/functions_reporting.php:1876
+#: ../../enterprise/include/functions_reporting.php:2949
+#: ../../enterprise/include/functions_reporting.php:3206
+#: ../../enterprise/include/functions_reporting.php:3939
+#: ../../enterprise/include/functions_reporting.php:4208
+#: ../../enterprise/include/functions_reporting.php:4854
+#: ../../enterprise/include/functions_reporting.php:6176
+#: ../../enterprise/include/functions_reporting.php:6214
+#: ../../enterprise/include/functions_services.php:2091
+#: ../../enterprise/include/functions_ux_console.php:483
+#: ../../enterprise/operation/agentes/ux_console_view.php:186
+#: ../../enterprise/operation/agentes/ux_console_view.php:391
+#: ../../enterprise/operation/agentes/wux_console_view.php:407
+#: ../../extensions/module_groups.php:53
+#: ../../godmode/massive/massive_operations.php:415
+#: ../../godmode/setup/setup_visuals.php:2257
+#: ../../godmode/setup/setup_general.php:1044
+#: ../../godmode/setup/setup_general.php:1062
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2743
+#: ../../include/functions_reporting_html.php:667
+#: ../../include/functions_reporting_html.php:862
+#: ../../include/functions_reporting_html.php:3597
+#: ../../include/functions_reporting_html.php:4894
+#: ../../include/functions_db.php:1974
+#: ../../include/class/ConfigPEN.class.php:674
+#: ../../include/class/ConfigPEN.class.php:698
+#: ../../include/class/SatelliteAgent.class.php:1105
+#: ../../include/class/HelpFeedBack.class.php:370
+#: ../../include/class/CredentialStore.class.php:1655
+#: ../../include/class/ModuleTemplates.class.php:1363
+#: ../../include/class/WelcomeWindow.class.php:173
+#: ../../include/class/AgentWizard.class.php:6229
+#: ../../include/lib/Dashboard/Widgets/maps_status.php:362
+#: ../../operation/agentes/pandora_networkmap.editor.php:745
+#: ../../operation/snmpconsole/snmp_browser.php:622
+#: ../../operation/snmpconsole/snmp_browser.php:698
+msgid "OK"
+msgstr ""
+
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1437
+#: ../../godmode/setup/setup_visuals.php:2376
msgid "Logo preview"
msgstr ""
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1442
-#: ../../godmode/setup/setup_visuals.php:2386
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1459
+#: ../../godmode/setup/setup_visuals.php:2406
msgid "Splash Preview"
msgstr ""
-#: ../../enterprise/meta/advanced/metasetup.visual.php:1447
-#: ../../godmode/setup/setup_visuals.php:2410
+#: ../../enterprise/meta/advanced/metasetup.visual.php:1464
+#: ../../godmode/setup/setup_visuals.php:2430
#: ../../godmode/reporting/visual_console_builder.data.php:196
msgid "Background preview"
msgstr ""
@@ -5953,12 +6092,12 @@ msgstr ""
#: ../../godmode/massive/massive_delete_alerts.php:312
#: ../../godmode/massive/massive_add_action_alerts.php:210
#: ../../godmode/massive/massive_edit_modules.php:370
-#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440
+#: ../../include/functions_html.php:1295 ../../include/functions_html.php:1445
#: ../../include/functions_massive_operations.php:136
#: ../../include/lib/Dashboard/Widgets/groups_status.php:243
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:334
#: ../../include/lib/Dashboard/Widgets/events_list.php:447
-#: ../../operation/events/events.php:1704
+#: ../../operation/events/events.php:1758
msgid "Group recursion"
msgstr ""
@@ -6003,7 +6142,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:474
#: ../../enterprise/include/class/Omnishell.class.php:1119
-#: ../../enterprise/operation/services/massive/services.create.php:1305
+#: ../../enterprise/operation/services/massive/services.create.php:1317
#: ../../enterprise/operation/services/massive/service.delete.elements.php:262
#: ../../enterprise/operation/services/massive/service.create.elements.php:610
#: ../../enterprise/operation/services/massive/service.edit.elements.php:369
@@ -6063,8 +6202,8 @@ msgstr ""
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130
-#: ../../include/functions_inventory.php:142
-#: ../../include/functions_inventory.php:176
+#: ../../include/functions_inventory.php:143
+#: ../../include/functions_inventory.php:177
#: ../../include/functions_events.php:250
msgid "Agent alias"
msgstr ""
@@ -6080,8 +6219,8 @@ msgstr ""
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:204
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:264
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:333
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591
@@ -6095,9 +6234,9 @@ msgstr ""
#: ../../godmode/alerts/alert_view.php:130
#: ../../godmode/setup/setup_integria.php:444
#: ../../godmode/setup/setup_integria.php:578
-#: ../../include/functions_reporting_html.php:5374
-#: ../../include/functions_events.php:4593
-#: ../../operation/agentes/estado_generalagente.php:758
+#: ../../include/functions_reporting_html.php:5402
+#: ../../include/functions_events.php:4598
+#: ../../operation/agentes/estado_generalagente.php:727
#: ../../operation/incidents/integriaims_export_csv.php:85
#: ../../operation/incidents/configure_integriaims_incident.php:287
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341
@@ -6128,7 +6267,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:270
#: ../../godmode/alerts/configure_alert_template.php:287
#: ../../godmode/alerts/configure_alert_template.php:291
-#: ../../include/functions_config.php:1729
+#: ../../include/functions_config.php:1741
msgid "Step"
msgstr ""
@@ -6154,8 +6293,8 @@ msgstr ""
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661
#: ../../enterprise/meta/advanced/policymanager.queue.php:261
-#: ../../enterprise/godmode/policies/policy_queue.php:711
-#: ../../enterprise/godmode/policies/policy_queue.php:714
+#: ../../enterprise/godmode/policies/policy_queue.php:713
+#: ../../enterprise/godmode/policies/policy_queue.php:716
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453
#: ../../enterprise/include/class/Omnishell.class.php:369
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180
@@ -6184,12 +6323,12 @@ msgid "checking migration requirements"
msgstr ""
#: ../../enterprise/meta/advanced/servers.php:37
-#: ../../godmode/servers/modificar_server.php:308
+#: ../../godmode/servers/modificar_server.php:330
msgid "Server deleted successfully"
msgstr ""
#: ../../enterprise/meta/advanced/servers.php:39
-#: ../../godmode/servers/modificar_server.php:310
+#: ../../godmode/servers/modificar_server.php:332
msgid "There was a problem deleting the server"
msgstr ""
@@ -6215,12 +6354,12 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.translate_string.php:174
#: ../../enterprise/extensions/translate_string.php:308
-#: ../../godmode/users/configure_user.php:1096
-#: ../../godmode/users/user_management.php:558
+#: ../../godmode/users/configure_user.php:1160
+#: ../../godmode/users/user_management.php:564
#: ../../godmode/massive/massive_edit_users.php:248
-#: ../../include/class/TipsWindow.class.php:453
-#: ../../include/class/TipsWindow.class.php:702
-#: ../../include/class/TipsWindow.class.php:869
+#: ../../include/class/TipsWindow.class.php:465
+#: ../../include/class/TipsWindow.class.php:722
+#: ../../include/class/TipsWindow.class.php:889
#: ../../operation/users/user_edit.php:437
msgid "Language"
msgstr ""
@@ -6250,7 +6389,7 @@ msgstr ""
#: ../../enterprise/meta/general/main_header.php:689
#: ../../enterprise/meta/general/main_header.php:691
#: ../../enterprise/extensions/translate_string.php:334
-#: ../../enterprise/godmode/policies/policy_modules.php:1466
+#: ../../enterprise/godmode/policies/policy_modules.php:1511
#: ../../enterprise/godmode/policies/policy_collections.php:172
#: ../../enterprise/godmode/policies/policy_agents.php:440
#: ../../enterprise/godmode/policies/policy_agents.php:462
@@ -6258,8 +6397,8 @@ msgstr ""
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:168
#: ../../enterprise/godmode/setup/setup_skins.php:131
#: ../../enterprise/operation/agentes/tag_view.php:229
-#: ../../enterprise/operation/log/log_viewer.php:610
-#: ../../enterprise/operation/log/log_viewer.php:957
+#: ../../enterprise/operation/log/log_viewer.php:608
+#: ../../enterprise/operation/log/log_viewer.php:955
#: ../../enterprise/operation/services/services.list.php:233
#: ../../enterprise/operation/services/services.list.php:338
#: ../../enterprise/operation/services/services.table_services.php:171
@@ -6276,23 +6415,23 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:335
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:358
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:375
-#: ../../godmode/groups/group_list.php:785
-#: ../../godmode/users/user_list.php:484 ../../godmode/users/user_list.php:504
+#: ../../godmode/groups/group_list.php:786
+#: ../../godmode/users/user_list.php:485 ../../godmode/users/user_list.php:505
#: ../../godmode/agentes/planned_downtime.list.php:372
#: ../../godmode/agentes/planned_downtime.list.php:697
#: ../../godmode/alerts/alert_actions.php:250
#: ../../godmode/alerts/alert_actions.php:317
#: ../../godmode/alerts/alert_actions.php:332
#: ../../godmode/alerts/alert_actions.php:333
-#: ../../godmode/alerts/alert_templates.php:325
-#: ../../godmode/alerts/alert_templates.php:342
+#: ../../godmode/alerts/alert_templates.php:329
+#: ../../godmode/alerts/alert_templates.php:346
#: ../../godmode/reporting/map_builder.php:357
#: ../../godmode/reporting/graphs.php:238
#: ../../godmode/reporting/visual_console_favorite.php:177
#: ../../godmode/reporting/reporting_builder.item_editor.php:1313
#: ../../godmode/module_library/module_library_view.php:102
#: ../../godmode/module_library/module_library_view.php:112
-#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72
+#: ../../mobile/operation/agent.php:323 ../../include/ajax/heatmap.ajax.php:76
#: ../../include/functions_snmp.php:358
#: ../../include/class/SatelliteAgent.class.php:184
#: ../../include/class/CalendarManager.class.php:1071
@@ -6300,14 +6439,13 @@ msgstr ""
#: ../../include/class/AgentWizard.class.php:2753
#: ../../include/lib/Dashboard/Widgets/heatmap.php:236
#: ../../include/functions_snmp_browser.php:1023
-#: ../../include/functions_snmp_browser.php:1641
+#: ../../include/functions_snmp_browser.php:1650
#: ../../operation/search_results.php:193
#: ../../operation/search_results.php:202
#: ../../operation/agentes/estado_agente.php:342
-#: ../../operation/agentes/status_monitor.php:915
-#: ../../operation/agentes/agent_inventory.php:138
-#: ../../operation/agentes/agent_inventory.php:140
-#: ../../operation/inventory/inventory.php:640
+#: ../../operation/agentes/status_monitor.php:917
+#: ../../operation/agentes/agent_inventory.php:153
+#: ../../operation/inventory/inventory.php:642
#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
msgid "Search"
msgstr ""
@@ -6327,8 +6465,8 @@ msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:624
#: ../../enterprise/godmode/agentes/collections.php:473
#: ../../enterprise/godmode/agentes/collections.php:474
-#: ../../enterprise/godmode/policies/policy_modules.php:1512
-#: ../../enterprise/godmode/policies/policy_queue.php:378
+#: ../../enterprise/godmode/policies/policy_modules.php:1557
+#: ../../enterprise/godmode/policies/policy_queue.php:380
#: ../../enterprise/godmode/policies/policies.php:364
#: ../../enterprise/godmode/policies/policy_linking.php:175
#: ../../enterprise/godmode/policies/policy_external_alerts.php:415
@@ -6338,14 +6476,14 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_acl.php:511
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947
#: ../../enterprise/operation/agentes/tag_view.php:533
-#: ../../enterprise/operation/log/log_viewer.php:1026
+#: ../../enterprise/operation/log/log_viewer.php:1024
#: ../../enterprise/operation/services/services.list.php:497
#: ../../enterprise/operation/services/services.table_services.php:472
#: ../../enterprise/operation/services/services.table_services.php:487
#: ../../extensions/module_groups.php:322
-#: ../../extensions/realtime_graphs.php:220
-#: ../../godmode/modules/manage_network_components.php:713
-#: ../../godmode/groups/group_list.php:820
+#: ../../extensions/realtime_graphs.php:216
+#: ../../godmode/modules/manage_network_components.php:716
+#: ../../godmode/groups/group_list.php:821
#: ../../godmode/agentes/planned_downtime.list.php:661
#: ../../godmode/agentes/planned_downtime.list.php:662
#: ../../godmode/agentes/planned_downtime.list.php:711
@@ -6356,16 +6494,17 @@ msgstr ""
#: ../../godmode/reporting/visual_console_favorite.php:220
#: ../../godmode/reporting/reporting_builder.php:782
#: ../../godmode/events/events.php:105 ../../godmode/events/events.php:124
-#: ../../godmode/tag/tag.php:263 ../../include/functions_ui.php:3715
-#: ../../include/functions_ui.php:3728
-#: ../../include/class/AgentsAlerts.class.php:879
+#: ../../godmode/tag/tag.php:264 ../../include/functions_ui.php:3763
+#: ../../include/functions_ui.php:3776
+#: ../../include/class/AgentsAlerts.class.php:880
#: ../../include/functions_snmp_browser.php:992
#: ../../operation/agentes/estado_agente.php:490
-#: ../../operation/agentes/status_monitor.php:1081
+#: ../../operation/agentes/status_monitor.php:1083
+#: ../../operation/agentes/agent_inventory.php:188
#: ../../operation/network/network_report.php:219
#: ../../operation/network/network_report.php:220
#: ../../operation/incidents/list_integriaims_incidents.php:502
-#: ../../operation/inventory/inventory.php:721
+#: ../../operation/inventory/inventory.php:722
#: ../../operation/reporting/reporting_viewer.php:305
#: ../../operation/reporting/graph_viewer.php:415
msgid "Filters"
@@ -6394,7 +6533,7 @@ msgstr ""
#: ../../include/ajax/visual_console_builder.ajax.php:343
#: ../../include/functions_visual_map.php:2843
#: ../../operation/network/network_usage_map.php:275
-#: ../../operation/netflow/nf_live_view.php:647
+#: ../../operation/netflow/nf_live_view.php:720
msgid "No data to show"
msgstr ""
@@ -6408,14 +6547,14 @@ msgstr ""
#: ../../enterprise/include/functions_cron.php:582
#: ../../enterprise/include/lib/NetworkManager.php:87
#: ../../godmode/agentes/module_manager_editor_wmi.php:59
-#: ../../godmode/agentes/module_manager_editor_network.php:105
+#: ../../godmode/agentes/module_manager_editor_network.php:106
#: ../../godmode/massive/massive_edit_modules.php:834
-#: ../../include/functions_html.php:1917 ../../include/functions_html.php:1918
-#: ../../include/functions_html.php:2028 ../../include/functions_html.php:2029
-#: ../../include/functions_html.php:2181 ../../include/functions_html.php:2182
-#: ../../include/functions_html.php:6698 ../../include/functions_html.php:6699
+#: ../../include/functions_html.php:1928 ../../include/functions_html.php:1929
+#: ../../include/functions_html.php:2039 ../../include/functions_html.php:2040
+#: ../../include/functions_html.php:2189 ../../include/functions_html.php:2190
+#: ../../include/functions_html.php:6726 ../../include/functions_html.php:6727
#: ../../include/class/CredentialStore.class.php:959
-#: ../../operation/netflow/nf_live_view.php:274
+#: ../../operation/netflow/nf_live_view.php:283
msgid "Custom"
msgstr ""
@@ -6442,8 +6581,8 @@ msgid "Imei"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.relations.php:330
-#: ../../include/class/NetworkMap.class.php:3265
-#: ../../include/class/NetworkMap.class.php:3266
+#: ../../include/class/NetworkMap.class.php:3271
+#: ../../include/class/NetworkMap.class.php:3272
msgid "Relations"
msgstr ""
@@ -6479,21 +6618,21 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:2731
#: ../../enterprise/operation/services/services.service.php:115
#: ../../enterprise/operation/services/services.list.php:544
-#: ../../godmode/agentes/module_manager_editor_common.php:1432
+#: ../../godmode/agentes/module_manager_editor_common.php:1442
#: ../../godmode/snmpconsole/snmp_trap_generator.php:126
#: ../../godmode/massive/massive_edit_modules.php:899
#: ../../godmode/alerts/configure_alert_template.php:839
-#: ../../godmode/setup/setup_visuals.php:1823
-#: ../../godmode/setup/setup_visuals.php:1913
-#: ../../godmode/setup/setup_visuals.php:1995
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2708
+#: ../../godmode/setup/setup_visuals.php:1838
+#: ../../godmode/setup/setup_visuals.php:1928
+#: ../../godmode/setup/setup_visuals.php:2010
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2717
#: ../../godmode/reporting/visual_console_builder.wizard.php:330
-#: ../../include/functions_visual_map_editor.php:691
+#: ../../include/functions_visual_map_editor.php:741
#: ../../include/functions_reporting_html.php:949
-#: ../../include/functions_reporting_html.php:2461
-#: ../../include/functions_reporting_html.php:4962
-#: ../../include/functions_reporting_html.php:5492
-#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172
+#: ../../include/functions_reporting_html.php:2482
+#: ../../include/functions_reporting_html.php:4990
+#: ../../include/functions_reporting_html.php:5520
+#: ../../include/ajax/events.php:2174 ../../include/functions_graph.php:5182
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
#: ../../include/functions_reports.php:1087
#: ../../include/functions_netflow.php:212
@@ -6511,7 +6650,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.relations.php:550
#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255
-#: ../../enterprise/godmode/policies/policy_modules.php:1546
+#: ../../enterprise/godmode/policies/policy_modules.php:1591
#: ../../enterprise/godmode/admin_access_logs.php:54
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:397
@@ -6533,7 +6672,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:330
#: ../../godmode/modules/manage_nc_groups.php:266
#: ../../godmode/modules/manage_inventory_modules.php:295
-#: ../../godmode/modules/manage_network_components.php:781
+#: ../../godmode/modules/manage_network_components.php:784
#: ../../godmode/modules/manage_network_templates.php:250
#: ../../godmode/agentes/agent_template.php:277
#: ../../godmode/agentes/planned_downtime.editor.php:1446
@@ -6543,26 +6682,26 @@ msgstr ""
#: ../../godmode/snmpconsole/snmp_alert.php:1915
#: ../../godmode/snmpconsole/snmp_alert.php:2075
#: ../../godmode/snmpconsole/snmp_filters.php:315
-#: ../../godmode/massive/massive_operations.php:452
+#: ../../godmode/massive/massive_operations.php:454
#: ../../godmode/massive/massive_standby_alerts.php:251
#: ../../godmode/massive/massive_delete_action_alerts.php:271
#: ../../godmode/massive/massive_enable_disable_alerts.php:223
#: ../../godmode/massive/massive_add_action_alerts.php:249
#: ../../godmode/alerts/alert_list.list.php:825
#: ../../godmode/alerts/alert_view.php:394
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4138
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4650
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4638
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4659
#: ../../godmode/reporting/visual_console_builder.elements.php:134
#: ../../godmode/events/event_filter.php:149
-#: ../../mobile/operation/tactical.php:348
-#: ../../include/functions_reporting_html.php:3451
-#: ../../include/functions_reporting_html.php:6013
+#: ../../mobile/operation/tactical.php:349
+#: ../../include/functions_reporting_html.php:3479
+#: ../../include/functions_reporting_html.php:6047
#: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294
#: ../../include/ajax/alert_list.ajax.php:319
#: ../../include/ajax/alert_list.ajax.php:495
#: ../../include/functions_profile.php:207
-#: ../../include/class/AgentsAlerts.class.php:911
+#: ../../include/class/AgentsAlerts.class.php:912
#: ../../include/class/SnmpConsole.class.php:512
#: ../../include/class/AuditLog.class.php:111
#: ../../include/class/AuditLog.class.php:230
@@ -6571,7 +6710,7 @@ msgstr ""
#: ../../operation/agentes/alerts_status.php:279
#: ../../operation/agentes/alerts_status.php:280
#: ../../operation/agentes/alerts_status.functions.php:178
-#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:256
+#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:301
msgid "Action"
msgstr ""
@@ -6590,7 +6729,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:93
#: ../../enterprise/meta/include/functions_meta.php:377
#: ../../enterprise/godmode/setup/setup.php:318
-#: ../../include/functions_config.php:494
+#: ../../include/functions_config.php:502
msgid "Enable password policy"
msgstr ""
@@ -6625,7 +6764,7 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:230
#: ../../enterprise/godmode/setup/setup_auth.php:431
#: ../../enterprise/godmode/setup/setup_auth.php:479
-#: ../../enterprise/godmode/setup/setup_auth.php:1287
+#: ../../enterprise/godmode/setup/setup_auth.php:1504
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:521
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317
#: ../../enterprise/godmode/reporting/visual_console_template.php:304
@@ -6634,11 +6773,11 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:1990
#: ../../enterprise/include/functions_reporting.php:2357
#: ../../godmode/update_manager/update_manager.setup.php:395
-#: ../../godmode/users/configure_user.php:1301
+#: ../../godmode/users/configure_user.php:1365
#: ../../godmode/agentes/agent_conf_gis.php:133
-#: ../../godmode/massive/massive_edit_agents.php:671
-#: ../../godmode/massive/massive_edit_agents.php:1084
-#: ../../godmode/massive/massive_edit_agents.php:1116
+#: ../../godmode/massive/massive_edit_agents.php:688
+#: ../../godmode/massive/massive_edit_agents.php:1101
+#: ../../godmode/massive/massive_edit_agents.php:1133
#: ../../godmode/massive/massive_edit_modules.php:631
#: ../../godmode/massive/massive_edit_modules.php:653
#: ../../godmode/massive/massive_edit_modules.php:722
@@ -6653,13 +6792,13 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:382
#: ../../godmode/reporting/visual_console_builder.wizard.php:481
#: ../../godmode/servers/modificar_server.php:80
-#: ../../include/functions_reporting_html.php:1664
+#: ../../include/functions_reporting_html.php:1673
#: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304
#: ../../include/functions_snmp.php:390
#: ../../include/class/EventSound.class.php:349
#: ../../include/class/SnmpConsole.class.php:403
#: ../../operation/users/user_edit.php:433
-#: ../../operation/netflow/nf_live_view.php:340
+#: ../../operation/netflow/nf_live_view.php:349
msgid "Yes"
msgstr ""
@@ -6695,7 +6834,7 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:230
#: ../../enterprise/godmode/setup/setup_auth.php:434
#: ../../enterprise/godmode/setup/setup_auth.php:482
-#: ../../enterprise/godmode/setup/setup_auth.php:1290
+#: ../../enterprise/godmode/setup/setup_auth.php:1507
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:523
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319
#: ../../enterprise/godmode/reporting/visual_console_template.php:304
@@ -6704,11 +6843,11 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:1990
#: ../../enterprise/include/functions_reporting.php:2357
#: ../../godmode/update_manager/update_manager.setup.php:396
-#: ../../godmode/users/configure_user.php:1302
+#: ../../godmode/users/configure_user.php:1366
#: ../../godmode/agentes/agent_conf_gis.php:142
-#: ../../godmode/massive/massive_edit_agents.php:672
-#: ../../godmode/massive/massive_edit_agents.php:1095
-#: ../../godmode/massive/massive_edit_agents.php:1117
+#: ../../godmode/massive/massive_edit_agents.php:689
+#: ../../godmode/massive/massive_edit_agents.php:1112
+#: ../../godmode/massive/massive_edit_agents.php:1134
#: ../../godmode/massive/massive_edit_modules.php:632
#: ../../godmode/massive/massive_edit_modules.php:654
#: ../../godmode/massive/massive_edit_modules.php:723
@@ -6719,28 +6858,28 @@ msgstr ""
#: ../../godmode/massive/massive_edit_modules.php:1125
#: ../../godmode/alerts/alert_view.php:135
#: ../../godmode/alerts/alert_view.php:265
-#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390
+#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:389
#: ../../godmode/reporting/reporting_builder.php:1086
#: ../../godmode/reporting/visual_console_builder.wizard.php:393
#: ../../godmode/reporting/visual_console_builder.wizard.php:492
#: ../../godmode/servers/modificar_server.php:78
-#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:373
-#: ../../include/functions_reporting_html.php:1664
+#: ../../mobile/operation/events.php:358 ../../mobile/operation/events.php:366
+#: ../../include/functions_reporting_html.php:1673
#: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304
#: ../../include/functions_snmp.php:382
#: ../../include/class/EventSound.class.php:348
#: ../../include/class/SnmpConsole.class.php:402
-#: ../../include/functions_events.php:4971
#: ../../include/functions_events.php:4976
+#: ../../include/functions_events.php:4981
#: ../../operation/users/user_edit.php:434
-#: ../../operation/netflow/nf_live_view.php:350
+#: ../../operation/netflow/nf_live_view.php:359
msgid "No"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:114
#: ../../enterprise/meta/include/functions_meta.php:387
#: ../../enterprise/godmode/setup/setup.php:329
-#: ../../include/functions_config.php:498
+#: ../../include/functions_config.php:506
msgid "Min. size password"
msgstr ""
@@ -6752,7 +6891,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:126
#: ../../enterprise/meta/include/functions_meta.php:417
#: ../../enterprise/godmode/setup/setup.php:347
-#: ../../include/functions_config.php:502
+#: ../../include/functions_config.php:510
msgid "Password expiration"
msgstr ""
@@ -6768,7 +6907,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:138
#: ../../enterprise/meta/include/functions_meta.php:437
#: ../../enterprise/godmode/setup/setup.php:395
-#: ../../include/functions_config.php:510
+#: ../../include/functions_config.php:518
msgid "User blocked if login fails"
msgstr ""
@@ -6780,7 +6919,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:150
#: ../../enterprise/meta/include/functions_meta.php:447
#: ../../enterprise/godmode/setup/setup.php:413
-#: ../../include/functions_config.php:514
+#: ../../include/functions_config.php:522
msgid "Number of failed login attempts"
msgstr ""
@@ -6796,56 +6935,56 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:162
#: ../../enterprise/meta/include/functions_meta.php:469
#: ../../enterprise/godmode/setup/setup.php:451
-#: ../../include/functions_config.php:534
+#: ../../include/functions_config.php:542
msgid "Compare previous password"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:174
#: ../../enterprise/meta/include/functions_meta.php:457
#: ../../enterprise/godmode/setup/setup.php:441
-#: ../../include/functions_config.php:530
+#: ../../include/functions_config.php:538
msgid "Enable password history"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:192
#: ../../enterprise/meta/include/functions_meta.php:480
#: ../../enterprise/godmode/setup/setup.php:431
-#: ../../include/functions_config.php:526
+#: ../../include/functions_config.php:534
msgid "Apply password policy to admin users"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:199
#: ../../enterprise/meta/include/functions_meta.php:427
#: ../../enterprise/godmode/setup/setup.php:385
-#: ../../include/functions_config.php:506
+#: ../../include/functions_config.php:514
msgid "Force change password on first login"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:206
#: ../../enterprise/meta/include/functions_meta.php:397
#: ../../enterprise/godmode/setup/setup.php:365
-#: ../../include/functions_config.php:518
+#: ../../include/functions_config.php:526
msgid "Password must have numbers"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:213
#: ../../enterprise/meta/include/functions_meta.php:407
#: ../../enterprise/godmode/setup/setup.php:375
-#: ../../include/functions_config.php:522
+#: ../../include/functions_config.php:530
msgid "Password must have symbols"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:220
#: ../../enterprise/meta/include/functions_meta.php:491
#: ../../enterprise/godmode/setup/setup.php:463
-#: ../../include/functions_config.php:538
+#: ../../include/functions_config.php:546
msgid "Activate reset password"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.password.php:228
#: ../../enterprise/meta/include/functions_meta.php:501
#: ../../enterprise/godmode/setup/setup.php:473
-#: ../../include/functions_config.php:542
+#: ../../include/functions_config.php:550
msgid "Exclusion word list for passwords"
msgstr ""
@@ -6908,56 +7047,56 @@ msgid ""
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:117
-#: ../../godmode/setup/setup_general.php:725
+#: ../../godmode/setup/setup_general.php:751
msgid "Mail configuration"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:122
-#: ../../include/functions_config.php:398
+#: ../../include/functions_config.php:406
msgid "From dir"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:127
-#: ../../godmode/setup/setup_general.php:756
-#: ../../include/functions_config.php:402
+#: ../../godmode/setup/setup_general.php:782
+#: ../../include/functions_config.php:410
msgid "From name"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:132
-#: ../../include/functions_config.php:394
+#: ../../include/functions_config.php:402
msgid "Server SMTP"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:137
-#: ../../include/functions_config.php:406
+#: ../../include/functions_config.php:414
msgid "Port SMTP"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:142
-#: ../../godmode/setup/setup_general.php:817
-#: ../../include/functions_config.php:410
+#: ../../godmode/setup/setup_general.php:843
+#: ../../include/functions_config.php:418
msgid "Encryption"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:148
#: ../../godmode/gis_maps/configure_gis_map.php:586
-#: ../../godmode/setup/setup_general.php:823
+#: ../../godmode/setup/setup_general.php:849
#: ../../godmode/reporting/create_container.php:291
#: ../../godmode/reporting/create_container.php:310
-#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087
-#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106
+#: ../../include/ajax/module.php:2578 ../../include/ajax/events.php:1088
+#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5130
msgid "none"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:155
-#: ../../godmode/setup/setup_general.php:792
-#: ../../include/functions_config.php:414
+#: ../../godmode/setup/setup_general.php:818
+#: ../../include/functions_config.php:422
msgid "Email user"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.mail.php:160
-#: ../../godmode/setup/setup_general.php:803
-#: ../../include/functions_config.php:418
+#: ../../godmode/setup/setup_general.php:829
+#: ../../include/functions_config.php:426
msgid "Email password"
msgstr ""
@@ -6981,11 +7120,11 @@ msgstr ""
#: ../../enterprise/meta/general/main_header.php:143
#: ../../enterprise/meta/general/main_menu.php:260
#: ../../enterprise/operation/log/elasticsearch_interface.php:30
-#: ../../enterprise/operation/log/log_viewer.php:399
-#: ../../enterprise/operation/log/log_viewer.php:439
-#: ../../enterprise/operation/log/log_viewer.php:498
+#: ../../enterprise/operation/log/log_viewer.php:397
+#: ../../enterprise/operation/log/log_viewer.php:437
+#: ../../enterprise/operation/log/log_viewer.php:496
#: ../../enterprise/operation/menu.php:162
-#: ../../operation/agentes/ver_agente.php:1893
+#: ../../operation/agentes/ver_agente.php:1889
msgid "Log viewer"
msgstr ""
@@ -6993,12 +7132,12 @@ msgstr ""
#: ../../enterprise/godmode/menu.php:132
#: ../../enterprise/include/functions_setup.php:67
#: ../../enterprise/include/functions_setup.php:119
-#: ../../operation/agentes/datos_agente.php:180
+#: ../../operation/agentes/datos_agente.php:181
msgid "History database"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.php:100
-#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360
+#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:358
#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274
msgid "Authentication"
msgstr ""
@@ -7015,7 +7154,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.php:126
#: ../../enterprise/meta/advanced/metasetup.php:225
-#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439
+#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:437
#: ../../godmode/setup/file_manager.php:47
#: ../../godmode/setup/file_manager.php:60
msgid "File manager"
@@ -7032,7 +7171,7 @@ msgid "Mail"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.php:150
-#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389
+#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:387
#: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325
msgid "Notifications"
msgstr ""
@@ -7104,8 +7243,8 @@ msgstr ""
#: ../../godmode/update_manager/update_manager.php:57
#: ../../godmode/update_manager/update_manager.php:87
#: ../../godmode/agentes/configurar_agente.php:405
-#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:338
-#: ../../godmode/menu.php:345 ../../godmode/setup/setup.php:389
+#: ../../godmode/agentes/configurar_agente.php:712 ../../godmode/menu.php:336
+#: ../../godmode/menu.php:343 ../../godmode/setup/setup.php:389
#: ../../godmode/setup/gis_step_2.php:63 ../../godmode/setup/gis_step_2.php:67
#: ../../godmode/setup/gis_step_2.php:100
#: ../../godmode/setup/gis_step_2.php:104
@@ -7159,39 +7298,20 @@ msgstr ""
#: ../../enterprise/operation/agentes/ver_agente.php:254
#: ../../include/functions_networkmap.php:1303
#: ../../include/functions_maps.php:42
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:346
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:349
#: ../../operation/tree.php:128 ../../operation/search_results.php:172
#: ../../operation/agentes/estado_agente.php:387
-#: ../../operation/agentes/ver_agente.php:1860
+#: ../../operation/agentes/ver_agente.php:1856
#: ../../operation/search_main.php:73
msgid "Policies"
msgstr ""
-#: ../../enterprise/meta/advanced/policymanager.apply.php:200
-#: ../../enterprise/godmode/servers/new_HA_cluster.php:86
-#: ../../enterprise/godmode/servers/HA_cluster.php:97
-#: ../../enterprise/godmode/servers/manage_export.php:69
-#: ../../enterprise/godmode/servers/manage_export_form.php:85
-#: ../../enterprise/godmode/servers/list_satellite.php:37
-#: ../../godmode/menu.php:300 ../../godmode/setup/os.php:225
-#: ../../godmode/reporting/visual_console_builder.wizard.php:353
-#: ../../godmode/servers/modificar_server.php:59
-#: ../../godmode/servers/modificar_server.php:218
-#: ../../godmode/servers/modificar_server.php:271
-#: ../../godmode/servers/plugin_registration.php:73
-#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:355
-#: ../../godmode/servers/plugin.php:802
-#: ../../mobile/include/functions_web.php:28
-#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:370
-msgid "Servers"
-msgstr ""
-
#: ../../enterprise/meta/advanced/policymanager.apply.php:213
#: ../../enterprise/meta/advanced/policymanager.queue.php:311
-#: ../../enterprise/godmode/policies/policy_queue.php:754
+#: ../../enterprise/godmode/policies/policy_queue.php:758
#: ../../enterprise/godmode/policies/policy_agents.php:964
#: ../../enterprise/godmode/policies/policy_agents.php:1348
-#: ../../include/functions_visual_map_editor.php:641
+#: ../../include/functions_visual_map_editor.php:637
msgid "Apply"
msgstr ""
@@ -7285,8 +7405,8 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:137
#: ../../enterprise/godmode/policies/policy_modules.php:529
#: ../../enterprise/godmode/setup/setup_metaconsole.php:147
-#: ../../godmode/users/user_list.php:448
-#: ../../godmode/agentes/configurar_agente.php:2188
+#: ../../godmode/users/user_list.php:449
+#: ../../godmode/agentes/configurar_agente.php:2251
#: ../../godmode/agentes/modificar_agente.php:227
#: ../../godmode/massive/massive_enable_disable_alerts.php:102
#: ../../godmode/alerts/alert_list.php:382
@@ -7298,7 +7418,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:138
#: ../../enterprise/godmode/policies/policy_modules.php:530
#: ../../enterprise/godmode/setup/setup_metaconsole.php:148
-#: ../../godmode/agentes/configurar_agente.php:2189
+#: ../../godmode/agentes/configurar_agente.php:2252
#: ../../godmode/agentes/modificar_agente.php:228
#: ../../godmode/massive/massive_enable_disable_alerts.php:102
#: ../../godmode/alerts/alert_list.php:383
@@ -7310,8 +7430,8 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:163
#: ../../enterprise/godmode/policies/policy_modules.php:546
#: ../../enterprise/godmode/setup/setup_metaconsole.php:156
-#: ../../godmode/users/user_list.php:442
-#: ../../godmode/agentes/configurar_agente.php:2213
+#: ../../godmode/users/user_list.php:443
+#: ../../godmode/agentes/configurar_agente.php:2276
#: ../../godmode/agentes/modificar_agente.php:270
#: ../../godmode/massive/massive_enable_disable_alerts.php:124
#: ../../godmode/alerts/alert_list.php:418
@@ -7373,29 +7493,30 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:502
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714
#: ../../enterprise/include/functions_reporting_csv.php:1208
-#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/graph_builder.graph_editor.php:347
#: ../../godmode/reporting/reporting_builder.item_editor.php:1290
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.elements.php:310
#: ../../godmode/reporting/visual_console_builder.wizard.php:469
#: ../../include/functions_visual_map_editor.php:67
-#: ../../include/functions_visual_map_editor.php:193
-#: ../../include/functions_visual_map_editor.php:777
-#: ../../include/functions_visual_map_editor.php:1392
-#: ../../include/functions_visual_map.php:4210
-#: ../../include/rest-api/models/VisualConsole/Item.php:1942
-#: ../../include/rest-api/models/VisualConsole/Item.php:2136
+#: ../../include/functions_visual_map_editor.php:189
+#: ../../include/functions_visual_map_editor.php:817
+#: ../../include/functions_visual_map_editor.php:1450
+#: ../../include/functions_visual_map.php:4219
+#: ../../include/rest-api/models/VisualConsole/Item.php:1947
+#: ../../include/rest-api/models/VisualConsole/Item.php:2139
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:329
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:354
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:468
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:447
#: ../../include/lib/Dashboard/Widgets/module_icon.php:347
#: ../../include/lib/Dashboard/Widgets/module_value.php:322
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:260
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:314
#: ../../include/lib/Dashboard/Widgets/module_status.php:338
-#: ../../operation/visual_console/view.php:356
+#: ../../operation/visual_console/view.php:358
msgid "Label"
msgstr ""
@@ -7483,12 +7604,12 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:227
#: ../../extensions/quick_shell.php:539
#: ../../godmode/agentes/module_manager_editor.php:750
-#: ../../godmode/agentes/agent_manager.php:905
-#: ../../godmode/massive/massive_edit_agents.php:1159
+#: ../../godmode/agentes/agent_manager.php:912
+#: ../../godmode/massive/massive_edit_agents.php:1175
#: ../../godmode/massive/massive_add_action_alerts.php:251
-#: ../../include/functions_visual_map_editor.php:893
-#: ../../operation/agentes/status_monitor.php:1022
-#: ../../operation/events/events.php:2271
+#: ../../include/functions_visual_map_editor.php:941
+#: ../../operation/agentes/status_monitor.php:1024
+#: ../../operation/events/events.php:2325
msgid "Advanced options"
msgstr ""
@@ -7588,7 +7709,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam.php:426
#: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133
#: ../../operation/agentes/ver_agente.php:1375
-#: ../../operation/agentes/ver_agente.php:1831
+#: ../../operation/agentes/ver_agente.php:1827
msgid "Manage"
msgstr ""
@@ -7631,7 +7752,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:50
#: ../../godmode/modules/manage_nc_groups.php:108
#: ../../godmode/users/profile_list.php:278
-#: ../../godmode/users/configure_user.php:530
+#: ../../godmode/users/configure_user.php:479
#: ../../godmode/agentes/configurar_agente.php:888
#: ../../godmode/agentes/planned_downtime.editor.php:660
#: ../../godmode/snmpconsole/snmp_alert.php:302
@@ -7640,7 +7761,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:553
#: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:83
#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:57
-#: ../../include/functions_alerts.php:2754
+#: ../../include/functions_alerts.php:2755
#: ../../include/class/EventSound.class.php:103
#: ../../include/class/EventSound.class.php:134
#: ../../include/class/CalendarManager.class.php:537
@@ -7660,7 +7781,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/links.php:69
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126
-#: ../../enterprise/godmode/policies/policy_modules.php:1265
+#: ../../enterprise/godmode/policies/policy_modules.php:1310
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:122
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:398
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138
@@ -7677,21 +7798,21 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_massive.php:47
#: ../../godmode/modules/manage_nc_groups.php:142
#: ../../godmode/users/profile_list.php:261
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
-#: ../../godmode/agentes/configurar_agente.php:1198
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
+#: ../../godmode/agentes/configurar_agente.php:1214
#: ../../godmode/agentes/planned_downtime.editor.php:662
-#: ../../godmode/netflow/nf_edit_form.php:140
+#: ../../godmode/netflow/nf_edit_form.php:172
#: ../../godmode/snmpconsole/snmp_alert.php:444
#: ../../godmode/snmpconsole/snmp_filters.php:110
#: ../../godmode/massive/massive_edit_modules.php:184
#: ../../godmode/alerts/configure_alert_command.php:149
-#: ../../godmode/alerts/alert_templates.php:161
+#: ../../godmode/alerts/alert_templates.php:165
#: ../../godmode/alerts/configure_alert_template.php:571
#: ../../godmode/alerts/alert_list.php:94
#: ../../godmode/alerts/alert_list.php:319 ../../godmode/setup/news.php:124
#: ../../godmode/setup/gis.php:39 ../../godmode/setup/links.php:76
-#: ../../godmode/events/event_edit_filter.php:242
-#: ../../include/functions_alerts.php:2754
+#: ../../godmode/events/event_edit_filter.php:244
+#: ../../include/functions_alerts.php:2755
#: ../../include/class/CalendarManager.class.php:534
#: ../../include/class/CalendarManager.class.php:891
#: ../../include/functions_planned_downtimes.php:125
@@ -7750,7 +7871,7 @@ msgstr ""
#: ../../enterprise/include/class/CommandCenter.class.php:145
#: ../../godmode/netflow/nf_item_list.php:49
#: ../../operation/agentes/ver_agente.php:1390
-#: ../../operation/agentes/ver_agente.php:1835
+#: ../../operation/agentes/ver_agente.php:1831
msgid "Main"
msgstr ""
@@ -7826,52 +7947,67 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:787
#: ../../extensions/insert_data.php:226 ../../extensions/insert_data.php:230
#: ../../extensions/insert_data.php:235
-#: ../../godmode/agentes/status_monitor_custom_fields.php:113
-#: ../../godmode/agentes/status_monitor_custom_fields.php:150
+#: ../../godmode/agentes/status_monitor_custom_fields.php:133
+#: ../../godmode/agentes/status_monitor_custom_fields.php:170
#: ../../godmode/events/custom_events.php:113
-#: ../../mobile/operation/modules.php:715
-#: ../../mobile/operation/modules.php:718
-#: ../../mobile/operation/modules.php:719
-#: ../../mobile/operation/modules.php:720
-#: ../../mobile/operation/modules.php:721
-#: ../../mobile/operation/modules.php:722
-#: ../../mobile/operation/modules.php:723
-#: ../../mobile/operation/modules.php:724
-#: ../../mobile/operation/modules.php:725
-#: ../../mobile/operation/modules.php:727
+#: ../../mobile/operation/modules.php:726
#: ../../mobile/operation/modules.php:730
#: ../../mobile/operation/modules.php:731
#: ../../mobile/operation/modules.php:732
#: ../../mobile/operation/modules.php:733
#: ../../mobile/operation/modules.php:734
#: ../../mobile/operation/modules.php:735
-#: ../../mobile/operation/modules.php:736
#: ../../mobile/operation/modules.php:737
-#: ../../mobile/operation/modules.php:853
-#: ../../include/functions_reporting_html.php:2357
-#: ../../include/functions_reporting_html.php:2836
-#: ../../include/functions_reporting_html.php:2840
-#: ../../include/functions_reporting_html.php:2841
-#: ../../include/functions_reporting_html.php:2845
-#: ../../include/functions_reporting_html.php:2850
-#: ../../include/functions_reporting_html.php:2855
-#: ../../include/functions_reporting_html.php:2859
+#: ../../mobile/operation/modules.php:740
+#: ../../mobile/operation/modules.php:741
+#: ../../mobile/operation/modules.php:742
+#: ../../mobile/operation/modules.php:743
+#: ../../mobile/operation/modules.php:744
+#: ../../mobile/operation/modules.php:745
+#: ../../mobile/operation/modules.php:749
+#: ../../mobile/operation/modules.php:750
+#: ../../mobile/operation/modules.php:751
+#: ../../mobile/operation/modules.php:752
+#: ../../mobile/operation/modules.php:753
+#: ../../mobile/operation/modules.php:754
+#: ../../mobile/operation/modules.php:755
+#: ../../mobile/operation/modules.php:756
+#: ../../mobile/operation/modules.php:758
+#: ../../mobile/operation/modules.php:761
+#: ../../mobile/operation/modules.php:762
+#: ../../mobile/operation/modules.php:763
+#: ../../mobile/operation/modules.php:764
+#: ../../mobile/operation/modules.php:765
+#: ../../mobile/operation/modules.php:766
+#: ../../mobile/operation/modules.php:767
+#: ../../mobile/operation/modules.php:768
+#: ../../mobile/operation/modules.php:912
+#: ../../mobile/operation/module_data.php:164
+#: ../../include/functions_reporting_html.php:2378
#: ../../include/functions_reporting_html.php:2864
-#: ../../include/functions_reporting_html.php:2871
-#: ../../include/functions_reporting_html.php:2921
-#: ../../include/functions_reporting_html.php:2995
-#: ../../include/ajax/module.php:1005 ../../include/ajax/custom_fields.php:412
-#: ../../include/functions_graph.php:3504
+#: ../../include/functions_reporting_html.php:2868
+#: ../../include/functions_reporting_html.php:2869
+#: ../../include/functions_reporting_html.php:2873
+#: ../../include/functions_reporting_html.php:2878
+#: ../../include/functions_reporting_html.php:2883
+#: ../../include/functions_reporting_html.php:2887
+#: ../../include/functions_reporting_html.php:2892
+#: ../../include/functions_reporting_html.php:2899
+#: ../../include/functions_reporting_html.php:2949
+#: ../../include/functions_reporting_html.php:3023
+#: ../../include/ajax/heatmap.ajax.php:336 ../../include/ajax/module.php:1028
+#: ../../include/ajax/custom_fields.php:412
+#: ../../include/functions_graph.php:3514
#: ../../include/functions_netflow.php:301
-#: ../../include/functions_reporting.php:4729
-#: ../../include/functions_reporting.php:4770
+#: ../../include/functions_reporting.php:4738
+#: ../../include/functions_reporting.php:4779
#: ../../include/functions_events.php:218
#: ../../include/functions_events.php:301
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1590
+#: ../../operation/agentes/status_monitor.php:1592
#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_modules.php:38
+#: ../../operation/search_modules.php:41
msgid "Data"
msgstr ""
@@ -7929,7 +8065,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collections.editor.php:74
#: ../../enterprise/godmode/agentes/collections.editor.php:463
#: ../../enterprise/include/functions_collection.php:186
-#: ../../operation/agentes/ver_agente.php:1679
+#: ../../operation/agentes/ver_agente.php:1675
msgid "Files"
msgstr ""
@@ -8030,7 +8166,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collections.editor.php:179
#: ../../enterprise/godmode/agentes/collections.editor.php:245
#: ../../godmode/servers/plugin.php:171
-#: ../../include/functions_filemanager.php:776
+#: ../../include/functions_filemanager.php:791
msgid "Edit file"
msgstr ""
@@ -8116,27 +8252,28 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037
#: ../../enterprise/godmode/wizards/consoletask_js.php:41
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410
-#: ../../enterprise/operation/log/log_viewer.php:1195
-#: ../../enterprise/operation/log/log_viewer.php:1210
+#: ../../enterprise/operation/log/log_viewer.php:1193
+#: ../../enterprise/operation/log/log_viewer.php:1208
#: ../../enterprise/operation/services/services.treeview_services.php:410
#: ../../extensions/insert_data.php:279
-#: ../../godmode/agentes/planned_downtime.editor.php:2011
+#: ../../godmode/agentes/planned_downtime.editor.php:2007
#: ../../godmode/alerts/configure_alert_template.php:1506
#: ../../godmode/alerts/configure_alert_template.php:1590
-#: ../../godmode/setup/news.php:431
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5162
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:737
-#: ../../operation/tree.php:625 ../../operation/agentes/stat_win.php:585
-#: ../../operation/agentes/interface_traffic_graph_win.php:436
-#: ../../operation/agentes/datos_agente.php:312
-#: ../../operation/agentes/estado_monitores.php:464
+#: ../../godmode/setup/news.php:430
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5171
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:730
+#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:601
+#: ../../operation/agentes/interface_traffic_graph_win.php:445
+#: ../../operation/agentes/datos_agente.php:314
+#: ../../operation/agentes/estado_monitores.php:461
#: ../../operation/network/network_report.php:457
#: ../../operation/network/network_usage_map.php:294
-#: ../../operation/netflow/nf_live_view.php:865
+#: ../../operation/netflow/nf_live_view.php:976
+#: ../../operation/search_modules.php:353
#: ../../operation/reporting/reporting_viewer.php:360
#: ../../operation/reporting/reporting_viewer.php:379
#: ../../operation/reporting/graph_viewer.php:466
-#: ../../operation/events/events.php:3223
+#: ../../operation/events/events.php:3282
msgid "Choose time"
msgstr ""
@@ -8148,28 +8285,29 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4101
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4411
#: ../../enterprise/include/lib/Metaconsole/Node.php:539
-#: ../../enterprise/operation/log/log_viewer.php:1196
-#: ../../enterprise/operation/log/log_viewer.php:1211
+#: ../../enterprise/operation/log/log_viewer.php:1194
+#: ../../enterprise/operation/log/log_viewer.php:1209
#: ../../enterprise/operation/services/services.treeview_services.php:411
#: ../../extensions/insert_data.php:280
-#: ../../godmode/agentes/planned_downtime.editor.php:2012
+#: ../../godmode/agentes/planned_downtime.editor.php:2008
#: ../../godmode/alerts/configure_alert_template.php:1507
#: ../../godmode/alerts/configure_alert_template.php:1591
-#: ../../godmode/setup/news.php:432
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5163
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:738
-#: ../../operation/tree.php:626 ../../operation/agentes/stat_win.php:586
-#: ../../operation/agentes/interface_traffic_graph_win.php:437
-#: ../../operation/agentes/datos_agente.php:313
-#: ../../operation/agentes/estado_monitores.php:465
+#: ../../godmode/setup/news.php:431
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5172
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:731
+#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:602
+#: ../../operation/agentes/interface_traffic_graph_win.php:446
+#: ../../operation/agentes/datos_agente.php:315
+#: ../../operation/agentes/estado_monitores.php:462
#: ../../operation/network/network_report.php:458
#: ../../operation/network/network_usage_map.php:295
-#: ../../operation/netflow/nf_live_view.php:866
+#: ../../operation/netflow/nf_live_view.php:977
+#: ../../operation/search_modules.php:354
#: ../../operation/reporting/reporting_viewer.php:361
#: ../../operation/reporting/reporting_viewer.php:380
#: ../../operation/reporting/graph_viewer.php:333
#: ../../operation/reporting/graph_viewer.php:467
-#: ../../operation/events/events.php:3224
+#: ../../operation/events/events.php:3283
msgid "Time"
msgstr ""
@@ -8180,28 +8318,29 @@ msgstr ""
#: ../../enterprise/godmode/wizards/consoletask_js.php:43
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4102
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4412
-#: ../../enterprise/operation/log/log_viewer.php:1197
-#: ../../enterprise/operation/log/log_viewer.php:1212
+#: ../../enterprise/operation/log/log_viewer.php:1195
+#: ../../enterprise/operation/log/log_viewer.php:1210
#: ../../enterprise/operation/services/services.treeview_services.php:412
#: ../../extensions/insert_data.php:281
-#: ../../godmode/agentes/planned_downtime.editor.php:2013
+#: ../../godmode/agentes/planned_downtime.editor.php:2009
#: ../../godmode/alerts/configure_alert_template.php:1508
#: ../../godmode/alerts/configure_alert_template.php:1592
-#: ../../godmode/setup/news.php:433
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5164
-#: ../../include/functions_html.php:2319
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:739
-#: ../../operation/tree.php:627 ../../operation/agentes/stat_win.php:587
-#: ../../operation/agentes/interface_traffic_graph_win.php:438
-#: ../../operation/agentes/datos_agente.php:314
-#: ../../operation/agentes/estado_monitores.php:466
+#: ../../godmode/setup/news.php:432
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5173
+#: ../../include/functions_html.php:2334
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:732
+#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:603
+#: ../../operation/agentes/interface_traffic_graph_win.php:447
+#: ../../operation/agentes/datos_agente.php:316
+#: ../../operation/agentes/estado_monitores.php:463
#: ../../operation/network/network_report.php:459
#: ../../operation/network/network_usage_map.php:296
-#: ../../operation/netflow/nf_live_view.php:867
+#: ../../operation/netflow/nf_live_view.php:978
+#: ../../operation/search_modules.php:355
#: ../../operation/reporting/reporting_viewer.php:362
#: ../../operation/reporting/reporting_viewer.php:381
#: ../../operation/reporting/graph_viewer.php:468
-#: ../../operation/events/events.php:3225
+#: ../../operation/events/events.php:3284
msgid "Hour"
msgstr ""
@@ -8212,28 +8351,29 @@ msgstr ""
#: ../../enterprise/godmode/wizards/consoletask_js.php:44
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4103
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4413
-#: ../../enterprise/operation/log/log_viewer.php:1198
-#: ../../enterprise/operation/log/log_viewer.php:1213
+#: ../../enterprise/operation/log/log_viewer.php:1196
+#: ../../enterprise/operation/log/log_viewer.php:1211
#: ../../enterprise/operation/services/services.treeview_services.php:413
#: ../../extensions/insert_data.php:282
-#: ../../godmode/agentes/planned_downtime.editor.php:2014
+#: ../../godmode/agentes/planned_downtime.editor.php:2010
#: ../../godmode/alerts/configure_alert_template.php:1509
#: ../../godmode/alerts/configure_alert_template.php:1593
-#: ../../godmode/setup/news.php:434
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5165
-#: ../../include/functions_html.php:2320
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:740
-#: ../../operation/tree.php:628 ../../operation/agentes/stat_win.php:588
-#: ../../operation/agentes/interface_traffic_graph_win.php:439
-#: ../../operation/agentes/datos_agente.php:315
-#: ../../operation/agentes/estado_monitores.php:467
+#: ../../godmode/setup/news.php:433
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5174
+#: ../../include/functions_html.php:2335
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:733
+#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:604
+#: ../../operation/agentes/interface_traffic_graph_win.php:448
+#: ../../operation/agentes/datos_agente.php:317
+#: ../../operation/agentes/estado_monitores.php:464
#: ../../operation/network/network_report.php:460
#: ../../operation/network/network_usage_map.php:297
-#: ../../operation/netflow/nf_live_view.php:868
+#: ../../operation/netflow/nf_live_view.php:979
+#: ../../operation/search_modules.php:356
#: ../../operation/reporting/reporting_viewer.php:363
#: ../../operation/reporting/reporting_viewer.php:382
#: ../../operation/reporting/graph_viewer.php:469
-#: ../../operation/events/events.php:3226
+#: ../../operation/events/events.php:3285
msgid "Minute"
msgstr ""
@@ -8244,27 +8384,28 @@ msgstr ""
#: ../../enterprise/godmode/wizards/consoletask_js.php:45
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4104
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4414
-#: ../../enterprise/operation/log/log_viewer.php:1199
-#: ../../enterprise/operation/log/log_viewer.php:1214
+#: ../../enterprise/operation/log/log_viewer.php:1197
+#: ../../enterprise/operation/log/log_viewer.php:1212
#: ../../enterprise/operation/services/services.treeview_services.php:414
#: ../../extensions/insert_data.php:283
-#: ../../godmode/agentes/planned_downtime.editor.php:2015
+#: ../../godmode/agentes/planned_downtime.editor.php:2011
#: ../../godmode/alerts/configure_alert_template.php:1510
#: ../../godmode/alerts/configure_alert_template.php:1594
-#: ../../godmode/setup/news.php:435
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5166
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:741
-#: ../../operation/tree.php:629 ../../operation/agentes/stat_win.php:589
-#: ../../operation/agentes/interface_traffic_graph_win.php:440
-#: ../../operation/agentes/datos_agente.php:316
-#: ../../operation/agentes/estado_monitores.php:468
+#: ../../godmode/setup/news.php:434
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5175
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:734
+#: ../../operation/tree.php:631 ../../operation/agentes/stat_win.php:605
+#: ../../operation/agentes/interface_traffic_graph_win.php:449
+#: ../../operation/agentes/datos_agente.php:318
+#: ../../operation/agentes/estado_monitores.php:465
#: ../../operation/network/network_report.php:461
#: ../../operation/network/network_usage_map.php:298
-#: ../../operation/netflow/nf_live_view.php:869
+#: ../../operation/netflow/nf_live_view.php:980
+#: ../../operation/search_modules.php:357
#: ../../operation/reporting/reporting_viewer.php:364
#: ../../operation/reporting/reporting_viewer.php:383
#: ../../operation/reporting/graph_viewer.php:470
-#: ../../operation/events/events.php:3227
+#: ../../operation/events/events.php:3286
msgid "Second"
msgstr ""
@@ -8275,36 +8416,37 @@ msgstr ""
#: ../../enterprise/godmode/wizards/consoletask_js.php:46
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4105
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4415
-#: ../../enterprise/operation/log/log_viewer.php:1200
-#: ../../enterprise/operation/log/log_viewer.php:1215
+#: ../../enterprise/operation/log/log_viewer.php:1198
+#: ../../enterprise/operation/log/log_viewer.php:1213
#: ../../enterprise/operation/services/services.treeview_services.php:415
#: ../../extensions/insert_data.php:284
-#: ../../godmode/agentes/planned_downtime.editor.php:2016
+#: ../../godmode/agentes/planned_downtime.editor.php:2012
#: ../../godmode/alerts/configure_alert_template.php:1511
#: ../../godmode/alerts/configure_alert_template.php:1595
-#: ../../godmode/setup/news.php:436
-#: ../../godmode/reporting/reporting_builder.item_editor.php:5167
+#: ../../godmode/setup/news.php:435
+#: ../../godmode/reporting/reporting_builder.item_editor.php:5176
#: ../../include/functions.php:515 ../../include/functions.php:646
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:742
-#: ../../operation/tree.php:630 ../../operation/agentes/stat_win.php:590
-#: ../../operation/agentes/interface_traffic_graph_win.php:441
-#: ../../operation/agentes/datos_agente.php:317
-#: ../../operation/agentes/estado_monitores.php:469
-#: ../../operation/agentes/agent_inventory.php:133
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:735
+#: ../../operation/tree.php:632 ../../operation/agentes/stat_win.php:606
+#: ../../operation/agentes/interface_traffic_graph_win.php:450
+#: ../../operation/agentes/datos_agente.php:319
+#: ../../operation/agentes/estado_monitores.php:466
+#: ../../operation/agentes/agent_inventory.php:141
#: ../../operation/network/network_report.php:462
#: ../../operation/network/network_usage_map.php:299
-#: ../../operation/netflow/nf_live_view.php:870
+#: ../../operation/netflow/nf_live_view.php:981
+#: ../../operation/search_modules.php:358
#: ../../operation/reporting/reporting_viewer.php:365
#: ../../operation/reporting/reporting_viewer.php:384
#: ../../operation/reporting/graph_viewer.php:471
-#: ../../operation/events/events.php:3228
+#: ../../operation/events/events.php:3287
msgid "Now"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:78
#: ../../enterprise/godmode/modules/configure_local_component.php:166
#: ../../godmode/modules/manage_network_components_form_common.php:52
-#: ../../godmode/users/configure_user.php:1405
+#: ../../godmode/users/configure_user.php:1454
#: ../../godmode/alerts/alert_commands.php:143
#: ../../godmode/alerts/alert_commands.php:184
#: ../../godmode/alerts/configure_alert_template.php:953
@@ -8330,19 +8472,19 @@ msgstr ""
#: ../../godmode/setup/setup_general.php:58
#: ../../mobile/operation/events.php:248
#: ../../include/functions_reporting_html.php:1142
-#: ../../include/functions_reporting_html.php:2701
+#: ../../include/functions_reporting_html.php:2720
#: ../../include/functions.php:1291
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430
#: ../../include/functions_events.php:2609
-#: ../../include/functions_events.php:3162
-#: ../../operation/events/events.php:833
+#: ../../include/functions_events.php:3167
+#: ../../operation/events/events.php:838
msgid "System"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:111
#: ../../godmode/setup/setup_general.php:59
-#: ../../include/functions_menu.php:937
+#: ../../include/functions_menu.php:942
msgid "Database"
msgstr ""
@@ -8398,7 +8540,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:192
#: ../../enterprise/godmode/setup/setup_auth.php:353
#: ../../godmode/setup/setup_general.php:80
-#: ../../include/functions_visual_map_editor.php:290
+#: ../../include/functions_visual_map_editor.php:286
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:271
#: ../../include/functions_register.php:134
msgid "Africa"
@@ -8407,7 +8549,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:193
#: ../../enterprise/godmode/setup/setup_auth.php:354
#: ../../godmode/setup/setup_general.php:81
-#: ../../include/functions_visual_map_editor.php:291
+#: ../../include/functions_visual_map_editor.php:287
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:272
#: ../../include/functions_register.php:135
msgid "America"
@@ -8416,7 +8558,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:194
#: ../../enterprise/godmode/setup/setup_auth.php:355
#: ../../godmode/setup/setup_general.php:82
-#: ../../include/functions_visual_map_editor.php:292
+#: ../../include/functions_visual_map_editor.php:288
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:273
#: ../../include/functions_register.php:136
msgid "Antarctica"
@@ -8425,7 +8567,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:195
#: ../../enterprise/godmode/setup/setup_auth.php:356
#: ../../godmode/setup/setup_general.php:83
-#: ../../include/functions_visual_map_editor.php:293
+#: ../../include/functions_visual_map_editor.php:289
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:274
#: ../../include/functions_register.php:137
msgid "Arctic"
@@ -8434,7 +8576,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:196
#: ../../enterprise/godmode/setup/setup_auth.php:357
#: ../../godmode/setup/setup_general.php:84
-#: ../../include/functions_visual_map_editor.php:294
+#: ../../include/functions_visual_map_editor.php:290
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:275
#: ../../include/functions_register.php:138
msgid "Asia"
@@ -8443,7 +8585,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:197
#: ../../enterprise/godmode/setup/setup_auth.php:358
#: ../../godmode/setup/setup_general.php:85
-#: ../../include/functions_visual_map_editor.php:295
+#: ../../include/functions_visual_map_editor.php:291
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:276
#: ../../include/functions_register.php:139
msgid "Atlantic"
@@ -8452,7 +8594,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:198
#: ../../enterprise/godmode/setup/setup_auth.php:359
#: ../../godmode/setup/setup_general.php:86
-#: ../../include/functions_visual_map_editor.php:296
+#: ../../include/functions_visual_map_editor.php:292
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:277
#: ../../include/functions_register.php:140
msgid "Australia"
@@ -8461,7 +8603,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:199
#: ../../enterprise/godmode/setup/setup_auth.php:360
#: ../../godmode/setup/setup_general.php:87
-#: ../../include/functions_visual_map_editor.php:297
+#: ../../include/functions_visual_map_editor.php:293
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:278
#: ../../include/functions_register.php:141
msgid "Europe"
@@ -8470,7 +8612,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:200
#: ../../enterprise/godmode/setup/setup_auth.php:361
#: ../../godmode/setup/setup_general.php:88
-#: ../../include/functions_visual_map_editor.php:298
+#: ../../include/functions_visual_map_editor.php:294
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:279
#: ../../include/functions_register.php:142
msgid "Indian"
@@ -8479,7 +8621,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:201
#: ../../enterprise/godmode/setup/setup_auth.php:362
#: ../../godmode/setup/setup_general.php:89
-#: ../../include/functions_visual_map_editor.php:299
+#: ../../include/functions_visual_map_editor.php:295
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:280
#: ../../include/functions_register.php:143
msgid "Pacific"
@@ -8488,7 +8630,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:202
#: ../../enterprise/godmode/setup/setup_auth.php:363
#: ../../godmode/setup/setup_general.php:90
-#: ../../include/functions_visual_map_editor.php:300
+#: ../../include/functions_visual_map_editor.php:296
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:281
#: ../../include/functions_register.php:144
msgid "UTC"
@@ -8501,7 +8643,6 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:232
#: ../../enterprise/meta/include/functions_meta.php:161
-#: ../../godmode/setup/setup_general.php:434
#: ../../include/functions_register.php:164
#: ../../include/functions_config.php:283
msgid "Timezone setup"
@@ -8541,9 +8682,9 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:306
#: ../../godmode/setup/setup_sflow.php:75
-#: ../../godmode/setup/setup_netflow.php:75
-#: ../../include/functions_config.php:1560
-#: ../../include/functions_config.php:1603
+#: ../../godmode/setup/setup_netflow.php:71
+#: ../../include/functions_config.php:1572
+#: ../../include/functions_config.php:1615
msgid "Disable custom live view filters"
msgstr ""
@@ -8602,7 +8743,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:437
#: ../../enterprise/meta/include/functions_meta.php:276
#: ../../enterprise/godmode/setup/setup.php:106
-#: ../../include/functions_config.php:442
+#: ../../include/functions_config.php:450
msgid "Size of collection"
msgstr ""
@@ -8658,16 +8799,19 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:598
#: ../../enterprise/meta/include/functions_meta.php:326
#: ../../godmode/setup/setup_general.php:698
-#: ../../include/functions_config.php:386
+#: ../../include/functions_config.php:390
msgid "Enable console report"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:605
#: ../../enterprise/meta/include/functions_meta.php:346
+#: ../../godmode/setup/setup_general.php:708
+#: ../../include/functions_config.php:394
msgid "Check conexion interval"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:616
+#: ../../godmode/setup/setup_general.php:719
msgid ""
"If there are any "In process" events with a specific Extra ID and "
"a New event with that Extra ID is received, it will be created as "In "
@@ -8676,12 +8820,13 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.setup.php:639
#: ../../enterprise/meta/include/functions_meta.php:336
+#: ../../godmode/setup/setup_general.php:724
msgid "Keep In process status for new events with extra ID"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.sync.php:247
#: ../../enterprise/meta/include/functions_groups_meta.php:174
-#: ../../godmode/groups/group_list.php:664
+#: ../../godmode/groups/group_list.php:665
#, php-format
msgid "Error connecting to %s"
msgstr ""
@@ -8742,25 +8887,25 @@ msgstr ""
#: ../../enterprise/include/functions_log.php:279
#: ../../enterprise/include/functions_log.php:282
#: ../../enterprise/include/class/LogSource.class.php:602
-#: ../../enterprise/operation/log/log_viewer.php:793
+#: ../../enterprise/operation/log/log_viewer.php:791
#: ../../godmode/massive/massive_copy_modules.php:144
#: ../../godmode/reporting/reporting_builder.item_editor.php:1677
-#: ../../godmode/events/event_edit_filter.php:797
+#: ../../godmode/events/event_edit_filter.php:799
#: ../../godmode/events/custom_events.php:107
#: ../../include/functions_events.php:212
#: ../../include/functions_events.php:283
-#: ../../include/functions_events.php:4554
-#: ../../include/functions_events.php:4636
+#: ../../include/functions_events.php:4559
+#: ../../include/functions_events.php:4641
#: ../../operation/agentes/log_sources_status.php:56
#: ../../operation/agentes/pandora_networkmap.editor.php:425
#: ../../operation/agentes/pandora_networkmap.view.php:173
-#: ../../operation/events/events.php:1886
+#: ../../operation/events/events.php:1940
msgid "Source"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.sync.php:308
#: ../../extensions/dbmanager.php:191
-#: ../../include/lib/Dashboard/Widget.php:610
+#: ../../include/lib/Dashboard/Widget.php:611
msgid "This metaconsole"
msgstr ""
@@ -8770,26 +8915,27 @@ msgstr ""
#: ../../enterprise/extensions/resource_exportation/functions.php:35
#: ../../enterprise/godmode/agentes/collection_manager.php:260
#: ../../enterprise/godmode/agentes/plugins_manager.php:213
-#: ../../enterprise/godmode/policies/policy_queue.php:286
-#: ../../enterprise/godmode/policies/policy_queue.php:685
+#: ../../enterprise/godmode/policies/policy_queue.php:288
+#: ../../enterprise/godmode/policies/policy_queue.php:687
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:116
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:208
#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:108
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:114
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:462
#: ../../enterprise/include/functions_policies.php:4043
#: ../../enterprise/operation/agentes/policy_view.php:67
#: ../../enterprise/operation/agentes/collection_view.php:83
-#: ../../godmode/agentes/status_monitor_custom_fields.php:73
-#: ../../godmode/agentes/status_monitor_custom_fields.php:140
+#: ../../godmode/agentes/status_monitor_custom_fields.php:93
+#: ../../godmode/agentes/status_monitor_custom_fields.php:160
#: ../../godmode/agentes/inventory_manager.php:232
#: ../../godmode/agentes/module_manager.php:619
#: ../../godmode/alerts/alert_view.php:154
-#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:999
-#: ../../operation/agentes/alerts_status.php:249
+#: ../../include/ajax/alert_list.ajax.php:285
+#: ../../include/ajax/module.php:1022
#: ../../operation/agentes/alerts_status.php:250
-#: ../../operation/agentes/status_monitor.php:1531
+#: ../../operation/agentes/alerts_status.php:251
+#: ../../operation/agentes/status_monitor.php:1533
msgid "Policy"
msgstr ""
@@ -8834,12 +8980,12 @@ msgstr ""
#: ../../enterprise/operation/agentes/wux_console_view.php:342
#: ../../enterprise/operation/agentes/wux_console_view.php:363
#: ../../godmode/setup/performance.php:193
-#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199
+#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:208
msgid "ago"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.performance.php:112
-#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125
+#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:125
#: ../../godmode/setup/setup.php:279
msgid "Performance"
msgstr ""
@@ -8858,14 +9004,14 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.performance.php:139
#: ../../enterprise/meta/include/functions_meta.php:2030
#: ../../godmode/setup/performance.php:293
-#: ../../include/functions_config.php:842
+#: ../../include/functions_config.php:854
msgid "Max. days before delete audit events"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.performance.php:154
#: ../../enterprise/meta/include/functions_meta.php:2040
#: ../../godmode/setup/performance.php:637
-#: ../../include/functions_config.php:882
+#: ../../include/functions_config.php:894
msgid "Default hours for event view"
msgstr ""
@@ -8893,21 +9039,21 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.performance.php:211
#: ../../godmode/setup/performance.php:761
-#: ../../include/functions_config.php:944
+#: ../../include/functions_config.php:956
msgid "Row limit in csv log"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.performance.php:226
#: ../../enterprise/meta/include/functions_meta.php:2103
#: ../../godmode/setup/performance.php:425
-#: ../../include/functions_config.php:918
+#: ../../include/functions_config.php:930
msgid "Max. macro data fields"
msgstr ""
#: ../../enterprise/meta/advanced/metasetup.performance.php:241
#: ../../enterprise/meta/include/functions_meta.php:2113
#: ../../godmode/setup/performance.php:601
-#: ../../include/functions_config.php:874
+#: ../../include/functions_config.php:886
msgid "Limit of events per query"
msgstr ""
@@ -8915,7 +9061,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2123
#: ../../godmode/setup/performance.php:338
#: ../../godmode/setup/performance.php:470
-#: ../../include/functions_config.php:850
+#: ../../include/functions_config.php:862
msgid "Max. days before purge"
msgstr ""
@@ -8973,7 +9119,7 @@ msgid "To manage collections you must activate centralized management"
msgstr ""
#: ../../enterprise/meta/advanced/collections.php:227
-#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493
+#: ../../godmode/users/user_list.php:489 ../../godmode/users/user_list.php:494
msgid "Search by username, fullname or email"
msgstr ""
@@ -8988,7 +9134,7 @@ msgstr ""
#: ../../enterprise/include/functions_groups.php:81
#: ../../enterprise/operation/agentes/ver_agente.php:210
#: ../../godmode/agentes/configurar_agente.php:716
-#: ../../operation/agentes/ver_agente.php:1856
+#: ../../operation/agentes/ver_agente.php:1852
msgid "Collection"
msgstr ""
@@ -9002,7 +9148,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/collections.php:442
#: ../../enterprise/godmode/agentes/collections.php:537
-#: ../../operation/agentes/status_monitor.php:2257
+#: ../../operation/agentes/status_monitor.php:2259
msgid "Are you sure to delete?"
msgstr ""
@@ -9056,12 +9202,12 @@ msgid "There are no collections defined yet."
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:58
-#: ../../enterprise/godmode/policies/policy_queue.php:96
+#: ../../enterprise/godmode/policies/policy_queue.php:98
msgid "Operation successfully deleted from the queue"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:59
-#: ../../enterprise/godmode/policies/policy_queue.php:97
+#: ../../enterprise/godmode/policies/policy_queue.php:99
msgid "Operation cannot be deleted from the queue"
msgstr ""
@@ -9069,42 +9215,42 @@ msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:259
#: ../../enterprise/meta/include/functions_autoprovision.php:698
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:501
-#: ../../enterprise/godmode/policies/policy_queue.php:311
-#: ../../enterprise/godmode/policies/policy_queue.php:687
+#: ../../enterprise/godmode/policies/policy_queue.php:313
+#: ../../enterprise/godmode/policies/policy_queue.php:689
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3815
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:176
#: ../../enterprise/include/functions_reporting_csv.php:1064
#: ../../enterprise/include/class/CommandCenter.class.php:453
#: ../../extensions/api_checker.php:279 ../../godmode/extensions.php:169
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4642
-#: ../../include/functions_reporting_html.php:2460
-#: ../../include/functions_reporting_html.php:4959
-#: ../../include/functions_menu.php:675
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4651
+#: ../../include/functions_reporting_html.php:2481
+#: ../../include/functions_reporting_html.php:4987
+#: ../../include/functions_menu.php:679
#: ../../include/class/ExternalTools.class.php:571
-#: ../../general/main_menu.php:78 ../../general/main_menu.php:85
+#: ../../general/main_menu.php:79 ../../general/main_menu.php:86
msgid "Operation"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:218
-#: ../../enterprise/godmode/policies/policy_queue.php:305
+#: ../../enterprise/godmode/policies/policy_queue.php:307
msgid "Apply (database and files)"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:219
#: ../../enterprise/meta/advanced/policymanager.queue.php:315
-#: ../../enterprise/godmode/policies/policy_queue.php:306
-#: ../../enterprise/godmode/policies/policy_queue.php:758
+#: ../../enterprise/godmode/policies/policy_queue.php:308
+#: ../../enterprise/godmode/policies/policy_queue.php:762
msgid "Apply (only database)"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:229
-#: ../../enterprise/godmode/policies/policy_queue.php:330
+#: ../../enterprise/godmode/policies/policy_queue.php:332
msgid "Complete"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:230
-#: ../../enterprise/godmode/policies/policy_queue.php:331
+#: ../../enterprise/godmode/policies/policy_queue.php:333
msgid "Incomplete"
msgstr ""
@@ -9115,13 +9261,13 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collection_manager.php:94
#: ../../enterprise/godmode/agentes/collection_manager.php:95
#: ../../enterprise/godmode/agentes/collections.php:458
-#: ../../enterprise/godmode/policies/policy_modules.php:1494
-#: ../../enterprise/godmode/policies/policy_queue.php:356
+#: ../../enterprise/godmode/policies/policy_modules.php:1539
+#: ../../enterprise/godmode/policies/policy_queue.php:358
#: ../../enterprise/godmode/policies/policies.php:341
#: ../../enterprise/godmode/policies/policy_linking.php:152
#: ../../enterprise/godmode/policies/policy_external_alerts.php:393
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:209
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:269
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:274
#: ../../enterprise/godmode/setup/setup_acl.php:495
#: ../../enterprise/include/class/SAPView.class.php:409
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928
@@ -9131,19 +9277,19 @@ msgstr ""
#: ../../enterprise/operation/services/services.treeview_services.php:164
#: ../../enterprise/operation/services/services.treeview_services.php:187
#: ../../enterprise/operation/services/services.list.php:482
-#: ../../extensions/agents_modules.php:665
+#: ../../extensions/agents_modules.php:673
#: ../../extensions/module_groups.php:305
#: ../../godmode/modules/manage_network_templates_form.php:277
#: ../../godmode/modules/manage_network_templates_form.php:337
-#: ../../godmode/modules/manage_network_components.php:697
-#: ../../godmode/groups/group_list.php:799
-#: ../../godmode/users/user_list.php:521 ../../godmode/users/user_list.php:522
+#: ../../godmode/modules/manage_network_components.php:700
+#: ../../godmode/groups/group_list.php:800
+#: ../../godmode/users/user_list.php:522 ../../godmode/users/user_list.php:523
#: ../../godmode/agentes/modificar_agente.php:397
#: ../../godmode/agentes/modificar_agente.php:412
#: ../../godmode/agentes/modificar_agente.php:413
#: ../../godmode/agentes/planned_downtime.list.php:647
#: ../../godmode/netflow/nf_item_list.php:174
-#: ../../godmode/netflow/nf_edit_form.php:238
+#: ../../godmode/netflow/nf_edit_form.php:283
#: ../../godmode/snmpconsole/snmp_alert.php:1797
#: ../../godmode/snmpconsole/snmp_filters.php:216
#: ../../godmode/snmpconsole/snmp_filters.php:314
@@ -9151,32 +9297,33 @@ msgstr ""
#: ../../godmode/reporting/map_builder.php:384
#: ../../godmode/reporting/graphs.php:283
#: ../../godmode/reporting/visual_console_favorite.php:204
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1120
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1122
#: ../../godmode/reporting/reporting_builder.php:766
-#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652
-#: ../../include/functions_ui.php:3697
+#: ../../godmode/tag/tag.php:248 ../../include/ajax/agent.php:652
+#: ../../include/functions_ui.php:3745
#: ../../include/class/ModuleTemplates.class.php:713
-#: ../../operation/tree.php:339 ../../operation/agentes/estado_agente.php:444
+#: ../../operation/tree.php:341 ../../operation/agentes/estado_agente.php:444
#: ../../operation/agentes/graphs.php:270
#: ../../operation/agentes/interface_view.functions.php:134
-#: ../../operation/agentes/status_monitor.php:1034
-#: ../../operation/agentes/estado_monitores.php:626
+#: ../../operation/agentes/status_monitor.php:1036
+#: ../../operation/agentes/estado_monitores.php:620
+#: ../../operation/agentes/agent_inventory.php:165
#: ../../operation/network/network_report.php:205
#: ../../operation/network/network_usage_map.php:249
#: ../../operation/network/network_usage_map.php:250
-#: ../../operation/netflow/nf_live_view.php:273
-#: ../../operation/netflow/nf_live_view.php:605
-#: ../../operation/netflow/nf_live_view.php:606
+#: ../../operation/netflow/nf_live_view.php:282
+#: ../../operation/netflow/nf_live_view.php:678
+#: ../../operation/netflow/nf_live_view.php:679
#: ../../operation/incidents/list_integriaims_incidents.php:470
-#: ../../operation/inventory/inventory.php:704
+#: ../../operation/inventory/inventory.php:705
#: ../../operation/reporting/graph_viewer.php:399
msgid "Filter"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:246
#: ../../enterprise/meta/agentsearch.php:111
-#: ../../godmode/alerts/alert_templates.php:357
-#: ../../godmode/alerts/alert_templates.php:358
+#: ../../godmode/alerts/alert_templates.php:361
+#: ../../godmode/alerts/alert_templates.php:362
msgid "Show Options"
msgstr ""
@@ -9194,21 +9341,21 @@ msgstr ""
#: ../../enterprise/include/class/CSVImportAgents.class.php:157
#: ../../enterprise/include/class/SAPView.class.php:226
#: ../../enterprise/include/functions_events.php:216
-#: ../../enterprise/operation/log/log_viewer.php:749
-#: ../../godmode/modules/manage_network_components.php:775
+#: ../../enterprise/operation/log/log_viewer.php:747
+#: ../../godmode/modules/manage_network_components.php:778
#: ../../godmode/agentes/agent_manager.php:551
#: ../../godmode/agentes/module_manager.php:623
-#: ../../godmode/massive/massive_edit_agents.php:757
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1215
+#: ../../godmode/massive/massive_edit_agents.php:774
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1217
#: ../../godmode/reporting/reporting_builder.item_editor.php:1238
#: ../../godmode/reporting/reporting_builder.item_editor.php:1260
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3695
-#: ../../godmode/events/event_edit_filter.php:930
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3704
+#: ../../godmode/events/event_edit_filter.php:932
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1065
-#: ../../include/functions_reporting_html.php:2350
+#: ../../include/functions_reporting_html.php:2371
#: ../../include/class/AgentWizard.class.php:1282
-#: ../../operation/inventory/inventory.php:490
-#: ../../operation/events/events.php:1953
+#: ../../operation/inventory/inventory.php:492
+#: ../../operation/events/events.php:2007
msgid "Server"
msgstr ""
@@ -9218,11 +9365,11 @@ msgstr ""
#: ../../enterprise/meta/monitoring/group_view.php:212
#: ../../enterprise/meta/include/functions_autoprovision.php:497
#: ../../enterprise/godmode/agentes/collections.agents.php:62
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123
#: ../../enterprise/godmode/agentes/collections.data.php:155
#: ../../enterprise/godmode/agentes/collections.data.php:321
#: ../../enterprise/godmode/agentes/collections.editor.php:83
-#: ../../enterprise/godmode/policies/policy_queue.php:686
+#: ../../enterprise/godmode/policies/policy_queue.php:688
#: ../../enterprise/godmode/policies/policies.php:438
#: ../../enterprise/godmode/policies/policies.php:603
#: ../../enterprise/godmode/policies/policy_agents.php:719
@@ -9239,8 +9386,8 @@ msgstr ""
#: ../../enterprise/operation/services/massive/services.create.php:985
#: ../../enterprise/operation/services/massive/service.create.elements.php:379
#: ../../enterprise/operation/services/services.service_map.php:148
-#: ../../extensions/agents_modules.php:470
-#: ../../extensions/agents_modules.php:841
+#: ../../extensions/agents_modules.php:478
+#: ../../extensions/agents_modules.php:865
#: ../../godmode/groups/tactical.php:213
#: ../../godmode/agentes/planned_downtime.list.php:84
#: ../../godmode/agentes/planned_downtime.list.php:109
@@ -9258,34 +9405,34 @@ msgstr ""
#: ../../godmode/reporting/reporting_builder.item_editor.php:2126
#: ../../godmode/reporting/visual_console_builder.wizard.php:430
#: ../../mobile/include/functions_web.php:23
-#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81
-#: ../../mobile/operation/agent.php:155
-#: ../../include/functions_reporting_html.php:2094
-#: ../../include/functions_reporting_html.php:2566
-#: ../../include/functions_reporting_html.php:3349
-#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1685
-#: ../../include/functions_html.php:5914
+#: ../../mobile/operation/agents.php:205 ../../mobile/operation/home.php:81
+#: ../../mobile/operation/agent.php:161
+#: ../../include/functions_reporting_html.php:2115
+#: ../../include/functions_reporting_html.php:2587
+#: ../../include/functions_reporting_html.php:3377
+#: ../../include/functions_cron.php:701 ../../include/functions_html.php:1693
+#: ../../include/functions_html.php:5938
#: ../../include/functions_massive_operations.php:217
-#: ../../include/class/Diagnostics.class.php:1184
#: ../../include/class/Diagnostics.class.php:1188
#: ../../include/class/Diagnostics.class.php:1192
#: ../../include/class/Diagnostics.class.php:1196
-#: ../../include/class/NetworkMap.class.php:3439
+#: ../../include/class/Diagnostics.class.php:1200
+#: ../../include/class/NetworkMap.class.php:3445
#: ../../include/class/AgentsAlerts.class.php:252
#: ../../include/class/AgentsAlerts.class.php:567
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:340
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:345
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:432
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:347
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:352
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:445
#: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98
#: ../../operation/search_results.php:81
#: ../../operation/agentes/interface_view.functions.php:78
#: ../../operation/agentes/group_view.php:184
-#: ../../operation/agentes/group_view.php:234
+#: ../../operation/agentes/group_view.php:237
msgid "Agents"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:260
-#: ../../enterprise/godmode/policies/policy_queue.php:688
+#: ../../enterprise/godmode/policies/policy_queue.php:690
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712
#: ../../enterprise/include/class/Omnishell.class.php:408
#: ../../enterprise/include/functions_ipam.php:1425
@@ -9295,18 +9442,18 @@ msgid "Progress"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:298
-#: ../../enterprise/godmode/policies/policy_queue.php:728
+#: ../../enterprise/godmode/policies/policy_queue.php:730
msgid "Policy "
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:339
-#: ../../enterprise/godmode/policies/policy_queue.php:788
-#: ../../enterprise/godmode/policies/policy_queue.php:797
+#: ../../enterprise/godmode/policies/policy_queue.php:792
+#: ../../enterprise/godmode/policies/policy_queue.php:801
msgid "Policy applying timeout"
msgstr ""
#: ../../enterprise/meta/advanced/policymanager.queue.php:353
-#: ../../enterprise/godmode/policies/policy_queue.php:816
+#: ../../enterprise/godmode/policies/policy_queue.php:820
msgid "Delete from queue"
msgstr ""
@@ -9384,17 +9531,17 @@ msgstr ""
#: ../../enterprise/include/functions_services.php:1666
#: ../../enterprise/include/functions_events.php:80
#: ../../enterprise/operation/agentes/tag_view.php:693
-#: ../../enterprise/operation/log/log_viewer.php:770
+#: ../../enterprise/operation/log/log_viewer.php:768
#: ../../enterprise/tools/ipam/ipam_network.php:425
#: ../../enterprise/tools/ipam/ipam_ajax.php:382
#: ../../extensions/insert_data.php:194
#: ../../godmode/modules/manage_inventory_modules.php:317
-#: ../../godmode/agentes/status_monitor_custom_fields.php:77
-#: ../../godmode/agentes/status_monitor_custom_fields.php:141
+#: ../../godmode/agentes/status_monitor_custom_fields.php:97
+#: ../../godmode/agentes/status_monitor_custom_fields.php:161
#: ../../godmode/agentes/module_manager_editor_prediction.php:134
#: ../../godmode/agentes/planned_downtime.list.php:420
-#: ../../godmode/agentes/module_manager_editor_common.php:1475
-#: ../../godmode/agentes/module_manager_editor_common.php:1534
+#: ../../godmode/agentes/module_manager_editor_common.php:1485
+#: ../../godmode/agentes/module_manager_editor_common.php:1544
#: ../../godmode/gis_maps/configure_gis_map.php:592
#: ../../godmode/massive/massive_copy_modules.php:131
#: ../../godmode/massive/massive_copy_modules.php:295
@@ -9410,55 +9557,55 @@ msgstr ""
#: ../../godmode/reporting/create_container.php:473
#: ../../godmode/reporting/create_container.php:657
#: ../../godmode/reporting/create_container.php:744
-#: ../../godmode/reporting/graph_builder.graph_editor.php:212
-#: ../../godmode/reporting/reporting_builder.item_editor.php:211
-#: ../../godmode/reporting/reporting_builder.item_editor.php:890
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1168
+#: ../../godmode/reporting/graph_builder.graph_editor.php:345
+#: ../../godmode/reporting/reporting_builder.item_editor.php:212
+#: ../../godmode/reporting/reporting_builder.item_editor.php:891
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1170
#: ../../godmode/reporting/reporting_builder.item_editor.php:1735
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4093
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4611
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4635
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4102
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4644
#: ../../godmode/reporting/visual_console_builder.elements.php:120
#: ../../godmode/reporting/visual_console_builder.wizard.php:463
#: ../../godmode/reporting/visual_console_builder.wizard.php:789
#: ../../godmode/reporting/visual_console_builder.wizard.php:812
#: ../../godmode/servers/plugin.php:85 ../../mobile/operation/agents.php:93
-#: ../../mobile/operation/agents.php:403 ../../mobile/operation/modules.php:597
-#: ../../mobile/operation/home.php:96 ../../mobile/operation/alerts.php:335
-#: ../../mobile/operation/events.php:841
-#: ../../include/functions_visual_map_editor.php:422
-#: ../../include/functions_visual_map_editor.php:455
+#: ../../mobile/operation/agents.php:404 ../../mobile/operation/modules.php:608
+#: ../../mobile/operation/home.php:112 ../../mobile/operation/services.php:225
+#: ../../mobile/operation/events.php:870
+#: ../../include/functions_visual_map_editor.php:416
+#: ../../include/functions_visual_map_editor.php:449
#: ../../include/functions_reporting_html.php:548
#: ../../include/functions_reporting_html.php:947
#: ../../include/functions_reporting_html.php:1059
#: ../../include/functions_reporting_html.php:1067
-#: ../../include/functions_reporting_html.php:2016
-#: ../../include/functions_reporting_html.php:2353
-#: ../../include/functions_reporting_html.php:2458
-#: ../../include/functions_reporting_html.php:3312
-#: ../../include/functions_reporting_html.php:3447
-#: ../../include/functions_reporting_html.php:3741
-#: ../../include/functions_reporting_html.php:3822
-#: ../../include/functions_reporting_html.php:3830
-#: ../../include/functions_reporting_html.php:3839
-#: ../../include/functions_reporting_html.php:3851
-#: ../../include/functions_reporting_html.php:4011
-#: ../../include/functions_reporting_html.php:4135
-#: ../../include/functions_reporting_html.php:4229
-#: ../../include/functions_reporting_html.php:4956
-#: ../../include/functions_reporting_html.php:5004
-#: ../../include/functions_reporting_html.php:5043
-#: ../../include/functions_reporting_html.php:5371
-#: ../../include/functions_reporting_html.php:5411
-#: ../../include/functions_reporting_html.php:5661
-#: ../../include/ajax/heatmap.ajax.php:252
-#: ../../include/ajax/heatmap.ajax.php:291
-#: ../../include/ajax/heatmap.ajax.php:326
+#: ../../include/functions_reporting_html.php:2032
+#: ../../include/functions_reporting_html.php:2374
+#: ../../include/functions_reporting_html.php:2479
+#: ../../include/functions_reporting_html.php:3340
+#: ../../include/functions_reporting_html.php:3475
+#: ../../include/functions_reporting_html.php:3769
+#: ../../include/functions_reporting_html.php:3850
+#: ../../include/functions_reporting_html.php:3858
+#: ../../include/functions_reporting_html.php:3867
+#: ../../include/functions_reporting_html.php:3879
+#: ../../include/functions_reporting_html.php:4039
+#: ../../include/functions_reporting_html.php:4163
+#: ../../include/functions_reporting_html.php:4257
+#: ../../include/functions_reporting_html.php:4984
+#: ../../include/functions_reporting_html.php:5032
+#: ../../include/functions_reporting_html.php:5071
+#: ../../include/functions_reporting_html.php:5399
+#: ../../include/functions_reporting_html.php:5439
+#: ../../include/functions_reporting_html.php:5689
+#: ../../include/ajax/heatmap.ajax.php:294
+#: ../../include/ajax/heatmap.ajax.php:419
+#: ../../include/ajax/heatmap.ajax.php:454
#: ../../include/ajax/alert_list.ajax.php:459
-#: ../../include/functions_inventory.php:393
-#: ../../include/functions_inventory.php:1063
-#: ../../include/functions_inventory.php:1119
-#: ../../include/functions_graph.php:5062 ../../include/functions_gis.php:229
+#: ../../include/functions_inventory.php:402
+#: ../../include/functions_inventory.php:1173
+#: ../../include/functions_inventory.php:1229
+#: ../../include/functions_graph.php:5072 ../../include/functions_gis.php:229
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281
@@ -9467,22 +9614,24 @@ msgstr ""
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:214
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368
#: ../../include/functions_reports.php:1332
-#: ../../include/class/NetworkMap.class.php:2979
-#: ../../include/class/NetworkMap.class.php:3031
-#: ../../include/class/NetworkMap.class.php:3363
+#: ../../include/class/NetworkMap.class.php:2985
+#: ../../include/class/NetworkMap.class.php:3037
+#: ../../include/class/NetworkMap.class.php:3369
#: ../../include/class/AgentsAlerts.class.php:430
-#: ../../include/class/AgentsAlerts.class.php:981
-#: ../../include/functions_reporting.php:7332
+#: ../../include/class/AgentsAlerts.class.php:982
+#: ../../include/functions_reporting.php:7341
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:341
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:416
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:463
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:373
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:442
#: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250
#: ../../include/lib/Dashboard/Widgets/module_icon.php:359
#: ../../include/lib/Dashboard/Widgets/module_value.php:334
@@ -9493,20 +9642,20 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/module_status.php:350
#: ../../include/lib/Dashboard/Widgets/single_graph.php:301
#: ../../include/lib/Dashboard/Widgets/top_n.php:206
-#: ../../include/functions_snmp_browser.php:1809
+#: ../../include/functions_snmp_browser.php:1818
#: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48
#: ../../operation/agentes/exportdata.csv.php:74
-#: ../../operation/agentes/estado_agente.php:1023
+#: ../../operation/agentes/estado_agente.php:1030
#: ../../operation/agentes/interface_view.functions.php:499
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1536
+#: ../../operation/agentes/status_monitor.php:1538
#: ../../operation/agentes/estado_monitores.php:123
#: ../../operation/agentes/ver_agente.php:1187
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269
#: ../../operation/search_alerts.php:34
-#: ../../operation/inventory/inventory.php:628
-#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688
+#: ../../operation/inventory/inventory.php:630
+#: ../../operation/search_modules.php:36 ../../operation/events/events.php:2742
msgid "Agent"
msgstr ""
@@ -9529,14 +9678,13 @@ msgstr ""
#: ../../extensions/users_connected.php:178
#: ../../godmode/reporting/reporting_builder.item_editor.php:70
#: ../../godmode/reporting/visual_console_builder.elements.php:847
-#: ../../include/functions_visual_map_editor.php:1455
-#: ../../include/functions_reporting_html.php:3329
-#: ../../include/functions_reporting_html.php:3662
-#: ../../include/ajax/heatmap.ajax.php:333
+#: ../../include/functions_visual_map_editor.php:1513
+#: ../../include/functions_reporting_html.php:3357
+#: ../../include/functions_reporting_html.php:3690
+#: ../../include/ajax/heatmap.ajax.php:461
#: ../../include/class/AuditLog.class.php:223
#: ../../operation/network/network_report.php:272
-#: ../../operation/inventory/inventory.php:1000
-#: ../../operation/inventory/inventory.php:1294
+#: ../../operation/inventory/inventory.php:1246
msgid "IP"
msgstr ""
@@ -9558,44 +9706,44 @@ msgstr ""
#: ../../enterprise/operation/services/services.treeview_services.php:321
#: ../../enterprise/operation/services/services.list.php:205
#: ../../enterprise/operation/services/services.table_services.php:141
-#: ../../godmode/groups/group_list.php:1114
+#: ../../godmode/groups/group_list.php:1126
#: ../../godmode/agentes/module_manager_editor_common.php:476
-#: ../../godmode/agentes/module_manager_editor_common.php:559
-#: ../../godmode/netflow/nf_edit_form.php:245
+#: ../../godmode/agentes/module_manager_editor_common.php:564
+#: ../../godmode/netflow/nf_edit_form.php:290
#: ../../godmode/massive/massive_copy_modules.php:115
#: ../../godmode/massive/massive_copy_modules.php:275
#: ../../godmode/massive/massive_delete_modules.php:418
#: ../../godmode/massive/massive_delete_modules.php:439
#: ../../godmode/massive/massive_edit_modules.php:385
#: ../../godmode/massive/massive_edit_modules.php:471
-#: ../../godmode/setup/setup_visuals.php:1013
-#: ../../godmode/setup/setup_visuals.php:1035
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3830
+#: ../../godmode/setup/setup_visuals.php:1017
+#: ../../godmode/setup/setup_visuals.php:1039
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3839
#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69
-#: ../../include/functions_reporting_html.php:2573
+#: ../../include/functions_reporting_html.php:2594
#: ../../include/functions.php:1087 ../../include/functions.php:1327
#: ../../include/functions.php:1334 ../../include/functions.php:1367
-#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329
-#: ../../include/functions_graph.php:3331
-#: ../../include/functions_graph.php:4842
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432
+#: ../../include/ajax/module.php:1961 ../../include/functions_graph.php:3339
+#: ../../include/functions_graph.php:3341
+#: ../../include/functions_graph.php:4852
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:578
#: ../../include/functions_massive_operations.php:146
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:315
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:253
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:557
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:398
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:432
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:729
-#: ../../include/functions_events.php:3218 ../../operation/tree.php:208
-#: ../../operation/tree.php:298 ../../operation/tree.php:533
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:401
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:436
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:722
+#: ../../include/functions_events.php:3223 ../../operation/tree.php:208
+#: ../../operation/tree.php:299 ../../operation/tree.php:535
#: ../../operation/agentes/estado_agente.php:273
-#: ../../operation/agentes/status_monitor.php:564
-#: ../../operation/agentes/group_view.php:244
-#: ../../operation/agentes/group_view.php:249
-#: ../../operation/agentes/estado_monitores.php:518
+#: ../../operation/agentes/status_monitor.php:563
+#: ../../operation/agentes/group_view.php:247
+#: ../../operation/agentes/group_view.php:252
+#: ../../operation/agentes/estado_monitores.php:515
#: ../../operation/agentes/tactical.php:199
-#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150
+#: ../../operation/netflow/nf_live_view.php:283 ../../general/logon_ok.php:159
msgid "Normal"
msgstr ""
@@ -9632,25 +9780,25 @@ msgstr ""
#: ../../enterprise/operation/services/services.table_services.php:143
#: ../../extensions/module_groups.php:50
#: ../../godmode/modules/manage_network_components_form_wizard.php:418
-#: ../../godmode/groups/group_list.php:1094
+#: ../../godmode/groups/group_list.php:1106
#: ../../godmode/massive/massive_copy_modules.php:117
#: ../../godmode/massive/massive_copy_modules.php:277
#: ../../godmode/massive/massive_delete_modules.php:420
#: ../../godmode/massive/massive_delete_modules.php:441
#: ../../godmode/massive/massive_edit_modules.php:387
#: ../../godmode/massive/massive_edit_modules.php:473
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3832
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3841
#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71
#: ../../include/functions_reporting_html.php:867
-#: ../../include/functions_reporting_html.php:2574
-#: ../../include/functions_reporting_html.php:4871
+#: ../../include/functions_reporting_html.php:2595
+#: ../../include/functions_reporting_html.php:4899
#: ../../include/functions.php:1095 ../../include/functions.php:1331
#: ../../include/functions.php:1332 ../../include/functions.php:1334
-#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938
-#: ../../include/functions_graph.php:3353
-#: ../../include/functions_graph.php:3355
-#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418
+#: ../../include/functions.php:1375 ../../include/ajax/module.php:1966
+#: ../../include/functions_graph.php:3363
+#: ../../include/functions_graph.php:3365
+#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:2912
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564
#: ../../include/functions_massive_operations.php:148
#: ../../include/class/AgentWizard.class.php:1404
#: ../../include/class/AgentWizard.class.php:4161
@@ -9659,18 +9807,18 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:567
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:587
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:592
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:400
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:434
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:709
-#: ../../include/functions_events.php:3226 ../../operation/tree.php:210
-#: ../../operation/tree.php:300 ../../operation/tree.php:513
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:403
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:438
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:702
+#: ../../include/functions_events.php:3231 ../../operation/tree.php:210
+#: ../../operation/tree.php:301 ../../operation/tree.php:515
#: ../../operation/agentes/estado_agente.php:275
-#: ../../operation/agentes/status_monitor.php:566
-#: ../../operation/agentes/group_view.php:246
-#: ../../operation/agentes/group_view.php:251
-#: ../../operation/agentes/estado_monitores.php:516
+#: ../../operation/agentes/status_monitor.php:565
+#: ../../operation/agentes/group_view.php:249
+#: ../../operation/agentes/group_view.php:254
+#: ../../operation/agentes/estado_monitores.php:513
#: ../../operation/agentes/tactical.php:197
-#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148
+#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:157
msgid "Critical"
msgstr ""
@@ -9695,15 +9843,16 @@ msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:170
#: ../../enterprise/godmode/policies/policies.php:314
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:736
-#: ../../extensions/agents_modules.php:439
+#: ../../extensions/agents_modules.php:447
#: ../../godmode/agentes/modificar_agente.php:333
#: ../../godmode/agentes/planned_downtime.editor.php:1197
#: ../../godmode/reporting/reporting_builder.item_editor.php:1667
-#: ../../include/functions_html.php:1575
-#: ../../include/class/NetworkMap.class.php:3427
+#: ../../include/functions_html.php:1581
+#: ../../include/class/NetworkMap.class.php:3433
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:254
#: ../../operation/agentes/estado_agente.php:310
#: ../../operation/agentes/interface_view.functions.php:61
-#: ../../operation/agentes/status_monitor.php:845
+#: ../../operation/agentes/status_monitor.php:844
msgid "Recursion"
msgstr ""
@@ -9716,21 +9865,21 @@ msgstr ""
#: ../../godmode/massive/massive_delete_modules.php:443
#: ../../godmode/massive/massive_edit_modules.php:389
#: ../../godmode/massive/massive_edit_modules.php:475
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3834
-#: ../../godmode/events/event_edit_filter.php:350
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3843
+#: ../../godmode/events/event_edit_filter.php:352
#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1333
#: ../../include/functions_massive_operations.php:150
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:258
#: ../../include/lib/Dashboard/Widgets/events_list.php:319
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:264
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:582
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:403
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:437
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:734
-#: ../../include/functions_events.php:3174 ../../operation/tree.php:538
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:406
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:441
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:727
+#: ../../include/functions_events.php:3179 ../../operation/tree.php:540
#: ../../operation/agentes/estado_agente.php:277
-#: ../../operation/agentes/status_monitor.php:568
-#: ../../operation/events/events.php:1739
+#: ../../operation/agentes/status_monitor.php:567
+#: ../../operation/events/events.php:1793
msgid "Not normal"
msgstr ""
@@ -9741,30 +9890,30 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124
#: ../../enterprise/operation/agentes/tag_view.php:136
#: ../../enterprise/operation/services/services.treeview_services.php:316
-#: ../../godmode/groups/group_list.php:1109
+#: ../../godmode/groups/group_list.php:1121
#: ../../godmode/massive/massive_copy_modules.php:120
#: ../../godmode/massive/massive_copy_modules.php:280
#: ../../godmode/massive/massive_delete_modules.php:423
#: ../../godmode/massive/massive_delete_modules.php:444
#: ../../godmode/massive/massive_edit_modules.php:390
#: ../../godmode/massive/massive_edit_modules.php:476
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3835
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3844
#: ../../mobile/operation/modules.php:75
#: ../../include/functions_reporting_html.php:660
-#: ../../include/functions_reporting_html.php:2577
-#: ../../include/functions_reporting_html.php:4678
-#: ../../include/ajax/module.php:1950
+#: ../../include/functions_reporting_html.php:2598
+#: ../../include/functions_reporting_html.php:4706
+#: ../../include/ajax/module.php:1978
#: ../../include/functions_massive_operations.php:151
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:257
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:402
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:436
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:724
-#: ../../operation/tree.php:212 ../../operation/tree.php:302
-#: ../../operation/tree.php:528 ../../operation/agentes/estado_agente.php:278
-#: ../../operation/agentes/status_monitor.php:570
-#: ../../operation/agentes/group_view.php:243
-#: ../../operation/agentes/group_view.php:248
-#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:152
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:405
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:440
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:717
+#: ../../operation/tree.php:212 ../../operation/tree.php:303
+#: ../../operation/tree.php:530 ../../operation/agentes/estado_agente.php:278
+#: ../../operation/agentes/status_monitor.php:569
+#: ../../operation/agentes/group_view.php:246
+#: ../../operation/agentes/group_view.php:251
+#: ../../operation/agentes/tactical.php:201 ../../general/logon_ok.php:161
msgid "Not init"
msgstr ""
@@ -9780,14 +9929,14 @@ msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:230
#: ../../enterprise/meta/monitoring/custom_fields_view.php:231
#: ../../enterprise/include/ajax/log_viewer.ajax.php:410
-#: ../../enterprise/operation/log/log_viewer.php:994
-#: ../../enterprise/operation/log/log_viewer.php:2026
-#: ../../enterprise/operation/log/log_viewer.php:2065
-#: ../../include/ajax/audit_log.php:292 ../../include/ajax/events.php:864
+#: ../../enterprise/operation/log/log_viewer.php:992
+#: ../../enterprise/operation/log/log_viewer.php:2024
+#: ../../enterprise/operation/log/log_viewer.php:2063
+#: ../../include/ajax/audit_log.php:293 ../../include/ajax/events.php:865
#: ../../include/class/AuditLog.class.php:167
-#: ../../include/class/AuditLog.class.php:445
-#: ../../include/class/AuditLog.class.php:485
-#: ../../operation/events/events.php:1871
+#: ../../include/class/AuditLog.class.php:457
+#: ../../include/class/AuditLog.class.php:497
+#: ../../operation/events/events.php:1925
msgid "Save filter"
msgstr ""
@@ -9796,21 +9945,20 @@ msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:245
#: ../../enterprise/include/ajax/log_viewer.ajax.php:709
#: ../../enterprise/include/ajax/log_viewer.ajax.php:727
-#: ../../enterprise/operation/log/log_viewer.php:979
-#: ../../enterprise/operation/log/log_viewer.php:2078
-#: ../../enterprise/operation/log/log_viewer.php:2115
+#: ../../enterprise/operation/log/log_viewer.php:977
+#: ../../enterprise/operation/log/log_viewer.php:2076
+#: ../../enterprise/operation/log/log_viewer.php:2113
#: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168
-#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173
+#: ../../include/ajax/module.php:2178 ../../include/ajax/module.php:2202
#: ../../include/ajax/agent.php:494 ../../include/ajax/agent.php:518
-#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583
-#: ../../include/ajax/events.php:608 ../../include/class/AuditLog.class.php:159
-#: ../../include/class/AuditLog.class.php:502
-#: ../../include/class/AuditLog.class.php:539
+#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584
+#: ../../include/ajax/events.php:609 ../../include/class/AuditLog.class.php:159
+#: ../../include/class/AuditLog.class.php:514
+#: ../../include/class/AuditLog.class.php:551
#: ../../operation/agentes/estado_agente.php:455
-#: ../../operation/agentes/status_monitor.php:1045
-#: ../../operation/netflow/nf_live_view.php:277
-#: ../../operation/events/sound_events.php:184
-#: ../../operation/events/events.php:1862
+#: ../../operation/agentes/status_monitor.php:1047
+#: ../../operation/netflow/nf_live_view.php:286
+#: ../../operation/events/events.php:1916
msgid "Load filter"
msgstr ""
@@ -9824,8 +9972,8 @@ msgid "Custom Fields Data"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:295
-#: ../../godmode/events/event_edit_filter.php:780
-#: ../../operation/events/events.php:1969
+#: ../../godmode/events/event_edit_filter.php:782
+#: ../../operation/events/events.php:2023
msgid "Module search"
msgstr ""
@@ -9834,8 +9982,8 @@ msgstr ""
#: ../../enterprise/include/class/DeploymentCenter.class.php:1569
#: ../../enterprise/include/class/AgentRepository.class.php:873
#: ../../enterprise/include/class/Omnishell.class.php:1359
-#: ../../enterprise/include/class/LogSource.class.php:745
-#: ../../godmode/users/configure_user.php:1024
+#: ../../enterprise/include/class/LogSource.class.php:742
+#: ../../godmode/users/configure_user.php:1072
#: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299
#: ../../operation/agentes/interface_view.functions.php:172
msgid "Show"
@@ -9844,11 +9992,11 @@ msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:321
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565
#: ../../enterprise/include/functions_ipam.php:339
-#: ../../enterprise/operation/log/log_viewer.php:968
+#: ../../enterprise/operation/log/log_viewer.php:966
#: ../../enterprise/operation/reporting/custom_reporting.php:100
#: ../../godmode/modules/manage_network_templates.php:290
#: ../../godmode/agentes/planned_downtime.list.php:1000
-#: ../../include/graphs/functions_flot.php:382
+#: ../../include/graphs/functions_flot.php:383
#: ../../include/class/ModuleTemplates.class.php:904
#: ../../operation/network/network_report.php:230
#: ../../operation/incidents/list_integriaims_incidents.php:480
@@ -9859,175 +10007,175 @@ msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:361
#: ../../enterprise/include/class/DatabaseHA.class.php:217
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1883
-#: ../../include/functions_ui.php:3741
+#: ../../include/functions_ui.php:3789
msgid "Processing"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:386
-#: ../../mobile/operation/groups.php:153
-#: ../../include/functions_reporting_html.php:5843
+#: ../../mobile/operation/groups.php:192
+#: ../../include/functions_reporting_html.php:5871
#: ../../include/functions_agents.php:3955
msgid "Agents critical"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:399
-#: ../../include/functions_reporting_html.php:5846
+#: ../../include/functions_reporting_html.php:5874
#: ../../include/functions_agents.php:3965
msgid "Agents warning"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:412
-#: ../../include/functions_reporting_html.php:5852
+#: ../../include/functions_reporting_html.php:5880
#: ../../include/functions_agents.php:3945
#: ../../include/functions_agents.php:3999
msgid "Agents ok"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:425
-#: ../../mobile/operation/groups.php:156
-#: ../../include/functions_reporting_html.php:5855
+#: ../../mobile/operation/groups.php:195
+#: ../../include/functions_reporting_html.php:5883
#: ../../include/functions_agents.php:3975
msgid "Agents unknown"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:438
-#: ../../mobile/operation/groups.php:150
-#: ../../include/functions_reporting_html.php:5861
+#: ../../mobile/operation/groups.php:189
+#: ../../include/functions_reporting_html.php:5889
#: ../../include/functions_agents.php:3989
msgid "Agents not init"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:464
-#: ../../include/functions_reporting.php:12227
-#: ../../include/functions_groups.php:2794
+#: ../../include/functions_reporting.php:12300
+#: ../../include/functions_groups.php:2819
msgid "Monitor critical"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:475
-#: ../../include/functions_reporting.php:12231
-#: ../../include/functions_groups.php:2798
+#: ../../include/functions_reporting.php:12304
+#: ../../include/functions_groups.php:2823
msgid "Monitor warning"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:486
-#: ../../include/functions_reporting.php:12238
-#: ../../include/functions_groups.php:2805
+#: ../../include/functions_reporting.php:12311
+#: ../../include/functions_groups.php:2830
msgid "Monitor normal"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:497
-#: ../../include/functions_reporting.php:12242
-#: ../../include/functions_groups.php:2809
+#: ../../include/functions_reporting.php:12315
+#: ../../include/functions_groups.php:2834
msgid "Monitor unknown"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:508
-#: ../../include/functions_reporting.php:12249
-#: ../../include/functions_groups.php:2816
+#: ../../include/functions_reporting.php:12322
+#: ../../include/functions_groups.php:2841
msgid "Monitor not init"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:523
-#: ../../include/functions_reporting_html.php:5870
-#: ../../include/functions_reporting_html.php:5875
+#: ../../include/functions_reporting_html.php:5898
+#: ../../include/functions_reporting_html.php:5903
msgid "Agents by status"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:531
-#: ../../include/functions_reporting.php:12269
-#: ../../include/functions_reporting.php:12275
-#: ../../include/functions_groups.php:2836
-#: ../../include/functions_groups.php:2842
+#: ../../include/functions_reporting.php:12342
+#: ../../include/functions_reporting.php:12348
+#: ../../include/functions_groups.php:2861
+#: ../../include/functions_groups.php:2867
msgid "Monitors by status"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:545
#: ../../enterprise/operation/services/services.treeview_services.php:299
-#: ../../godmode/groups/group_list.php:1092
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:707
-#: ../../operation/tree.php:511
+#: ../../godmode/groups/group_list.php:1104
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:700
+#: ../../operation/tree.php:513
msgid "Critical agents"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:555
#: ../../enterprise/operation/services/services.treeview_services.php:304
-#: ../../godmode/groups/group_list.php:1097
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:712
-#: ../../operation/tree.php:516
+#: ../../godmode/groups/group_list.php:1109
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:705
+#: ../../operation/tree.php:518
msgid "Warning agents"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:565
#: ../../enterprise/operation/services/services.treeview_services.php:319
-#: ../../godmode/groups/group_list.php:1112
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:727
-#: ../../operation/tree.php:531
+#: ../../godmode/groups/group_list.php:1124
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:720
+#: ../../operation/tree.php:533
msgid "Normal agents"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:575
#: ../../enterprise/operation/services/services.treeview_services.php:309
-#: ../../godmode/groups/group_list.php:1102
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:717
-#: ../../operation/tree.php:521
+#: ../../godmode/groups/group_list.php:1114
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:710
+#: ../../operation/tree.php:523
msgid "Unknown agents"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:585
#: ../../enterprise/operation/services/services.treeview_services.php:314
-#: ../../godmode/groups/group_list.php:1107
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:722
-#: ../../operation/tree.php:526
+#: ../../godmode/groups/group_list.php:1119
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:715
+#: ../../operation/tree.php:528
msgid "Not init agents"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:614
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:300
-#: ../../godmode/groups/group_list.php:1093
-#: ../../mobile/operation/groups.php:171
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:708
-#: ../../operation/tree.php:512
+#: ../../godmode/groups/group_list.php:1105
+#: ../../mobile/operation/groups.php:210
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:701
+#: ../../operation/tree.php:514
msgid "Critical modules"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:625
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:305
-#: ../../godmode/groups/group_list.php:1098
-#: ../../mobile/operation/groups.php:168
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:713
-#: ../../operation/tree.php:517
+#: ../../godmode/groups/group_list.php:1110
+#: ../../mobile/operation/groups.php:207
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:706
+#: ../../operation/tree.php:519
msgid "Warning modules"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:636
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:320
-#: ../../godmode/groups/group_list.php:1113
-#: ../../mobile/operation/groups.php:165
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:728
-#: ../../operation/tree.php:532
+#: ../../godmode/groups/group_list.php:1125
+#: ../../mobile/operation/groups.php:204
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:721
+#: ../../operation/tree.php:534
msgid "Normal modules"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:647
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:310
-#: ../../godmode/groups/group_list.php:1103
-#: ../../mobile/operation/groups.php:159
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:718
-#: ../../operation/tree.php:522
+#: ../../godmode/groups/group_list.php:1115
+#: ../../mobile/operation/groups.php:198
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:711
+#: ../../operation/tree.php:524
msgid "Unknown modules"
msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:658
#: ../../enterprise/include/functions_reporting_csv.php:1033
#: ../../enterprise/operation/services/services.treeview_services.php:315
-#: ../../godmode/groups/group_list.php:1108
-#: ../../mobile/operation/groups.php:162
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:723
-#: ../../operation/tree.php:527
+#: ../../godmode/groups/group_list.php:1120
+#: ../../mobile/operation/groups.php:201
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:716
+#: ../../operation/tree.php:529
msgid "Not init modules"
msgstr ""
@@ -10059,7 +10207,7 @@ msgstr ""
#: ../../enterprise/meta/monitoring/custom_fields_view.php:1167
#: ../../enterprise/meta/event/custom_events.php:245
#: ../../enterprise/include/functions_login.php:114
-#: ../../godmode/agentes/status_monitor_custom_fields.php:253
+#: ../../godmode/agentes/status_monitor_custom_fields.php:273
#: ../../godmode/events/custom_events.php:233
#: ../../include/class/TreeGroupEdition.class.php:164
msgid "Confirm"
@@ -10068,9 +10216,9 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:74
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:227
#: ../../godmode/agentes/configurar_agente.php:835
-#: ../../godmode/agentes/modificar_agente.php:1025
-#: ../../include/class/SnmpConsole.class.php:781
-#: ../../operation/agentes/estado_agente.php:1317
+#: ../../godmode/agentes/modificar_agente.php:1036
+#: ../../include/class/SnmpConsole.class.php:783
+#: ../../operation/agentes/estado_agente.php:1326
#: ../../operation/snmpconsole/snmp_statistics.php:195
msgid "Create agent"
msgstr ""
@@ -10156,18 +10304,18 @@ msgstr ""
#: ../../enterprise/include/functions_services.php:1779
#: ../../enterprise/include/functions_events.php:90
#: ../../enterprise/operation/agentes/policy_view.php:259
-#: ../../extensions/agents_modules.php:513 ../../extensions/insert_data.php:195
+#: ../../extensions/agents_modules.php:521 ../../extensions/insert_data.php:195
#: ../../godmode/agentes/module_manager_editor_prediction.php:135
#: ../../godmode/agentes/planned_downtime.list.php:425
#: ../../godmode/agentes/planned_downtime.editor.php:1445
-#: ../../godmode/agentes/module_manager_editor_common.php:1481
-#: ../../godmode/agentes/module_manager_editor_common.php:1535
+#: ../../godmode/agentes/module_manager_editor_common.php:1491
+#: ../../godmode/agentes/module_manager_editor_common.php:1545
#: ../../godmode/massive/massive_standby_alerts.php:224
#: ../../godmode/massive/massive_standby_alerts.php:259
#: ../../godmode/massive/massive_enable_disable_alerts.php:196
#: ../../godmode/massive/massive_enable_disable_alerts.php:231
-#: ../../godmode/massive/massive_edit_agents.php:682
-#: ../../godmode/massive/massive_edit_agents.php:1147
+#: ../../godmode/massive/massive_edit_agents.php:699
+#: ../../godmode/massive/massive_edit_agents.php:1164
#: ../../godmode/alerts/alert_list.list.php:566
#: ../../godmode/alerts/alert_list.list.php:817
#: ../../godmode/alerts/alert_view.php:97
@@ -10176,41 +10324,41 @@ msgstr ""
#: ../../godmode/reporting/create_container.php:490
#: ../../godmode/reporting/create_container.php:662
#: ../../godmode/reporting/create_container.php:745
-#: ../../godmode/reporting/graph_builder.graph_editor.php:213
-#: ../../godmode/reporting/reporting_builder.item_editor.php:212
-#: ../../godmode/reporting/reporting_builder.item_editor.php:891
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1191
+#: ../../godmode/reporting/graph_builder.graph_editor.php:346
+#: ../../godmode/reporting/reporting_builder.item_editor.php:213
+#: ../../godmode/reporting/reporting_builder.item_editor.php:892
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1193
#: ../../godmode/reporting/reporting_builder.item_editor.php:1792
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4098
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4614
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4638
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4107
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4623
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4647
#: ../../godmode/reporting/visual_console_builder.elements.php:121
#: ../../godmode/reporting/visual_console_builder.wizard.php:462
#: ../../godmode/reporting/visual_console_builder.wizard.php:821
-#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/alerts.php:338
-#: ../../include/functions_visual_map_editor.php:497
+#: ../../godmode/servers/plugin.php:86 ../../mobile/operation/services.php:332
+#: ../../include/functions_visual_map_editor.php:491
#: ../../include/functions_reporting_html.php:549
#: ../../include/functions_reporting_html.php:948
-#: ../../include/functions_reporting_html.php:2017
-#: ../../include/functions_reporting_html.php:2354
-#: ../../include/functions_reporting_html.php:2459
-#: ../../include/functions_reporting_html.php:3448
-#: ../../include/functions_reporting_html.php:3823
-#: ../../include/functions_reporting_html.php:3831
-#: ../../include/functions_reporting_html.php:3840
-#: ../../include/functions_reporting_html.php:3852
-#: ../../include/functions_reporting_html.php:4012
-#: ../../include/functions_reporting_html.php:4141
-#: ../../include/functions_reporting_html.php:4235
-#: ../../include/functions_reporting_html.php:4957
-#: ../../include/functions_reporting_html.php:5005
+#: ../../include/functions_reporting_html.php:2033
+#: ../../include/functions_reporting_html.php:2375
+#: ../../include/functions_reporting_html.php:2480
+#: ../../include/functions_reporting_html.php:3476
+#: ../../include/functions_reporting_html.php:3851
+#: ../../include/functions_reporting_html.php:3859
+#: ../../include/functions_reporting_html.php:3868
+#: ../../include/functions_reporting_html.php:3880
+#: ../../include/functions_reporting_html.php:4040
+#: ../../include/functions_reporting_html.php:4169
+#: ../../include/functions_reporting_html.php:4263
+#: ../../include/functions_reporting_html.php:4985
+#: ../../include/functions_reporting_html.php:5033
#: ../../include/ajax/alert_list.ajax.php:292
#: ../../include/ajax/alert_list.ajax.php:317
#: ../../include/ajax/alert_list.ajax.php:480
-#: ../../include/functions_inventory.php:1064
-#: ../../include/functions_inventory.php:1120
-#: ../../include/functions_graph.php:5169 ../../include/functions_ui.php:7393
-#: ../../include/functions_ui.php:7411
+#: ../../include/functions_inventory.php:1174
+#: ../../include/functions_inventory.php:1230
+#: ../../include/functions_graph.php:5179 ../../include/functions_ui.php:7463
+#: ../../include/functions_ui.php:7488
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299
@@ -10219,17 +10367,19 @@ msgstr ""
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:232
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385
#: ../../include/functions_reports.php:1363
#: ../../include/class/AgentsAlerts.class.php:432
-#: ../../include/class/AgentsAlerts.class.php:910
-#: ../../include/functions_reporting.php:7333
+#: ../../include/class/AgentsAlerts.class.php:911
+#: ../../include/functions_reporting.php:7342
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:359
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:434
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:462
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:391
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:441
#: ../../include/lib/Dashboard/Widgets/module_icon.php:377
#: ../../include/lib/Dashboard/Widgets/module_value.php:352
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254
@@ -10237,16 +10387,16 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344
#: ../../include/lib/Dashboard/Widgets/module_status.php:368
#: ../../include/lib/Dashboard/Widgets/single_graph.php:319
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:736
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:729
#: ../../include/lib/Dashboard/Widgets/top_n.php:221
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
#: ../../operation/agentes/estado_monitores.php:125
-#: ../../operation/agentes/agent_inventory.php:116
+#: ../../operation/agentes/agent_inventory.php:118
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/search_alerts.php:35
-#: ../../operation/inventory/inventory.php:634
-#: ../../operation/search_modules.php:32
+#: ../../operation/inventory/inventory.php:636
+#: ../../operation/search_modules.php:35
msgid "Module"
msgstr ""
@@ -10262,18 +10412,18 @@ msgstr ""
#: ../../godmode/alerts/alert_list.list.php:570
#: ../../godmode/alerts/alert_view.php:101
#: ../../godmode/alerts/alert_list.builder.php:151
-#: ../../godmode/reporting/reporting_builder.item_editor.php:216
-#: ../../godmode/reporting/reporting_builder.item_editor.php:896
-#: ../../mobile/operation/alerts.php:342
-#: ../../include/functions_reporting_html.php:3449
-#: ../../include/functions_reporting_html.php:3452
+#: ../../godmode/reporting/reporting_builder.item_editor.php:217
+#: ../../godmode/reporting/reporting_builder.item_editor.php:897
+#: ../../mobile/operation/alerts.php:349
+#: ../../include/functions_reporting_html.php:3477
+#: ../../include/functions_reporting_html.php:3480
#: ../../include/functions_cron.php:691
#: ../../include/ajax/alert_list.ajax.php:293
#: ../../include/ajax/alert_list.ajax.php:318
-#: ../../include/functions_treeview.php:399
-#: ../../include/functions_treeview.php:440
+#: ../../include/functions_treeview.php:403
+#: ../../include/functions_treeview.php:444
#: ../../include/class/AgentsAlerts.class.php:359
-#: ../../include/class/AgentsAlerts.class.php:983
+#: ../../include/class/AgentsAlerts.class.php:984
#: ../../operation/search_alerts.php:36
msgid "Template"
msgstr ""
@@ -10353,8 +10503,8 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_action.php:287
#: ../../godmode/alerts/alert_view.php:367
#: ../../godmode/alerts/alert_list.builder.php:169
-#: ../../include/functions_reporting_html.php:3710
-#: ../../include/functions_reporting_html.php:5493
+#: ../../include/functions_reporting_html.php:3738
+#: ../../include/functions_reporting_html.php:5521
#: ../../include/ajax/alert_list.ajax.php:540
#: ../../include/ajax/custom_fields.php:413
#: ../../include/class/AgentsAlerts.class.php:398
@@ -10375,8 +10525,8 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:40
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:117
-#: ../../godmode/agentes/module_manager.php:1027
-#: ../../operation/snmpconsole/snmp_browser.php:633
+#: ../../godmode/agentes/module_manager.php:1041
+#: ../../operation/snmpconsole/snmp_browser.php:692
msgid "Create module"
msgstr ""
@@ -10415,11 +10565,11 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy.php:158
#: ../../enterprise/godmode/setup/setup_acl.php:664
#: ../../enterprise/include/functions_reporting.php:60
-#: ../../enterprise/include/functions_reporting.php:8008
-#: ../../enterprise/include/functions_reporting.php:8034
-#: ../../godmode/reporting/visual_console_builder.php:830
-#: ../../include/functions_menu.php:589
-#: ../../operation/visual_console/view.php:202
+#: ../../enterprise/include/functions_reporting.php:8017
+#: ../../enterprise/include/functions_reporting.php:8043
+#: ../../godmode/reporting/visual_console_builder.php:838
+#: ../../include/functions_menu.php:593
+#: ../../operation/visual_console/view.php:204
#: ../../operation/visual_console/legacy_view.php:171
msgid "Wizard"
msgstr ""
@@ -10434,8 +10584,8 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720
#: ../../enterprise/meta/agentsearch.php:52
#: ../../enterprise/meta/agentsearch.php:58
-#: ../../godmode/events/event_edit_filter.php:447
-#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946
+#: ../../godmode/events/event_edit_filter.php:449
+#: ../../mobile/operation/home.php:188 ../../operation/events/events.php:2000
msgid "Agent search"
msgstr ""
@@ -10449,20 +10599,22 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:744
#: ../../godmode/snmpconsole/snmp_alert.php:1688
#: ../../godmode/alerts/configure_alert_action.php:432
-#: ../../mobile/operation/agents.php:209 ../../mobile/operation/modules.php:241
-#: ../../mobile/operation/groups.php:82 ../../mobile/operation/agent.php:148
-#: ../../mobile/operation/alerts.php:199
+#: ../../mobile/operation/agents.php:210 ../../mobile/operation/modules.php:241
+#: ../../mobile/operation/groups.php:82 ../../mobile/operation/services.php:128
+#: ../../mobile/operation/agent.php:154 ../../mobile/operation/alerts.php:199
#: ../../mobile/operation/visualmap.php:256
#: ../../mobile/operation/visualmaps.php:189
-#: ../../mobile/operation/module_graph.php:364
-#: ../../mobile/operation/module_graph.php:377
-#: ../../mobile/operation/events.php:913
+#: ../../mobile/operation/module_data.php:130
+#: ../../mobile/operation/module_graph.php:365
+#: ../../mobile/operation/module_graph.php:378
+#: ../../mobile/operation/events.php:957
+#: ../../mobile/operation/server_status.php:232
#: ../../mobile/operation/tactical.php:102
msgid "Back"
msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326
-#: ../../godmode/agentes/module_manager.php:1146
+#: ../../godmode/agentes/module_manager.php:1162
msgid "Create Module"
msgstr ""
@@ -10539,14 +10691,14 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wizard.php:336
#: ../../godmode/massive/massive_delete_modules.php:323
#: ../../godmode/massive/massive_edit_modules.php:309
-#: ../../include/ajax/module.php:1000
+#: ../../include/ajax/module.php:1023
msgid "Module type"
msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146
#: ../../mobile/include/functions_web.php:24
-#: ../../include/functions_reporting_html.php:5412
-#: ../../include/functions_reporting_html.php:5566
+#: ../../include/functions_reporting_html.php:5440
+#: ../../include/functions_reporting_html.php:5594
msgid "Monitor"
msgstr ""
@@ -10561,7 +10713,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:763
#: ../../enterprise/operation/agentes/tag_view.php:174
#: ../../enterprise/operation/agentes/ver_agente.php:53
-#: ../../extensions/agents_modules.php:448
+#: ../../extensions/agents_modules.php:456
#: ../../godmode/modules/manage_network_components_form_common.php:111
#: ../../godmode/agentes/module_manager_editor_common.php:292
#: ../../godmode/massive/massive_edit_modules.php:904
@@ -10571,18 +10723,20 @@ msgstr ""
#: ../../mobile/operation/modules.php:184
#: ../../mobile/operation/modules.php:293
#: ../../mobile/operation/modules.php:294
-#: ../../include/functions_reporting_html.php:1768
-#: ../../include/ajax/heatmap.ajax.php:193
-#: ../../include/ajax/heatmap.ajax.php:263
-#: ../../include/ajax/heatmap.ajax.php:302
-#: ../../include/functions_graph.php:5085
+#: ../../mobile/operation/server_status.php:174
+#: ../../mobile/operation/server_status.php:175
+#: ../../include/functions_reporting_html.php:1777
+#: ../../include/ajax/heatmap.ajax.php:222
+#: ../../include/ajax/heatmap.ajax.php:305
+#: ../../include/ajax/heatmap.ajax.php:430
+#: ../../include/functions_graph.php:5095
#: ../../include/functions_treeview.php:121
-#: ../../include/functions_html.php:1600
+#: ../../include/functions_html.php:1607
#: ../../include/lib/Dashboard/Widgets/heatmap.php:324
-#: ../../include/functions_events.php:4478 ../../operation/heatmap.php:103
+#: ../../include/functions_events.php:4483 ../../operation/heatmap.php:103
#: ../../operation/heatmap.php:105
-#: ../../operation/agentes/status_monitor.php:859
-#: ../../operation/agentes/estado_monitores.php:592
+#: ../../operation/agentes/status_monitor.php:858
+#: ../../operation/agentes/estado_monitores.php:590
#: ../../operation/agentes/ver_agente.php:1175
msgid "Module group"
msgstr ""
@@ -10602,14 +10756,14 @@ msgstr ""
#: ../../enterprise/godmode/agentes/plugins_manager.php:130
#: ../../enterprise/godmode/policies/policy_plugins.php:126
#: ../../godmode/modules/manage_network_components_form_common.php:53
-#: ../../godmode/users/configure_user.php:1406
-#: ../../godmode/netflow/nf_edit_form.php:251
+#: ../../godmode/users/configure_user.php:1455
+#: ../../godmode/netflow/nf_edit_form.php:296
#: ../../godmode/alerts/alert_commands.php:159
#: ../../godmode/alerts/alert_commands.php:196
#: ../../godmode/alerts/configure_alert_template.php:966
#: ../../godmode/alerts/configure_alert_template.php:1011
#: ../../godmode/alerts/configure_alert_template.php:1169
-#: ../../operation/netflow/nf_live_view.php:563
+#: ../../operation/netflow/nf_live_view.php:636
msgid "Advanced"
msgstr ""
@@ -10620,7 +10774,7 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380
#: ../../enterprise/meta/monitoring/wizard/wizard.php:150
-#: ../../godmode/reporting/graph_builder.graph_editor.php:423
+#: ../../godmode/reporting/graph_builder.graph_editor.php:438
msgid "Please, select a module"
msgstr ""
@@ -10630,7 +10784,7 @@ msgstr ""
#: ../../enterprise/include/class/Omnishell.class.php:975
#: ../../enterprise/include/class/Omnishell.class.php:1056
#: ../../enterprise/include/class/DB2.app.php:862
-#: ../../enterprise/include/class/SAP.app.php:924
+#: ../../enterprise/include/class/SAP.app.php:925
#: ../../enterprise/include/class/Aws.cloud.php:1467
#: ../../enterprise/include/class/MySQL.app.php:938
#: ../../enterprise/include/class/Oracle.app.php:970
@@ -10638,8 +10792,8 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:336
#: ../../godmode/alerts/configure_alert_template.php:1216
#: ../../godmode/wizards/HostDevices.class.php:1617
-#: ../../include/class/CustomNetScan.class.php:758
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1244
+#: ../../include/class/CustomNetScan.class.php:757
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1245
msgid "Finish"
msgstr ""
@@ -10673,8 +10827,8 @@ msgstr ""
#: ../../enterprise/godmode/agentes/collections.data.php:241
#: ../../enterprise/godmode/agentes/collections.data.php:272
#: ../../enterprise/godmode/agentes/collections.data.php:336
-#: ../../include/functions_events.php:3268
-#: ../../include/functions_events.php:3542
+#: ../../include/functions_events.php:3273
+#: ../../include/functions_events.php:3547
msgid "New"
msgstr ""
@@ -10693,18 +10847,18 @@ msgid "Please, select an agent"
msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.php:154
-#: ../../enterprise/godmode/policies/policy_modules.php:1764
+#: ../../enterprise/godmode/policies/policy_modules.php:1809
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195
#: ../../enterprise/include/class/CommandCenter.class.php:465
-#: ../../enterprise/operation/log/log_viewer.php:1051
-#: ../../enterprise/operation/log/log_viewer.php:1073
+#: ../../enterprise/operation/log/log_viewer.php:1049
+#: ../../enterprise/operation/log/log_viewer.php:1071
#: ../../enterprise/operation/services/services.treeview_services.php:197
-#: ../../godmode/groups/group_list.php:744
+#: ../../godmode/groups/group_list.php:745
#: ../../godmode/massive/massive_copy_modules.php:235
#: ../../godmode/massive/massive_operations.php:384
#: ../../godmode/massive/massive_add_profiles.php:292
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:602
-#: ../../include/functions_events.php:4282 ../../operation/tree.php:374
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:595
+#: ../../include/functions_events.php:4287 ../../operation/tree.php:376
#: ../../operation/reporting/reporting_viewer.php:340
#: ../../operation/reporting/graph_viewer.php:430
#: ../../general/ui/agents_list.php:146
@@ -10713,10 +10867,10 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.php:156
#: ../../enterprise/meta/include/functions_wizard_meta.php:642
-#: ../../godmode/tag/edit_tag.php:212
-#: ../../include/class/TipsWindow.class.php:726
-#: ../../include/class/TipsWindow.class.php:893
-#: ../../include/functions_reporting.php:7470
+#: ../../godmode/tag/edit_tag.php:216
+#: ../../include/class/TipsWindow.class.php:746
+#: ../../include/class/TipsWindow.class.php:913
+#: ../../include/functions_reporting.php:7479
#: ../../include/lib/Dashboard/Widgets/url.php:216
msgid "Url"
msgstr ""
@@ -10740,15 +10894,15 @@ msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.php:161
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:473
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:476
-#: ../../godmode/agentes/module_manager_editor_common.php:673
-#: ../../godmode/agentes/module_manager_editor_common.php:675
+#: ../../godmode/agentes/module_manager_editor_common.php:678
+#: ../../godmode/agentes/module_manager_editor_common.php:680
#, php-format
msgid "Agent interval x %s"
msgstr ""
#: ../../enterprise/meta/monitoring/wizard/wizard.php:365
msgid ""
-"This feature will be removed in version 771 and its\n"
+"This feature will be removed in version 773 and its\n"
" functions transferred to different metaconsole tools "
"( bulk operations, agent alert editing, etc).\n"
" The current functions of the wizard is minimal and we "
@@ -10761,9 +10915,10 @@ msgstr ""
#: ../../enterprise/meta/monitoring/group_view.php:64
#: ../../godmode/groups/group_list.php:324
+#: ../../godmode/users/configure_user.php:61
#: ../../godmode/users/user_management.php:40
#: ../../godmode/massive/massive_edit_users.php:276
-#: ../../operation/users/user_edit.php:471
+#: ../../include/auth/mysql.php:809 ../../operation/users/user_edit.php:471
#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176
msgid "Group view"
msgstr ""
@@ -10810,9 +10965,9 @@ msgid "% Monitors Not init"
msgstr ""
#: ../../enterprise/meta/monitoring/group_view.php:203
-#: ../../godmode/agentes/modificar_agente.php:1016
-#: ../../operation/agentes/estado_agente.php:1309
-#: ../../operation/agentes/group_view.php:600
+#: ../../godmode/agentes/modificar_agente.php:1028
+#: ../../operation/agentes/estado_agente.php:1318
+#: ../../operation/agentes/group_view.php:603
msgid "There are no defined agents"
msgstr ""
@@ -10827,15 +10982,15 @@ msgstr ""
#: ../../enterprise/meta/monitoring/group_view.php:232
#: ../../enterprise/operation/services/services.treeview_services.php:291
-#: ../../godmode/groups/group_list.php:1084
-#: ../../include/functions_reporting_html.php:2562
-#: ../../include/functions_reporting_html.php:2572
-#: ../../include/functions_inventory.php:511
-#: ../../include/functions_inventory.php:654
-#: ../../include/functions_alerts.php:3386
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:699
-#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241
-#: ../../operation/agentes/agent_inventory.php:266
+#: ../../godmode/groups/group_list.php:1096
+#: ../../include/functions_reporting_html.php:2583
+#: ../../include/functions_reporting_html.php:2593
+#: ../../include/functions_inventory.php:520
+#: ../../include/functions_inventory.php:663
+#: ../../include/functions_alerts.php:3387
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:692
+#: ../../operation/tree.php:505 ../../operation/agentes/group_view.php:244
+#: ../../operation/agentes/agent_inventory.php:321
msgid "Total"
msgstr ""
@@ -10845,18 +11000,18 @@ msgstr ""
#: ../../godmode/alerts/alert_view.php:111
#: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1284
#: ../../include/functions_agents.php:2998
-#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1417
-#: ../../include/class/AgentsAlerts.class.php:956
-#: ../../include/class/SnmpConsole.class.php:841
-#: ../../include/functions_reporting.php:13143
-#: ../../include/functions_events.php:2942
-#: ../../include/functions_events.php:3142
-#: ../../operation/agentes/group_view.php:252
+#: ../../include/functions_agents.php:3009 ../../include/functions_ui.php:1460
+#: ../../include/class/AgentsAlerts.class.php:957
+#: ../../include/class/SnmpConsole.class.php:843
+#: ../../include/functions_reporting.php:13216
+#: ../../include/functions_events.php:2947
+#: ../../include/functions_events.php:3147
+#: ../../operation/agentes/group_view.php:255
msgid "Alert fired"
msgstr ""
#: ../../enterprise/meta/monitoring/group_view.php:367
-#: ../../operation/agentes/group_view.php:343
+#: ../../operation/agentes/group_view.php:346
#, php-format
msgid ""
"This %s installation are using the secondary groups feature. For this "
@@ -10866,9 +11021,11 @@ msgstr ""
#: ../../enterprise/meta/monitoring/tactical.php:46
#: ../../enterprise/meta/general/main_header.php:103
#: ../../enterprise/meta/general/main_menu.php:205
+#: ../../godmode/users/configure_user.php:62
#: ../../godmode/users/user_management.php:41
#: ../../godmode/massive/massive_edit_users.php:277
#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97
+#: ../../include/auth/mysql.php:810
#: ../../include/lib/Dashboard/Widgets/tactical.php:176
#: ../../include/lib/Dashboard/Widgets/tactical.php:533
#: ../../operation/users/user_edit.php:472
@@ -10892,14 +11049,14 @@ msgstr ""
#: ../../enterprise/meta/general/main_menu.php:271
#: ../../enterprise/include/class/CommandCenter.class.php:1087
#: ../../enterprise/tools/ipam/ipam_network.php:427
-#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:246
+#: ../../enterprise/tools/ipam/ipam_massive.php:125 ../../godmode/menu.php:245
#: ../../godmode/events/events.php:142
#: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:51
-#: ../../mobile/operation/events.php:908 ../../include/functions.php:4167
-#: ../../include/ajax/events.php:2219 ../../include/functions_reports.php:876
+#: ../../mobile/operation/events.php:952 ../../include/functions.php:4193
+#: ../../include/ajax/events.php:2220 ../../include/functions_reports.php:876
#: ../../include/functions_reports.php:880
#: ../../include/functions_reports.php:884 ../../operation/menu.php:518
-#: ../../operation/events/events.php:1613
+#: ../../operation/events/events.php:1667
msgid "Events"
msgstr ""
@@ -10923,14 +11080,14 @@ msgstr ""
#: ../../enterprise/meta/event/custom_events.php:42
#: ../../godmode/netflow/nf_edit.php:211
-#: ../../godmode/netflow/nf_edit_form.php:69
+#: ../../godmode/netflow/nf_edit_form.php:80
#: ../../godmode/snmpconsole/snmp_filters.php:37
#: ../../godmode/events/event_filter.php:230
#: ../../include/ajax/custom_fields.php:654
msgid "Create filter"
msgstr ""
-#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241
+#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:240
#: ../../godmode/events/events.php:83
msgid "Event responses"
msgstr ""
@@ -10940,24 +11097,23 @@ msgstr ""
#: ../../enterprise/meta/event/custom_events.php:72
#: ../../enterprise/meta/event/custom_events.php:90
#: ../../godmode/agentes/fields_manager.php:59
-#: ../../godmode/agentes/agent_manager.php:1034 ../../godmode/menu.php:103
-#: ../../godmode/massive/massive_edit_agents.php:1251
+#: ../../godmode/agentes/agent_manager.php:1040 ../../godmode/menu.php:103
+#: ../../godmode/massive/massive_edit_agents.php:1267
#: ../../godmode/reporting/reporting_builder.item_editor.php:76
-#: ../../include/functions_reporting_html.php:1620
-#: ../../include/functions_events.php:4440
+#: ../../include/functions_reporting_html.php:1629
+#: ../../include/functions_events.php:4445
#: ../../operation/agentes/status_monitor.php:64
#: ../../operation/agentes/status_monitor.php:87
-#: ../../operation/agentes/status_monitor.php:293
-#: ../../operation/agentes/status_monitor.php:316
-#: ../../operation/agentes/ver_agente.php:1565
-#: ../../operation/agentes/ver_agente.php:1823
-#: ../../operation/inventory/inventory.php:1009
-#: ../../operation/inventory/inventory.php:1303
+#: ../../operation/agentes/status_monitor.php:292
+#: ../../operation/agentes/status_monitor.php:315
+#: ../../operation/agentes/ver_agente.php:1561
+#: ../../operation/agentes/ver_agente.php:1819
+#: ../../operation/inventory/inventory.php:1255
msgid "Custom fields"
msgstr ""
#: ../../enterprise/meta/event/custom_events.php:77
-#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790
+#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1791
msgid "Responses"
msgstr ""
@@ -10972,25 +11128,25 @@ msgid "Fields"
msgstr ""
#: ../../enterprise/meta/event/custom_events.php:173
-#: ../../godmode/agentes/status_monitor_custom_fields.php:168
+#: ../../godmode/agentes/status_monitor_custom_fields.php:188
#: ../../godmode/events/custom_events.php:127
msgid "Fields available"
msgstr ""
#: ../../enterprise/meta/event/custom_events.php:175
-#: ../../godmode/agentes/status_monitor_custom_fields.php:190
+#: ../../godmode/agentes/status_monitor_custom_fields.php:210
#: ../../godmode/events/custom_events.php:150
msgid "Fields selected"
msgstr ""
#: ../../enterprise/meta/event/custom_events.php:185
-#: ../../godmode/agentes/status_monitor_custom_fields.php:175
+#: ../../godmode/agentes/status_monitor_custom_fields.php:195
#: ../../godmode/events/custom_events.php:134
msgid "Add fields to select"
msgstr ""
#: ../../enterprise/meta/event/custom_events.php:195
-#: ../../godmode/agentes/status_monitor_custom_fields.php:184
+#: ../../godmode/agentes/status_monitor_custom_fields.php:204
#: ../../godmode/events/custom_events.php:144
msgid "Delete fields to select"
msgstr ""
@@ -11001,7 +11157,7 @@ msgid "Show event fields"
msgstr ""
#: ../../enterprise/meta/event/custom_events.php:244
-#: ../../godmode/agentes/status_monitor_custom_fields.php:252
+#: ../../godmode/agentes/status_monitor_custom_fields.php:272
#: ../../godmode/events/custom_events.php:232
msgid ""
"There must be at least one custom field. Timestamp will be set by default"
@@ -11045,9 +11201,9 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3007
#: ../../enterprise/include/functions_ipam.php:1665
#: ../../godmode/reporting/reporting_builder.list_items.php:442
-#: ../../godmode/reporting/reporting_builder.list_items.php:738
-#: ../../godmode/reporting/graph_builder.graph_editor.php:217
-#: ../../godmode/reporting/graph_builder.graph_editor.php:354
+#: ../../godmode/reporting/reporting_builder.list_items.php:739
+#: ../../godmode/reporting/graph_builder.graph_editor.php:267
+#: ../../godmode/reporting/graph_builder.graph_editor.php:350
msgid "Sort"
msgstr ""
@@ -11134,7 +11290,7 @@ msgstr ""
#: ../../godmode/users/profile_list.php:61
#: ../../godmode/users/configure_profile.php:54
#: ../../godmode/users/user_list.php:251 ../../godmode/users/user_list.php:276
-#: ../../godmode/users/configure_user.php:245
+#: ../../godmode/users/configure_user.php:183
#: ../../operation/users/user_edit_header.php:89
msgid "User management"
msgstr ""
@@ -11144,7 +11300,7 @@ msgstr ""
#: ../../godmode/users/profile_list.php:72
#: ../../godmode/users/configure_profile.php:65
#: ../../godmode/users/user_list.php:262
-#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159
+#: ../../godmode/users/configure_user.php:194 ../../godmode/menu.php:159
msgid "Profile management"
msgstr ""
@@ -11179,11 +11335,10 @@ msgstr ""
#: ../../godmode/groups/tactical.php:179
#: ../../godmode/agentes/agent_manager.php:373
#: ../../godmode/reporting/reporting_builder.item_editor.php:69
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3993
-#: ../../include/functions_reporting_html.php:1592
-#: ../../include/functions_reporting_html.php:1756
-#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999
-#: ../../operation/inventory/inventory.php:1293
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4002
+#: ../../include/functions_reporting_html.php:1601
+#: ../../include/functions_reporting_html.php:1765
+#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:1245
msgid "Alias"
msgstr ""
@@ -11195,11 +11350,11 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:725
#: ../../godmode/agentes/agent_manager.php:401
#: ../../godmode/servers/modificar_server.php:95
-#: ../../include/functions_reporting_html.php:1596
-#: ../../include/functions_reporting_html.php:4139
-#: ../../include/functions_reporting_html.php:4233
-#: ../../include/functions_treeview.php:643
-#: ../../include/functions_events.php:4372
+#: ../../include/functions_reporting_html.php:1605
+#: ../../include/functions_reporting_html.php:4167
+#: ../../include/functions_reporting_html.php:4261
+#: ../../include/functions_treeview.php:647
+#: ../../include/functions_events.php:4377
#: ../../operation/gis_maps/ajax.php:290
msgid "IP Address"
msgstr ""
@@ -11207,7 +11362,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:236
#: ../../enterprise/meta/include/functions_wizard_meta.php:682
#: ../../enterprise/godmode/modules/configure_local_component.php:515
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:206
#: ../../enterprise/godmode/setup/setup_log_collector.php:89
#: ../../enterprise/include/functions_metaconsole.php:1339
#: ../../enterprise/include/functions_metaconsole.php:1372
@@ -11216,7 +11371,7 @@ msgstr ""
#: ../../enterprise/include/functions_metaconsole.php:1471
#: ../../enterprise/include/functions_metaconsole.php:1502
#: ../../enterprise/include/functions_metaconsole.php:1535
-#: ../../godmode/agentes/module_manager_editor_web.php:179
+#: ../../godmode/agentes/module_manager_editor_web.php:182
msgid "Check"
msgstr ""
@@ -11230,9 +11385,9 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:246
#: ../../godmode/alerts/configure_alert_template.php:250
#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:268
-#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1740
+#: ../../godmode/servers/plugin.php:414 ../../include/ajax/events.php:1741
#: ../../include/functions_reports.php:783
-#: ../../include/functions_reporting.php:10176
+#: ../../include/functions_reporting.php:10185
msgid "General"
msgstr ""
@@ -11258,7 +11413,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:492
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753
#: ../../godmode/agentes/module_manager_editor_wmi.php:57
-#: ../../godmode/agentes/module_manager_editor_network.php:103
+#: ../../godmode/agentes/module_manager_editor_network.php:104
#: ../../godmode/massive/massive_edit_modules.php:832
msgid "Auto"
msgstr ""
@@ -11266,7 +11421,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:493
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754
#: ../../godmode/agentes/module_manager_editor_wmi.php:58
-#: ../../godmode/agentes/module_manager_editor_network.php:104
+#: ../../godmode/agentes/module_manager_editor_network.php:105
#: ../../godmode/massive/massive_edit_modules.php:833
msgid "Force primary key"
msgstr ""
@@ -11281,8 +11436,8 @@ msgstr ""
#: ../../enterprise/meta/general/login_page.php:267
#: ../../enterprise/extensions/disabled/check_acls.php:47
#: ../../enterprise/extensions/disabled/check_acls.php:132
-#: ../../enterprise/godmode/setup/setup_auth.php:1130
-#: ../../enterprise/godmode/setup/setup_auth.php:1162
+#: ../../enterprise/godmode/setup/setup_auth.php:1347
+#: ../../enterprise/godmode/setup/setup_auth.php:1379
#: ../../enterprise/godmode/servers/manage_export_form.php:155
#: ../../enterprise/include/functions_tasklist.php:172
#: ../../enterprise/include/class/DB2.app.php:509
@@ -11294,25 +11449,24 @@ msgstr ""
#: ../../godmode/update_manager/update_manager.history.php:43
#: ../../godmode/setup/setup_ehorus.php:97
#: ../../godmode/setup/setup_integria.php:292
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3525
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3534
#: ../../godmode/events/custom_events.php:97
-#: ../../mobile/include/user.class.php:392
-#: ../../mobile/operation/tactical.php:349
-#: ../../include/functions_reporting_html.php:6011
+#: ../../mobile/operation/tactical.php:350
+#: ../../include/functions_reporting_html.php:6045
#: ../../include/functions.php:3109 ../../include/functions_cron.php:498
-#: ../../include/functions_config.php:731
-#: ../../include/functions_config.php:751
+#: ../../include/functions_config.php:743
+#: ../../include/functions_config.php:763
#: ../../include/class/CredentialStore.class.php:817
-#: ../../include/class/CredentialStore.class.php:1300
+#: ../../include/class/CredentialStore.class.php:1301
#: ../../include/class/AuditLog.class.php:110
#: ../../include/class/AuditLog.class.php:240
#: ../../include/functions_events.php:202
#: ../../include/functions_events.php:253 ../../operation/search_users.php:71
-#: ../../operation/users/user_edit.php:857
-#: ../../operation/users/user_edit.php:910
+#: ../../operation/users/user_edit.php:854
+#: ../../operation/users/user_edit.php:907
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:134
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:265
-#: ../../general/logon_ok.php:255 ../../general/login_page.php:276
+#: ../../general/logon_ok.php:300 ../../general/login_page.php:276
#: ../../general/login_page.php:335
msgid "User"
msgstr ""
@@ -11326,8 +11480,8 @@ msgstr ""
#: ../../enterprise/meta/general/login_page.php:284
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851
#: ../../enterprise/godmode/setup/setup_module_library.php:57
-#: ../../enterprise/godmode/setup/setup_auth.php:1136
-#: ../../enterprise/godmode/setup/setup_auth.php:1168
+#: ../../enterprise/godmode/setup/setup_auth.php:1353
+#: ../../enterprise/godmode/setup/setup_auth.php:1385
#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250
#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59
#: ../../enterprise/godmode/servers/manage_export_form.php:161
@@ -11343,23 +11497,22 @@ msgstr ""
#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:532
#: ../../extensions/api_checker.php:260
#: ../../godmode/modules/manage_network_components_form_wmi.php:49
-#: ../../godmode/users/configure_user.php:1126
+#: ../../godmode/users/configure_user.php:1190
#: ../../godmode/users/user_management.php:280
#: ../../godmode/agentes/module_manager_editor_wmi.php:148
#: ../../godmode/massive/massive_edit_modules.php:923
#: ../../godmode/setup/setup_ehorus.php:104
#: ../../godmode/setup/setup_integria.php:306
-#: ../../mobile/include/user.class.php:399 ../../include/functions_ui.php:7484
-#: ../../include/functions_config.php:735
-#: ../../include/functions_config.php:755
+#: ../../include/functions_ui.php:7561 ../../include/functions_config.php:747
+#: ../../include/functions_config.php:767
#: ../../include/class/CredentialStore.class.php:974
#: ../../include/class/CredentialStore.class.php:1024
-#: ../../include/class/CredentialStore.class.php:1301
-#: ../../include/class/CredentialStore.class.php:1324
-#: ../../include/class/CredentialStore.class.php:1346
+#: ../../include/class/CredentialStore.class.php:1302
+#: ../../include/class/CredentialStore.class.php:1328
+#: ../../include/class/CredentialStore.class.php:1352
#: ../../include/class/AgentWizard.class.php:690
-#: ../../operation/users/user_edit.php:863
-#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290
+#: ../../operation/users/user_edit.php:860
+#: ../../operation/users/user_edit.php:913 ../../general/login_page.php:290
#: ../../general/login_page.php:351
msgid "Password"
msgstr ""
@@ -11373,14 +11526,14 @@ msgid "Response"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:593
-#: ../../godmode/agentes/module_manager_editor_web.php:213
+#: ../../godmode/agentes/module_manager_editor_web.php:216
msgid "Check type"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:610
#: ../../enterprise/meta/include/functions_wizard_meta.php:667
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1066
-#: ../../enterprise/include/functions_enterprise.php:447
+#: ../../enterprise/include/functions_enterprise.php:457
#: ../../godmode/agentes/module_manager_editor_web.php:92
#: ../../godmode/massive/massive_edit_modules.php:1156
msgid "Web checks"
@@ -11400,47 +11553,47 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:674
#: ../../enterprise/godmode/modules/configure_local_component.php:506
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217
-#: ../../godmode/agentes/module_manager_editor_web.php:168
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:218
+#: ../../godmode/agentes/module_manager_editor_web.php:171
msgid "Load basic"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:680
-#: ../../godmode/agentes/module_manager_editor_web.php:177
+#: ../../godmode/agentes/module_manager_editor_web.php:180
msgid "Load a basic structure on Web Checks"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:688
-#: ../../godmode/agentes/module_manager_editor_web.php:188
+#: ../../godmode/agentes/module_manager_editor_web.php:191
msgid "Check the correct structure of the WebCheck"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:695
-#: ../../godmode/agentes/module_manager_editor_web.php:267
+#: ../../godmode/agentes/module_manager_editor_web.php:270
msgid "First line must be \"task_begin\""
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:696
-#: ../../godmode/agentes/module_manager_editor_web.php:268
+#: ../../godmode/agentes/module_manager_editor_web.php:271
msgid "Webchecks configuration is empty"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:697
#: ../../enterprise/meta/include/functions_wizard_meta.php:698
-#: ../../godmode/agentes/module_manager_editor_web.php:269
-#: ../../godmode/agentes/module_manager_editor_web.php:270
+#: ../../godmode/agentes/module_manager_editor_web.php:272
+#: ../../godmode/agentes/module_manager_editor_web.php:273
msgid "Last line must be \"task_end\""
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:699
#: ../../enterprise/godmode/modules/configure_local_component.php:525
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256
-#: ../../godmode/agentes/module_manager_editor_web.php:271
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257
+#: ../../godmode/agentes/module_manager_editor_web.php:274
msgid "There is a line with a unknown token 'token_fail'."
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:700
-#: ../../godmode/agentes/module_manager_editor_web.php:273
+#: ../../godmode/agentes/module_manager_editor_web.php:276
msgid "Web checks are built correctly"
msgstr ""
@@ -11473,43 +11626,42 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:784
#: ../../enterprise/tools/ipam/ipam_list.php:724
#: ../../godmode/modules/manage_network_components_form_common.php:143
-#: ../../godmode/agentes/status_monitor_custom_fields.php:93
-#: ../../godmode/agentes/status_monitor_custom_fields.php:145
+#: ../../godmode/agentes/status_monitor_custom_fields.php:113
+#: ../../godmode/agentes/status_monitor_custom_fields.php:165
#: ../../godmode/agentes/inventory_manager.php:236
#: ../../godmode/agentes/agent_manager.php:503
-#: ../../godmode/agentes/module_manager_editor_common.php:1067
+#: ../../godmode/agentes/module_manager_editor_common.php:1077
#: ../../godmode/agentes/module_manager.php:637
-#: ../../godmode/massive/massive_edit_agents.php:714
+#: ../../godmode/massive/massive_edit_agents.php:731
#: ../../godmode/massive/massive_edit_modules.php:769
-#: ../../godmode/setup/setup_visuals.php:1919
-#: ../../godmode/setup/setup_visuals.php:2001
+#: ../../godmode/setup/setup_visuals.php:1934
+#: ../../godmode/setup/setup_visuals.php:2016
#: ../../godmode/wizards/HostDevices.class.php:799
#: ../../godmode/wizards/DiscoveryTaskList.class.php:599
-#: ../../mobile/operation/modules.php:657
-#: ../../mobile/operation/modules.php:659
-#: ../../mobile/operation/modules.php:851
-#: ../../include/functions_reporting_html.php:3712
-#: ../../include/ajax/events.php:2372 ../../include/functions_treeview.php:83
-#: ../../include/functions_treeview.php:649 ../../include/functions_ui.php:7417
+#: ../../mobile/operation/modules.php:668
+#: ../../mobile/operation/modules.php:670
+#: ../../mobile/operation/modules.php:910
+#: ../../include/functions_reporting_html.php:3740
+#: ../../include/ajax/events.php:2373 ../../include/functions_treeview.php:83
+#: ../../include/functions_treeview.php:653 ../../include/functions_ui.php:7494
#: ../../include/class/CustomNetScan.class.php:526
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:376
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:319
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:408
#: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:362
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:387
#: ../../include/lib/Dashboard/Widgets/single_graph.php:347
#: ../../include/lib/Dashboard/Widgets/top_n.php:236
#: ../../include/lib/Group.php:570 ../../operation/search_agents.php:45
#: ../../operation/search_agents.php:51
-#: ../../operation/agentes/estado_agente.php:1035
-#: ../../operation/agentes/status_monitor.php:1560
-#: ../../operation/agentes/estado_generalagente.php:458
+#: ../../operation/agentes/status_monitor.php:1562
+#: ../../operation/agentes/estado_generalagente.php:429
#: ../../operation/network/network_usage_map.php:114
-#: ../../operation/netflow/nf_live_view.php:389
-#: ../../operation/inventory/inventory.php:1006
-#: ../../operation/inventory/inventory.php:1300
-#: ../../operation/search_modules.php:35
-#: ../../operation/events/sound_events.php:219
+#: ../../operation/netflow/nf_live_view.php:462
+#: ../../operation/inventory/inventory.php:1252
+#: ../../operation/search_modules.php:38
+#: ../../operation/events/sound_events.php:249
msgid "Interval"
msgstr ""
@@ -11523,9 +11675,9 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:868
#: ../../enterprise/include/functions_reporting_csv.php:2791
#: ../../godmode/modules/manage_network_components_form_common.php:323
-#: ../../godmode/agentes/module_manager_editor_common.php:1327
+#: ../../godmode/agentes/module_manager_editor_common.php:1337
#: ../../godmode/massive/massive_edit_modules.php:940
-#: ../../include/functions_reporting_html.php:3713
+#: ../../include/functions_reporting_html.php:3741
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498
msgid "Unit"
msgstr ""
@@ -11548,7 +11700,7 @@ msgstr ""
#: ../../enterprise/include/class/DeploymentCenter.class.php:1344
#: ../../enterprise/include/class/DeploymentCenter.class.php:1354
#: ../../extensions/api_checker.php:331
-#: ../../godmode/wizards/HostDevices.class.php:1508
+#: ../../godmode/wizards/HostDevices.class.php:1504
msgid "Credentials"
msgstr ""
@@ -11573,9 +11725,9 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268
#: ../../godmode/alerts/alert_view.php:272
#: ../../godmode/reporting/reporting_builder.item_editor.php:1483
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2574
-#: ../../include/functions_reporting_html.php:5008
-#: ../../include/functions_ui.php:2869
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2583
+#: ../../include/functions_reporting_html.php:5036
+#: ../../include/functions.php:4088 ../../include/functions_ui.php:2912
#: ../../include/functions_reporting.php:1539
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410
@@ -11604,9 +11756,9 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268
#: ../../godmode/alerts/alert_view.php:272
#: ../../godmode/reporting/reporting_builder.item_editor.php:1485
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2567
-#: ../../include/functions_reporting_html.php:5007
-#: ../../include/functions_ui.php:2869
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2576
+#: ../../include/functions_reporting_html.php:5035
+#: ../../include/functions.php:4095 ../../include/functions_ui.php:2912
#: ../../include/functions_reporting.php:1535
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419
@@ -11637,8 +11789,8 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wizard.php:444
#: ../../godmode/agentes/module_manager_editor_common.php:477
#: ../../godmode/agentes/module_manager_editor_common.php:485
-#: ../../godmode/agentes/module_manager_editor_common.php:560
-#: ../../godmode/agentes/module_manager_editor_common.php:569
+#: ../../godmode/agentes/module_manager_editor_common.php:565
+#: ../../godmode/agentes/module_manager_editor_common.php:574
#: ../../godmode/massive/massive_edit_modules.php:625
#: ../../godmode/massive/massive_edit_modules.php:716
msgid "Inverse interval"
@@ -11647,13 +11799,13 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:996
#: ../../enterprise/meta/include/functions_wizard_meta.php:1081
#: ../../enterprise/meta/include/functions_wizard_meta.php:1314
-#: ../../include/ajax/module.php:1004
+#: ../../include/ajax/module.php:1027
msgid "Thresholds"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:1087
#: ../../enterprise/meta/include/functions_wizard_meta.php:1619
-#: ../../godmode/agentes/module_manager_editor_web.php:238
+#: ../../godmode/agentes/module_manager_editor_web.php:241
msgid "Proxy URL"
msgstr ""
@@ -11678,7 +11830,7 @@ msgid "Alerts in module"
msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:1376
-#: ../../include/functions_reporting_html.php:5372
+#: ../../include/functions_reporting_html.php:5400
msgid "Alert description"
msgstr ""
@@ -11714,7 +11866,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_wizard_meta.php:2064
#: ../../enterprise/meta/include/functions_wizard_meta.php:2159
-#: ../../enterprise/godmode/policies/policy_modules.php:933
+#: ../../enterprise/godmode/policies/policy_modules.php:937
msgid "Successfully added module."
msgstr ""
@@ -11791,7 +11943,7 @@ msgstr ""
#: ../../enterprise/include/ajax/ipam.ajax.php:521
#: ../../enterprise/tools/ipam/ipam_editor.php:364
#: ../../godmode/alerts/alert_templates.php:71
-#: ../../include/functions_config.php:1684
+#: ../../include/functions_config.php:1696
msgid "Days"
msgstr ""
@@ -11806,7 +11958,7 @@ msgid "and"
msgstr ""
#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:318
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263
#: ../../godmode/snmpconsole/snmp_alert.php:1589
@@ -11832,8 +11984,8 @@ msgstr ""
#: ../../godmode/alerts/alert_list.list.php:733
#: ../../godmode/alerts/alert_templates.php:94
#: ../../include/functions_reporting_html.php:148
-#: ../../include/functions_reporting_html.php:3202
-#: ../../include/functions_reporting_html.php:4013
+#: ../../include/functions_reporting_html.php:3230
+#: ../../include/functions_reporting_html.php:4041
#: ../../include/rest-api/index.php:375
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513
@@ -11859,10 +12011,10 @@ msgstr ""
#: ../../godmode/alerts/alert_templates.php:96
#: ../../godmode/alerts/alert_list.builder.php:126
#: ../../include/functions_reporting_html.php:149
-#: ../../include/functions_reporting_html.php:3207
+#: ../../include/functions_reporting_html.php:3235
#: ../../include/ajax/alert_list.ajax.php:527
#: ../../include/class/AgentsAlerts.class.php:321
-#: ../../include/functions_reporting.php:14866
+#: ../../include/functions_reporting.php:14939
#: ../../operation/reporting/reporting_viewer.php:272
msgid "to"
msgstr ""
@@ -11886,10 +12038,10 @@ msgstr ""
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:587
#: ../../include/functions_reporting_html.php:1307
#: ../../include/functions_reporting_html.php:1315
-#: ../../include/functions_reporting_html.php:5304
+#: ../../include/functions_reporting_html.php:5332
#: ../../include/functions_events.php:200
#: ../../include/functions_events.php:2529
-#: ../../include/functions_events.php:4901
+#: ../../include/functions_events.php:4906
msgid "Event name"
msgstr ""
@@ -11897,17 +12049,17 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:921
#: ../../enterprise/include/class/Omnishell.class.php:642
#: ../../enterprise/include/functions_ipam.php:2114
-#: ../../godmode/agentes/modificar_agente.php:690
+#: ../../godmode/agentes/modificar_agente.php:700
#: ../../godmode/agentes/agent_manager.php:357
-#: ../../mobile/operation/modules.php:597
-#: ../../mobile/operation/modules.php:849
-#: ../../include/functions_reporting_html.php:3659
-#: ../../include/functions_treeview.php:607
+#: ../../mobile/operation/modules.php:608
+#: ../../mobile/operation/modules.php:908
+#: ../../include/functions_reporting_html.php:3687
+#: ../../include/functions_treeview.php:611
#: ../../include/class/SatelliteAgent.class.php:513
#: ../../include/lib/Group.php:550 ../../include/functions_events.php:201
#: ../../include/functions_events.php:247
#: ../../include/functions_events.php:2534
-#: ../../operation/events/events.php:2669
+#: ../../operation/events/events.php:2723
msgid "Agent name"
msgstr ""
@@ -11922,39 +12074,41 @@ msgstr ""
#: ../../enterprise/include/class/LogSource.class.php:604
#: ../../enterprise/operation/agentes/tag_view.php:789
#: ../../godmode/update_manager/update_manager.history.php:44
-#: ../../godmode/agentes/status_monitor_custom_fields.php:117
-#: ../../godmode/agentes/status_monitor_custom_fields.php:151
-#: ../../godmode/setup/news.php:352 ../../godmode/events/custom_events.php:100
-#: ../../mobile/operation/modules.php:661
-#: ../../mobile/operation/modules.php:852 ../../mobile/operation/events.php:804
+#: ../../godmode/agentes/status_monitor_custom_fields.php:137
+#: ../../godmode/agentes/status_monitor_custom_fields.php:171
+#: ../../godmode/setup/news.php:356 ../../godmode/events/custom_events.php:100
+#: ../../mobile/operation/modules.php:672
+#: ../../mobile/operation/modules.php:911
+#: ../../mobile/operation/module_data.php:165
+#: ../../mobile/operation/events.php:833
#: ../../include/functions_reporting_html.php:1062
#: ../../include/functions_reporting_html.php:1070
#: ../../include/functions_reporting_html.php:1310
#: ../../include/functions_reporting_html.php:1317
-#: ../../include/functions_reporting_html.php:2646
-#: ../../include/functions_reporting_html.php:5306
+#: ../../include/functions_reporting_html.php:2665
+#: ../../include/functions_reporting_html.php:5334
#: ../../include/ajax/events_extended.php:90
#: ../../include/ajax/custom_fields.php:415
-#: ../../include/functions_inventory.php:143
-#: ../../include/functions_inventory.php:177
-#: ../../include/functions_inventory.php:379
-#: ../../include/functions_inventory.php:399
-#: ../../include/functions_inventory.php:585
+#: ../../include/functions_inventory.php:144
+#: ../../include/functions_inventory.php:178
+#: ../../include/functions_inventory.php:388
+#: ../../include/functions_inventory.php:408
+#: ../../include/functions_inventory.php:594
#: ../../include/functions_netflow.php:278
#: ../../include/class/SnmpConsole.class.php:279
#: ../../include/functions_events.php:205
#: ../../include/functions_events.php:262
#: ../../include/functions_events.php:2539
-#: ../../include/functions_events.php:4914
+#: ../../include/functions_events.php:4919
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
-#: ../../operation/agentes/status_monitor.php:1598
-#: ../../operation/agentes/estado_generalagente.php:751
+#: ../../operation/agentes/status_monitor.php:1600
+#: ../../operation/agentes/estado_generalagente.php:720
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/messages/message_list.php:196
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:132
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:263
-#: ../../operation/search_modules.php:39
+#: ../../operation/search_modules.php:42
msgid "Timestamp"
msgstr ""
@@ -11964,13 +12118,13 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1406
#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127
#: ../../enterprise/include/functions_events.php:60
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3025
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3034
#: ../../godmode/events/event_filter.php:146
-#: ../../godmode/events/event_edit_filter.php:352
+#: ../../godmode/events/event_edit_filter.php:354
#: ../../include/lib/Dashboard/Widgets/events_list.php:332
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267
#: ../../include/functions_events.php:206
-#: ../../operation/events/events.php:1749
+#: ../../operation/events/events.php:1803
msgid "Event type"
msgstr ""
@@ -11979,21 +12133,22 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:923
#: ../../enterprise/operation/agentes/tag_view.php:217
#: ../../godmode/modules/manage_network_templates_form.php:231
-#: ../../godmode/modules/manage_network_components.php:774
+#: ../../godmode/modules/manage_network_components.php:777
#: ../../godmode/modules/manage_network_components_form_wizard.php:272
#: ../../godmode/agentes/agent_template.php:274
-#: ../../godmode/agentes/status_monitor_custom_fields.php:85
-#: ../../godmode/agentes/status_monitor_custom_fields.php:143
+#: ../../godmode/agentes/status_monitor_custom_fields.php:105
+#: ../../godmode/agentes/status_monitor_custom_fields.php:163
#: ../../godmode/alerts/alert_list.list.php:104
-#: ../../mobile/operation/modules.php:594
-#: ../../mobile/operation/modules.php:848
-#: ../../include/ajax/heatmap.ajax.php:239
-#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001
+#: ../../mobile/operation/modules.php:602
+#: ../../mobile/operation/modules.php:604
+#: ../../mobile/operation/modules.php:907
+#: ../../include/ajax/heatmap.ajax.php:281
+#: ../../include/ajax/heatmap.ajax.php:406 ../../include/ajax/module.php:1024
#: ../../include/ajax/custom_fields.php:411
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558
-#: ../../operation/agentes/status_monitor.php:902
-#: ../../operation/agentes/status_monitor.php:1548
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:543
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:559
+#: ../../operation/agentes/status_monitor.php:901
+#: ../../operation/agentes/status_monitor.php:1550
msgid "Module name"
msgstr ""
@@ -12004,7 +12159,7 @@ msgstr ""
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:380
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4422
#: ../../godmode/alerts/configure_alert_template.php:1602
-#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4174
+#: ../../godmode/events/custom_events.php:103 ../../include/functions.php:4200
#: ../../include/functions_snmp.php:324
#: ../../include/class/SnmpConsole.class.php:280
#: ../../include/class/SnmpConsole.class.php:352
@@ -12012,7 +12167,7 @@ msgstr ""
#: ../../include/class/SnmpConsole.class.php:507
#: ../../include/functions_events.php:208
#: ../../include/functions_events.php:271
-#: ../../operation/agentes/estado_monitores.php:517
+#: ../../operation/agentes/estado_monitores.php:514
msgid "Alert"
msgstr ""
@@ -12023,18 +12178,18 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2867
#: ../../enterprise/include/functions_reporting.php:2020
#: ../../enterprise/include/functions_events.php:70
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3007
#: ../../godmode/events/event_filter.php:148
-#: ../../godmode/events/event_edit_filter.php:372
+#: ../../godmode/events/event_edit_filter.php:374
#: ../../godmode/events/custom_events.php:104
-#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679
-#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982
-#: ../../mobile/operation/events.php:983
+#: ../../mobile/operation/events.php:707 ../../mobile/operation/events.php:708
+#: ../../mobile/operation/events.php:849 ../../mobile/operation/events.php:1026
+#: ../../mobile/operation/events.php:1027
#: ../../include/functions_reporting_html.php:1060
#: ../../include/functions_reporting_html.php:1068
#: ../../include/functions_reporting_html.php:1308
#: ../../include/functions_reporting_html.php:1316
-#: ../../include/functions_reporting_html.php:2644
+#: ../../include/functions_reporting_html.php:2663
#: ../../include/functions_snmp.php:335
#: ../../include/class/SnmpConsole.class.php:363
#: ../../include/class/SnmpConsole.class.php:483
@@ -12042,20 +12197,20 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:396
#: ../../include/functions_events.php:209
#: ../../include/functions_events.php:274
-#: ../../include/functions_events.php:4982
-#: ../../operation/events/events.php:1850
+#: ../../include/functions_events.php:4987
+#: ../../operation/events/events.php:1904
msgid "Severity"
msgstr ""
#: ../../enterprise/meta/include/functions_events_meta.php:102
-#: ../../godmode/events/event_edit_filter.php:829
+#: ../../godmode/events/event_edit_filter.php:831
#: ../../godmode/events/custom_events.php:105
-#: ../../godmode/wizards/HostDevices.class.php:960
+#: ../../godmode/wizards/HostDevices.class.php:956
#: ../../include/class/CustomNetScan.class.php:474
#: ../../include/functions_events.php:210
#: ../../include/functions_events.php:277
-#: ../../include/functions_events.php:3622
-#: ../../operation/events/events.php:1906
+#: ../../include/functions_events.php:3627
+#: ../../operation/events/events.php:1960
msgid "Comment"
msgstr ""
@@ -12066,7 +12221,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971
#: ../../enterprise/godmode/setup/setup_auth.php:253
#: ../../enterprise/godmode/setup/setup_auth.php:603
-#: ../../enterprise/godmode/setup/setup_auth.php:1413
+#: ../../enterprise/godmode/setup/setup_auth.php:1630
#: ../../enterprise/include/functions_reporting_csv.php:763
#: ../../enterprise/operation/agentes/tag_view.php:241
#: ../../enterprise/operation/agentes/tag_view.php:781
@@ -12078,21 +12233,21 @@ msgstr ""
#: ../../godmode/massive/massive_edit_modules.php:491
#: ../../godmode/massive/massive_edit_modules.php:1062
#: ../../godmode/reporting/reporting_builder.item_editor.php:85
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3964
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3973
#: ../../godmode/events/custom_events.php:106
-#: ../../mobile/operation/events.php:845
-#: ../../include/functions_reporting_html.php:1772
-#: ../../include/functions_reporting_html.php:3715
+#: ../../mobile/operation/events.php:874
+#: ../../include/functions_reporting_html.php:1781
+#: ../../include/functions_reporting_html.php:3743
#: ../../include/functions_treeview.php:152
#: ../../include/functions_profile.php:205
#: ../../include/lib/Dashboard/Widgets/events_list.php:461
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:342
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:345
#: ../../include/functions_events.php:211
#: ../../include/functions_events.php:280
-#: ../../include/functions_events.php:5080 ../../operation/tree.php:67
-#: ../../operation/users/user_edit.php:1000
-#: ../../operation/agentes/status_monitor.php:878
-#: ../../operation/agentes/group_view.php:240
+#: ../../include/functions_events.php:5085 ../../operation/tree.php:67
+#: ../../operation/users/user_edit.php:997
+#: ../../operation/agentes/status_monitor.php:877
+#: ../../operation/agentes/group_view.php:243
#: ../../operation/agentes/alerts_status.functions.php:146
#: ../../general/first_task/tags.php:22
msgid "Tags"
@@ -12100,7 +12255,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_events_meta.php:114
#: ../../include/functions_events.php:213
-#: ../../include/functions_events.php:4626
+#: ../../include/functions_events.php:4631
msgid "Extra id"
msgstr ""
@@ -12108,14 +12263,14 @@ msgstr ""
#: ../../godmode/setup/setup_integria.php:464
#: ../../godmode/setup/setup_integria.php:598
#: ../../godmode/events/custom_events.php:109
-#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214
+#: ../../mobile/operation/events.php:837 ../../include/functions_events.php:214
#: ../../include/functions_events.php:289
-#: ../../include/functions_events.php:4936
+#: ../../include/functions_events.php:4941
#: ../../operation/incidents/integriaims_export_csv.php:89
#: ../../operation/incidents/configure_integriaims_incident.php:339
#: ../../operation/incidents/list_integriaims_incidents.php:360
#: ../../operation/incidents/list_integriaims_incidents.php:593
-#: ../../operation/events/events.php:2026
+#: ../../operation/events/events.php:2080
msgid "Owner"
msgstr ""
@@ -12130,8 +12285,8 @@ msgstr ""
#: ../../godmode/events/custom_events.php:111
#: ../../include/functions_events.php:216
#: ../../include/functions_events.php:295
-#: ../../include/functions_events.php:4614
-#: ../../operation/events/events.php:3239
+#: ../../include/functions_events.php:4619
+#: ../../operation/events/events.php:3298
msgid "Instructions"
msgstr ""
@@ -12147,11 +12302,11 @@ msgid "Server name"
msgstr ""
#: ../../enterprise/meta/include/functions_events_meta.php:138
-#: ../../include/functions_reporting_html.php:5216
+#: ../../include/functions_reporting_html.php:5244
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172
#: ../../include/lib/Dashboard/Widgets/module_status.php:175
#: ../../include/lib/Dashboard/Widgets/module_status.php:610
-#: ../../include/functions_events.php:219 ../../operation/tree.php:315
+#: ../../include/functions_events.php:219 ../../operation/tree.php:317
msgid "Module status"
msgstr ""
@@ -12195,8 +12350,8 @@ msgstr ""
#: ../../enterprise/meta/include/process_reset_pass.php:58
#: ../../enterprise/meta/include/reset_pass.php:58
#: ../../enterprise/godmode/modules/configure_local_component.php:657
-#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624
-#: ../../include/class/ManageNetScanScripts.class.php:698
+#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1667
+#: ../../include/class/ManageNetScanScripts.class.php:694
msgid "Help"
msgstr ""
@@ -12217,8 +12372,8 @@ msgid "Change password"
msgstr ""
#: ../../enterprise/meta/include/process_reset_pass.php:123
-#: ../../enterprise/meta/index.php:691
-#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856
+#: ../../enterprise/meta/index.php:692
+#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:857
msgid "Passwords must be the same"
msgstr ""
@@ -12243,8 +12398,7 @@ msgstr ""
#: ../../enterprise/meta/general/login_page.php:316
#: ../../enterprise/include/process_reset_pass.php:239
#: ../../enterprise/include/reset_pass.php:213
-#: ../../enterprise/include/reset_pass.php:320
-#: ../../include/functions_menu.php:955 ../../general/login_page.php:460
+#: ../../enterprise/include/reset_pass.php:320 ../../general/login_page.php:460
msgid "Build"
msgstr ""
@@ -12306,7 +12460,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_agents_meta.php:661
#: ../../enterprise/extensions/disabled/check_acls.php:50
#: ../../enterprise/extensions/disabled/check_acls.php:137
-#: ../../include/functions_menu.php:567
+#: ../../include/functions_menu.php:569
msgid "Agents management"
msgstr ""
@@ -12322,7 +12476,7 @@ msgid "No admin user"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:71
-#: ../../include/functions_config.php:438
+#: ../../include/functions_config.php:446
msgid "Activate Metaconsole"
msgstr ""
@@ -12370,27 +12524,27 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:533
#: ../../enterprise/godmode/setup/setup_log_collector.php:64
-#: ../../include/functions_config.php:1625
+#: ../../include/functions_config.php:1637
msgid "Number of logs viewed"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:554
#: ../../godmode/setup/setup_auth.php:483
-#: ../../include/functions_config.php:559
+#: ../../include/functions_config.php:567
#: ../../include/class/CredentialStore.class.php:1162
-#: ../../include/class/CredentialStore.class.php:1455
+#: ../../include/class/CredentialStore.class.php:1464
#: ../../include/class/AgentWizard.class.php:925
msgid "Authentication method"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:564
-#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691
+#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:703
msgid "Fallback to local authentication"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:574
#: ../../enterprise/meta/include/functions_meta.php:798
-#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:563
+#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:571
msgid "Autocreate remote users"
msgstr ""
@@ -12398,8 +12552,8 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:55
#: ../../enterprise/godmode/setup/setup_auth.php:325
#: ../../enterprise/godmode/setup/setup_auth.php:457
-#: ../../enterprise/godmode/setup/setup_auth.php:1250
-#: ../../include/functions_config.php:567
+#: ../../enterprise/godmode/setup/setup_auth.php:1467
+#: ../../include/functions_config.php:575
msgid "Autocreate profile"
msgstr ""
@@ -12407,8 +12561,8 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:61
#: ../../enterprise/godmode/setup/setup_auth.php:331
#: ../../enterprise/godmode/setup/setup_auth.php:463
-#: ../../enterprise/godmode/setup/setup_auth.php:1256
-#: ../../include/functions_config.php:571
+#: ../../enterprise/godmode/setup/setup_auth.php:1473
+#: ../../include/functions_config.php:579
msgid "Autocreate profile group"
msgstr ""
@@ -12416,30 +12570,30 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:68
#: ../../enterprise/godmode/setup/setup_auth.php:340
#: ../../enterprise/godmode/setup/setup_auth.php:472
-#: ../../enterprise/godmode/setup/setup_auth.php:1280
-#: ../../include/functions_config.php:575
+#: ../../enterprise/godmode/setup/setup_auth.php:1497
+#: ../../include/functions_config.php:583
msgid "Autocreate profile tags"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:614
#: ../../enterprise/godmode/setup/setup_auth.php:346
-#: ../../include/functions_config.php:579
+#: ../../include/functions_config.php:587
msgid "Automatically assigned no hierarchy"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:624
-#: ../../enterprise/godmode/setup/setup_auth.php:662
-#: ../../enterprise/godmode/setup/setup_auth.php:1477
-#: ../../include/functions_config.php:587
+#: ../../enterprise/godmode/setup/setup_auth.php:668
+#: ../../enterprise/godmode/setup/setup_auth.php:1694
+#: ../../include/functions_config.php:595
msgid "Autocreate blacklist"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:634
#: ../../enterprise/meta/include/functions_meta.php:941
-#: ../../godmode/users/configure_user.php:1493
+#: ../../godmode/users/configure_user.php:1546
#: ../../godmode/setup/setup_auth.php:392
-#: ../../include/functions_config.php:799
-#: ../../operation/users/user_edit.php:544
+#: ../../include/functions_config.php:811
+#: ../../operation/users/user_edit.php:537
msgid "Double authentication"
msgstr ""
@@ -12449,8 +12603,8 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:656
#: ../../enterprise/meta/include/functions_meta.php:954
-#: ../../include/functions_config.php:807
-#: ../../include/functions_config.php:813
+#: ../../include/functions_config.php:819
+#: ../../include/functions_config.php:825
msgid "Session timeout"
msgstr ""
@@ -12458,8 +12612,8 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1148
#: ../../enterprise/godmode/setup/setup_auth.php:82
#: ../../enterprise/godmode/setup/setup_auth.php:441
-#: ../../include/functions_config.php:704
-#: ../../include/functions_config.php:820
+#: ../../include/functions_config.php:716
+#: ../../include/functions_config.php:832
msgid "Save Password"
msgstr ""
@@ -12468,59 +12622,59 @@ msgid "Timezone visual"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:692
-#: ../../enterprise/godmode/setup/setup_auth.php:670
-#: ../../enterprise/godmode/setup/setup_auth.php:1485
-#: ../../include/functions_config.php:591
+#: ../../enterprise/godmode/setup/setup_auth.php:676
+#: ../../enterprise/godmode/setup/setup_auth.php:1702
+#: ../../include/functions_config.php:599
msgid "Active directory server"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:702
-#: ../../enterprise/godmode/setup/setup_auth.php:676
-#: ../../enterprise/godmode/setup/setup_auth.php:1502
-#: ../../include/functions_config.php:595
+#: ../../enterprise/godmode/setup/setup_auth.php:682
+#: ../../enterprise/godmode/setup/setup_auth.php:1719
+#: ../../include/functions_config.php:603
msgid "Active directory port"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:712
#: ../../enterprise/meta/include/functions_meta.php:996
-#: ../../enterprise/godmode/setup/setup_auth.php:682
-#: ../../enterprise/godmode/setup/setup_auth.php:1519
+#: ../../enterprise/godmode/setup/setup_auth.php:688
+#: ../../enterprise/godmode/setup/setup_auth.php:1736
#: ../../godmode/setup/setup_auth.php:146
-#: ../../include/functions_config.php:599
-#: ../../include/functions_config.php:635
+#: ../../include/functions_config.php:607
+#: ../../include/functions_config.php:647
msgid "Start TLS"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:722
#: ../../enterprise/godmode/setup/setup_auth.php:446
-#: ../../enterprise/godmode/setup/setup_auth.php:1239
-#: ../../include/functions_config.php:603
+#: ../../enterprise/godmode/setup/setup_auth.php:1456
+#: ../../include/functions_config.php:615
msgid "Advanced Config AD"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:732
-#: ../../enterprise/godmode/setup/setup_auth.php:688
-#: ../../enterprise/godmode/setup/setup_auth.php:1525
-#: ../../include/functions_config.php:611
+#: ../../enterprise/godmode/setup/setup_auth.php:694
+#: ../../enterprise/godmode/setup/setup_auth.php:1742
+#: ../../include/functions_config.php:623
msgid "Domain"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:742
#: ../../enterprise/godmode/setup/setup_auth.php:506
-#: ../../enterprise/godmode/setup/setup_auth.php:1314
-#: ../../include/functions_config.php:615
+#: ../../enterprise/godmode/setup/setup_auth.php:1531
+#: ../../include/functions_config.php:627
msgid "Advanced Permisions AD"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:752
#: ../../enterprise/godmode/setup/setup_auth.php:151
-#: ../../include/functions_config.php:619
+#: ../../include/functions_config.php:631
msgid "Advanced Permissions LDAP"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:762
#: ../../enterprise/godmode/setup/setup_auth.php:128
-#: ../../include/functions_config.php:607
+#: ../../include/functions_config.php:619
msgid "Advanced Config LDAP"
msgstr ""
@@ -12528,47 +12682,47 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:784
#: ../../enterprise/godmode/setup/setup_auth.php:430
#: ../../enterprise/godmode/setup/setup_auth.php:478
-#: ../../enterprise/godmode/setup/setup_auth.php:1286
+#: ../../enterprise/godmode/setup/setup_auth.php:1503
msgid "Auto enable node access"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:811
-#: ../../include/functions_config.php:759
+#: ../../include/functions_config.php:771
msgid "Saml path"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:824
-#: ../../include/functions_config.php:763
+#: ../../include/functions_config.php:775
msgid "Saml source"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:837
-#: ../../include/functions_config.php:767
+#: ../../include/functions_config.php:779
msgid "Saml user id parameter"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:850
-#: ../../include/functions_config.php:771
+#: ../../include/functions_config.php:783
msgid "Saml mail parameter"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:863
-#: ../../include/functions_config.php:775
+#: ../../include/functions_config.php:787
msgid "Saml group name parameter"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:876
-#: ../../include/functions_config.php:779
+#: ../../include/functions_config.php:791
msgid "Saml attr type parameter"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:889
-#: ../../include/functions_config.php:783
+#: ../../include/functions_config.php:795
msgid "Saml profiles and tags parameter"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:902
-#: ../../include/functions_config.php:795
+#: ../../include/functions_config.php:807
msgid "Saml profile and tag separator"
msgstr ""
@@ -12577,48 +12731,48 @@ msgid "SAML profile parameters"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:928
-#: ../../include/functions_config.php:791
+#: ../../include/functions_config.php:803
msgid "Saml tag parameter"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:966
-#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623
+#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:635
msgid "LDAP server"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:976
#: ../../godmode/setup/setup_auth.php:107
-#: ../../include/functions_config.php:627
+#: ../../include/functions_config.php:639
msgid "LDAP port"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:986
#: ../../godmode/setup/setup_auth.php:129
-#: ../../include/functions_config.php:631
+#: ../../include/functions_config.php:643
msgid "LDAP version"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1006
#: ../../godmode/setup/setup_auth.php:157
-#: ../../include/functions_config.php:639
+#: ../../include/functions_config.php:651
msgid "Base DN"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1016
#: ../../godmode/setup/setup_auth.php:170
-#: ../../include/functions_config.php:643
+#: ../../include/functions_config.php:655
msgid "Login attribute"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1026
#: ../../godmode/setup/setup_auth.php:183
-#: ../../include/functions_config.php:647
+#: ../../include/functions_config.php:659
msgid "Admin LDAP login"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1036
#: ../../godmode/setup/setup_auth.php:196
-#: ../../include/functions_config.php:651
+#: ../../include/functions_config.php:663
msgid "Admin LDAP password"
msgstr ""
@@ -12628,25 +12782,25 @@ msgid "Ldap search timeout (secs)"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1056
-#: ../../include/functions_config.php:715
+#: ../../include/functions_config.php:727
msgid "LDAP secondary enabled"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1065
#: ../../godmode/setup/setup_auth.php:250
-#: ../../include/functions_config.php:659
+#: ../../include/functions_config.php:671
msgid "Secondary LDAP server"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1075
#: ../../godmode/setup/setup_auth.php:267
-#: ../../include/functions_config.php:663
+#: ../../include/functions_config.php:675
msgid "Secondary LDAP port"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1085
#: ../../godmode/setup/setup_auth.php:289
-#: ../../include/functions_config.php:667
+#: ../../include/functions_config.php:679
msgid "Secondary LDAP version"
msgstr ""
@@ -12656,41 +12810,41 @@ msgid "Secondary start TLS"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1105
-#: ../../include/functions_config.php:675
+#: ../../include/functions_config.php:687
msgid "Secondary base DN"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1115
-#: ../../include/functions_config.php:679
+#: ../../include/functions_config.php:691
msgid "Secondary login attribute"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1125
#: ../../godmode/setup/setup_auth.php:343
-#: ../../include/functions_config.php:683
+#: ../../include/functions_config.php:695
msgid "Admin secondary LDAP login"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1135
#: ../../godmode/setup/setup_auth.php:356
-#: ../../include/functions_config.php:687
+#: ../../include/functions_config.php:699
msgid "Admin secondary LDAP password"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1168
#: ../../enterprise/godmode/setup/setup_auth.php:112
-#: ../../include/functions_config.php:695
+#: ../../include/functions_config.php:707
msgid "Login user attribute"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1178
-#: ../../include/functions_config.php:711
+#: ../../include/functions_config.php:723
msgid "Save profile"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1189
#: ../../enterprise/godmode/setup/setup_auth.php:94
-#: ../../include/functions_config.php:699
+#: ../../include/functions_config.php:711
msgid "LDAP function"
msgstr ""
@@ -12702,10 +12856,10 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1211
#: ../../enterprise/meta/include/functions_meta.php:1265
#: ../../enterprise/meta/include/functions_meta.php:1319
-#: ../../enterprise/godmode/setup/setup_auth.php:1118
-#: ../../enterprise/godmode/setup/setup_auth.php:1150
-#: ../../include/functions_config.php:723
-#: ../../include/functions_config.php:743
+#: ../../enterprise/godmode/setup/setup_auth.php:1335
+#: ../../enterprise/godmode/setup/setup_auth.php:1367
+#: ../../include/functions_config.php:735
+#: ../../include/functions_config.php:755
msgid "MySQL port"
msgstr ""
@@ -12714,11 +12868,11 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1329
#: ../../enterprise/meta/include/functions_meta.php:2167
#: ../../enterprise/godmode/setup/setup_history.php:210
-#: ../../enterprise/godmode/setup/setup_auth.php:1124
-#: ../../enterprise/godmode/setup/setup_auth.php:1156
-#: ../../include/functions_config.php:727
-#: ../../include/functions_config.php:747
-#: ../../include/functions_config.php:1655
+#: ../../enterprise/godmode/setup/setup_auth.php:1341
+#: ../../enterprise/godmode/setup/setup_auth.php:1373
+#: ../../include/functions_config.php:739
+#: ../../include/functions_config.php:759
+#: ../../include/functions_config.php:1667
msgid "Database name"
msgstr ""
@@ -12727,13 +12881,13 @@ msgid "Babel Enterprise host"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1309
-#: ../../enterprise/godmode/setup/setup_auth.php:1144
-#: ../../include/functions_config.php:739
+#: ../../enterprise/godmode/setup/setup_auth.php:1361
+#: ../../include/functions_config.php:751
msgid "Integria host"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1374
-#: ../../include/functions_config.php:981
+#: ../../include/functions_config.php:993
msgid "Timestamp or time comparation"
msgstr ""
@@ -12750,7 +12904,7 @@ msgid "Graph color (max)"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1439
-#: ../../include/functions_config.php:1029
+#: ../../include/functions_config.php:1041
msgid "Data precision for reports"
msgstr ""
@@ -12767,8 +12921,8 @@ msgid "type mode zoom charts"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1604
-#: ../../include/functions_config.php:1270
-#: ../../include/functions_config.php:1274
+#: ../../include/functions_config.php:1286
+#: ../../include/functions_config.php:1290
msgid "Random background"
msgstr ""
@@ -12777,7 +12931,7 @@ msgid "Type of charts"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1664
-#: ../../include/functions_config.php:1078
+#: ../../include/functions_config.php:1090
msgid "Custom logo collapsed"
msgstr ""
@@ -12786,32 +12940,32 @@ msgid "Custom logo (white background)"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1694
-#: ../../include/functions_config.php:1086
+#: ../../include/functions_config.php:1098
msgid "Custom logo login"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1704
-#: ../../include/functions_config.php:1090
+#: ../../include/functions_config.php:1102
msgid "Custom splash login"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1734
-#: ../../include/functions_config.php:1126
+#: ../../include/functions_config.php:1138
msgid "Custom title1 login"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1744
-#: ../../include/functions_config.php:1130
+#: ../../include/functions_config.php:1142
msgid "Custom title2 login"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1754
-#: ../../include/functions_config.php:1118
+#: ../../include/functions_config.php:1130
msgid "Meta custom title header"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1764
-#: ../../include/functions_config.php:1122
+#: ../../include/functions_config.php:1134
msgid "Meta custom subtitle header"
msgstr ""
@@ -12828,42 +12982,42 @@ msgid "Custom copyright notice"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1863
-#: ../../include/functions_config.php:1062
+#: ../../include/functions_config.php:1074
msgid "Font path"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1873
-#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1532
msgid "Use data multiplier"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1885
-#: ../../include/functions_config.php:1472
+#: ../../include/functions_config.php:1488
msgid "Custom report info"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1895
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122
-#: ../../include/functions_config.php:1488
+#: ../../include/functions_config.php:1504
msgid "Font family"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1935
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:159
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:157
-#: ../../godmode/setup/setup_visuals.php:1582
-#: ../../include/functions_config.php:1504
+#: ../../godmode/setup/setup_visuals.php:1597
+#: ../../include/functions_config.php:1520
msgid "Footer"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1970
-#: ../../include/functions_config.php:1194
+#: ../../include/functions_config.php:1206
msgid "Use the legacy Visual Console"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:1981
-#: ../../include/functions_config.php:1198
+#: ../../include/functions_config.php:1210
msgid "Default expiration of the Visual Console item's cache"
msgstr ""
@@ -12873,7 +13027,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2050
#: ../../godmode/setup/performance.php:674
-#: ../../include/functions_config.php:894
+#: ../../include/functions_config.php:906
msgid "Use agent access graph"
msgstr ""
@@ -12894,35 +13048,35 @@ msgid "Node address default"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2153
-#: ../../include/functions_config.php:1642
+#: ../../include/functions_config.php:1654
msgid "Active and historical database cannot be the same."
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2157
#: ../../enterprise/godmode/setup/setup_history.php:178
-#: ../../include/functions_config.php:1647
+#: ../../include/functions_config.php:1659
msgid "Host"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2173
-#: ../../include/functions_config.php:1660
+#: ../../include/functions_config.php:1672
msgid "Enable history database"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2178
-#: ../../include/functions_config.php:1664
+#: ../../include/functions_config.php:1676
msgid "Enable history event"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2183
#: ../../enterprise/godmode/setup/setup_history.php:226
-#: ../../include/functions_config.php:1672
+#: ../../include/functions_config.php:1684
msgid "Database user"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2188
#: ../../enterprise/godmode/setup/setup_history.php:242
-#: ../../include/functions_config.php:1676
+#: ../../include/functions_config.php:1688
msgid "Database password"
msgstr ""
@@ -12935,45 +13089,45 @@ msgid "Database advanced"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2231
-#: ../../include/functions_config.php:1705
+#: ../../include/functions_config.php:1717
msgid "Event Days"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2249
#: ../../enterprise/godmode/servers/new_HA_cluster.php:143
-#: ../../include/functions_config.php:1737
+#: ../../include/functions_config.php:1749
msgid "Delay"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2282
-#: ../../include/functions_config.php:1769
+#: ../../include/functions_config.php:1781
msgid "Historical database purge"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2291
-#: ../../include/functions_config.php:1777
+#: ../../include/functions_config.php:1789
msgid "Historical database partitions"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2300
-#: ../../include/functions_config.php:1785
+#: ../../include/functions_config.php:1797
msgid "Historical database events purge"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2309
-#: ../../include/functions_config.php:1801
+#: ../../include/functions_config.php:1813
msgid "Historical database string purge"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2524
#: ../../extensions/dbmanager.php:312 ../../extensions/dbmanager.php:323
-#: ../../godmode/menu.php:478
+#: ../../godmode/menu.php:476
msgid "DB interface"
msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:2598
#: ../../enterprise/include/functions_policies.php:935
-#: ../../include/functions_reporting.php:7569
+#: ../../include/functions_reporting.php:7578
#, php-format
msgid "Failed to connect to node %s"
msgstr ""
@@ -12987,7 +13141,6 @@ msgstr ""
#: ../../enterprise/meta/include/functions_components_meta.php:88
#: ../../enterprise/meta/include/functions_components_meta.php:139
#: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175
-#: ../../godmode/menu.php:181
msgid "Local components"
msgstr ""
@@ -13010,13 +13163,13 @@ msgstr ""
#: ../../godmode/modules/manage_inventory_modules.php:45
#: ../../godmode/modules/manage_inventory_modules.php:58
#: ../../godmode/modules/manage_inventory_modules_form.php:49
-#: ../../godmode/menu.php:187
+#: ../../godmode/menu.php:186
msgid "Inventory modules"
msgstr ""
#: ../../enterprise/meta/include/functions_components_meta.php:124
#: ../../enterprise/meta/include/functions_components_meta.php:164
-#: ../../godmode/servers/plugin_registration.php:109
+#: ../../godmode/servers/plugin_registration.php:105
#: ../../godmode/servers/plugin.php:346
msgid "Plugin registration"
msgstr ""
@@ -13051,11 +13204,11 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup.php:602
#: ../../enterprise/include/class/CommandCenter.class.php:475
#: ../../enterprise/include/functions_login.php:165
-#: ../../enterprise/include/functions_login.php:580
+#: ../../enterprise/include/functions_login.php:584
#: ../../enterprise/include/lib/Metaconsole/Node.php:541
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151
-#: ../../godmode/users/configure_user.php:2067
-#: ../../godmode/users/configure_user.php:2136
+#: ../../godmode/users/configure_user.php:2119
+#: ../../godmode/users/configure_user.php:2188
#: ../../godmode/massive/massive_edit_plugins.php:856
#: ../../godmode/massive/massive_edit_plugins.php:857
#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1292
@@ -13063,21 +13216,21 @@ msgstr ""
#: ../../include/ajax/double_auth.ajax.php:368
#: ../../include/ajax/double_auth.ajax.php:414
#: ../../include/ajax/double_auth.ajax.php:531
-#: ../../include/ajax/events.php:2273 ../../include/functions_menu.php:892
+#: ../../include/ajax/events.php:2274 ../../include/functions_menu.php:897
#: ../../include/functions_ui.php:306
#: ../../include/class/SatelliteAgent.class.php:831
-#: ../../include/class/Diagnostics.class.php:1855
-#: ../../include/functions_events.php:2966
-#: ../../include/functions_events.php:3166 ../../index.php:1555
-#: ../../operation/users/user_edit.php:1241
-#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168
+#: ../../include/class/Diagnostics.class.php:1859
+#: ../../include/functions_events.php:2971
+#: ../../include/functions_events.php:3171 ../../index.php:1557
+#: ../../operation/users/user_edit.php:1238
+#: ../../operation/users/user_edit.php:1304 ../../general/register.php:168
#: ../../general/mysqlerr.php:28 ../../general/login_page.php:566
msgid "Error"
msgstr ""
#: ../../enterprise/meta/include/functions_alerts_meta.php:137
#: ../../enterprise/meta/include/functions_alerts_meta.php:168
-#: ../../godmode/menu.php:282
+#: ../../godmode/menu.php:280
msgid "Commands"
msgstr ""
@@ -13095,8 +13248,8 @@ msgid "User to reset password"
msgstr ""
#: ../../enterprise/meta/include/reset_pass.php:103
-#: ../../enterprise/meta/index.php:757
-#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928
+#: ../../enterprise/meta/index.php:758
+#: ../../enterprise/include/reset_pass.php:195 ../../index.php:929
msgid "Reset password"
msgstr ""
@@ -13106,8 +13259,8 @@ msgstr ""
#: ../../enterprise/include/process_reset_pass.php:174
#: ../../enterprise/include/reset_pass.php:295
#: ../../enterprise/include/reset_pass.php:298
-#: ../../include/functions_config.php:2678
-#: ../../include/functions_config.php:2730 ../../general/login_page.php:527
+#: ../../include/functions_config.php:2698
+#: ../../include/functions_config.php:2750 ../../general/login_page.php:527
#: ../../general/login_page.php:530
msgid "ONE TOOL TO RULE THEM ALL"
msgstr ""
@@ -13115,7 +13268,7 @@ msgstr ""
#: ../../enterprise/meta/include/reset_pass.php:147
#: ../../enterprise/meta/general/login_page.php:335
#: ../../enterprise/include/reset_pass.php:285
-#: ../../include/functions_config.php:2734
+#: ../../include/functions_config.php:2754
msgid "COMMAND CENTER"
msgstr ""
@@ -13194,21 +13347,19 @@ msgstr ""
msgid "Relation deleted successfully"
msgstr ""
-#: ../../enterprise/meta/index.php:221 ../../index.php:1492
+#: ../../enterprise/meta/index.php:221 ../../index.php:1494
#: ../../operation/visual_console/legacy_public_view.php:57
#: ../../operation/visual_console/public_view.php:38
#: ../../operation/agentes/stat_win.php:92
#: ../../operation/gis_maps/public_console.php:277
-#: ../../operation/events/sound_events.php:168
msgid "Connection with server has been lost"
msgstr ""
-#: ../../enterprise/meta/index.php:222 ../../index.php:1493
+#: ../../enterprise/meta/index.php:222 ../../index.php:1495
#: ../../operation/visual_console/legacy_public_view.php:58
#: ../../operation/visual_console/public_view.php:39
#: ../../operation/agentes/stat_win.php:93
#: ../../operation/gis_maps/public_console.php:278
-#: ../../operation/events/sound_events.php:169
msgid ""
"Connection to the server has been lost. Please check your internet "
"connection or contact with administrator."
@@ -13232,72 +13383,72 @@ msgstr ""
msgid "Login error"
msgstr ""
-#: ../../enterprise/meta/index.php:682 ../../index.php:845
+#: ../../enterprise/meta/index.php:683 ../../index.php:846
msgid "Password changed successfully"
msgstr ""
-#: ../../enterprise/meta/index.php:688 ../../index.php:851
+#: ../../enterprise/meta/index.php:689 ../../index.php:852
msgid "Failed to change password"
msgstr ""
-#: ../../enterprise/meta/index.php:702 ../../index.php:868
+#: ../../enterprise/meta/index.php:703 ../../index.php:869
msgid "Too much time since password change request"
msgstr ""
-#: ../../enterprise/meta/index.php:709 ../../index.php:875
+#: ../../enterprise/meta/index.php:710 ../../index.php:876
msgid "This user has not requested a password change"
msgstr ""
-#: ../../enterprise/meta/index.php:725 ../../index.php:902
+#: ../../enterprise/meta/index.php:726 ../../index.php:903
msgid "Id user cannot be empty"
msgstr ""
-#: ../../enterprise/meta/index.php:733 ../../index.php:910
+#: ../../enterprise/meta/index.php:734 ../../index.php:911
msgid "Error in reset password request"
msgstr ""
-#: ../../enterprise/meta/index.php:741 ../../index.php:918
+#: ../../enterprise/meta/index.php:742 ../../index.php:919
msgid "This user doesn't have a valid email address"
msgstr ""
-#: ../../enterprise/meta/index.php:758 ../../index.php:929
+#: ../../enterprise/meta/index.php:759 ../../index.php:930
msgid "This is an automatically sent message for user "
msgstr ""
-#: ../../enterprise/meta/index.php:761 ../../index.php:932
+#: ../../enterprise/meta/index.php:762 ../../index.php:933
msgid "Please click the link below to reset your password"
msgstr ""
-#: ../../enterprise/meta/index.php:763 ../../index.php:934
+#: ../../enterprise/meta/index.php:764 ../../index.php:935
msgid "Reset your password"
msgstr ""
-#: ../../enterprise/meta/index.php:767 ../../index.php:938
+#: ../../enterprise/meta/index.php:768 ../../index.php:939
msgid "Please do not reply to this email."
msgstr ""
-#: ../../enterprise/meta/index.php:773 ../../index.php:943
+#: ../../enterprise/meta/index.php:774 ../../index.php:944
msgid "Error at sending the email"
msgstr ""
-#: ../../enterprise/meta/index.php:933
+#: ../../enterprise/meta/index.php:934
#, php-format
msgid ""
"System is not centralised, please go to %s to perform a database merge "
"process."
msgstr ""
-#: ../../enterprise/meta/index.php:1001
+#: ../../enterprise/meta/index.php:1002
#, php-format
msgid "There are nodes with different MR than this (%d):"
msgstr ""
-#: ../../enterprise/meta/index.php:1010 ../../index.php:1237
+#: ../../enterprise/meta/index.php:1011 ../../index.php:1238
msgid "Please keep all environment updated to same version."
msgstr ""
-#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170
-#: ../../index.php:1340
+#: ../../enterprise/meta/index.php:1076 ../../enterprise/meta/index.php:1172
+#: ../../index.php:1341
msgid "Sorry! I can't find the page!"
msgstr ""
@@ -13317,22 +13468,21 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:703
#: ../../enterprise/operation/agentes/ver_agente.php:95
#: ../../extensions/users_connected.php:180
-#: ../../godmode/users/user_list.php:576
+#: ../../godmode/users/user_list.php:577
#: ../../godmode/agentes/planned_downtime.editor.php:1359
-#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417
-#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422
-#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006
-#: ../../include/functions_treeview.php:671
-#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46
+#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:418
+#: ../../mobile/operation/agents.php:420 ../../mobile/operation/agents.php:423
+#: ../../mobile/operation/agent.php:199 ../../include/ajax/heatmap.ajax.php:483
+#: ../../include/ajax/module.php:1029 ../../include/functions_treeview.php:675
+#: ../../include/functions_events.php:4394 ../../operation/search_users.php:46
#: ../../operation/search_agents.php:58
#: ../../operation/agentes/log_sources_status.php:58
-#: ../../operation/agentes/estado_agente.php:1055
+#: ../../operation/agentes/estado_agente.php:1063
#: ../../operation/agentes/ver_agente.php:1046
-#: ../../operation/agentes/estado_generalagente.php:464
+#: ../../operation/agentes/estado_generalagente.php:435
#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349
#: ../../operation/gis_maps/ajax.php:466
-#: ../../operation/inventory/inventory.php:1007
-#: ../../operation/inventory/inventory.php:1301
+#: ../../operation/inventory/inventory.php:1253
msgid "Last contact"
msgstr ""
@@ -13341,8 +13491,8 @@ msgid "There are no agents included in this group"
msgstr ""
#: ../../enterprise/meta/agentsearch.php:320
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:650
-#: ../../operation/tree.php:468
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:643
+#: ../../operation/tree.php:470
msgid "Policies found"
msgstr ""
@@ -13373,22 +13523,25 @@ msgstr ""
msgid "%s %s - %s - MR %s"
msgstr ""
-#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459
+#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1460
msgid "Page generated at"
msgstr ""
#: ../../enterprise/meta/general/metaconsole_no_activated.php:12
#: ../../enterprise/meta/general/noaccesssaml.php:130
-#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:266
-#: ../../mobile/operation/agents.php:186 ../../mobile/operation/modules.php:218
-#: ../../mobile/operation/groups.php:59 ../../mobile/operation/agent.php:117
+#: ../../enterprise/meta/general/noaccess.php:130 ../../mobile/index.php:284
+#: ../../mobile/operation/agents.php:187 ../../mobile/operation/modules.php:218
+#: ../../mobile/operation/groups.php:59 ../../mobile/operation/services.php:68
+#: ../../mobile/operation/services.php:83 ../../mobile/operation/agent.php:119
#: ../../mobile/operation/alerts.php:176
#: ../../mobile/operation/visualmap.php:185
#: ../../mobile/operation/visualmaps.php:159
-#: ../../mobile/operation/module_graph.php:255
-#: ../../mobile/operation/events.php:744 ../../mobile/operation/tactical.php:79
-#: ../../general/noaccesssaml.php:130 ../../general/noaccess2.php:16
-#: ../../general/noaccess2.php:18
+#: ../../mobile/operation/module_data.php:107
+#: ../../mobile/operation/module_graph.php:256
+#: ../../mobile/operation/events.php:773
+#: ../../mobile/operation/server_status.php:209
+#: ../../mobile/operation/tactical.php:79 ../../general/noaccesssaml.php:130
+#: ../../general/noaccess2.php:16 ../../general/noaccess2.php:18
msgid "You don't have access to this page"
msgstr ""
@@ -13448,7 +13601,7 @@ msgstr ""
#: ../../enterprise/meta/general/main_header.php:535
#: ../../mobile/include/functions_web.php:34
#: ../../mobile/include/ui.class.php:225
-#: ../../mobile/include/user.class.php:460 ../../mobile/operation/home.php:148
+#: ../../mobile/include/user.class.php:527 ../../mobile/operation/home.php:167
#: ../../general/header.php:443 ../../general/header.php:445
msgid "Logout"
msgstr ""
@@ -13463,7 +13616,7 @@ msgid "Please navigate to %s"
msgstr ""
#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69
-#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64
+#: ../../general/maintenance.php:58 ../../general/node_deactivated.php:69
msgid "You will be automatically redirected when all tasks finish"
msgstr ""
@@ -13471,8 +13624,8 @@ msgstr ""
#: ../../enterprise/meta/general/main_menu.php:199
#: ../../enterprise/operation/services/services.treeview_services.php:60
#: ../../godmode/groups/group_list.php:347
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:178
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:768
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:173
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:761
#: ../../operation/tree.php:137 ../../operation/menu.php:179
msgid "Tree view"
msgstr ""
@@ -13497,7 +13650,7 @@ msgstr ""
#: ../../enterprise/meta/general/main_menu.php:312
#: ../../enterprise/meta/general/main_menu.php:313
#: ../../enterprise/mobile/include/functions_web.php:15
-#: ../../include/functions_reporting.php:15831
+#: ../../include/functions_reporting.php:15908
#: ../../include/functions_groups.php:139
#: ../../operation/search_results.php:133
msgid "Reports"
@@ -13516,7 +13669,7 @@ msgstr ""
#: ../../enterprise/meta/general/main_header.php:200
#: ../../enterprise/meta/general/main_menu.php:340
#: ../../enterprise/include/functions_reporting.php:124
-#: ../../include/functions_menu.php:584
+#: ../../include/functions_menu.php:586
msgid "Templates wizard"
msgstr ""
@@ -13544,7 +13697,8 @@ msgstr ""
#: ../../enterprise/operation/services/services.treeview_services.php:73
#: ../../enterprise/operation/services/services.list.php:70
#: ../../enterprise/operation/services/services.table_services.php:67
-#: ../../operation/agentes/ver_agente.php:1668
+#: ../../mobile/operation/home.php:103 ../../mobile/operation/services.php:123
+#: ../../operation/agentes/ver_agente.php:1664
#: ../../general/first_task/service_list.php:38
#: ../../general/first_task/service_list.php:41
msgid "Services"
@@ -13559,7 +13713,7 @@ msgstr ""
#: ../../enterprise/meta/general/main_header.php:240
#: ../../enterprise/meta/general/main_menu.php:436
-#: ../../enterprise/include/functions_enterprise.php:443
+#: ../../enterprise/include/functions_enterprise.php:453
#: ../../include/class/OrderInterpreter.class.php:233
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:175
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:515
@@ -13586,8 +13740,8 @@ msgstr ""
#: ../../enterprise/meta/general/main_header.php:275
#: ../../enterprise/meta/general/logon_ok.php:44
#: ../../enterprise/meta/general/main_menu.php:473
-#: ../../enterprise/include/functions_enterprise.php:439
-#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371
+#: ../../enterprise/include/functions_enterprise.php:449
+#: ../../godmode/netflow/nf_edit_form.php:93 ../../godmode/menu.php:369
#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290
#: ../../include/functions_reports.php:925
#: ../../include/functions_reports.php:929
@@ -13643,7 +13797,7 @@ msgid "Command Center"
msgstr ""
#: ../../enterprise/meta/general/main_header.php:369
-#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406
+#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:404
#: ../../godmode/setup/license.php:59
msgid "License"
msgstr ""
@@ -13658,8 +13812,8 @@ msgstr ""
#: ../../enterprise/meta/general/main_header.php:448
#: ../../enterprise/meta/general/main_menu.php:720
#: ../../enterprise/meta/general/main_menu.php:755
-#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:428
-#: ../../godmode/menu.php:550 ../../general/links_menu.php:17
+#: ../../enterprise/meta/general/main_menu.php:783 ../../godmode/menu.php:426
+#: ../../godmode/menu.php:548 ../../general/links_menu.php:17
msgid "Links"
msgstr ""
@@ -13694,9 +13848,9 @@ msgstr ""
#: ../../godmode/reporting/graph_container.php:118
#: ../../godmode/reporting/graphs.php:129
#: ../../godmode/reporting/reporting_builder.php:557
-#: ../../godmode/reporting/reporting_builder.php:3597
-#: ../../godmode/reporting/reporting_builder.php:3695
-#: ../../godmode/reporting/reporting_builder.php:3723
+#: ../../godmode/reporting/reporting_builder.php:3614
+#: ../../godmode/reporting/reporting_builder.php:3712
+#: ../../godmode/reporting/reporting_builder.php:3740
#: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450
#: ../../operation/reporting/reporting_viewer.php:218
#: ../../operation/reporting/custom_reporting.php:23
@@ -13750,39 +13904,41 @@ msgstr ""
#: ../../include/functions_reports.php:905
#: ../../include/functions_reports.php:909
#: ../../include/functions_reporting.php:3124
-#: ../../operation/agentes/ver_agente.php:1450
-#: ../../operation/agentes/ver_agente.php:1852 ../../operation/menu.php:203
-#: ../../operation/inventory/inventory.php:301
+#: ../../operation/agentes/ver_agente.php:1451
+#: ../../operation/agentes/ver_agente.php:1848 ../../operation/menu.php:203
+#: ../../operation/inventory/inventory.php:303
msgid "Inventory"
msgstr ""
#: ../../enterprise/meta/general/main_menu.php:277
-#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604
+#: ../../include/ajax/events.php:2321
+#: ../../operation/events/sound_events.php:197
+#: ../../operation/events/events.php:1658
msgid "Events list"
msgstr ""
#: ../../enterprise/meta/general/main_menu.php:285
-#: ../../operation/events/events.php:1516
+#: ../../operation/events/events.php:1570
msgid "Sound Console"
msgstr ""
#: ../../enterprise/meta/general/main_menu.php:286
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376
-#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141
-#: ../../godmode/setup/setup_integria.php:654
-#: ../../include/ajax/events.php:2493 ../../operation/users/user_edit.php:874
-#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571
-#: ../../operation/events/events.php:1517
+#: ../../godmode/menu.php:52 ../../include/ajax/events.php:2494
+#: ../../operation/users/user_edit.php:871
+#: ../../operation/users/user_edit.php:924 ../../operation/menu.php:571
+#: ../../operation/events/sound_events.php:368
+#: ../../operation/events/events.php:1571
msgid "Start"
msgstr ""
#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573
-#: ../../operation/events/events.php:1519
+#: ../../operation/events/events.php:1573
msgid "No alert"
msgstr ""
#: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574
-#: ../../operation/events/events.php:1520
+#: ../../operation/events/events.php:1574
msgid "Silence alarm"
msgstr ""
@@ -13817,7 +13973,7 @@ msgstr ""
#: ../../enterprise/meta/general/main_menu.php:504
#: ../../godmode/alerts/alert_view.php:65
#: ../../godmode/alerts/alert_view.php:286
-#: ../../include/functions_events.php:4548
+#: ../../include/functions_events.php:4553
msgid "Alert details"
msgstr ""
@@ -13830,7 +13986,7 @@ msgstr ""
msgid "Centralised management"
msgstr ""
-#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204
+#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:203
#: ../../godmode/massive/massive_operations.php:313
#: ../../godmode/massive/massive_operations.php:336
#: ../../godmode/massive/massive_operations.php:342
@@ -13848,12 +14004,12 @@ msgstr ""
msgid "List of Links"
msgstr ""
-#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426
+#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:424
msgid "System audit log"
msgstr ""
#: ../../enterprise/meta/general/main_menu.php:869
-#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608
+#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:606
msgid "About"
msgstr ""
@@ -13871,18 +14027,18 @@ msgid "Authentication code"
msgstr ""
#: ../../enterprise/meta/general/login_page.php:185
-#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393
+#: ../../mobile/include/user.class.php:595 ../../general/login_page.php:393
msgid "Check code"
msgstr ""
#: ../../enterprise/meta/general/login_page.php:229
#: ../../enterprise/meta/general/login_page.php:288
-#: ../../mobile/include/user.class.php:404
+#: ../../mobile/include/user.class.php:470
msgid "Login"
msgstr ""
#: ../../enterprise/meta/general/login_page.php:245
-#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316
+#: ../../mobile/include/user.class.php:490 ../../general/login_page.php:316
msgid "Login with SAML"
msgstr ""
@@ -13972,15 +14128,15 @@ msgstr ""
#: ../../enterprise/godmode/reporting/aws_view.php:181
#: ../../enterprise/godmode/wizards/Cloud.class.php:330
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239
-#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858
+#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:887
#: ../../include/ajax/alert_list.ajax.php:280
#: ../../include/ajax/alert_list.ajax.php:306
#: ../../include/class/SnmpConsole.class.php:456
#: ../../include/class/SnmpConsole.class.php:514
-#: ../../include/class/SnmpConsole.class.php:854
-#: ../../operation/agentes/alerts_status.php:302
-#: ../../operation/agentes/alerts_status.php:441
-#: ../../operation/agentes/alerts_status.php:455
+#: ../../include/class/SnmpConsole.class.php:856
+#: ../../operation/agentes/alerts_status.php:301
+#: ../../operation/agentes/alerts_status.php:444
+#: ../../operation/agentes/alerts_status.php:458
msgid "Validate"
msgstr ""
@@ -14052,7 +14208,7 @@ msgstr ""
#: ../../enterprise/load_enterprise.php:931
#: ../../enterprise/load_enterprise.php:1072
-#: ../../godmode/users/configure_user.php:1008
+#: ../../godmode/users/configure_user.php:1056
msgid "Renew"
msgstr ""
@@ -14132,7 +14288,7 @@ msgstr ""
#: ../../enterprise/extensions/disabled/check_acls.php:150
#: ../../enterprise/godmode/setup/setup_metaconsole.php:276
#: ../../enterprise/godmode/servers/HA_cluster.php:182
-#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767
+#: ../../godmode/users/user_list.php:580 ../../godmode/users/user_list.php:768
#: ../../operation/search_users.php:62
msgid "Admin"
msgstr ""
@@ -14179,7 +14335,7 @@ msgstr ""
#: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34
#: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253
#: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38
-#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39
+#: ../../godmode/menu.php:415 ../../godmode/setup/news.php:39
#: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56
#: ../../include/class/EventSound.class.php:226
#: ../../include/class/Diagnostics.class.php:159
@@ -14190,7 +14346,7 @@ msgstr ""
#: ../../extensions/extension_uploader.php:43
#: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145
#: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99
-#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537
+#: ../../godmode/extensions.php:42 ../../godmode/menu.php:535
msgid "Extension manager"
msgstr ""
@@ -14245,7 +14401,7 @@ msgstr ""
#: ../../enterprise/extensions/csv_import_group/main.php:131
#: ../../enterprise/include/class/CSVImportAgents.class.php:208
-#: ../../include/functions_filemanager.php:899
+#: ../../include/functions_filemanager.php:919
msgid "Go"
msgstr ""
@@ -14420,25 +14576,26 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1143
#: ../../mobile/operation/modules.php:548
#: ../../mobile/operation/modules.php:571
-#: ../../mobile/operation/modules.php:611
-#: ../../mobile/operation/modules.php:634 ../../include/functions.php:1416
+#: ../../mobile/operation/modules.php:622
+#: ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/services.php:427 ../../include/functions.php:1416
#: ../../include/functions.php:1455 ../../include/functions_modules.php:2905
#: ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:4235
-#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4246
-#: ../../include/functions_ui.php:4322 ../../include/class/Tree.class.php:664
+#: ../../include/functions_modules.php:4267 ../../include/functions_ui.php:4320
+#: ../../include/functions_ui.php:4396 ../../include/class/Tree.class.php:687
#: ../../include/lib/Module.php:603 ../../include/functions_events.php:64
#: ../../include/functions_events.php:116
#: ../../include/functions_events.php:179
-#: ../../operation/agentes/status_monitor.php:1791
-#: ../../operation/agentes/status_monitor.php:1797
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/pandora_networkmap.view.php:1848
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/search_modules.php:115
-#: ../../operation/search_modules.php:142 ../../operation/events/events.php:633
-#: ../../operation/events/events.php:710 ../../operation/events/events.php:736
+#: ../../operation/agentes/status_monitor.php:1793
+#: ../../operation/agentes/status_monitor.php:1799
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/pandora_networkmap.view.php:1849
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/search_modules.php:118
+#: ../../operation/search_modules.php:145 ../../operation/events/events.php:638
+#: ../../operation/events/events.php:715 ../../operation/events/events.php:741
msgid "NORMAL"
msgstr ""
@@ -14452,25 +14609,26 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1159
#: ../../mobile/operation/modules.php:554
#: ../../mobile/operation/modules.php:579
-#: ../../mobile/operation/modules.php:617
-#: ../../mobile/operation/modules.php:642 ../../include/functions.php:1404
+#: ../../mobile/operation/modules.php:628
+#: ../../mobile/operation/modules.php:653
+#: ../../mobile/operation/services.php:435 ../../include/functions.php:1404
#: ../../include/functions.php:1436 ../../include/functions_modules.php:2899
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:4239
-#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4252
-#: ../../include/functions_ui.php:4332 ../../include/class/Tree.class.php:634
+#: ../../include/functions_modules.php:4259 ../../include/functions_ui.php:4326
+#: ../../include/functions_ui.php:4406 ../../include/class/Tree.class.php:657
#: ../../include/lib/Module.php:587 ../../include/functions_events.php:67
#: ../../include/functions_events.php:120
#: ../../include/functions_events.php:164
-#: ../../operation/agentes/status_monitor.php:1805
-#: ../../operation/agentes/status_monitor.php:1818
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/pandora_networkmap.view.php:1842
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/search_modules.php:121
-#: ../../operation/search_modules.php:150 ../../operation/events/events.php:608
-#: ../../operation/events/events.php:716 ../../operation/events/events.php:741
+#: ../../operation/agentes/status_monitor.php:1807
+#: ../../operation/agentes/status_monitor.php:1820
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/pandora_networkmap.view.php:1843
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/search_modules.php:124
+#: ../../operation/search_modules.php:153 ../../operation/events/events.php:613
+#: ../../operation/events/events.php:721 ../../operation/events/events.php:746
msgid "CRITICAL"
msgstr ""
@@ -14485,26 +14643,27 @@ msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1175
#: ../../mobile/operation/modules.php:560
#: ../../mobile/operation/modules.php:587
-#: ../../mobile/operation/modules.php:623
-#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1407
+#: ../../mobile/operation/modules.php:634
+#: ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/services.php:443 ../../include/functions.php:1407
#: ../../include/functions.php:1443 ../../include/functions_modules.php:2902
#: ../../include/functions_modules.php:2919
#: ../../include/functions_modules.php:4243
-#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4240
-#: ../../include/functions_ui.php:4327 ../../include/class/Tree.class.php:642
-#: ../../include/class/NetworkMap.class.php:2949
+#: ../../include/functions_modules.php:4275 ../../include/functions_ui.php:4314
+#: ../../include/functions_ui.php:4401 ../../include/class/Tree.class.php:665
+#: ../../include/class/NetworkMap.class.php:2955
#: ../../include/lib/Module.php:591 ../../include/functions_events.php:78
#: ../../include/functions_events.php:112
#: ../../include/functions_events.php:182
-#: ../../operation/agentes/status_monitor.php:1826
-#: ../../operation/agentes/status_monitor.php:1839
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1845
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:127
-#: ../../operation/search_modules.php:158 ../../operation/events/events.php:638
-#: ../../operation/events/events.php:704 ../../operation/events/events.php:758
+#: ../../operation/agentes/status_monitor.php:1828
+#: ../../operation/agentes/status_monitor.php:1841
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1846
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:130
+#: ../../operation/search_modules.php:161 ../../operation/events/events.php:643
+#: ../../operation/events/events.php:709 ../../operation/events/events.php:763
msgid "WARNING"
msgstr ""
@@ -14522,33 +14681,34 @@ msgstr ""
#: ../../mobile/operation/modules.php:571
#: ../../mobile/operation/modules.php:579
#: ../../mobile/operation/modules.php:587
-#: ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642
-#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1420
+#: ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/modules.php:653
+#: ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/services.php:458 ../../include/functions.php:1420
#: ../../include/functions.php:1446 ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:2919
-#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4259
-#: ../../include/functions_ui.php:4347 ../../include/class/Tree.class.php:648
+#: ../../include/functions_modules.php:4247 ../../include/functions_ui.php:4333
+#: ../../include/functions_ui.php:4421 ../../include/class/Tree.class.php:671
#: ../../include/lib/Module.php:594 ../../include/functions_events.php:81
#: ../../include/functions_events.php:125
#: ../../include/functions_events.php:185
-#: ../../operation/agentes/status_monitor.php:1847
-#: ../../operation/agentes/status_monitor.php:1860
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:133
-#: ../../operation/search_modules.php:142
-#: ../../operation/search_modules.php:150
-#: ../../operation/search_modules.php:158 ../../operation/events/events.php:644
-#: ../../operation/events/events.php:723 ../../operation/events/events.php:763
+#: ../../operation/agentes/status_monitor.php:1849
+#: ../../operation/agentes/status_monitor.php:1862
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:136
+#: ../../operation/search_modules.php:145
+#: ../../operation/search_modules.php:153
+#: ../../operation/search_modules.php:161 ../../operation/events/events.php:649
+#: ../../operation/events/events.php:728 ../../operation/events/events.php:768
msgid "UNKNOWN"
msgstr ""
@@ -14763,7 +14923,7 @@ msgid "Power Status: "
msgstr ""
#: ../../enterprise/extensions/vmware/vmware_manager.php:269
-#: ../../operation/agentes/pandora_networkmap.view.php:1881
+#: ../../operation/agentes/pandora_networkmap.view.php:1882
msgid "Status: "
msgstr ""
@@ -14776,7 +14936,7 @@ msgid "Export agents"
msgstr ""
#: ../../enterprise/extensions/resource_exportation/functions.php:46
-#: ../../enterprise/include/functions_reporting.php:8156
+#: ../../enterprise/include/functions_reporting.php:8165
#: ../../extensions/resource_exportation.php:456
#: ../../extensions/resource_exportation.php:468
#: ../../operation/agentes/exportdata.php:464
@@ -14893,12 +15053,12 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_common.php:217
#: ../../godmode/modules/manage_network_components_form_wizard.php:387
#: ../../godmode/modules/manage_network_components_form_wizard.php:421
-#: ../../godmode/agentes/module_manager_editor_common.php:1141
+#: ../../godmode/agentes/module_manager_editor_common.php:1151
#: ../../godmode/massive/massive_edit_modules.php:580
#: ../../godmode/massive/massive_edit_modules.php:671
#: ../../godmode/massive/massive_edit_modules.php:900
#: ../../godmode/alerts/configure_alert_template.php:870
-#: ../../include/functions_reporting_html.php:5528
+#: ../../include/functions_reporting_html.php:5556
#: ../../include/functions_treeview.php:91
#: ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:676
@@ -14917,12 +15077,12 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_common.php:226
#: ../../godmode/modules/manage_network_components_form_wizard.php:389
#: ../../godmode/modules/manage_network_components_form_wizard.php:430
-#: ../../godmode/agentes/module_manager_editor_common.php:1142
+#: ../../godmode/agentes/module_manager_editor_common.php:1152
#: ../../godmode/massive/massive_edit_modules.php:595
#: ../../godmode/massive/massive_edit_modules.php:686
#: ../../godmode/massive/massive_edit_modules.php:902
#: ../../godmode/alerts/configure_alert_template.php:883
-#: ../../include/functions_reporting_html.php:5529
+#: ../../include/functions_reporting_html.php:5557
#: ../../include/functions_treeview.php:91
#: ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:675
@@ -14939,7 +15099,7 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_common.php:183
#: ../../godmode/modules/manage_network_components_form_common.php:235
#: ../../godmode/agentes/module_manager_editor_common.php:504
-#: ../../godmode/agentes/module_manager_editor_common.php:596
+#: ../../godmode/agentes/module_manager_editor_common.php:601
#: ../../godmode/massive/massive_edit_modules.php:610
#: ../../godmode/massive/massive_edit_modules.php:701
#: ../../include/functions_treeview.php:89
@@ -14956,7 +15116,7 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wizard.php:400
#: ../../godmode/modules/manage_network_components_form_wizard.php:448
#: ../../godmode/agentes/module_manager_editor_common.php:478
-#: ../../godmode/agentes/module_manager_editor_common.php:561
+#: ../../godmode/agentes/module_manager_editor_common.php:566
#: ../../godmode/massive/massive_edit_modules.php:645
#: ../../godmode/massive/massive_edit_modules.php:737
msgid "Percentage"
@@ -14971,12 +15131,14 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:350
#: ../../godmode/modules/manage_network_components_form_common.php:201
#: ../../godmode/modules/manage_network_components_form_wizard.php:412
+#: ../../godmode/agentes/module_manager_editor_common.php:528
msgid "Change to critical status after"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:359
#: ../../godmode/modules/manage_network_components_form_common.php:210
#: ../../godmode/modules/manage_network_components_form_wizard.php:414
+#: ../../godmode/agentes/module_manager_editor_common.php:530
msgid "intervals in warning status."
msgstr ""
@@ -14996,7 +15158,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:873
#: ../../godmode/modules/manage_network_components_form_common.php:254
-#: ../../godmode/agentes/module_manager_editor_common.php:1191
+#: ../../godmode/agentes/module_manager_editor_common.php:1201
#: ../../godmode/massive/massive_edit_modules.php:945
msgid "FF threshold"
msgstr ""
@@ -15004,7 +15166,7 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:406
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:941
#: ../../godmode/modules/manage_network_components_form_common.php:257
-#: ../../godmode/agentes/module_manager_editor_common.php:1314
+#: ../../godmode/agentes/module_manager_editor_common.php:1324
#: ../../godmode/massive/massive_edit_modules.php:1009
msgid "Keep counters"
msgstr ""
@@ -15014,7 +15176,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:885
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900
#: ../../godmode/modules/manage_network_components_form_common.php:271
-#: ../../godmode/agentes/module_manager_editor_common.php:1195
+#: ../../godmode/agentes/module_manager_editor_common.php:1205
#: ../../godmode/massive/massive_edit_modules.php:953
#: ../../godmode/massive/massive_edit_modules.php:968
msgid "All state changing"
@@ -15025,7 +15187,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:884
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:910
#: ../../godmode/modules/manage_network_components_form_common.php:287
-#: ../../godmode/agentes/module_manager_editor_common.php:1196
+#: ../../godmode/agentes/module_manager_editor_common.php:1206
#: ../../godmode/massive/massive_edit_modules.php:952
#: ../../godmode/massive/massive_edit_modules.php:978
msgid "Each state changing"
@@ -15035,7 +15197,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:308
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:911
#: ../../godmode/modules/manage_network_components_form_common.php:288
-#: ../../godmode/agentes/module_manager_editor_common.php:1228
+#: ../../godmode/agentes/module_manager_editor_common.php:1238
#: ../../godmode/massive/massive_edit_modules.php:979
msgid "To normal"
msgstr ""
@@ -15044,7 +15206,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:309
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:921
#: ../../godmode/modules/manage_network_components_form_common.php:297
-#: ../../godmode/agentes/module_manager_editor_common.php:1229
+#: ../../godmode/agentes/module_manager_editor_common.php:1239
#: ../../godmode/massive/massive_edit_modules.php:989
msgid "To warning"
msgstr ""
@@ -15053,7 +15215,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:931
#: ../../godmode/modules/manage_network_components_form_common.php:306
-#: ../../godmode/agentes/module_manager_editor_common.php:1230
+#: ../../godmode/agentes/module_manager_editor_common.php:1240
#: ../../godmode/massive/massive_edit_modules.php:999
msgid "To critical"
msgstr ""
@@ -15063,15 +15225,16 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:966
#: ../../enterprise/include/functions_reporting_csv.php:2225
#: ../../godmode/modules/manage_network_components_form_common.php:316
-#: ../../godmode/agentes/module_manager_editor_common.php:619
+#: ../../godmode/agentes/module_manager_editor_common.php:624
#: ../../godmode/massive/massive_edit_modules.php:1057
-#: ../../include/functions_reporting.php:4664
+#: ../../mobile/operation/modules.php:860
+#: ../../include/functions_reporting.php:4673
msgid "Historical data"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:462
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963
-#: ../../godmode/agentes/module_manager_editor_common.php:1282
+#: ../../godmode/agentes/module_manager_editor_common.php:1292
#: ../../godmode/massive/massive_edit_modules.php:1043
msgid "FF timeout"
msgstr ""
@@ -15091,9 +15254,9 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:473
#: ../../enterprise/include/functions_reporting_csv.php:1251
#: ../../godmode/modules/manage_network_components_form_common.php:319
-#: ../../godmode/agentes/module_manager_editor_common.php:1105
+#: ../../godmode/agentes/module_manager_editor_common.php:1115
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480
-#: ../../include/functions_reporting.php:7102
+#: ../../include/functions_reporting.php:7111
msgid "Min. Value"
msgstr ""
@@ -15105,9 +15268,9 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:478
#: ../../enterprise/include/functions_reporting_csv.php:1306
#: ../../godmode/modules/manage_network_components_form_common.php:321
-#: ../../godmode/agentes/module_manager_editor_common.php:1106
+#: ../../godmode/agentes/module_manager_editor_common.php:1116
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492
-#: ../../include/functions_reporting.php:7098
+#: ../../include/functions_reporting.php:7107
msgid "Max. Value"
msgstr ""
@@ -15119,9 +15282,9 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:485
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716
#: ../../godmode/modules/manage_network_components_form_plugin.php:49
-#: ../../godmode/modules/manage_network_components_form_network.php:178
+#: ../../godmode/modules/manage_network_components_form_network.php:210
#: ../../godmode/modules/manage_network_components_form_wmi.php:55
-#: ../../godmode/agentes/module_manager_editor_common.php:1328
+#: ../../godmode/agentes/module_manager_editor_common.php:1338
#: ../../godmode/massive/massive_edit_modules.php:795
#: ../../godmode/setup/snmp_wizard.php:43
msgid "Post process"
@@ -15136,55 +15299,55 @@ msgid "Check the correct structure of the data configuration"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:518
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250
msgid "First line must be \"module_begin\""
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:519
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251
msgid "Data configuration is empty"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:520
#: ../../enterprise/godmode/modules/configure_local_component.php:524
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256
msgid "Last line must be \"module_end\""
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:521
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253
msgid ""
"Name is missed. Please add a line with \"module_name yourmodulename\" to "
"data configuration"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:522
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254
msgid ""
"Type is missed. Please add a line with \"module_type yourmoduletype\" to "
"data configuration"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:523
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255
msgid "Type is wrong. Please set a correct type"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:526
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258
msgid "Error in the syntax, please check the data configuration."
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:527
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:259
msgid "Data configuration are built correctly"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:535
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1016
#: ../../godmode/modules/manage_network_components_form_common.php:334
-#: ../../godmode/agentes/module_manager_editor_common.php:1044
+#: ../../godmode/agentes/module_manager_editor_common.php:1053
#: ../../godmode/massive/massive_edit_modules.php:1107
msgid "Critical instructions"
msgstr ""
@@ -15199,7 +15362,7 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:540
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1020
#: ../../godmode/modules/manage_network_components_form_common.php:338
-#: ../../godmode/agentes/module_manager_editor_common.php:1043
+#: ../../godmode/agentes/module_manager_editor_common.php:1054
#: ../../godmode/massive/massive_edit_modules.php:1111
msgid "Warning instructions"
msgstr ""
@@ -15214,7 +15377,7 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:545
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1024
#: ../../godmode/modules/manage_network_components_form_common.php:342
-#: ../../godmode/agentes/module_manager_editor_common.php:1020
+#: ../../godmode/agentes/module_manager_editor_common.php:1030
#: ../../godmode/massive/massive_edit_modules.php:1115
msgid "Unknown instructions"
msgstr ""
@@ -15229,7 +15392,7 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:554
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:984
#: ../../godmode/modules/manage_network_components_form_common.php:353
-#: ../../godmode/agentes/module_manager_editor_common.php:745
+#: ../../godmode/agentes/module_manager_editor_common.php:755
#: ../../godmode/massive/massive_edit_modules.php:1075
#: ../../godmode/module_library/module_library_view.php:123
msgid "Category"
@@ -15237,13 +15400,13 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:573
#: ../../godmode/modules/manage_network_components_form_common.php:373
-#: ../../godmode/agentes/module_manager_editor_common.php:782
+#: ../../godmode/agentes/module_manager_editor_common.php:792
msgid "Tags available"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:591
#: ../../godmode/modules/manage_network_components_form_common.php:391
-#: ../../godmode/agentes/module_manager_editor_common.php:862
+#: ../../godmode/agentes/module_manager_editor_common.php:872
msgid "Add tags to module"
msgstr ""
@@ -15255,7 +15418,7 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:593
#: ../../enterprise/godmode/setup/setup_auth.php:196
#: ../../enterprise/godmode/setup/setup_auth.php:551
-#: ../../enterprise/godmode/setup/setup_auth.php:1359
+#: ../../enterprise/godmode/setup/setup_auth.php:1576
#: ../../godmode/modules/manage_network_components_form_common.php:393
msgid "Tags selected"
msgstr ""
@@ -15266,48 +15429,48 @@ msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:651
#: ../../godmode/servers/plugin.php:573
-#: ../../include/class/ManageNetScanScripts.class.php:644
+#: ../../include/class/ManageNetScanScripts.class.php:640
msgid "Default value"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:667
-#: ../../godmode/servers/plugin.php:628
-#: ../../include/class/ManageNetScanScripts.class.php:732
+#: ../../godmode/servers/plugin.php:632
+#: ../../include/class/ManageNetScanScripts.class.php:728
msgid "Add macro"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:675
-#: ../../include/class/ManageNetScanScripts.class.php:750
+#: ../../include/class/ManageNetScanScripts.class.php:746
msgid "Delete macro"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:993
#: ../../godmode/modules/manage_network_components_form_common.php:717
-#: ../../godmode/agentes/module_manager_editor_common.php:2263
+#: ../../godmode/agentes/module_manager_editor_common.php:2273
msgid "Normal Status"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:994
#: ../../godmode/modules/manage_network_components_form_common.php:718
-#: ../../godmode/agentes/module_manager_editor_common.php:2264
+#: ../../godmode/agentes/module_manager_editor_common.php:2274
msgid "Warning Status"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:995
#: ../../godmode/modules/manage_network_components_form_common.php:719
-#: ../../godmode/agentes/module_manager_editor_common.php:2265
+#: ../../godmode/agentes/module_manager_editor_common.php:2275
msgid "Critical Status"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:998
#: ../../godmode/modules/manage_network_components_form_common.php:721
-#: ../../godmode/agentes/module_manager_editor_common.php:2268
+#: ../../godmode/agentes/module_manager_editor_common.php:2278
msgid "Please introduce a maximum warning higher than the minimun warning"
msgstr ""
#: ../../enterprise/godmode/modules/configure_local_component.php:1000
#: ../../godmode/modules/manage_network_components_form_common.php:722
-#: ../../godmode/agentes/module_manager_editor_common.php:2269
+#: ../../godmode/agentes/module_manager_editor_common.php:2279
msgid "Please introduce a maximum critical higher than the minimun critical"
msgstr ""
@@ -15316,7 +15479,7 @@ msgid "Please introduce a positicve percentage value"
msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:140
-#: ../../godmode/modules/manage_network_components.php:195
+#: ../../godmode/modules/manage_network_components.php:196
#: ../../godmode/alerts/configure_alert_template.php:208
#, php-format
msgid "Successfully created from %s"
@@ -15337,9 +15500,9 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_action.php:164
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:51
#: ../../godmode/modules/manage_nc_groups.php:109
-#: ../../godmode/modules/manage_network_components.php:198
-#: ../../godmode/modules/manage_network_components.php:436
-#: ../../godmode/users/configure_user.php:531
+#: ../../godmode/modules/manage_network_components.php:199
+#: ../../godmode/modules/manage_network_components.php:438
+#: ../../godmode/users/configure_user.php:480
#: ../../godmode/agentes/configurar_agente.php:361
#: ../../godmode/agentes/configurar_agente.php:883
#: ../../godmode/agentes/planned_downtime.editor.php:650
@@ -15348,8 +15511,8 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:544
#: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:84
#: ../../godmode/setup/gis.php:49
-#: ../../godmode/reporting/reporting_builder.item_editor.php:6025
-#: ../../include/functions_alerts.php:2755
+#: ../../godmode/reporting/reporting_builder.item_editor.php:6028
+#: ../../include/functions_alerts.php:2756
#: ../../include/functions_planned_downtimes.php:113
#: ../../include/functions_planned_downtimes.php:845
#: ../../operation/agentes/pandora_networkmap.php:140
@@ -15369,14 +15532,14 @@ msgid ""
msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:339
-#: ../../godmode/modules/manage_network_components.php:447
+#: ../../godmode/modules/manage_network_components.php:449
#: ../../include/class/ManageNetScanScripts.class.php:228
msgid "Created successfully"
msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:407
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:127
-#: ../../enterprise/godmode/policies/policy_modules.php:1266
+#: ../../enterprise/godmode/policies/policy_modules.php:1311
#: ../../enterprise/godmode/policies/policies.php:212
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139
@@ -15387,23 +15550,23 @@ msgstr ""
#: ../../enterprise/include/ajax/servers.ajax.php:368
#: ../../enterprise/tools/ipam/ipam_action.php:277
#: ../../enterprise/tools/ipam/ipam_massive.php:48
-#: ../../godmode/modules/manage_network_components.php:535
-#: ../../godmode/agentes/status_monitor_custom_fields.php:57
+#: ../../godmode/modules/manage_network_components.php:538
+#: ../../godmode/agentes/status_monitor_custom_fields.php:77
#: ../../godmode/agentes/planned_downtime.editor.php:652
#: ../../godmode/alerts/configure_alert_command.php:150
-#: ../../godmode/alerts/alert_templates.php:162
+#: ../../godmode/alerts/alert_templates.php:166
#: ../../godmode/alerts/configure_alert_template.php:572
#: ../../godmode/alerts/alert_list.php:95
#: ../../godmode/alerts/alert_list.php:320 ../../godmode/setup/gis.php:41
-#: ../../include/functions_alerts.php:2755
+#: ../../include/functions_alerts.php:2756
#: ../../include/functions_planned_downtimes.php:123
#: ../../operation/agentes/pandora_networkmap.php:216
-#: ../../operation/agentes/pandora_networkmap.php:515
+#: ../../operation/agentes/pandora_networkmap.php:516
msgid "Could not be updated"
msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:415
-#: ../../godmode/modules/manage_network_components.php:544
+#: ../../godmode/modules/manage_network_components.php:547
#: ../../include/class/ManageNetScanScripts.class.php:315
msgid "Updated successfully"
msgstr ""
@@ -15412,7 +15575,7 @@ msgstr ""
#: ../../godmode/modules/manage_nc_groups.php:218
#: ../../godmode/modules/manage_inventory_modules.php:234
#: ../../godmode/modules/manage_inventory_modules.php:267
-#: ../../godmode/modules/manage_network_components.php:588
+#: ../../godmode/modules/manage_network_components.php:591
#: ../../godmode/modules/manage_network_templates.php:114
msgid "Successfully multiple deleted"
msgstr ""
@@ -15421,14 +15584,14 @@ msgstr ""
#: ../../godmode/modules/manage_nc_groups.php:219
#: ../../godmode/modules/manage_inventory_modules.php:235
#: ../../godmode/modules/manage_inventory_modules.php:268
-#: ../../godmode/modules/manage_network_components.php:589
+#: ../../godmode/modules/manage_network_components.php:592
#: ../../godmode/modules/manage_network_templates.php:115
msgid "Not deleted. Error deleting multiple data"
msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:567
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902
-#: ../../godmode/modules/manage_network_components.php:677
+#: ../../godmode/modules/manage_network_components.php:680
msgid "Free Search"
msgstr ""
@@ -15437,15 +15600,15 @@ msgid "Search by name, description or data, list matches."
msgstr ""
#: ../../enterprise/godmode/modules/local_components.php:732
-#: ../../enterprise/godmode/policies/policy_modules.php:1636
+#: ../../enterprise/godmode/policies/policy_modules.php:1681
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:595
#: ../../enterprise/include/class/NetworkConfigManager.class.php:628
-#: ../../godmode/modules/manage_network_components.php:841
-#: ../../godmode/agentes/module_manager.php:961
+#: ../../godmode/modules/manage_network_components.php:844
+#: ../../godmode/agentes/module_manager.php:975
#: ../../godmode/snmpconsole/snmp_alert.php:1984
#: ../../godmode/snmpconsole/snmp_alert.php:1985
#: ../../godmode/alerts/alert_actions.php:461
-#: ../../godmode/alerts/alert_templates.php:458
+#: ../../godmode/alerts/alert_templates.php:462
#: ../../godmode/reporting/reporting_builder.php:1194
msgid "Duplicate"
msgstr ""
@@ -15514,7 +15677,7 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wizard.php:661
#: ../../godmode/agentes/planned_downtime.list.php:737
#: ../../godmode/agentes/planned_downtime.editor.php:951
-#: ../../include/functions_reporting_html.php:6372
+#: ../../include/functions_reporting_html.php:6406
msgid "Execution"
msgstr ""
@@ -15602,8 +15765,8 @@ msgstr ""
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:665
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:679
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:330
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:320
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:335
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:552
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:573
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:643
@@ -15633,20 +15796,20 @@ msgstr ""
#: ../../godmode/massive/massive_edit_users.php:462
#: ../../godmode/massive/massive_edit_users.php:470
#: ../../godmode/massive/massive_edit_users.php:507
-#: ../../godmode/massive/massive_edit_users.php:609
-#: ../../godmode/massive/massive_edit_users.php:628
-#: ../../godmode/massive/massive_edit_users.php:635
-#: ../../godmode/massive/massive_edit_agents.php:677
-#: ../../godmode/massive/massive_edit_agents.php:703
-#: ../../godmode/massive/massive_edit_agents.php:739
-#: ../../godmode/massive/massive_edit_agents.php:763
-#: ../../godmode/massive/massive_edit_agents.php:880
-#: ../../godmode/massive/massive_edit_agents.php:927
-#: ../../godmode/massive/massive_edit_agents.php:1020
-#: ../../godmode/massive/massive_edit_agents.php:1073
-#: ../../godmode/massive/massive_edit_agents.php:1115
-#: ../../godmode/massive/massive_edit_agents.php:1143
-#: ../../godmode/massive/massive_edit_agents.php:1237
+#: ../../godmode/massive/massive_edit_users.php:610
+#: ../../godmode/massive/massive_edit_users.php:629
+#: ../../godmode/massive/massive_edit_users.php:636
+#: ../../godmode/massive/massive_edit_agents.php:694
+#: ../../godmode/massive/massive_edit_agents.php:720
+#: ../../godmode/massive/massive_edit_agents.php:756
+#: ../../godmode/massive/massive_edit_agents.php:780
+#: ../../godmode/massive/massive_edit_agents.php:897
+#: ../../godmode/massive/massive_edit_agents.php:944
+#: ../../godmode/massive/massive_edit_agents.php:1037
+#: ../../godmode/massive/massive_edit_agents.php:1090
+#: ../../godmode/massive/massive_edit_agents.php:1132
+#: ../../godmode/massive/massive_edit_agents.php:1159
+#: ../../godmode/massive/massive_edit_agents.php:1253
#: ../../godmode/massive/massive_edit_modules.php:630
#: ../../godmode/massive/massive_edit_modules.php:652
#: ../../godmode/massive/massive_edit_modules.php:721
@@ -15668,28 +15831,27 @@ msgstr ""
#: ../../godmode/massive/massive_edit_modules.php:1095
#: ../../godmode/massive/massive_edit_modules.php:1123
#: ../../godmode/massive/massive_edit_modules.php:1227
-#: ../../include/functions_html.php:1877 ../../include/functions_html.php:1978
-#: ../../include/functions_html.php:2116
+#: ../../include/functions_html.php:1888 ../../include/functions_html.php:1989
+#: ../../include/functions_html.php:2127
msgid "No change"
msgstr ""
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683
-#: ../../godmode/agentes/agent_manager.php:636
+#: ../../godmode/agentes/agent_manager.php:638
#: ../../godmode/reporting/reporting_builder.item_editor.php:73
-#: ../../include/functions_events.php:5061
-#: ../../operation/agentes/estado_generalagente.php:504
-#: ../../operation/inventory/inventory.php:1003
-#: ../../operation/inventory/inventory.php:1297
+#: ../../include/functions_events.php:5066
+#: ../../operation/agentes/estado_generalagente.php:475
+#: ../../operation/inventory/inventory.php:1249
msgid "Secondary groups"
msgstr ""
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730
-#: ../../godmode/massive/massive_edit_agents.php:825
+#: ../../godmode/massive/massive_edit_agents.php:842
msgid "Add secondary groups"
msgstr ""
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737
-#: ../../godmode/massive/massive_edit_agents.php:851
+#: ../../godmode/massive/massive_edit_agents.php:868
msgid "Remove secondary groups"
msgstr ""
@@ -15700,7 +15862,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435
-#: ../../operation/agentes/estado_agente.php:1063
+#: ../../operation/agentes/estado_agente.php:1071
msgid "Op"
msgstr ""
@@ -15780,13 +15942,13 @@ msgstr ""
#: ../../enterprise/include/functions_HA_cluster.php:61
#: ../../enterprise/include/lib/Metaconsole/Node.php:1114
#: ../../enterprise/include/lib/Metaconsole/Node.php:1115
-#: ../../godmode/users/user_list.php:845
+#: ../../godmode/users/user_list.php:846
#: ../../godmode/massive/massive_edit_users.php:529
-#: ../../godmode/alerts/alert_list.list.php:1170
+#: ../../godmode/alerts/alert_list.list.php:1169
#: ../../include/class/SatelliteAgent.class.php:1195
-#: ../../include/class/TipsWindow.class.php:456
-#: ../../include/class/TipsWindow.class.php:734
-#: ../../include/class/TipsWindow.class.php:901
+#: ../../include/class/TipsWindow.class.php:468
+#: ../../include/class/TipsWindow.class.php:754
+#: ../../include/class/TipsWindow.class.php:921
#: ../../operation/users/user_edit_notifications.php:64
msgid "Enable"
msgstr ""
@@ -15798,15 +15960,15 @@ msgstr ""
#: ../../enterprise/include/functions_HA_cluster.php:58
#: ../../enterprise/include/lib/Metaconsole/Node.php:1140
#: ../../enterprise/include/lib/Metaconsole/Node.php:1141
-#: ../../godmode/users/user_list.php:840
+#: ../../godmode/users/user_list.php:841
#: ../../godmode/massive/massive_edit_users.php:518
-#: ../../godmode/alerts/alert_list.list.php:1143
+#: ../../godmode/alerts/alert_list.list.php:1142
#: ../../include/functions.php:3413
#: ../../include/class/SatelliteAgent.class.php:1195
msgid "Disable"
msgstr ""
-#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218
+#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:226
msgid "Add new configuration definition"
msgstr ""
@@ -15830,10 +15992,10 @@ msgstr ""
#: ../../enterprise/godmode/agentes/plugins_manager.php:212
#: ../../enterprise/godmode/policies/policy_plugins.php:185
#: ../../enterprise/godmode/policies/policies.php:607
-#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:322
+#: ../../enterprise/godmode/policies/policy.php:128 ../../godmode/menu.php:320
#: ../../godmode/servers/plugin.php:240 ../../godmode/servers/plugin.php:282
-#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:764
-#: ../../godmode/servers/plugin.php:806
+#: ../../godmode/servers/plugin.php:359 ../../godmode/servers/plugin.php:756
+#: ../../godmode/servers/plugin.php:798
msgid "Plugins"
msgstr ""
@@ -15860,12 +16022,12 @@ msgid "Show files"
msgstr ""
#: ../../enterprise/godmode/agentes/collection_manager.php:251
-#: ../../enterprise/operation/log/log_viewer.php:1477
-#: ../../enterprise/operation/log/log_viewer.php:1485
+#: ../../enterprise/operation/log/log_viewer.php:1475
+#: ../../enterprise/operation/log/log_viewer.php:1483
#: ../../godmode/reporting/reporting_builder.php:1268
-#: ../../include/functions_reporting.php:3199
-#: ../../operation/agentes/agent_inventory.php:280
-#: ../../operation/inventory/inventory.php:776
+#: ../../include/functions_reporting.php:3208
+#: ../../operation/agentes/agent_inventory.php:334
+#: ../../operation/inventory/inventory.php:1005
msgid "No data found."
msgstr ""
@@ -15874,9 +16036,9 @@ msgstr ""
#: ../../godmode/agentes/inventory_manager.php:232
#: ../../godmode/snmpconsole/snmp_alert.php:1891
#: ../../godmode/reporting/reporting_builder.list_items.php:373
-#: ../../godmode/reporting/graph_builder.graph_editor.php:211
+#: ../../godmode/reporting/graph_builder.graph_editor.php:344
#: ../../include/ajax/alert_list.ajax.php:285
-#: ../../operation/agentes/status_monitor.php:1531
+#: ../../operation/agentes/status_monitor.php:1533
msgid "P."
msgstr ""
@@ -15892,7 +16054,7 @@ msgid "Capacity planning"
msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186
#: ../../enterprise/godmode/services/services.elements.php:95
#: ../../enterprise/godmode/services/services.elements.php:184
#: ../../enterprise/include/functions_visual_map_editor.php:30
@@ -15903,7 +16065,8 @@ msgstr ""
#: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288
#: ../../enterprise/include/functions_reporting.php:6152
#: ../../enterprise/include/functions_services.php:1712
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4118
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4127
+#: ../../mobile/operation/services.php:267
#: ../../include/lib/Dashboard/Widgets/service_map.php:318
msgid "Service"
msgstr ""
@@ -15920,59 +16083,59 @@ msgstr ""
msgid "Trending module"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138
msgid "Fixed value"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141
msgid "Add module to operation as add"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142
msgid "Add module to operations as deduct"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143
msgid "Add module to operations as multiplicate "
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
msgid "Add module to operations as divide"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145
msgid "Remove selected modules"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:148
msgid "Add module to average operation"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149
msgid "Remove selected modules from operations stack"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:160
msgid "Move down selected modules"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:161
msgid "Move up selected modules"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197
msgid "Select Service"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:214
msgid "Netflow filter"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:223
msgid "Select filter"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240
+#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:238
msgid "Percentual value"
msgstr ""
@@ -16086,15 +16249,19 @@ msgstr ""
msgid "No component was found"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132
+msgid "Macro value"
+msgstr ""
+
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171
msgid "Show configuration data"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:182
msgid "Hide configuration data"
msgstr ""
-#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189
+#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:190
msgid "Data configuration"
msgstr ""
@@ -16130,7 +16297,7 @@ msgid "Add Modules"
msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83
-#: ../../godmode/agentes/module_manager.php:1247
+#: ../../godmode/agentes/module_manager.php:1268
msgid "Delete module"
msgstr ""
@@ -16171,8 +16338,8 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231
#: ../../godmode/tag/edit_tag.php:76
-#: ../../include/class/TipsWindow.class.php:718
-#: ../../include/class/TipsWindow.class.php:885
+#: ../../include/class/TipsWindow.class.php:738
+#: ../../include/class/TipsWindow.class.php:905
#: ../../operation/search_users.php:47
msgid "Profile"
msgstr ""
@@ -16192,7 +16359,7 @@ msgid "Only Selenium 3."
msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286
-#: ../../godmode/agentes/module_manager_editor_common.php:1206
+#: ../../godmode/agentes/module_manager_editor_common.php:1216
msgid "Change all states"
msgstr ""
@@ -16216,15 +16383,15 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_excel.php:220
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:419
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:792
-#: ../../godmode/groups/configure_group.php:234
+#: ../../godmode/groups/configure_group.php:253
#: ../../godmode/agentes/agent_manager.php:195
-#: ../../godmode/agentes/module_manager_editor_common.php:744
-#: ../../godmode/massive/massive_edit_agents.php:812
+#: ../../godmode/agentes/module_manager_editor_common.php:754
+#: ../../godmode/massive/massive_edit_agents.php:829
msgid "Custom ID"
msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497
-#: ../../godmode/agentes/module_manager.php:902
+#: ../../godmode/agentes/module_manager.php:916
msgid ""
"The policy modules of data type will only update their intervals when policy "
"is applied."
@@ -16232,7 +16399,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961
-#: ../../godmode/agentes/module_manager_editor_common.php:1281
+#: ../../godmode/agentes/module_manager_editor_common.php:1291
#: ../../godmode/massive/massive_edit_modules.php:1029
msgid "FF interval"
msgstr ""
@@ -16245,7 +16412,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:546
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1057
-#: ../../godmode/agentes/module_manager_editor_common.php:1410
+#: ../../godmode/agentes/module_manager_editor_common.php:1420
#: ../../godmode/massive/massive_edit_modules.php:1150
msgid "Retries"
msgstr ""
@@ -16259,7 +16426,7 @@ msgstr ""
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619
#: ../../enterprise/godmode/policies/policy_modules.php:418
#: ../../godmode/agentes/module_manager_editor.php:762
-#: ../../godmode/agentes/module_manager_editor_common.php:1444
+#: ../../godmode/agentes/module_manager_editor_common.php:1454
msgid "Custom macros"
msgstr ""
@@ -16285,13 +16452,15 @@ msgstr ""
#: ../../enterprise/operation/services/services.table_services.php:63
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104
#: ../../godmode/gis_maps/configure_gis_map.php:116
-#: ../../godmode/reporting/visual_console_builder.php:865
+#: ../../godmode/reporting/visual_console_builder.php:873
#: ../../godmode/reporting/map_builder.php:129
#: ../../godmode/reporting/visual_console_favorite.php:126
-#: ../../operation/visual_console/view.php:247
+#: ../../operation/visual_console/view.php:249
+#: ../../operation/visual_console/legacy_view.php:215
+#: ../../operation/agentes/networkmap.dinamic.php:146
#: ../../operation/agentes/pandora_networkmap.editor.php:232
-#: ../../operation/agentes/pandora_networkmap.php:681
-#: ../../operation/agentes/pandora_networkmap.view.php:2409
+#: ../../operation/agentes/pandora_networkmap.php:682
+#: ../../operation/agentes/pandora_networkmap.view.php:2410
#: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47
#: ../../operation/gis_maps/render_view.php:189
msgid "Topology maps"
@@ -16300,15 +16469,15 @@ msgstr ""
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:106
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108
#: ../../operation/agentes/pandora_networkmap.editor.php:236
-#: ../../operation/agentes/pandora_networkmap.php:685
-#: ../../operation/agentes/pandora_networkmap.view.php:2311
+#: ../../operation/agentes/pandora_networkmap.php:686
+#: ../../operation/agentes/pandora_networkmap.view.php:2312
msgid "Networkmap"
msgstr ""
#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115
#: ../../operation/agentes/pandora_networkmap.editor.php:274
-#: ../../operation/agentes/pandora_networkmap.view.php:2317
+#: ../../operation/agentes/pandora_networkmap.view.php:2318
msgid "Not found networkmap."
msgstr ""
@@ -16413,7 +16582,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:75
#: ../../enterprise/godmode/policies/configure_policy.php:92
#: ../../enterprise/godmode/policies/policy_modules.php:488
-#: ../../enterprise/godmode/policies/policy_queue.php:218
+#: ../../enterprise/godmode/policies/policy_queue.php:220
#: ../../enterprise/godmode/policies/policies.php:275
#: ../../enterprise/godmode/policies/policy_linking.php:127
#: ../../enterprise/godmode/policies/policy_external_alerts.php:329
@@ -16445,7 +16614,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_plugins.php:70
#: ../../enterprise/godmode/policies/policy_alerts.php:270
-#: ../../enterprise/godmode/policies/policy_modules.php:1332
+#: ../../enterprise/godmode/policies/policy_modules.php:1377
#: ../../enterprise/godmode/policies/policy_external_alerts.php:162
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:177
#: ../../enterprise/godmode/policies/policy_collections.php:122
@@ -16456,7 +16625,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_plugins.php:71
#: ../../enterprise/godmode/policies/policy_alerts.php:271
-#: ../../enterprise/godmode/policies/policy_modules.php:1333
+#: ../../enterprise/godmode/policies/policy_modules.php:1378
#: ../../enterprise/godmode/policies/policy_external_alerts.php:163
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:180
#: ../../enterprise/godmode/policies/policy_collections.php:123
@@ -16478,7 +16647,7 @@ msgid "There are no defined plugins"
msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:105
-#: ../../enterprise/godmode/policies/policy_modules.php:611
+#: ../../enterprise/godmode/policies/policy_modules.php:615
#: ../../enterprise/godmode/policies/policies.php:256
#: ../../enterprise/godmode/policies/policy_linking.php:51
#: ../../enterprise/godmode/policies/policy_external_alerts.php:87
@@ -16492,7 +16661,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:164
#: ../../enterprise/godmode/policies/policy_modules.php:547
#: ../../enterprise/godmode/setup/setup_metaconsole.php:157
-#: ../../godmode/agentes/configurar_agente.php:2214
+#: ../../godmode/agentes/configurar_agente.php:2277
#: ../../godmode/agentes/modificar_agente.php:271
#: ../../godmode/massive/massive_enable_disable_alerts.php:124
#: ../../godmode/alerts/alert_list.php:419
@@ -16578,8 +16747,8 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_external_alerts.php:510
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3443
#: ../../godmode/alerts/alert_list.list.php:724
-#: ../../include/class/Diagnostics.class.php:1204
#: ../../include/class/Diagnostics.class.php:1208
+#: ../../include/class/Diagnostics.class.php:1212
msgid "On"
msgstr ""
@@ -16591,7 +16760,7 @@ msgid "Until"
msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:577
-#: ../../enterprise/godmode/policies/policy_modules.php:1653
+#: ../../enterprise/godmode/policies/policy_modules.php:1698
#: ../../enterprise/godmode/policies/policy_external_alerts.php:583
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303
#: ../../enterprise/godmode/policies/policy_agents.php:1192
@@ -16604,12 +16773,12 @@ msgid "There is not alerts configured in this policy."
msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:695
-#: ../../godmode/alerts/alert_list.list.php:1197
+#: ../../godmode/alerts/alert_list.list.php:1196
msgid "Set off standby"
msgstr ""
#: ../../enterprise/godmode/policies/policy_alerts.php:704
-#: ../../godmode/alerts/alert_list.list.php:1224
+#: ../../godmode/alerts/alert_list.list.php:1223
msgid "Set standby"
msgstr ""
@@ -16628,9 +16797,9 @@ msgstr ""
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:476
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544
#: ../../godmode/snmpconsole/snmp_alert.php:2020
-#: ../../godmode/alerts/alert_list.list.php:995
-#: ../../godmode/alerts/alert_list.list.php:1006
-#: ../../godmode/alerts/alert_list.list.php:1270
+#: ../../godmode/alerts/alert_list.list.php:994
+#: ../../godmode/alerts/alert_list.list.php:1005
+#: ../../godmode/alerts/alert_list.list.php:1269
msgid "Add action"
msgstr ""
@@ -16684,249 +16853,249 @@ msgstr ""
msgid "Could not be added module(s). You must select a policy"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:593
+#: ../../enterprise/godmode/policies/policy_modules.php:597
#, php-format
msgid "Successfully added module(s) (%s/%s) to policy %s"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:599
+#: ../../enterprise/godmode/policies/policy_modules.php:603
#, php-format
msgid "Could not be added module(s) (%s/%s) to policy %s"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:635
+#: ../../enterprise/godmode/policies/policy_modules.php:639
msgid "To define plugins please use plugin configuration tab."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:934
+#: ../../enterprise/godmode/policies/policy_modules.php:938
msgid "Could not be added module."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1281
+#: ../../enterprise/godmode/policies/policy_modules.php:1326
msgid ""
"The module type in Data configuration is empty, take from combo box of form."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1285
+#: ../../enterprise/godmode/policies/policy_modules.php:1330
msgid ""
"The module name in Data configuration is empty, take from text field of form."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1315
-#: ../../enterprise/godmode/policies/policy_modules.php:1328
+#: ../../enterprise/godmode/policies/policy_modules.php:1360
+#: ../../enterprise/godmode/policies/policy_modules.php:1373
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:171
msgid ""
"Successfully added to delete pending modules. Will be deleted in the next "
"policy application."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1319
+#: ../../enterprise/godmode/policies/policy_modules.php:1364
msgid "Could not be added to deleted all modules."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1379
-#: ../../godmode/agentes/configurar_agente.php:2127
+#: ../../enterprise/godmode/policies/policy_modules.php:1424
+#: ../../godmode/agentes/configurar_agente.php:2190
#: ../../include/functions_reports.php:975
#, php-format
msgid "copy of %s"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1397
-#: ../../godmode/agentes/configurar_agente.php:2141
+#: ../../enterprise/godmode/policies/policy_modules.php:1442
+#: ../../godmode/agentes/configurar_agente.php:2204
#, php-format
msgid "copy of %s (%d)"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1427
+#: ../../enterprise/godmode/policies/policy_modules.php:1472
msgid "Successfully duplicate the module."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1428
-#: ../../operation/agentes/pandora_networkmap.php:540
+#: ../../enterprise/godmode/policies/policy_modules.php:1473
+#: ../../operation/agentes/pandora_networkmap.php:541
msgid "Could not be duplicated"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1482
-#: ../../operation/agentes/estado_monitores.php:610
+#: ../../enterprise/godmode/policies/policy_modules.php:1527
+#: ../../operation/agentes/estado_monitores.php:608
msgid "Show in hierachy mode"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1577
+#: ../../enterprise/godmode/policies/policy_modules.php:1622
msgid "Local component"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1590
-#: ../../enterprise/godmode/policies/policy_modules.php:1591
+#: ../../enterprise/godmode/policies/policy_modules.php:1635
+#: ../../enterprise/godmode/policies/policy_modules.php:1636
msgid "Disabled module"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1598
-#: ../../enterprise/godmode/policies/policy_modules.php:1599
+#: ../../enterprise/godmode/policies/policy_modules.php:1643
+#: ../../enterprise/godmode/policies/policy_modules.php:1644
msgid "Enabled module"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1609
-#: ../../enterprise/godmode/policies/policy_modules.php:1610
-#: ../../godmode/agentes/module_manager.php:940
+#: ../../enterprise/godmode/policies/policy_modules.php:1654
+#: ../../enterprise/godmode/policies/policy_modules.php:1655
+#: ../../godmode/agentes/module_manager.php:954
msgid "Enable module"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1619
-#: ../../enterprise/godmode/policies/policy_modules.php:1620
-#: ../../godmode/agentes/module_manager.php:949
+#: ../../enterprise/godmode/policies/policy_modules.php:1664
+#: ../../enterprise/godmode/policies/policy_modules.php:1665
+#: ../../godmode/agentes/module_manager.php:963
msgid "Disable module"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1719
+#: ../../enterprise/godmode/policies/policy_modules.php:1764
msgid "There are no defined modules"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1840
+#: ../../enterprise/godmode/policies/policy_modules.php:1885
#: ../../godmode/agentes/module_manager_editor.php:868
msgid "No module name provided"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1841
+#: ../../enterprise/godmode/policies/policy_modules.php:1886
#: ../../godmode/agentes/module_manager_editor.php:878
msgid "No target IP provided"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:1842
+#: ../../enterprise/godmode/policies/policy_modules.php:1887
#: ../../godmode/agentes/module_manager_editor.php:888
msgid "No SNMP OID provided"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:2008
+#: ../../enterprise/godmode/policies/policy_modules.php:2053
msgid "Are you sure to copy modules into policy?\\n"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_modules.php:2028
+#: ../../enterprise/godmode/policies/policy_modules.php:2071
msgid "Please select any module to copy"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:63
+#: ../../enterprise/godmode/policies/policy_queue.php:65
msgid "No policies with this id"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:78
+#: ../../enterprise/godmode/policies/policy_queue.php:80
#: ../../enterprise/godmode/policies/policy_agents.php:61
msgid ""
"Starting with Pandora FMS version 760, assigning an entire group to a policy "
"will apply it automatically to all the new agents added to that group."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:146
+#: ../../enterprise/godmode/policies/policy_queue.php:148
#, php-format
msgid "%s: Operations successfully deleted from the queue"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:153
+#: ../../enterprise/godmode/policies/policy_queue.php:155
msgid "Operations successfully deleted from the queue"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:154
+#: ../../enterprise/godmode/policies/policy_queue.php:156
msgid "Operations cannot be deleted from the queue"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:261
+#: ../../enterprise/godmode/policies/policy_queue.php:263
#, php-format
msgid "Some nodes (%s) are unreachebles. Some information may be missing."
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:418
+#: ../../enterprise/godmode/policies/policy_queue.php:420
msgid "Update pending"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:424
+#: ../../enterprise/godmode/policies/policy_queue.php:426
msgid "Update pending agents"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:447
+#: ../../enterprise/godmode/policies/policy_queue.php:449
#: ../../enterprise/godmode/policies/policy_agents.php:1135
#: ../../enterprise/godmode/policies/policy_agents.php:1477
msgid "Add to apply queue"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:453
+#: ../../enterprise/godmode/policies/policy_queue.php:455
msgid "Add to apply queue only for database"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:464
+#: ../../enterprise/godmode/policies/policy_queue.php:466
msgid "Update pending groups"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:478
+#: ../../enterprise/godmode/policies/policy_queue.php:480
msgid "Link pending modules"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:486
+#: ../../enterprise/godmode/policies/policy_queue.php:488
msgid "Will be linked in the next policy application"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:492
+#: ../../enterprise/godmode/policies/policy_queue.php:494
msgid "Unlink pending modules"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:498
+#: ../../enterprise/godmode/policies/policy_queue.php:500
msgid "Will be unlinked in the next policy application"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:503
+#: ../../enterprise/godmode/policies/policy_queue.php:505
msgid "Delete pending"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:509
+#: ../../enterprise/godmode/policies/policy_queue.php:511
msgid "Delete pending agents"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:517
-#: ../../enterprise/godmode/policies/policy_queue.php:532
-#: ../../enterprise/godmode/policies/policy_queue.php:547
-#: ../../enterprise/godmode/policies/policy_queue.php:562
-#: ../../enterprise/godmode/policies/policy_queue.php:577
-#: ../../enterprise/godmode/policies/policy_queue.php:592
-#: ../../enterprise/godmode/policies/policy_queue.php:607
-#: ../../enterprise/godmode/policies/policy_queue.php:622
+#: ../../enterprise/godmode/policies/policy_queue.php:519
+#: ../../enterprise/godmode/policies/policy_queue.php:534
+#: ../../enterprise/godmode/policies/policy_queue.php:549
+#: ../../enterprise/godmode/policies/policy_queue.php:564
+#: ../../enterprise/godmode/policies/policy_queue.php:579
+#: ../../enterprise/godmode/policies/policy_queue.php:594
+#: ../../enterprise/godmode/policies/policy_queue.php:609
+#: ../../enterprise/godmode/policies/policy_queue.php:624
msgid "Will be deleted in the next policy application"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:524
+#: ../../enterprise/godmode/policies/policy_queue.php:526
msgid "Delete pending groups"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:539
+#: ../../enterprise/godmode/policies/policy_queue.php:541
msgid "Delete pending modules"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:554
+#: ../../enterprise/godmode/policies/policy_queue.php:556
msgid "Delete pending inventory modules"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:569
+#: ../../enterprise/godmode/policies/policy_queue.php:571
msgid "Delete pending alerts"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:584
+#: ../../enterprise/godmode/policies/policy_queue.php:586
msgid "Delete pending external alerts"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:599
+#: ../../enterprise/godmode/policies/policy_queue.php:601
msgid "Delete pending file collections"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:614
+#: ../../enterprise/godmode/policies/policy_queue.php:616
msgid "Delete pending plugins"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:628
+#: ../../enterprise/godmode/policies/policy_queue.php:630
msgid "Advices"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:633
+#: ../../enterprise/godmode/policies/policy_queue.php:635
msgid "Queue summary"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:634
+#: ../../enterprise/godmode/policies/policy_queue.php:636
#: ../../enterprise/godmode/alerts/alert_inventory_list.php:186
#: ../../godmode/snmpconsole/snmp_alert.php:1812
#: ../../godmode/alerts/alert_list.list.php:260
@@ -16934,28 +17103,28 @@ msgstr ""
msgid "Toggle filter(s)"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:710
+#: ../../enterprise/godmode/policies/policy_queue.php:712
#: ../../enterprise/godmode/policies/policy_linking.php:203
#: ../../include/functions_massive_operations.php:189
-#: ../../include/lib/Dashboard/Widget.php:603
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:544
-#: ../../include/functions_events.php:4908
+#: ../../include/lib/Dashboard/Widget.php:604
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545
+#: ../../include/functions_events.php:4913
msgid "Node"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:838
+#: ../../enterprise/godmode/policies/policy_queue.php:842
msgid "Empty queue"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:852
+#: ../../enterprise/godmode/policies/policy_queue.php:856
msgid "This operation could take a long time"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:864
+#: ../../enterprise/godmode/policies/policy_queue.php:868
msgid "Apply all queues"
msgstr ""
-#: ../../enterprise/godmode/policies/policy_queue.php:877
+#: ../../enterprise/godmode/policies/policy_queue.php:881
msgid "Clear all items"
msgstr ""
@@ -17273,7 +17442,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_agents.php:851
#: ../../enterprise/godmode/setup/setup_auth.php:252
#: ../../enterprise/godmode/setup/setup_auth.php:602
-#: ../../enterprise/godmode/setup/setup_auth.php:1412
+#: ../../enterprise/godmode/setup/setup_auth.php:1629
#: ../../extensions/files_repo/files_repo_form.php:54
#: ../../extensions/module_groups.php:350
#: ../../godmode/reporting/visual_console_builder.wizard.php:368
@@ -17287,13 +17456,13 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/events_list.php:431
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:334
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:341
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:350
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:372
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:344
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:353
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:375
#: ../../include/lib/Dashboard/Widgets/tactical.php:331
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301
#: ../../operation/tree.php:91
-#: ../../operation/agentes/pandora_networkmap.php:719
+#: ../../operation/agentes/pandora_networkmap.php:720
msgid "Groups"
msgstr ""
@@ -17312,10 +17481,10 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_agents.php:959
#: ../../godmode/agentes/configurar_agente.php:623
#: ../../godmode/agentes/configurar_agente.php:762
-#: ../../godmode/agentes/agent_manager.php:862
-#: ../../godmode/massive/massive_edit_agents.php:966
+#: ../../godmode/agentes/agent_manager.php:870
+#: ../../godmode/massive/massive_edit_agents.php:983
#: ../../godmode/reporting/reporting_builder.item_editor.php:79
-#: ../../godmode/servers/servers.build_table.php:260
+#: ../../godmode/servers/servers.build_table.php:273
#: ../../operation/agentes/estado_generalagente.php:313
msgid "Remote configuration"
msgstr ""
@@ -17333,7 +17502,7 @@ msgstr ""
#: ../../enterprise/operation/agentes/policy_view.php:167
#: ../../enterprise/operation/agentes/policy_view.php:258
#: ../../enterprise/operation/agentes/policy_view.php:263
-#: ../../mobile/operation/agents.php:406
+#: ../../mobile/operation/agents.php:407
#: ../../include/ajax/alert_list.ajax.php:286
#: ../../include/ajax/alert_list.ajax.php:311
#: ../../include/class/AuditLog.class.php:130
@@ -17352,7 +17521,7 @@ msgstr ""
#: ../../enterprise/godmode/policies/policy_agents.php:1348
#: ../../enterprise/godmode/admin_access_logs.php:54
#: ../../godmode/reporting/visual_console_builder.elements.php:134
-#: ../../mobile/operation/agents.php:407
+#: ../../mobile/operation/agents.php:408
#: ../../include/class/AuditLog.class.php:130
msgid "A."
msgstr ""
@@ -17436,16 +17605,20 @@ msgstr ""
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57
+#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
+#: ../../godmode/snmpconsole/snmp_filters.php:59
#: ../../include/class/CredentialStore.class.php:965
#: ../../include/class/SnmpConsole.class.php:221
#: ../../operation/snmpconsole/snmp_statistics.php:104
+#: ../../operation/snmpconsole/snmp_browser.php:92
+#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
#: ../../operation/menu.php:259
msgid "SNMP"
msgstr ""
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:115
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:403
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:304
#: ../../godmode/setup/snmp_wizard.php:42
#: ../../include/functions_snmp_browser.php:556
msgid "OID"
@@ -17461,13 +17634,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2232
#: ../../enterprise/include/functions_reporting_csv.php:2437
#: ../../enterprise/include/functions_reporting_csv.php:2451
-#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2349
+#: ../../godmode/setup/news.php:291 ../../godmode/setup/setup_visuals.php:1844
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2358
#: ../../include/functions_reports.php:847
-#: ../../include/class/TipsWindow.class.php:455
-#: ../../include/class/TipsWindow.class.php:730
-#: ../../include/class/TipsWindow.class.php:897
-#: ../../include/functions_reporting.php:7509
+#: ../../include/class/TipsWindow.class.php:467
+#: ../../include/class/TipsWindow.class.php:750
+#: ../../include/class/TipsWindow.class.php:917
+#: ../../include/functions_reporting.php:7518
#: ../../include/lib/Dashboard/Widgets/post.php:214
msgid "Text"
msgstr ""
@@ -17475,8 +17648,8 @@ msgstr ""
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44
#: ../../enterprise/operation/snmpconsole/snmp_view.php:82
#: ../../enterprise/operation/menu.php:151
-#: ../../include/class/SnmpConsole.class.php:915
-#: ../../include/class/SnmpConsole.class.php:916
+#: ../../include/class/SnmpConsole.class.php:917
+#: ../../include/class/SnmpConsole.class.php:918
msgid "SNMP trap editor"
msgstr ""
@@ -17744,7 +17917,7 @@ msgid "Failed: create the alerts for this modules, please check."
msgstr ""
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:127
#: ../../enterprise/include/ajax/policy.ajax.php:263
#: ../../godmode/massive/massive_standby_alerts.php:218
#: ../../godmode/massive/massive_add_alerts.php:280
@@ -17755,8 +17928,9 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:128
#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:139
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:140
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2200
#: ../../include/functions_alerts.php:673
msgid "Regular expression"
msgstr ""
@@ -17839,8 +18013,9 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:341
#: ../../enterprise/godmode/setup/setup_auth.php:473
#: ../../enterprise/godmode/setup/setup_auth.php:639
-#: ../../enterprise/godmode/setup/setup_auth.php:1281
-#: ../../enterprise/godmode/setup/setup_auth.php:1451
+#: ../../enterprise/godmode/setup/setup_auth.php:1197
+#: ../../enterprise/godmode/setup/setup_auth.php:1498
+#: ../../enterprise/godmode/setup/setup_auth.php:1668
#: ../../enterprise/godmode/setup/setup_acl.php:487
#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719
#: ../../enterprise/include/functions_tasklist.php:606
@@ -17860,32 +18035,32 @@ msgstr ""
#: ../../godmode/massive/massive_copy_modules.php:178
#: ../../godmode/massive/massive_delete_modules.php:407
#: ../../godmode/massive/massive_delete_modules.php:521
-#: ../../godmode/massive/massive_edit_agents.php:650
-#: ../../godmode/massive/massive_edit_agents.php:1153
+#: ../../godmode/massive/massive_edit_agents.php:667
+#: ../../godmode/massive/massive_edit_agents.php:1170
#: ../../godmode/massive/massive_add_action_alerts.php:217
#: ../../godmode/massive/massive_edit_modules.php:411
#: ../../godmode/massive/massive_edit_modules.php:497
#: ../../godmode/reporting/create_container.php:674
-#: ../../godmode/events/event_edit_filter.php:510
-#: ../../godmode/events/event_edit_filter.php:526
-#: ../../include/functions_visual_map_editor.php:498
-#: ../../include/functions_visual_map_editor.php:1454
-#: ../../include/functions_visual_map_editor.php:1548
+#: ../../godmode/events/event_edit_filter.php:512
+#: ../../godmode/events/event_edit_filter.php:528
+#: ../../include/functions_visual_map_editor.php:492
+#: ../../include/functions_visual_map_editor.php:1512
+#: ../../include/functions_visual_map_editor.php:1606
#: ../../include/ajax/visual_console_builder.ajax.php:1186
#: ../../include/functions_profile.php:390
-#: ../../include/functions_html.php:2327 ../../include/functions_html.php:2328
-#: ../../include/functions_html.php:2329 ../../include/functions_html.php:2330
-#: ../../include/functions_html.php:2331 ../../include/functions_html.php:2333
-#: ../../include/functions_html.php:2334 ../../include/functions_html.php:2335
-#: ../../include/functions_html.php:2336 ../../include/functions_html.php:2337
-#: ../../include/functions_html.php:2352 ../../include/functions_html.php:2374
-#: ../../include/functions_html.php:2396 ../../include/functions_html.php:2418
-#: ../../include/functions_html.php:2440
+#: ../../include/functions_html.php:2342 ../../include/functions_html.php:2343
+#: ../../include/functions_html.php:2344 ../../include/functions_html.php:2345
+#: ../../include/functions_html.php:2346 ../../include/functions_html.php:2348
+#: ../../include/functions_html.php:2349 ../../include/functions_html.php:2350
+#: ../../include/functions_html.php:2351 ../../include/functions_html.php:2352
+#: ../../include/functions_html.php:2367 ../../include/functions_html.php:2389
+#: ../../include/functions_html.php:2411 ../../include/functions_html.php:2433
+#: ../../include/functions_html.php:2455
#: ../../include/lib/Dashboard/Widgets/events_list.php:340
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275
-#: ../../operation/events/events.php:1999
-#: ../../operation/events/events.php:2017
-#: ../../operation/events/events.php:3028
+#: ../../operation/events/events.php:2053
+#: ../../operation/events/events.php:2071
+#: ../../operation/events/events.php:3087
msgid "Any"
msgstr ""
@@ -17900,7 +18075,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:365
#: ../../godmode/massive/massive_add_alerts.php:324
-#: ../../godmode/massive/massive_edit_agents.php:1391
+#: ../../godmode/massive/massive_edit_agents.php:1407
#: ../../godmode/massive/massive_delete_alerts.php:389
msgid ""
"Unsucessful sending the data, please contact with your administrator or make "
@@ -17926,7 +18101,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211
#: ../../godmode/massive/massive_delete_modules.php:372
#: ../../godmode/massive/massive_edit_modules.php:356
-#: ../../include/functions_reporting_html.php:1776
+#: ../../include/functions_reporting_html.php:1785
msgid "Agent group"
msgstr ""
@@ -17945,8 +18120,8 @@ msgid "When select agents"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265
-#: ../../extensions/agents_modules.php:489
-#: ../../extensions/agents_modules.php:493
+#: ../../extensions/agents_modules.php:497
+#: ../../extensions/agents_modules.php:501
#: ../../godmode/agentes/planned_downtime.editor.php:1235
#: ../../godmode/massive/massive_delete_action_alerts.php:246
#: ../../godmode/massive/massive_delete_modules.php:555
@@ -17955,12 +18130,12 @@ msgstr ""
#: ../../godmode/massive/massive_add_action_alerts.php:225
#: ../../godmode/massive/massive_edit_modules.php:528
#: ../../godmode/reporting/reporting_builder.item_editor.php:1923
-#: ../../include/functions_html.php:5947
+#: ../../include/functions_html.php:5971
msgid "Show common modules"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266
-#: ../../extensions/agents_modules.php:490
+#: ../../extensions/agents_modules.php:498
#: ../../godmode/agentes/planned_downtime.editor.php:1236
#: ../../godmode/massive/massive_delete_action_alerts.php:247
#: ../../godmode/massive/massive_delete_modules.php:556
@@ -17969,7 +18144,7 @@ msgstr ""
#: ../../godmode/massive/massive_add_action_alerts.php:226
#: ../../godmode/massive/massive_edit_modules.php:529
#: ../../godmode/reporting/reporting_builder.item_editor.php:1924
-#: ../../include/functions_html.php:5948
+#: ../../include/functions_html.php:5972
msgid "Show all modules"
msgstr ""
@@ -18001,7 +18176,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30
#: ../../godmode/snmpconsole/snmp_alert.php:41
#: ../../include/class/SnmpConsole.class.php:315
-#: ../../include/class/SnmpConsole.class.php:1379
+#: ../../include/class/SnmpConsole.class.php:1381
msgid "Cold start (0)"
msgstr ""
@@ -18009,7 +18184,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31
#: ../../godmode/snmpconsole/snmp_alert.php:42
#: ../../include/class/SnmpConsole.class.php:316
-#: ../../include/class/SnmpConsole.class.php:1383
+#: ../../include/class/SnmpConsole.class.php:1385
msgid "Warm start (1)"
msgstr ""
@@ -18017,7 +18192,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32
#: ../../godmode/snmpconsole/snmp_alert.php:43
#: ../../include/class/SnmpConsole.class.php:317
-#: ../../include/class/SnmpConsole.class.php:1387
+#: ../../include/class/SnmpConsole.class.php:1389
msgid "Link down (2)"
msgstr ""
@@ -18025,7 +18200,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33
#: ../../godmode/snmpconsole/snmp_alert.php:44
#: ../../include/class/SnmpConsole.class.php:318
-#: ../../include/class/SnmpConsole.class.php:1391
+#: ../../include/class/SnmpConsole.class.php:1393
msgid "Link up (3)"
msgstr ""
@@ -18033,7 +18208,7 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34
#: ../../godmode/snmpconsole/snmp_alert.php:45
#: ../../include/class/SnmpConsole.class.php:319
-#: ../../include/class/SnmpConsole.class.php:1395
+#: ../../include/class/SnmpConsole.class.php:1397
msgid "Authentication failure (4)"
msgstr ""
@@ -18043,14 +18218,15 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_acl.php:534
#: ../../enterprise/include/class/Aws.cloud.php:347
#: ../../extensions/api_checker.php:303
-#: ../../godmode/groups/configure_group.php:249
+#: ../../godmode/groups/configure_group.php:268
+#: ../../godmode/users/configure_user.php:65
#: ../../godmode/users/user_management.php:44
#: ../../godmode/snmpconsole/snmp_alert.php:46
#: ../../godmode/massive/massive_edit_users.php:279
-#: ../../include/functions_graph.php:3543
+#: ../../include/auth/mysql.php:813 ../../include/functions_graph.php:3553
#: ../../include/class/SnmpConsole.class.php:320
-#: ../../include/class/SnmpConsole.class.php:1372
-#: ../../include/class/SnmpConsole.class.php:1399
+#: ../../include/class/SnmpConsole.class.php:1374
+#: ../../include/class/SnmpConsole.class.php:1401
#: ../../operation/users/user_edit.php:474
#: ../../operation/gis_maps/render_view.php:168
msgid "Other"
@@ -18069,20 +18245,20 @@ msgid "Unsuccessfully deleted alerts (%s / %s)"
msgstr ""
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:175
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:237
msgid "You must select a SNMP alert"
msgstr ""
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:198
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:258
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:263
msgid ""
"Search by these fields description, OID, Custom Value, SNMP Agent (IP), "
"Single value, each Custom OIDs/Datas."
msgstr ""
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:305
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:267
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:310
#: ../../godmode/snmpconsole/snmp_alert.php:863
#: ../../godmode/snmpconsole/snmp_alert.php:1757
#: ../../include/functions_snmp.php:433
@@ -18095,30 +18271,34 @@ msgid "SNMP Alerts to be deleted"
msgstr ""
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:414
msgid "No snmp alert found."
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
#, php-format
msgid "Successfully updated alerts (%s / %s)"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:224
#, php-format
msgid "Unsuccessfully updated alerts (%s / %s)"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:277
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233
+msgid "At least one parameter must be modified"
+msgstr ""
+
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282
msgid "SNMP Alerts to be edit"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:306
#: ../../godmode/snmpconsole/snmp_alert.php:783
msgid "Custom Value/OID"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:308
#: ../../godmode/snmpconsole/snmp_trap_generator.php:138
#: ../../godmode/snmpconsole/snmp_alert.php:814
#: ../../godmode/snmpconsole/snmp_alert.php:1896
@@ -18126,38 +18306,38 @@ msgstr ""
msgid "SNMP Agent"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312
#: ../../godmode/snmpconsole/snmp_alert.php:884
msgid "Single value"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:314
#: ../../godmode/snmpconsole/snmp_alert.php:1537
#: ../../godmode/alerts/configure_alert_template.php:744
msgid "Min. number of alerts"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:316
#: ../../godmode/snmpconsole/snmp_alert.php:1554
#: ../../godmode/alerts/configure_alert_template.php:784
msgid "Max. number of alerts"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:326
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:331
#: ../../godmode/snmpconsole/snmp_alert.php:1583
msgid "Other value"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332
+#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:337
#: ../../godmode/snmpconsole/snmp_alert.php:1651
#: ../../godmode/snmpconsole/snmp_alert.php:1891
#: ../../godmode/reporting/reporting_builder.list_items.php:373
-#: ../../godmode/reporting/reporting_builder.list_items.php:717
-#: ../../godmode/reporting/graph_builder.graph_editor.php:331
+#: ../../godmode/reporting/reporting_builder.list_items.php:718
+#: ../../godmode/reporting/graph_builder.graph_editor.php:244
#: ../../godmode/reporting/visual_console_builder.elements.php:123
-#: ../../include/functions_visual_map_editor.php:920
+#: ../../include/functions_visual_map_editor.php:968
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:246
-#: ../../include/rest-api/models/VisualConsole/Item.php:2024
+#: ../../include/rest-api/models/VisualConsole/Item.php:2027
msgid "Position"
msgstr ""
@@ -18169,15 +18349,15 @@ msgstr ""
msgid "Modules used"
msgstr ""
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90
msgid "Success: remove the alerts."
msgstr ""
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:88
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90
msgid "Failed: remove the alerts for this modules, please check."
msgstr ""
-#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:141
+#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:143
msgid "Modules agents in policy"
msgstr ""
@@ -18188,23 +18368,25 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:270
-#: ../../godmode/modules/manage_network_components_form_network.php:82
-#: ../../godmode/agentes/module_manager_editor_network.php:196
+#: ../../godmode/modules/manage_network_components_form_network.php:85
+#: ../../godmode/agentes/module_manager_editor_network.php:197
+#: ../../godmode/massive/massive_edit_modules.php:811
#: ../../include/class/CredentialStore.class.php:1094
-#: ../../include/class/CredentialStore.class.php:1369
+#: ../../include/class/CredentialStore.class.php:1378
#: ../../include/class/AgentWizard.class.php:796
msgid "SNMP community"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742
-#: ../../godmode/agentes/module_manager_editor_network.php:198
+#: ../../godmode/agentes/module_manager_editor_network.php:199
#: ../../godmode/massive/massive_edit_modules.php:821
msgid "SNMP OID"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757
+#: ../../godmode/modules/manage_network_components_form_network.php:53
#: ../../godmode/agentes/module_manager_editor_wmi.php:97
-#: ../../godmode/agentes/module_manager_editor_network.php:81
+#: ../../godmode/agentes/module_manager_editor_network.php:82
#: ../../godmode/massive/massive_edit_modules.php:836
#: ../../include/class/AgentWizard.class.php:633
#: ../../include/functions_snmp_browser.php:709
@@ -18214,55 +18396,55 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:288
-#: ../../godmode/modules/manage_network_components_form_network.php:55
-#: ../../godmode/agentes/module_manager_editor_network.php:197
+#: ../../godmode/modules/manage_network_components_form_network.php:66
+#: ../../godmode/agentes/module_manager_editor_network.php:198
#: ../../godmode/massive/massive_edit_modules.php:854
-#: ../../godmode/wizards/HostDevices.class.php:1220
+#: ../../godmode/wizards/HostDevices.class.php:1216
#: ../../include/class/CredentialStore.class.php:1106
-#: ../../include/class/CredentialStore.class.php:1382
+#: ../../include/class/CredentialStore.class.php:1391
#: ../../include/class/AgentWizard.class.php:818
msgid "SNMP version"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322
-#: ../../godmode/modules/manage_network_components_form_network.php:96
-#: ../../godmode/agentes/module_manager_editor_network.php:377
+#: ../../godmode/modules/manage_network_components_form_network.php:127
+#: ../../godmode/agentes/module_manager_editor_network.php:378
#: ../../godmode/massive/massive_edit_modules.php:867
-#: ../../godmode/wizards/HostDevices.class.php:1298
+#: ../../godmode/wizards/HostDevices.class.php:1294
#: ../../include/functions_snmp_browser.php:839
msgid "Auth user"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338
-#: ../../godmode/modules/manage_network_components_form_network.php:105
-#: ../../godmode/agentes/module_manager_editor_network.php:390
+#: ../../godmode/modules/manage_network_components_form_network.php:107
+#: ../../godmode/agentes/module_manager_editor_network.php:391
#: ../../godmode/massive/massive_edit_modules.php:876
-#: ../../godmode/wizards/HostDevices.class.php:1340
+#: ../../godmode/wizards/HostDevices.class.php:1336
#: ../../include/functions_snmp_browser.php:851
msgid "Auth password"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
-#: ../../godmode/agentes/module_manager_editor_network.php:390
-#: ../../godmode/agentes/module_manager_editor_network.php:412
+#: ../../godmode/agentes/module_manager_editor_network.php:391
+#: ../../godmode/agentes/module_manager_editor_network.php:415
#: ../../godmode/massive/massive_edit_modules.php:876
#: ../../godmode/massive/massive_edit_modules.php:880
-#: ../../godmode/wizards/HostDevices.class.php:1342
-#: ../../godmode/wizards/HostDevices.class.php:1373
+#: ../../godmode/wizards/HostDevices.class.php:1338
+#: ../../godmode/wizards/HostDevices.class.php:1369
msgid "The pass length must be eight character minimum."
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360
-#: ../../godmode/modules/manage_network_components_form_network.php:123
-#: ../../godmode/agentes/module_manager_editor_network.php:410
+#: ../../godmode/modules/manage_network_components_form_network.php:149
+#: ../../godmode/agentes/module_manager_editor_network.php:413
#: ../../godmode/massive/massive_edit_modules.php:878
-#: ../../godmode/wizards/HostDevices.class.php:1356
+#: ../../godmode/wizards/HostDevices.class.php:1352
#: ../../include/class/CredentialStore.class.php:1196
-#: ../../include/class/CredentialStore.class.php:1489
+#: ../../include/class/CredentialStore.class.php:1498
#: ../../include/class/AgentWizard.class.php:954
#: ../../include/functions_snmp_browser.php:870
msgid "Privacy method"
@@ -18270,24 +18452,24 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363
-#: ../../godmode/modules/manage_network_components_form_network.php:126
-#: ../../godmode/agentes/module_manager_editor_network.php:411
+#: ../../godmode/modules/manage_network_components_form_network.php:152
+#: ../../godmode/agentes/module_manager_editor_network.php:414
#: ../../godmode/massive/massive_edit_modules.php:879
-#: ../../godmode/wizards/HostDevices.class.php:1361
+#: ../../godmode/wizards/HostDevices.class.php:1357
#: ../../include/class/CredentialStore.class.php:1205
-#: ../../include/class/CredentialStore.class.php:1498
+#: ../../include/class/CredentialStore.class.php:1507
#: ../../include/functions_snmp_browser.php:873
msgid "DES"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364
-#: ../../godmode/modules/manage_network_components_form_network.php:127
-#: ../../godmode/agentes/module_manager_editor_network.php:411
+#: ../../godmode/modules/manage_network_components_form_network.php:153
+#: ../../godmode/agentes/module_manager_editor_network.php:414
#: ../../godmode/massive/massive_edit_modules.php:879
-#: ../../godmode/wizards/HostDevices.class.php:1362
+#: ../../godmode/wizards/HostDevices.class.php:1358
#: ../../include/class/CredentialStore.class.php:1204
-#: ../../include/class/CredentialStore.class.php:1496
+#: ../../include/class/CredentialStore.class.php:1505
#: ../../include/functions_snmp_browser.php:874
msgid "AES"
msgstr ""
@@ -18295,11 +18477,11 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:808
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:379
#: ../../godmode/modules/manage_network_components_form_network.php:136
-#: ../../godmode/agentes/module_manager_editor_network.php:412
+#: ../../godmode/agentes/module_manager_editor_network.php:415
#: ../../godmode/massive/massive_edit_modules.php:880
-#: ../../godmode/wizards/HostDevices.class.php:1371
+#: ../../godmode/wizards/HostDevices.class.php:1367
#: ../../include/class/CredentialStore.class.php:1213
-#: ../../include/class/CredentialStore.class.php:1510
+#: ../../include/class/CredentialStore.class.php:1519
#: ../../include/class/AgentWizard.class.php:968
#: ../../include/functions_snmp_browser.php:886
msgid "Privacy pass"
@@ -18307,47 +18489,47 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396
-#: ../../godmode/modules/manage_network_components_form_network.php:148
-#: ../../godmode/agentes/module_manager_editor_network.php:432
+#: ../../godmode/modules/manage_network_components_form_network.php:180
+#: ../../godmode/agentes/module_manager_editor_network.php:437
#: ../../godmode/massive/massive_edit_modules.php:882
-#: ../../godmode/wizards/HostDevices.class.php:1325
+#: ../../godmode/wizards/HostDevices.class.php:1321
#: ../../include/functions_snmp_browser.php:898
msgid "Auth method"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399
-#: ../../godmode/modules/manage_network_components_form_network.php:151
-#: ../../godmode/agentes/module_manager_editor_network.php:435
+#: ../../godmode/modules/manage_network_components_form_network.php:183
+#: ../../godmode/agentes/module_manager_editor_network.php:440
#: ../../godmode/massive/massive_edit_modules.php:883
-#: ../../godmode/wizards/HostDevices.class.php:1330
-#: ../../include/class/Diagnostics.class.php:2203
+#: ../../godmode/wizards/HostDevices.class.php:1326
+#: ../../include/class/Diagnostics.class.php:2207
#: ../../include/class/CredentialStore.class.php:1170
-#: ../../include/class/CredentialStore.class.php:1462
+#: ../../include/class/CredentialStore.class.php:1471
#: ../../include/functions_snmp_browser.php:901
msgid "MD5"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:811
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400
-#: ../../godmode/modules/manage_network_components_form_network.php:152
-#: ../../godmode/agentes/module_manager_editor_network.php:436
+#: ../../godmode/modules/manage_network_components_form_network.php:184
+#: ../../godmode/agentes/module_manager_editor_network.php:441
#: ../../godmode/massive/massive_edit_modules.php:883
-#: ../../godmode/wizards/HostDevices.class.php:1331
+#: ../../godmode/wizards/HostDevices.class.php:1327
#: ../../include/class/CredentialStore.class.php:1171
-#: ../../include/class/CredentialStore.class.php:1464
+#: ../../include/class/CredentialStore.class.php:1473
#: ../../include/functions_snmp_browser.php:902
msgid "SHA"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:812
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415
-#: ../../godmode/modules/manage_network_components_form_network.php:161
-#: ../../godmode/agentes/module_manager_editor_network.php:449
+#: ../../godmode/modules/manage_network_components_form_network.php:162
+#: ../../godmode/agentes/module_manager_editor_network.php:454
#: ../../godmode/massive/massive_edit_modules.php:884
-#: ../../godmode/wizards/HostDevices.class.php:1309
+#: ../../godmode/wizards/HostDevices.class.php:1305
#: ../../include/class/CredentialStore.class.php:1125
-#: ../../include/class/CredentialStore.class.php:1414
+#: ../../include/class/CredentialStore.class.php:1423
#: ../../include/class/AgentWizard.class.php:895
#: ../../include/functions_snmp_browser.php:914
msgid "Security level"
@@ -18355,30 +18537,30 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418
-#: ../../godmode/modules/manage_network_components_form_network.php:164
-#: ../../godmode/agentes/module_manager_editor_network.php:452
+#: ../../godmode/modules/manage_network_components_form_network.php:165
+#: ../../godmode/agentes/module_manager_editor_network.php:457
#: ../../godmode/massive/massive_edit_modules.php:887
-#: ../../godmode/wizards/HostDevices.class.php:1314
+#: ../../godmode/wizards/HostDevices.class.php:1310
#: ../../include/functions_snmp_browser.php:917
msgid "Not auth and not privacy method"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:816
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419
-#: ../../godmode/modules/manage_network_components_form_network.php:165
-#: ../../godmode/agentes/module_manager_editor_network.php:453
+#: ../../godmode/modules/manage_network_components_form_network.php:166
+#: ../../godmode/agentes/module_manager_editor_network.php:458
#: ../../godmode/massive/massive_edit_modules.php:888
-#: ../../godmode/wizards/HostDevices.class.php:1315
+#: ../../godmode/wizards/HostDevices.class.php:1311
#: ../../include/functions_snmp_browser.php:918
msgid "Auth and not privacy method"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:817
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420
-#: ../../godmode/modules/manage_network_components_form_network.php:166
-#: ../../godmode/agentes/module_manager_editor_network.php:454
+#: ../../godmode/modules/manage_network_components_form_network.php:167
+#: ../../godmode/agentes/module_manager_editor_network.php:459
#: ../../godmode/massive/massive_edit_modules.php:889
-#: ../../godmode/wizards/HostDevices.class.php:1316
+#: ../../godmode/wizards/HostDevices.class.php:1312
#: ../../include/functions_snmp_browser.php:919
msgid "Auth and privacy method"
msgstr ""
@@ -18386,15 +18568,15 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835
#: ../../enterprise/operation/agentes/tag_view.php:157
#: ../../godmode/agentes/module_manager_editor_common.php:301
-#: ../../godmode/agentes/module_manager_editor_common.php:974
+#: ../../godmode/agentes/module_manager_editor_common.php:984
#: ../../godmode/massive/massive_edit_modules.php:907
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3928
-#: ../../include/ajax/heatmap.ajax.php:199
-#: ../../include/functions_graph.php:5035
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3937
+#: ../../include/ajax/heatmap.ajax.php:228
+#: ../../include/functions_graph.php:5045
#: ../../include/functions_treeview.php:115
#: ../../include/lib/Dashboard/Widgets/heatmap.php:334
#: ../../operation/heatmap.php:103
-#: ../../operation/agentes/status_monitor.php:573
+#: ../../operation/agentes/status_monitor.php:572
msgid "Not assigned"
msgstr ""
@@ -18404,15 +18586,15 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wmi.php:47
#: ../../godmode/agentes/module_manager_editor_wmi.php:128
#: ../../godmode/massive/massive_edit_modules.php:921
-#: ../../include/functions_ui.php:7468
+#: ../../include/functions_ui.php:7545
#: ../../include/class/CredentialStore.class.php:973
-#: ../../include/class/CredentialStore.class.php:1345
+#: ../../include/class/CredentialStore.class.php:1351
#: ../../include/class/AgentWizard.class.php:677
msgid "Username"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:855
-#: ../../godmode/agentes/module_manager_editor_common.php:1355
+#: ../../godmode/agentes/module_manager_editor_common.php:1365
#: ../../godmode/massive/massive_edit_modules.php:927
msgid "Export target"
msgstr ""
@@ -18443,16 +18625,16 @@ msgid "Linked"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../godmode/agentes/module_manager.php:847
+#: ../../godmode/agentes/module_manager.php:854
+#: ../../godmode/agentes/module_manager.php:857
#: ../../godmode/massive/massive_edit_modules.php:1082
-#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075
+#: ../../include/ajax/module.php:1095 ../../include/ajax/module.php:1098
msgid "Unlinked"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1000
#: ../../godmode/modules/manage_network_components_form_common.php:326
-#: ../../godmode/agentes/module_manager_editor_common.php:1385
+#: ../../godmode/agentes/module_manager_editor_common.php:1395
#: ../../godmode/massive/massive_edit_modules.php:1091
msgid "Discard unknown events"
msgstr ""
@@ -18463,7 +18645,7 @@ msgid "The module still store data but the alerts and events will be stop"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1044
-#: ../../godmode/agentes/module_manager_editor_common.php:1409
+#: ../../godmode/agentes/module_manager_editor_common.php:1419
#: ../../godmode/massive/massive_edit_modules.php:1137
msgid "Timeout"
msgstr ""
@@ -18474,15 +18656,15 @@ msgid "Seconds that agent will wait for the execution of the module."
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1070
-#: ../../godmode/modules/manage_network_components_form_network.php:209
-#: ../../godmode/agentes/module_manager_editor_network.php:322
+#: ../../godmode/modules/manage_network_components_form_network.php:227
+#: ../../godmode/agentes/module_manager_editor_network.php:323
#: ../../godmode/massive/massive_edit_modules.php:1163
msgid "TCP send"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1073
-#: ../../godmode/modules/manage_network_components_form_network.php:216
-#: ../../godmode/agentes/module_manager_editor_network.php:323
+#: ../../godmode/modules/manage_network_components_form_network.php:234
+#: ../../godmode/agentes/module_manager_editor_network.php:324
#: ../../godmode/massive/massive_edit_modules.php:1166
msgid "TCP receive"
msgstr ""
@@ -18514,13 +18696,13 @@ msgstr ""
#: ../../godmode/agentes/module_manager_editor_plugin.php:49
#: ../../godmode/massive/massive_edit_plugins.php:346
#: ../../godmode/massive/massive_edit_modules.php:1178
-#: ../../godmode/servers/plugin_registration.php:513
+#: ../../godmode/servers/plugin_registration.php:509
msgid "Plugin"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1103
-#: ../../godmode/modules/manage_network_components_form_network.php:223
-#: ../../godmode/agentes/module_manager_editor_network.php:474
+#: ../../godmode/modules/manage_network_components_form_network.php:241
+#: ../../godmode/agentes/module_manager_editor_network.php:479
#: ../../godmode/massive/massive_edit_plugins.php:480
#: ../../godmode/massive/massive_edit_modules.php:1196
#: ../../godmode/alerts/configure_alert_command.php:266
@@ -18529,7 +18711,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_action.php:271
#: ../../godmode/events/event_responses.editor.php:230
#: ../../godmode/events/event_responses.editor.php:255
-#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:994
+#: ../../godmode/servers/plugin.php:459 ../../godmode/servers/plugin.php:986
#: ../../include/class/ManageNetScanScripts.class.php:434
#: ../../include/class/ExternalTools.class.php:382
msgid "Command"
@@ -18537,33 +18719,33 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120
#: ../../enterprise/include/class/DeploymentCenter.class.php:1429
-#: ../../godmode/modules/manage_network_components_form_network.php:242
-#: ../../godmode/agentes/module_manager_editor_network.php:501
+#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/agentes/module_manager_editor_network.php:506
#: ../../godmode/massive/massive_edit_modules.php:1213
msgid "Credential identifier"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1135
-#: ../../godmode/modules/manage_network_components_form_network.php:258
-#: ../../godmode/agentes/module_manager_editor_network.php:534
+#: ../../godmode/modules/manage_network_components_form_network.php:276
+#: ../../godmode/agentes/module_manager_editor_network.php:539
#: ../../godmode/massive/massive_edit_modules.php:1228
msgid "Inherited"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1136
-#: ../../godmode/modules/manage_network_components_form_network.php:259
+#: ../../godmode/modules/manage_network_components_form_network.php:277
#: ../../godmode/massive/massive_edit_modules.php:1229
msgid "Linux"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1137
-#: ../../godmode/modules/manage_network_components_form_network.php:260
+#: ../../godmode/modules/manage_network_components_form_network.php:278
#: ../../godmode/massive/massive_edit_modules.php:1230
msgid "Windows"
msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1140
-#: ../../godmode/modules/manage_network_components_form_network.php:263
+#: ../../godmode/modules/manage_network_components_form_network.php:281
#: ../../godmode/massive/massive_edit_modules.php:1233
msgid "Target OS"
msgstr ""
@@ -18586,11 +18768,11 @@ msgstr ""
msgid "Security check is fail."
msgstr ""
-#: ../../enterprise/godmode/admin_access_logs.php:213
+#: ../../enterprise/godmode/admin_access_logs.php:216
msgid "Extended info:"
msgstr ""
-#: ../../enterprise/godmode/admin_access_logs.php:221
+#: ../../enterprise/godmode/admin_access_logs.php:224
msgid "Changes:"
msgstr ""
@@ -18601,7 +18783,7 @@ msgstr ""
#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:237
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:414
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2584
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2723
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
msgid "Condition"
msgstr ""
@@ -18640,11 +18822,11 @@ msgstr ""
#: ../../enterprise/operation/agentes/policy_view.php:262
#: ../../godmode/snmpconsole/snmp_alert.php:1912
#: ../../godmode/alerts/alert_view.php:105
-#: ../../include/functions_reporting_html.php:5494
+#: ../../include/functions_reporting_html.php:5522
#: ../../include/ajax/alert_list.ajax.php:295
#: ../../include/ajax/alert_list.ajax.php:320
-#: ../../include/functions_treeview.php:442
-#: ../../include/class/AgentsAlerts.class.php:912
+#: ../../include/functions_treeview.php:446
+#: ../../include/class/AgentsAlerts.class.php:913
msgid "Last fired"
msgstr ""
@@ -18653,9 +18835,9 @@ msgstr ""
#: ../../enterprise/operation/agentes/policy_view.php:349
#: ../../godmode/alerts/alert_list.list.php:648
#: ../../godmode/alerts/alert_view.php:114
-#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1420
-#: ../../include/class/AgentsAlerts.class.php:959
-#: ../../include/functions_reporting.php:13152
+#: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1463
+#: ../../include/class/AgentsAlerts.class.php:960
+#: ../../include/functions_reporting.php:13225
msgid "Alert disabled"
msgstr ""
@@ -18692,25 +18874,25 @@ msgstr ""
#: ../../enterprise/godmode/alerts/alert_inventory.php:92
#: ../../godmode/agentes/planned_downtime.editor.php:58
#: ../../godmode/alerts/alert_list.php:517
-#: ../../include/functions_html.php:1933 ../../include/functions_html.php:1934
-#: ../../include/functions_html.php:2044 ../../include/functions_html.php:2045
-#: ../../include/functions_html.php:2227 ../../include/functions_html.php:2228
-#: ../../include/functions_html.php:6713 ../../include/functions_html.php:6714
+#: ../../include/functions_html.php:1944 ../../include/functions_html.php:1945
+#: ../../include/functions_html.php:2055 ../../include/functions_html.php:2056
+#: ../../include/functions_html.php:2235 ../../include/functions_html.php:2236
+#: ../../include/functions_html.php:6741 ../../include/functions_html.php:6742
#: ../../include/class/SnmpConsole.class.php:196
#: ../../operation/snmpconsole/snmp_statistics.php:67
-#: ../../operation/events/events.php:1592
+#: ../../operation/events/events.php:1646
msgid "List"
msgstr ""
#: ../../enterprise/godmode/alerts/alert_inventory.php:111
-#: ../../godmode/reporting/visual_console_builder.php:835
+#: ../../godmode/reporting/visual_console_builder.php:843
#: ../../operation/visual_console/legacy_view.php:179
msgid "Builder"
msgstr ""
#: ../../enterprise/godmode/services/services.massive.meta.php:54
#: ../../enterprise/godmode/services/services.massive.elements.php:106
-#: ../../godmode/massive/massive_edit_agents.php:985
+#: ../../godmode/massive/massive_edit_agents.php:1002
msgid "Not available"
msgstr ""
@@ -18813,7 +18995,7 @@ msgstr ""
#: ../../enterprise/godmode/services/services.service.php:495
#: ../../enterprise/godmode/services/services.elements.php:894
#: ../../enterprise/operation/services/services.php:193
-#: ../../godmode/reporting/reporting_builder.list_items.php:816
+#: ../../godmode/reporting/reporting_builder.list_items.php:817
msgid "Delete items"
msgstr ""
@@ -18865,7 +19047,7 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_list.php:779
#: ../../godmode/wizards/HostDevices.class.php:808
#: ../../godmode/wizards/DiscoveryTaskList.class.php:717
-#: ../../include/class/CustomNetScan.class.php:535
+#: ../../include/class/CustomNetScan.class.php:537
msgid "Manual"
msgstr ""
@@ -18956,61 +19138,6 @@ msgstr ""
msgid "S.L.A. critical service alert"
msgstr ""
-#: ../../enterprise/godmode/services/services.service.php:1025
-#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425
-#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2608
-#: ../../enterprise/include/functions_reporting_csv.php:1589
-#: ../../enterprise/include/functions_reporting_csv.php:1635
-#: ../../enterprise/include/functions_reporting_csv.php:1953
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1704
-#: ../../enterprise/include/class/DeploymentCenter.class.php:1756
-#: ../../enterprise/include/class/DatabaseHA.class.php:390
-#: ../../enterprise/include/class/DatabaseHA.class.php:625
-#: ../../enterprise/include/class/DatabaseHA.class.php:727
-#: ../../enterprise/include/class/AgentRepository.class.php:1000
-#: ../../enterprise/include/class/LogSource.class.php:823
-#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:142
-#: ../../enterprise/include/class/ManageBackups.class.php:298
-#: ../../enterprise/include/class/ManageBackups.class.php:454
-#: ../../enterprise/include/class/NewDatabaseHA.class.php:182
-#: ../../enterprise/include/class/NewDatabaseHA.class.php:225
-#: ../../enterprise/include/functions_reporting.php:1876
-#: ../../enterprise/include/functions_reporting.php:2949
-#: ../../enterprise/include/functions_reporting.php:3206
-#: ../../enterprise/include/functions_reporting.php:3939
-#: ../../enterprise/include/functions_reporting.php:4208
-#: ../../enterprise/include/functions_reporting.php:4854
-#: ../../enterprise/include/functions_reporting.php:6176
-#: ../../enterprise/include/functions_reporting.php:6214
-#: ../../enterprise/include/functions_services.php:2091
-#: ../../enterprise/include/functions_ux_console.php:483
-#: ../../enterprise/operation/agentes/ux_console_view.php:186
-#: ../../enterprise/operation/agentes/ux_console_view.php:391
-#: ../../enterprise/operation/agentes/wux_console_view.php:407
-#: ../../extensions/module_groups.php:53
-#: ../../godmode/massive/massive_operations.php:415
-#: ../../godmode/setup/setup_general.php:1018
-#: ../../godmode/setup/setup_general.php:1036
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2734
-#: ../../include/functions_reporting_html.php:667
-#: ../../include/functions_reporting_html.php:862
-#: ../../include/functions_reporting_html.php:3569
-#: ../../include/functions_reporting_html.php:4866
-#: ../../include/functions_db.php:1974
-#: ../../include/class/ConfigPEN.class.php:674
-#: ../../include/class/ConfigPEN.class.php:698
-#: ../../include/class/SatelliteAgent.class.php:1105
-#: ../../include/class/HelpFeedBack.class.php:370
-#: ../../include/class/CredentialStore.class.php:1646
-#: ../../include/class/ModuleTemplates.class.php:1359
-#: ../../include/class/WelcomeWindow.class.php:173
-#: ../../include/class/AgentWizard.class.php:6233
-#: ../../include/lib/Dashboard/Widgets/maps_status.php:362
-#: ../../operation/agentes/pandora_networkmap.editor.php:745
-#: ../../operation/snmpconsole/snmp_browser.php:639
-msgid "OK"
-msgstr ""
-
#: ../../enterprise/godmode/services/services.service.php:1028
msgid ""
"This change in the service configuration will delete the history of the "
@@ -19033,8 +19160,8 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4476
#: ../../include/functions_maps.php:50
#: ../../include/functions_reporting.php:1075
-#: ../../include/functions_reporting.php:9702
-#: ../../operation/agentes/pandora_networkmap.php:789
+#: ../../include/functions_reporting.php:9711
+#: ../../operation/agentes/pandora_networkmap.php:790
msgid "Dynamic"
msgstr ""
@@ -19218,7 +19345,7 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_history.php:416
msgid ""
"Automatically create partitions on specific database IDB files "
-"(tagente_datos, tagente_datos_string, tevento). Monthly partitions."
+"(tagente_datos, tagente_datos_string). Monthly partitions."
msgstr ""
#: ../../enterprise/godmode/setup/setup_history.php:420
@@ -19401,12 +19528,12 @@ msgid "Yes without changing status"
msgstr ""
#: ../../enterprise/godmode/setup/setup.php:81
-#: ../../include/functions_config.php:430
+#: ../../include/functions_config.php:438
msgid "Forward SNMP traps to agent (if exist)"
msgstr ""
#: ../../enterprise/godmode/setup/setup.php:92
-#: ../../include/functions_config.php:434
+#: ../../include/functions_config.php:442
msgid "Use Enterprise ACL System"
msgstr ""
@@ -19440,7 +19567,7 @@ msgid "Metaconsole DB password"
msgstr ""
#: ../../enterprise/godmode/setup/setup.php:210
-#: ../../include/functions_config.php:470
+#: ../../include/functions_config.php:478
msgid "Activate Log Collector"
msgstr ""
@@ -19563,7 +19690,7 @@ msgid "Port of ElasticSearch server"
msgstr ""
#: ../../enterprise/godmode/setup/setup_log_collector.php:77
-#: ../../include/functions_config.php:1629
+#: ../../include/functions_config.php:1641
msgid "Days to purge old information"
msgstr ""
@@ -19595,21 +19722,21 @@ msgstr ""
#: ../../enterprise/include/functions_tasklist.php:283
#: ../../enterprise/include/functions_tasklist.php:370
#: ../../enterprise/operation/reporting/custom_reporting.php:20
-#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306
-#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613
+#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:307
+#: ../../godmode/tag/edit_tag.php:228 ../../include/functions_cron.php:613
#: ../../include/functions_cron.php:704 ../../operation/search_users.php:45
msgid "Email"
msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:194
#: ../../enterprise/godmode/setup/setup_auth.php:549
-#: ../../enterprise/godmode/setup/setup_auth.php:1357
+#: ../../enterprise/godmode/setup/setup_auth.php:1574
msgid "Profiles selected"
msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:195
#: ../../enterprise/godmode/setup/setup_auth.php:550
-#: ../../enterprise/godmode/setup/setup_auth.php:1358
+#: ../../enterprise/godmode/setup/setup_auth.php:1575
msgid "Groups selected"
msgstr ""
@@ -19628,15 +19755,15 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:256
#: ../../enterprise/godmode/setup/setup_auth.php:553
#: ../../enterprise/godmode/setup/setup_auth.php:605
-#: ../../enterprise/godmode/setup/setup_auth.php:1361
-#: ../../enterprise/godmode/setup/setup_auth.php:1415
+#: ../../enterprise/godmode/setup/setup_auth.php:1578
+#: ../../enterprise/godmode/setup/setup_auth.php:1632
#: ../../godmode/setup/snmp_wizard.php:44
msgid "OP"
msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:251
#: ../../enterprise/godmode/setup/setup_auth.php:601
-#: ../../enterprise/godmode/setup/setup_auth.php:1411
+#: ../../enterprise/godmode/setup/setup_auth.php:1628
#: ../../enterprise/godmode/setup/setup_acl.php:68
#: ../../godmode/groups/configure_group.php:108
#: ../../godmode/groups/group_list.php:377
@@ -19644,19 +19771,20 @@ msgstr ""
#: ../../godmode/users/profile_list.php:332
#: ../../godmode/users/configure_profile.php:86
#: ../../godmode/users/user_list.php:297
-#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165
+#: ../../godmode/users/configure_user.php:214 ../../godmode/menu.php:165
msgid "Profiles"
msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:264
#: ../../enterprise/godmode/setup/setup_auth.php:612
-#: ../../enterprise/godmode/setup/setup_auth.php:1422
+#: ../../enterprise/godmode/setup/setup_auth.php:1112
+#: ../../enterprise/godmode/setup/setup_auth.php:1639
msgid "Select profile"
msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:309
#: ../../enterprise/godmode/setup/setup_auth.php:650
-#: ../../enterprise/godmode/setup/setup_auth.php:1465
+#: ../../enterprise/godmode/setup/setup_auth.php:1682
msgid "Add new permissions"
msgstr ""
@@ -19669,89 +19797,95 @@ msgid "Change timezone visual"
msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:478
-#: ../../enterprise/godmode/setup/setup_auth.php:1286
+#: ../../enterprise/godmode/setup/setup_auth.php:1503
msgid "New users will be able to log in to the nodes."
msgstr ""
#: ../../enterprise/godmode/setup/setup_auth.php:552
#: ../../enterprise/godmode/setup/setup_auth.php:604
-#: ../../enterprise/godmode/setup/setup_auth.php:1360
-#: ../../enterprise/godmode/setup/setup_auth.php:1414
+#: ../../enterprise/godmode/setup/setup_auth.php:1577
+#: ../../enterprise/godmode/setup/setup_auth.php:1631
msgid "AD Groups"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:831
-#: ../../enterprise/godmode/setup/setup_auth.php:947
+#: ../../enterprise/godmode/setup/setup_auth.php:661
+msgid "Recursive group search"
+msgstr ""
+
+#: ../../enterprise/godmode/setup/setup_auth.php:837
+#: ../../enterprise/godmode/setup/setup_auth.php:956
+#: ../../enterprise/godmode/setup/setup_auth.php:1067
msgid "You must select a profile from the list of profiles."
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:836
-#: ../../enterprise/godmode/setup/setup_auth.php:952
+#: ../../enterprise/godmode/setup/setup_auth.php:842
+#: ../../enterprise/godmode/setup/setup_auth.php:961
+#: ../../enterprise/godmode/setup/setup_auth.php:1071
msgid "You must select a group from the list of groups."
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1112
-#: ../../include/functions_config.php:719
+#: ../../enterprise/godmode/setup/setup_auth.php:1329
+#: ../../include/functions_config.php:731
msgid "MySQL host"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1175
+#: ../../enterprise/godmode/setup/setup_auth.php:1392
msgid "SimpleSAML path"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1176
+#: ../../enterprise/godmode/setup/setup_auth.php:1393
msgid "Directory where your 'simplesamlphp' folder is located."
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1182
+#: ../../enterprise/godmode/setup/setup_auth.php:1399
msgid "SAML source"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1183
+#: ../../enterprise/godmode/setup/setup_auth.php:1400
msgid "Authsource name, e.g. 'example-userpass'"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1190
+#: ../../enterprise/godmode/setup/setup_auth.php:1407
msgid "SAML user id attribute"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1195
+#: ../../enterprise/godmode/setup/setup_auth.php:1412
msgid "SAML mail attribute"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1196
+#: ../../enterprise/godmode/setup/setup_auth.php:1413
msgid ""
"SAML field where search for the user email (while autocreate remote users is "
"enabled)"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1203
+#: ../../enterprise/godmode/setup/setup_auth.php:1420
msgid "SAML group name attribute"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1204
+#: ../../enterprise/godmode/setup/setup_auth.php:1421
msgid ""
"SAML field where search for the group name (while autocreate remote users is "
"enabled)"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1211
+#: ../../enterprise/godmode/setup/setup_auth.php:1428
msgid "Simple attribute / Multivalue attribute"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1216
+#: ../../enterprise/godmode/setup/setup_auth.php:1433
msgid "SAML profiles and tag attribute"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1221
+#: ../../enterprise/godmode/setup/setup_auth.php:1438
msgid "Profile attribute"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1226
+#: ../../enterprise/godmode/setup/setup_auth.php:1443
msgid "Tag attribute"
msgstr ""
-#: ../../enterprise/godmode/setup/setup_auth.php:1231
+#: ../../enterprise/godmode/setup/setup_auth.php:1448
msgid "SAML profile and tags prefix"
msgstr ""
@@ -19829,7 +19963,7 @@ msgstr ""
#: ../../godmode/massive/massive_delete_profiles.php:152
#: ../../godmode/massive/massive_add_profiles.php:202
#: ../../include/functions_profile.php:203
-#: ../../operation/users/user_edit.php:998
+#: ../../operation/users/user_edit.php:995
msgid "Profile name"
msgstr ""
@@ -19950,10 +20084,12 @@ msgstr ""
#: ../../mobile/operation/modules.php:195
#: ../../mobile/operation/modules.php:308
#: ../../mobile/operation/modules.php:309
-#: ../../include/ajax/heatmap.ajax.php:129
-#: ../../include/ajax/heatmap.ajax.php:310
+#: ../../mobile/operation/server_status.php:185
+#: ../../mobile/operation/server_status.php:186
+#: ../../include/ajax/heatmap.ajax.php:158
+#: ../../include/ajax/heatmap.ajax.php:438
#: ../../include/lib/Dashboard/Widgets/heatmap.php:301
-#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350
+#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:353
msgid "Tag"
msgstr ""
@@ -19973,8 +20109,8 @@ msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:313
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:822
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:824
-#: ../../include/functions_snmp_browser.php:1653
-#: ../../include/functions_snmp_browser.php:1660
+#: ../../include/functions_snmp_browser.php:1662
+#: ../../include/functions_snmp_browser.php:1669
msgid "Select all"
msgstr ""
@@ -20144,15 +20280,18 @@ msgstr ""
#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133
#: ../../enterprise/godmode/reporting/visual_console_template.php:136
#: ../../extensions/resource_exportation.php:459
+#: ../../godmode/users/configure_user.php:59
#: ../../godmode/users/user_management.php:38
#: ../../godmode/massive/massive_edit_users.php:274
-#: ../../godmode/reporting/visual_console_builder.php:869
+#: ../../godmode/reporting/visual_console_builder.php:877
#: ../../godmode/reporting/map_builder.php:133
#: ../../godmode/reporting/visual_console_favorite.php:130
+#: ../../include/auth/mysql.php:807
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360
#: ../../operation/users/user_edit.php:469
-#: ../../operation/visual_console/view.php:251 ../../operation/menu.php:299
-#: ../../operation/menu.php:306
+#: ../../operation/visual_console/view.php:253
+#: ../../operation/visual_console/legacy_view.php:219
+#: ../../operation/menu.php:299 ../../operation/menu.php:306
msgid "Visual console"
msgstr ""
@@ -20249,7 +20388,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:155
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:61
#: ../../godmode/modules/manage_nc_groups.php:119
-#: ../../godmode/netflow/nf_edit_form.php:119
+#: ../../godmode/netflow/nf_edit_form.php:146
#: ../../godmode/events/event_edit_filter.php:232
msgid "Not updated. Blank name"
msgstr ""
@@ -20268,8 +20407,9 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:173
#: ../../godmode/events/event_responses.editor.php:186
#: ../../include/functions_visual_map_editor.php:97
+#: ../../include/functions_visual_map_editor.php:698
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:475
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:930
#: ../../include/functions_reports.php:1267
msgid "Width"
msgstr ""
@@ -20278,18 +20418,18 @@ msgstr ""
#: ../../godmode/setup/gis_step_2.php:399
#: ../../godmode/reporting/visual_console_builder.wizard.php:175
#: ../../godmode/events/event_responses.editor.php:198
-#: ../../include/functions_visual_map_editor.php:672
+#: ../../include/functions_visual_map_editor.php:712
#: ../../include/functions_reports.php:1283
#: ../../include/functions_reports.php:1383
msgid "Height"
msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:235
-#: ../../enterprise/operation/log/log_viewer.php:672
+#: ../../enterprise/operation/log/log_viewer.php:670
#: ../../godmode/setup/performance.php:627
#: ../../godmode/reporting/create_container.php:418
#: ../../include/functions.php:2755 ../../include/functions.php:3423
-#: ../../include/ajax/module.php:221 ../../include/ajax/graph.ajax.php:146
+#: ../../include/ajax/module.php:244 ../../include/ajax/graph.ajax.php:146
#: ../../operation/gis_maps/render_view.php:157
msgid "1 hour"
msgstr ""
@@ -20304,19 +20444,19 @@ msgid "3 hours"
msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:238
-#: ../../include/ajax/module.php:222
+#: ../../include/ajax/module.php:245
msgid "6 hours"
msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:239
-#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223
+#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:246
msgid "12 hours"
msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:240
-#: ../../enterprise/operation/log/log_viewer.php:676
+#: ../../enterprise/operation/log/log_viewer.php:674
#: ../../godmode/reporting/create_container.php:422
-#: ../../include/functions.php:2758 ../../include/ajax/module.php:224
+#: ../../include/functions.php:2758 ../../include/ajax/module.php:247
#: ../../include/ajax/graph.ajax.php:150
#: ../../include/class/AuditLog.class.php:211
msgid "1 day"
@@ -20337,9 +20477,9 @@ msgid "Last week"
msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:244
-#: ../../enterprise/operation/log/log_viewer.php:680
+#: ../../enterprise/operation/log/log_viewer.php:678
#: ../../godmode/reporting/create_container.php:426
-#: ../../include/functions.php:2760 ../../include/ajax/module.php:226
+#: ../../include/functions.php:2760 ../../include/ajax/module.php:249
#: ../../include/ajax/graph.ajax.php:154
#: ../../include/class/AuditLog.class.php:213
msgid "15 days"
@@ -20355,12 +20495,12 @@ msgid "2 months"
msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:247
-#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216
+#: ../../include/ajax/module.php:252 ../../include/class/AuditLog.class.php:216
msgid "6 months"
msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_editor.php:248
-#: ../../include/functions.php:2764 ../../include/ajax/module.php:230
+#: ../../include/functions.php:2764 ../../include/ajax/module.php:253
msgid "1 year"
msgstr ""
@@ -20390,7 +20530,7 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:123
#: ../../godmode/reporting/visual_console_builder.wizard.php:246
#: ../../godmode/reporting/graph_builder.main.php:189
-#: ../../include/functions_visual_map_editor.php:786
+#: ../../include/functions_visual_map_editor.php:826
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629
@@ -20423,7 +20563,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
#: ../../enterprise/include/functions_reporting_csv.php:950
#: ../../include/functions_reports.php:801
-#: ../../include/functions_reporting.php:3560
+#: ../../include/functions_reporting.php:3569
msgid "Exception"
msgstr ""
@@ -20472,7 +20612,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1756
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5074
#: ../../godmode/reporting/reporting_builder.item_editor.php:1419
-#: ../../godmode/reporting/reporting_builder.item_editor.php:7472
+#: ../../godmode/reporting/reporting_builder.item_editor.php:7477
msgid ""
"Warning: period 0 reports cannot be used to show information back in time. "
"Information contained in this kind of reports will be always reporting the "
@@ -20488,13 +20628,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:247
#: ../../enterprise/include/functions_reporting_csv.php:1080
-#: ../../include/functions_reporting_html.php:5009
+#: ../../include/functions_reporting_html.php:5037
msgid "Sum"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:259
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:389
-#: ../../include/functions_reporting.php:10584
+#: ../../include/functions_reporting.php:10593
msgid "Rate"
msgstr ""
@@ -20504,25 +20644,25 @@ msgstr ""
#: ../../enterprise/operation/services/services.list.php:764
#: ../../godmode/snmpconsole/snmp_alert.php:2159
#: ../../include/class/ModuleTemplates.class.php:943
-#: ../../operation/events/events.php:2548
+#: ../../operation/events/events.php:2602
msgid "Delete selected"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:310
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2368
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2491
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2500
msgid "Group by agent"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:322
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3196
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3205
msgid "Show in the same row"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:323
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2420
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3198
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3207
msgid "Show one module per row with all its operations"
msgstr ""
@@ -20530,10 +20670,10 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2438
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3015
-#: ../../enterprise/operation/log/log_viewer.php:570
+#: ../../enterprise/operation/log/log_viewer.php:568
#: ../../godmode/netflow/nf_item_list.php:173
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2505
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3219
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2514
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3228
#: ../../include/lib/Dashboard/Widgets/top_n.php:267
msgid "Order"
msgstr ""
@@ -20543,9 +20683,9 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:63
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441
-#: ../../enterprise/operation/log/log_viewer.php:566
+#: ../../enterprise/operation/log/log_viewer.php:564
#: ../../godmode/reporting/reporting_builder.item_editor.php:64
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2508
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2517
#: ../../include/lib/Dashboard/Widgets/top_n.php:261
msgid "Ascending"
msgstr ""
@@ -20555,9 +20695,9 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:64
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448
-#: ../../enterprise/operation/log/log_viewer.php:565
+#: ../../enterprise/operation/log/log_viewer.php:563
#: ../../godmode/reporting/reporting_builder.item_editor.php:65
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2515
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2524
#: ../../include/lib/Dashboard/Widgets/top_n.php:262
msgid "Descending"
msgstr ""
@@ -20565,30 +20705,30 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:344
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:321
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2522
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2531
#: ../../include/lib/Dashboard/Widgets/top_n.php:263
msgid "By agent name"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:352
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2467
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2534
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2543
#: ../../include/lib/Dashboard/Widgets/top_n.php:249
msgid "Quantity (n)"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:364
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2482
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2564
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2573
#: ../../include/lib/Dashboard/Widgets/top_n.php:286
-#: ../../operation/agentes/ver_agente.php:1646
+#: ../../operation/agentes/ver_agente.php:1642
msgid "Display"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2587
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2727
-#: ../../include/functions_reporting.php:3582
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2736
+#: ../../include/functions_reporting.php:3591
msgid "Everything"
msgstr ""
@@ -20604,22 +20744,22 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:427
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2615
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2735
-#: ../../include/functions_reporting_html.php:3582
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2744
+#: ../../include/functions_reporting_html.php:3610
msgid "Not OK"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:435
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:445
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2627
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2747
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2756
msgid "Show graph"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:447
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:336
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2740
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2857
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2866
msgid "Show resume"
msgstr ""
@@ -20634,7 +20774,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:801
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:465
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3428
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3641
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3650
msgid "Show item in landscape format (only PDF)"
msgstr ""
@@ -20642,7 +20782,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:817
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:479
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3437
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3650
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3659
msgid "Page break at the end of the item (only PDF)"
msgstr ""
@@ -20655,13 +20795,13 @@ msgid "Page orientation"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93
-#: ../../include/functions_visual_map_editor.php:841
+#: ../../include/functions_visual_map_editor.php:889
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386
msgid "Vertical"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100
-#: ../../include/functions_visual_map_editor.php:842
+#: ../../include/functions_visual_map_editor.php:890
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510
@@ -20695,20 +20835,20 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2720
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2837
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2846
msgid "Show address instead module name"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:359
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2721
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2838
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2847
msgid "Show the main address of agent."
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:428
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2294
#: ../../extensions/dbmanager.php:226 ../../extensions/dbmanager.php:227
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2385
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2394
#: ../../include/functions_reports.php:821
msgid "SQL query"
msgstr ""
@@ -20716,14 +20856,14 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:391
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3081
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3275
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3284
msgid "Failover mode"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:453
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3082
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3276
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3285
msgid ""
"SLA calculation must be performed taking into account the failover modules "
"assigned to the primary module"
@@ -20732,72 +20872,72 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3101
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3295
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3304
msgid "Failover type"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:409
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3106
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3300
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3309
msgid "Failover normal"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:487
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:421
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3118
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3312
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3321
msgid "Failover simple"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2512
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2595
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
msgid "Graph render"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:533
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2518
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2601
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2610
msgid "Avg, max & min"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:534
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2519
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2602
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2611
msgid "Max only"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:535
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2520
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2603
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2612
msgid "Min only"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:536
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2521
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2604
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2613
msgid "Avg only"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2688
-#: ../../mobile/operation/module_graph.php:436
-#: ../../operation/agentes/stat_win.php:369
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2697
+#: ../../mobile/operation/module_graph.php:437
+#: ../../operation/agentes/stat_win.php:377
msgid "Time compare (Overlapped)"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:563
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2534
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2651
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2660
msgid "Full resolution graph (TIP)"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:564
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2535
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2652
-#: ../../operation/agentes/stat_win.php:397
-#: ../../operation/agentes/interface_traffic_graph_win.php:242
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2661
+#: ../../operation/agentes/stat_win.php:405
+#: ../../operation/agentes/interface_traffic_graph_win.php:258
msgid ""
"TIP mode charts do not support average - maximum - minimum series, you can "
"only enable TIP or average, maximum or minimum series"
@@ -20805,15 +20945,15 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2671
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2680
msgid "Show threshold"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:594
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2553
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2703
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2712
#: ../../godmode/reporting/graph_builder.main.php:250
-#: ../../include/functions.php:4189 ../../include/functions.php:4197
+#: ../../include/functions.php:4215 ../../include/functions.php:4223
msgid "Percentil"
msgstr ""
@@ -20826,19 +20966,19 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2966
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2975
msgid "Show Summary group"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2921
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3052
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3061
msgid "Event Status"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2948
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3113
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3122
#: ../../operation/agentes/tactical.php:276
msgid "Event graphs"
msgstr ""
@@ -20877,37 +21017,37 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2258
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2412
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2421
msgid "Serialized header"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2259
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2413
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2422
msgid "The separator character is |"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2326
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2449
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2458
msgid "Field separator"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:792
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2327
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2450
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2459
msgid "Separator for different fields in the serialized text chain"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2347
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2470
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2479
msgid "Line separator"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:796
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2348
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2471
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2480
msgid ""
"Separator in different lines (composed by fields) of the serialized text "
"chain"
@@ -20915,13 +21055,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:834
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3412
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3478
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3487
msgid "Uncompress module"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:835
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3413
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3479
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3488
msgid "Use uncompressed module data."
msgstr ""
@@ -21001,7 +21141,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:434
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3016
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3220
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3229
msgid "SLA items sorted by fulfillment value"
msgstr ""
@@ -21013,11 +21153,11 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3134
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3328
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3337
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1439
-#: ../../include/functions_reporting_html.php:4845
-#: ../../include/functions_reporting_html.php:5117
-#: ../../include/functions_reporting_html.php:5273
+#: ../../include/functions_reporting_html.php:4873
+#: ../../include/functions_reporting_html.php:5145
+#: ../../include/functions_reporting_html.php:5301
#: ../../include/functions_netflow.php:1202
#: ../../include/lib/Dashboard/Widgets/tactical.php:299
msgid "Summary"
@@ -21047,17 +21187,17 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:215
-#: ../../enterprise/include/functions_reporting.php:8044
-#: ../../enterprise/include/functions_reporting.php:8110
-#: ../../godmode/reporting/reporting_builder.php:3642
+#: ../../enterprise/include/functions_reporting.php:8053
+#: ../../enterprise/include/functions_reporting.php:8119
+#: ../../godmode/reporting/reporting_builder.php:3659
#: ../../operation/reporting/reporting_viewer.php:156
msgid "Item editor"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:159
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:202
-#: ../../godmode/reporting/reporting_builder.php:3638
-#: ../../include/functions_menu.php:587
+#: ../../godmode/reporting/reporting_builder.php:3655
+#: ../../include/functions_menu.php:591
#: ../../operation/reporting/reporting_viewer.php:147
msgid "List items"
msgstr ""
@@ -21071,9 +21211,9 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:334
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:361
#: ../../godmode/reporting/reporting_builder.php:561
-#: ../../godmode/reporting/reporting_builder.php:3601
-#: ../../godmode/reporting/reporting_builder.php:3699
-#: ../../godmode/reporting/reporting_builder.php:3727
+#: ../../godmode/reporting/reporting_builder.php:3618
+#: ../../godmode/reporting/reporting_builder.php:3716
+#: ../../godmode/reporting/reporting_builder.php:3744
#: ../../operation/reporting/reporting_viewer.php:222
msgid "Custom reports"
msgstr ""
@@ -21150,14 +21290,14 @@ msgid "Set start and end date"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:768
-#: ../../include/ajax/module.php:270
-#: ../../operation/agentes/datos_agente.php:198
+#: ../../include/ajax/module.php:293
+#: ../../operation/agentes/datos_agente.php:200
msgid "Timestamp from:"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:786
-#: ../../include/ajax/module.php:290
-#: ../../operation/agentes/datos_agente.php:204
+#: ../../include/ajax/module.php:313
+#: ../../operation/agentes/datos_agente.php:206
msgid "Timestamp to:"
msgstr ""
@@ -21200,9 +21340,9 @@ msgstr ""
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181
#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244
-#: ../../godmode/reporting/graph_builder.graph_editor.php:215
-#: ../../godmode/reporting/graph_builder.graph_editor.php:389
-#: ../../include/functions.php:4049
+#: ../../godmode/reporting/graph_builder.graph_editor.php:314
+#: ../../godmode/reporting/graph_builder.graph_editor.php:348
+#: ../../include/functions.php:4075
msgid "Weight"
msgstr ""
@@ -21214,7 +21354,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3881
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4319
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4464
-#: ../../enterprise/operation/log/log_viewer.php:540
+#: ../../enterprise/operation/log/log_viewer.php:538
msgid "Exact match"
msgstr ""
@@ -21307,18 +21447,18 @@ msgstr ""
#: ../../enterprise/godmode/reporting/mysql_builder.php:244
#: ../../enterprise/include/functions_reporting_csv.php:1134
-#: ../../include/functions_reporting.php:7540
+#: ../../include/functions_reporting.php:7549
msgid "SQL"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647
-#: ../../godmode/reporting/reporting_builder.php:3749
+#: ../../godmode/reporting/reporting_builder.php:3766
msgid "Successfull action"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648
-#: ../../godmode/servers/modificar_server.php:285
-#: ../../godmode/servers/modificar_server.php:296
+#: ../../godmode/servers/modificar_server.php:307
+#: ../../godmode/servers/modificar_server.php:318
msgid "Unsuccessfull action"
msgstr ""
@@ -21353,13 +21493,13 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1997
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2016
-#: ../../godmode/reporting/reporting_builder.item_editor.php:204
+#: ../../godmode/reporting/reporting_builder.item_editor.php:205
#: ../../godmode/reporting/reporting_builder.item_editor.php:1264
msgid "Local metaconsole"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1169
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1171
#: ../../include/lib/Dashboard/Widgets/top_n.php:207
msgid ""
"Case insensitive regular expression for agent name. For example: Network.* "
@@ -21369,7 +21509,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3707
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3939
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1192
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1194
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 "
@@ -21410,31 +21550,31 @@ msgstr ""
#: ../../godmode/reporting/create_container.php:571
#: ../../godmode/reporting/create_container.php:600
#: ../../godmode/reporting/create_container.php:741
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2236
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2245
#: ../../godmode/reporting/visual_console_builder.elements.php:121
#: ../../godmode/reporting/visual_console_builder.elements.php:618
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map_editor.php:400
+#: ../../include/functions_visual_map_editor.php:391
+#: ../../include/functions_visual_map_editor.php:394
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615
#: ../../include/functions_reports.php:573
#: ../../include/functions_reports.php:660
#: ../../include/functions_reports.php:666
-#: ../../include/functions_reporting.php:10655
+#: ../../include/functions_reporting.php:10664
msgid "Custom graph"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2400
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2409
msgid "Max items"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2365
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2374
msgid "Custom SQL template"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2386
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2395
msgid ""
"The entities of the fields that contain them must be included. Also is "
"possible use macros like `_start_date_` or `_end_date_`."
@@ -21446,157 +21586,157 @@ msgstr ""
#: ../../enterprise/include/functions_reporting_csv.php:2473
#: ../../extensions/api_checker.php:365
#: ../../godmode/reporting/reporting_builder.item_editor.php:75
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2432
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2441
#: ../../godmode/events/event_responses.editor.php:229
#: ../../godmode/events/event_responses.editor.php:255
-#: ../../include/functions_reporting_html.php:1616
+#: ../../include/functions_reporting_html.php:1625
#: ../../operation/gis_maps/ajax.php:316
msgid "URL"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2443
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2452
msgid "Protocol must be specified in URL (e.g.: \"https://\")"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3606
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3615
msgid "Group by"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499
#: ../../enterprise/include/functions_reporting_csv.php:1080
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2581
-#: ../../include/functions_reporting_html.php:5006
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2590
+#: ../../include/functions_reporting_html.php:5034
#: ../../include/functions_reporting.php:1545
msgid "Avg"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2761
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2770
msgid "Select fields to show"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649
#: ../../enterprise/include/functions_reporting_csv.php:501
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2769
-#: ../../include/functions_reporting_html.php:4145
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2778
+#: ../../include/functions_reporting_html.php:4173
msgid "Total time"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657
#: ../../enterprise/include/functions_reporting_csv.php:505
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2777
-#: ../../include/functions_reporting_html.php:4151
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2786
+#: ../../include/functions_reporting_html.php:4179
msgid "Time failed"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665
#: ../../enterprise/include/functions_reporting_csv.php:509
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2785
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2794
msgid "Time in OK status"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673
#: ../../enterprise/include/functions_reporting_csv.php:513
#: ../../enterprise/include/functions_reporting.php:4990
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2793
-#: ../../include/functions_reporting_html.php:4163
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2802
+#: ../../include/functions_reporting_html.php:4191
msgid "Time in warning status"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681
#: ../../enterprise/include/functions_reporting_csv.php:517
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2801
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2810
msgid "Time in unknown status"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693
#: ../../enterprise/include/functions_reporting_csv.php:521
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2813
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2822
msgid "Time of not initialized module"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705
#: ../../enterprise/include/functions_reporting_csv.php:525
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2825
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2834
msgid "Time of downtime"
msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2877
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2886
msgid "
%s"
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:805
+#: ../../enterprise/include/class/SAP.app.php:806
#: ../../godmode/agentes/planned_downtime.editor.php:1257
msgid "Available modules"
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:829
+#: ../../enterprise/include/class/SAP.app.php:830
msgid "Add monitors"
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:842
+#: ../../enterprise/include/class/SAP.app.php:843
msgid "Remove monitors"
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:853
-#: ../../enterprise/operation/services/massive/services.create.php:1321
+#: ../../enterprise/include/class/SAP.app.php:854
+#: ../../enterprise/operation/services/massive/services.create.php:1333
#: ../../enterprise/operation/services/massive/service.delete.elements.php:278
#: ../../enterprise/operation/services/massive/service.create.elements.php:626
#: ../../enterprise/operation/services/massive/service.edit.elements.php:385
msgid "Selected modules"
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:893
+#: ../../enterprise/include/class/SAP.app.php:894
msgid "Define your custom SAP modules."
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:892
+#: ../../enterprise/include/class/SAP.app.php:893
msgid "Advanced module configuration"
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:902
+#: ../../enterprise/include/class/SAP.app.php:903
msgid "Custom module definitions"
msgstr ""
-#: ../../enterprise/include/class/SAP.app.php:903
+#: ../../enterprise/include/class/SAP.app.php:904
msgid ""
"Each line is a module definition using following format: module name ; "
"module_type ; SAP check definition."
@@ -27856,7 +28008,7 @@ msgid "Remove item"
msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979
-#: ../../operation/agentes/estado_monitores.php:639
+#: ../../operation/agentes/estado_monitores.php:631
msgid "Reset"
msgstr ""
@@ -27986,9 +28138,10 @@ msgid "Fields used on execution when the alert is fired"
msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802
+#: ../../godmode/users/configure_user.php:63
#: ../../godmode/users/user_management.php:42
#: ../../godmode/massive/massive_edit_users.php:278
-#: ../../operation/users/user_edit.php:473
+#: ../../include/auth/mysql.php:811 ../../operation/users/user_edit.php:473
#: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194
msgid "Alert detail"
msgstr ""
@@ -28016,9 +28169,9 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011
#: ../../godmode/alerts/alert_list.list.php:170
#: ../../mobile/operation/alerts.php:66
-#: ../../include/functions_reporting_html.php:2591
-#: ../../include/functions_reporting_html.php:3451
-#: ../../include/functions_reporting_html.php:3452
+#: ../../include/functions_reporting_html.php:2612
+#: ../../include/functions_reporting_html.php:3479
+#: ../../include/functions_reporting_html.php:3480
#: ../../operation/agentes/alerts_status.functions.php:99
msgid "Fired"
msgstr ""
@@ -28068,7 +28221,7 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3385
#: ../../enterprise/operation/agentes/policy_view.php:293
#: ../../godmode/alerts/alert_list.list.php:192
-#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1274
+#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1311
#: ../../operation/agentes/alerts_status.functions.php:104
msgid "Standby on"
msgstr ""
@@ -28134,7 +28287,7 @@ msgstr ""
#: ../../enterprise/include/class/CommandCenter.class.php:171
#: ../../enterprise/include/functions_groups.php:49
-#: ../../include/ajax/module.php:1834
+#: ../../include/ajax/module.php:1862
msgid "Metaconsole"
msgstr ""
@@ -28182,7 +28335,7 @@ msgid "Please restore your backups"
msgstr ""
#: ../../enterprise/include/class/CommandCenter.class.php:454
-#: ../../include/functions_ui.php:7102
+#: ../../include/functions_ui.php:7174
msgid "Query"
msgstr ""
@@ -28192,8 +28345,8 @@ msgid "Table"
msgstr ""
#: ../../enterprise/include/class/CommandCenter.class.php:456
-#: ../../include/class/Heatmap.class.php:1302
-#: ../../general/reporting_console_node.php:65
+#: ../../include/class/Heatmap.class.php:1358
+#: ../../general/reporting_console_node.php:70
msgid "Info"
msgstr ""
@@ -28222,8 +28375,8 @@ msgstr ""
#: ../../enterprise/include/class/CommandCenter.class.php:463
#: ../../enterprise/include/functions_login.php:213
-#: ../../include/functions_menu.php:883
-#: ../../include/class/Diagnostics.class.php:1846
+#: ../../include/functions_menu.php:888
+#: ../../include/class/Diagnostics.class.php:1850
msgid "Successfully"
msgstr ""
@@ -28389,12 +28542,12 @@ msgstr ""
#: ../../extensions/files_repo/files_repo_list.php:57
#: ../../godmode/events/event_responses.editor.php:175
#: ../../include/functions_visual_map_editor.php:125
-#: ../../include/functions_visual_map_editor.php:178
-#: ../../include/functions_visual_map_editor.php:836
-#: ../../include/functions_visual_map_editor.php:931
+#: ../../include/functions_visual_map_editor.php:174
+#: ../../include/functions_visual_map_editor.php:884
+#: ../../include/functions_visual_map_editor.php:979
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:214
-#: ../../include/rest-api/models/VisualConsole/Item.php:1992
-#: ../../include/functions_filemanager.php:646
+#: ../../include/rest-api/models/VisualConsole/Item.php:1995
+#: ../../include/functions_filemanager.php:661
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266
msgid "Size"
@@ -28433,7 +28586,7 @@ msgid "Missed id parameter."
msgstr ""
#: ../../enterprise/include/class/ManageBackups.class.php:433
-#: ../../include/class/AuditLog.class.php:412
+#: ../../include/class/AuditLog.class.php:424
msgid "There is no additional information to display"
msgstr ""
@@ -28447,30 +28600,30 @@ msgstr ""
msgid "Do you like perform a database restoration?"
msgstr ""
-#: ../../enterprise/include/functions_enterprise.php:451
+#: ../../enterprise/include/functions_enterprise.php:461
msgid "Tree view by tags"
msgstr ""
-#: ../../enterprise/include/functions_enterprise.php:481
+#: ../../enterprise/include/functions_enterprise.php:491
msgid ""
"If the interval of days until events data purge is shorter than the events "
"data history storage interval, data will be lost. It is recommended that the "
"storage frequency is higher than the purge frequency."
msgstr ""
-#: ../../enterprise/include/functions_enterprise.php:483
+#: ../../enterprise/include/functions_enterprise.php:493
msgid ""
"Problems with event days purge and event days that pass data to history DB."
msgstr ""
-#: ../../enterprise/include/functions_enterprise.php:494
+#: ../../enterprise/include/functions_enterprise.php:504
msgid ""
"If days purge is less than history days pass to history db, you will have a "
"problems and you lost data. Recommended that days purge will more taller "
"than days to history DB"
msgstr ""
-#: ../../enterprise/include/functions_enterprise.php:496
+#: ../../enterprise/include/functions_enterprise.php:506
msgid "Problems with days purge and days that pass data to history DB"
msgstr ""
@@ -28521,7 +28674,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4223
#: ../../enterprise/include/functions_reporting.php:4874
#: ../../include/functions_reporting_html.php:877
-#: ../../include/functions_reporting_html.php:4881
+#: ../../include/functions_reporting_html.php:4909
msgid "Not Init"
msgstr ""
@@ -28567,7 +28720,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:3458
#: ../../enterprise/include/functions_reporting.php:4434
#: ../../include/functions_reporting.php:1011
-#: ../../include/functions_reporting.php:9335
+#: ../../include/functions_reporting.php:9344
msgid "There are no SLAs defined"
msgstr ""
@@ -28575,7 +28728,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:3511
#: ../../enterprise/include/functions_reporting.php:4487
#: ../../include/functions_reporting.php:1086
-#: ../../include/functions_reporting.php:9713
+#: ../../include/functions_reporting.php:9722
msgid "Inverse"
msgstr ""
@@ -28624,7 +28777,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:6224
#: ../../enterprise/include/functions_services.php:1453
#: ../../include/functions_reporting_html.php:872
-#: ../../include/functions_reporting_html.php:4876
+#: ../../include/functions_reporting_html.php:4904
msgid "Unknow"
msgstr ""
@@ -28632,7 +28785,7 @@ msgstr ""
#: ../../enterprise/include/functions_reporting.php:4228
#: ../../enterprise/include/functions_reporting.php:6229
#: ../../include/functions_reporting_html.php:882
-#: ../../include/functions_reporting_html.php:4886
+#: ../../include/functions_reporting_html.php:4914
msgid "Downtimes"
msgstr ""
@@ -28666,8 +28819,8 @@ msgstr ""
#: ../../include/functions_reporting_html.php:680
#: ../../include/functions_reporting_html.php:751
#: ../../include/functions_reporting_html.php:829
-#: ../../include/functions_reporting_html.php:4333
-#: ../../include/functions_reporting_html.php:4480
+#: ../../include/functions_reporting_html.php:4361
+#: ../../include/functions_reporting_html.php:4508
msgid "24 x 7"
msgstr ""
@@ -28690,17 +28843,17 @@ msgid "Checks Critical"
msgstr ""
#: ../../enterprise/include/functions_reporting.php:5085
-#: ../../include/functions_reporting_html.php:4257
+#: ../../include/functions_reporting_html.php:4285
msgid "Checks Warning"
msgstr ""
#: ../../enterprise/include/functions_reporting.php:5168
#: ../../include/functions_reporting_html.php:809
-#: ../../include/functions_reporting_html.php:4523
-#: ../../include/functions_reporting_html.php:5075
-#: ../../include/functions_reporting_html.php:5078
+#: ../../include/functions_reporting_html.php:4551
+#: ../../include/functions_reporting_html.php:5103
+#: ../../include/functions_reporting_html.php:5106
#: ../../include/functions_reporting.php:1656
-#: ../../include/functions_reporting.php:3735
+#: ../../include/functions_reporting.php:3744
msgid "There are no Agent/Modules defined"
msgstr ""
@@ -28724,51 +28877,51 @@ msgid "Scheduled shutdow"
msgstr ""
#: ../../enterprise/include/functions_reporting.php:6600
-#: ../../enterprise/include/functions_reporting.php:7490
+#: ../../enterprise/include/functions_reporting.php:7499
#, php-format
msgid "Graph agents(%s) - %s"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:7398
+#: ../../enterprise/include/functions_reporting.php:7407
#, php-format
msgid "Graph agent(%s) - %s"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:7845
+#: ../../enterprise/include/functions_reporting.php:7854
msgid "There is not data for the selected conditions"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:8039
-#: ../../enterprise/include/functions_reporting.php:8105
+#: ../../enterprise/include/functions_reporting.php:8048
+#: ../../enterprise/include/functions_reporting.php:8114
msgid "Template editor"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:8171
+#: ../../enterprise/include/functions_reporting.php:8180
#: ../../enterprise/operation/reporting/custom_reporting.php:130
msgid "ID Report"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:8239
+#: ../../enterprise/include/functions_reporting.php:8248
#: ../../enterprise/operation/reporting/custom_reporting.php:116
#: ../../enterprise/operation/reporting/custom_reporting.php:193
msgid "Send by email"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:8327
+#: ../../enterprise/include/functions_reporting.php:8336
#: ../../enterprise/operation/reporting/custom_reporting.php:229
msgid "Send by email "
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:8368
+#: ../../enterprise/include/functions_reporting.php:8377
#: ../../include/functions_reports.php:655
msgid "Simple baseline graph"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:8538
+#: ../../enterprise/include/functions_reporting.php:8547
msgid "Configuration changes"
msgstr ""
-#: ../../enterprise/include/functions_reporting.php:8555
+#: ../../enterprise/include/functions_reporting.php:8564
msgid "No NCM capabilities detected"
msgstr ""
@@ -28925,40 +29078,52 @@ msgstr ""
#: ../../enterprise/include/functions_services.php:1672
#: ../../enterprise/include/functions_services.php:1717
#: ../../enterprise/include/functions_services.php:1785
+#: ../../mobile/operation/services.php:231
+#: ../../mobile/operation/services.php:272
+#: ../../mobile/operation/services.php:338
msgid "Nonexistent. This element should be deleted"
msgstr ""
#: ../../enterprise/include/functions_services.php:1700
#: ../../enterprise/include/functions_services.php:1767
#: ../../enterprise/include/functions_services.php:1813
+#: ../../mobile/operation/services.php:255
+#: ../../mobile/operation/services.php:320
+#: ../../mobile/operation/services.php:363
msgid "This element does not affect service weigth because is disabled."
msgstr ""
#: ../../enterprise/include/functions_services.php:1828
+#: ../../mobile/operation/services.php:386
#, php-format
msgid "Dynamic element (%d) '%s' does not match any target"
msgstr ""
#: ../../enterprise/include/functions_services.php:1837
+#: ../../mobile/operation/services.php:395
#, php-format
msgid "Dynamic element (%d) '%s' causes an error: %s"
msgstr ""
#: ../../enterprise/include/functions_services.php:1849
+#: ../../mobile/operation/services.php:377
msgid "Dynamic element"
msgstr ""
#: ../../enterprise/include/functions_services.php:1855
+#: ../../mobile/operation/services.php:405
#, php-format
msgid "agents like \"%s\""
msgstr ""
#: ../../enterprise/include/functions_services.php:1860
+#: ../../mobile/operation/services.php:410
#, php-format
msgid "modules like \"%s\""
msgstr ""
#: ../../enterprise/include/functions_services.php:1995
+#: ../../mobile/operation/services.php:450
msgid "NOT INITIALIZED"
msgstr ""
@@ -29054,46 +29219,46 @@ msgstr ""
msgid "Invalid old password"
msgstr ""
-#: ../../enterprise/include/functions_login.php:451
+#: ../../enterprise/include/functions_login.php:455
msgid "Password confirm does not match"
msgstr ""
-#: ../../enterprise/include/functions_login.php:458
+#: ../../enterprise/include/functions_login.php:462
msgid "Password empty"
msgstr ""
-#: ../../enterprise/include/functions_login.php:577
-#: ../../godmode/users/configure_user.php:2065
-#: ../../godmode/users/configure_user.php:2134
-#: ../../godmode/users/configure_user.php:2205
+#: ../../enterprise/include/functions_login.php:581
+#: ../../godmode/users/configure_user.php:2117
+#: ../../godmode/users/configure_user.php:2186
+#: ../../godmode/users/configure_user.php:2257
#: ../../include/ajax/double_auth.ajax.php:267
#: ../../include/ajax/double_auth.ajax.php:365
#: ../../include/ajax/double_auth.ajax.php:411
#: ../../include/ajax/double_auth.ajax.php:527
-#: ../../operation/users/user_edit.php:1238
-#: ../../operation/users/user_edit.php:1304
-#: ../../operation/users/user_edit.php:1375 ../../general/register.php:165
+#: ../../operation/users/user_edit.php:1235
+#: ../../operation/users/user_edit.php:1301
+#: ../../operation/users/user_edit.php:1372 ../../general/register.php:165
#: ../../general/logon_failed.php:18
msgid "Authentication error"
msgstr ""
-#: ../../enterprise/include/functions_login.php:584
-#: ../../godmode/users/configure_user.php:2071
-#: ../../godmode/users/configure_user.php:2140
+#: ../../enterprise/include/functions_login.php:588
+#: ../../godmode/users/configure_user.php:2123
+#: ../../godmode/users/configure_user.php:2192
#: ../../include/ajax/double_auth.ajax.php:274
#: ../../include/ajax/double_auth.ajax.php:372
#: ../../include/ajax/double_auth.ajax.php:418
#: ../../include/ajax/double_auth.ajax.php:535
-#: ../../operation/users/user_edit.php:1245
-#: ../../operation/users/user_edit.php:1311 ../../general/register.php:172
+#: ../../operation/users/user_edit.php:1242
+#: ../../operation/users/user_edit.php:1308 ../../general/register.php:172
msgid "There was an error loading the data"
msgstr ""
-#: ../../enterprise/include/functions_login.php:593
-#: ../../godmode/users/configure_user.php:2148
-#: ../../godmode/users/configure_user.php:2224
-#: ../../operation/users/user_edit.php:1319
-#: ../../operation/users/user_edit.php:1395 ../../general/register.php:181
+#: ../../enterprise/include/functions_login.php:597
+#: ../../godmode/users/configure_user.php:2200
+#: ../../godmode/users/configure_user.php:2276
+#: ../../operation/users/user_edit.php:1316
+#: ../../operation/users/user_edit.php:1392 ../../general/register.php:181
msgid "Double authentication activation"
msgstr ""
@@ -29141,10 +29306,11 @@ msgid "Invalid plugin definition"
msgstr ""
#: ../../enterprise/include/lib/NetworkManager.php:82
-#: ../../godmode/setup/setup_ehorus.php:139
-#: ../../godmode/setup/setup_integria.php:652
-#: ../../operation/users/user_edit.php:872
-#: ../../operation/users/user_edit.php:925
+#: ../../godmode/setup/setup_ehorus.php:141
+#: ../../godmode/setup/setup_websocket_engine.php:91
+#: ../../godmode/setup/setup_integria.php:654
+#: ../../operation/users/user_edit.php:869
+#: ../../operation/users/user_edit.php:922
msgid "Test"
msgstr ""
@@ -29235,7 +29401,7 @@ msgstr ""
#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130
#: ../../include/functions_reporting_html.php:1057
#: ../../include/functions_reporting_html.php:1309
-#: ../../include/functions_reporting_html.php:2640
+#: ../../include/functions_reporting_html.php:2659
#: ../../include/class/SnmpConsole.class.php:276
msgid "Count"
msgstr ""
@@ -29943,23 +30109,23 @@ msgstr ""
#: ../../enterprise/include/functions_events.php:40
#: ../../godmode/events/event_filter.php:147
-#: ../../godmode/events/event_edit_filter.php:391
+#: ../../godmode/events/event_edit_filter.php:393
#: ../../include/lib/Dashboard/Widgets/events_list.php:389
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305
-#: ../../operation/events/events.php:1763
-#: ../../operation/events/events.php:2385
+#: ../../operation/events/events.php:1817
+#: ../../operation/events/events.php:2439
msgid "Event status"
msgstr ""
#: ../../enterprise/include/functions_events.php:101
-#: ../../godmode/events/event_edit_filter.php:501
-#: ../../operation/events/events.php:2008
+#: ../../godmode/events/event_edit_filter.php:503
+#: ../../operation/events/events.php:2062
msgid "User ack."
msgstr ""
#: ../../enterprise/include/functions_events.php:111
-#: ../../godmode/events/event_edit_filter.php:558
-#: ../../godmode/events/event_edit_filter.php:574
+#: ../../godmode/events/event_edit_filter.php:560
+#: ../../godmode/events/event_edit_filter.php:576
msgid "Date from"
msgstr ""
@@ -29968,16 +30134,16 @@ msgid "Date to"
msgstr ""
#: ../../enterprise/include/functions_events.php:131
-#: ../../godmode/events/event_edit_filter.php:542
-#: ../../mobile/operation/events.php:816
-#: ../../include/functions_events.php:4968
-#: ../../operation/events/events.php:1795
+#: ../../godmode/events/event_edit_filter.php:544
+#: ../../mobile/operation/events.php:845
+#: ../../include/functions_events.php:4973
+#: ../../operation/events/events.php:1849
msgid "Repeated"
msgstr ""
#: ../../enterprise/include/functions_events.php:141
-#: ../../godmode/events/event_edit_filter.php:759
-#: ../../operation/events/events.php:2054
+#: ../../godmode/events/event_edit_filter.php:761
+#: ../../operation/events/events.php:2108
msgid "Alert events"
msgstr ""
@@ -29986,16 +30152,16 @@ msgid "Id source events"
msgstr ""
#: ../../enterprise/include/functions_events.php:162
-#: ../../godmode/events/event_edit_filter.php:475
-#: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401
+#: ../../godmode/events/event_edit_filter.php:477
+#: ../../mobile/operation/events.php:1041 ../../include/functions_snmp.php:401
#: ../../include/class/SnmpConsole.class.php:407
#: ../../include/class/AuditLog.class.php:204
#: ../../include/lib/Dashboard/Widgets/events_list.php:347
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:286
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:270
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:270
-#: ../../operation/events/events.php:1776
-#: ../../operation/events/events.php:2415
+#: ../../operation/events/events.php:1830
+#: ../../operation/events/events.php:2469
msgid "Max. hours old"
msgstr ""
@@ -30005,16 +30171,16 @@ msgid "More than 5 tags"
msgstr ""
#: ../../enterprise/include/functions_events.php:184
-#: ../../godmode/events/event_edit_filter.php:629
-#: ../../operation/events/events.php:2255
-#: ../../operation/events/events.php:2258
+#: ../../godmode/events/event_edit_filter.php:631
+#: ../../operation/events/events.php:2309
+#: ../../operation/events/events.php:2312
msgid "Events with following tags"
msgstr ""
#: ../../enterprise/include/functions_events.php:206
-#: ../../godmode/events/event_edit_filter.php:694
-#: ../../operation/events/events.php:2256
-#: ../../operation/events/events.php:2259
+#: ../../godmode/events/event_edit_filter.php:696
+#: ../../operation/events/events.php:2310
+#: ../../operation/events/events.php:2313
msgid "Events without following tags"
msgstr ""
@@ -30082,8 +30248,8 @@ msgid "Subscription"
msgstr ""
#: ../../enterprise/include/functions_license.php:120
-#: ../../include/functions_menu.php:956
-#: ../../include/class/Diagnostics.class.php:1179
+#: ../../include/functions_menu.php:961
+#: ../../include/class/Diagnostics.class.php:1183
msgid "Support expires"
msgstr ""
@@ -30105,7 +30271,7 @@ msgstr ""
#: ../../enterprise/include/functions_ipam.php:1343
#: ../../enterprise/tools/ipam/ipam_ajax.php:486
-#: ../../include/ajax/events.php:1753
+#: ../../include/ajax/events.php:1754
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394
msgid "Details"
@@ -30113,12 +30279,12 @@ msgstr ""
#: ../../enterprise/include/functions_ipam.php:1388
#: ../../enterprise/operation/services/services.list.php:677
-#: ../../godmode/agentes/inventory_manager.php:270
+#: ../../godmode/agentes/inventory_manager.php:271
#: ../../godmode/wizards/DiscoveryTaskList.class.php:589
#: ../../godmode/wizards/DiscoveryTaskList.class.php:679
-#: ../../operation/visual_console/view.php:424
-#: ../../operation/agentes/group_view.php:239
-#: ../../operation/agentes/group_view.php:302
+#: ../../operation/visual_console/view.php:426
+#: ../../operation/agentes/group_view.php:242
+#: ../../operation/agentes/group_view.php:305
msgid "Force"
msgstr ""
@@ -30520,7 +30686,7 @@ msgstr ""
#: ../../enterprise/operation/agentes/ux_console_view.php:297
#: ../../enterprise/operation/agentes/ux_console_view.php:384
#: ../../enterprise/operation/agentes/wux_console_view.php:337
-#: ../../include/functions_ui.php:6749
+#: ../../include/functions_ui.php:6824
msgid "Snapshot view"
msgstr ""
@@ -30531,10 +30697,11 @@ msgstr ""
#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173
#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176
#: ../../godmode/reporting/visual_console_builder.wizard.php:589
-#: ../../mobile/operation/agents.php:463 ../../mobile/operation/modules.php:799
-#: ../../mobile/operation/module_graph.php:477
-#: ../../mobile/operation/events.php:1150
-#: ../../mobile/operation/tactical.php:239
+#: ../../mobile/operation/agents.php:471 ../../mobile/operation/modules.php:823
+#: ../../mobile/operation/module_graph.php:478
+#: ../../mobile/operation/events.php:1197
+#: ../../mobile/operation/server_status.php:389
+#: ../../mobile/operation/tactical.php:240
msgid "Loading..."
msgstr ""
@@ -30586,8 +30753,8 @@ msgstr ""
#: ../../enterprise/operation/agentes/policy_view.php:346
#: ../../godmode/alerts/alert_list.list.php:645
#: ../../godmode/alerts/alert_view.php:111
-#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1417
-#: ../../include/class/AgentsAlerts.class.php:956
+#: ../../mobile/operation/alerts.php:324 ../../include/functions_ui.php:1460
+#: ../../include/class/AgentsAlerts.class.php:957
msgid "time(s)"
msgstr ""
@@ -30596,10 +30763,10 @@ msgstr ""
#: ../../godmode/alerts/alert_view.php:117
#: ../../mobile/operation/alerts.php:330
#: ../../include/functions_agents.php:3000
-#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423
-#: ../../include/class/AgentsAlerts.class.php:962
-#: ../../include/class/SnmpConsole.class.php:843
-#: ../../include/functions_reporting.php:13066
+#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1466
+#: ../../include/class/AgentsAlerts.class.php:963
+#: ../../include/class/SnmpConsole.class.php:845
+#: ../../include/functions_reporting.php:13139
msgid "Alert not fired"
msgstr ""
@@ -30633,7 +30800,7 @@ msgid "(Adopted) (Unlinked)"
msgstr ""
#: ../../enterprise/operation/agentes/policy_view.php:458
-#: ../../godmode/agentes/module_manager.php:881
+#: ../../godmode/agentes/module_manager.php:895
msgid "Non initialized module"
msgstr ""
@@ -30649,24 +30816,24 @@ msgstr ""
#: ../../mobile/operation/modules.php:571
#: ../../mobile/operation/modules.php:579
#: ../../mobile/operation/modules.php:587
-#: ../../mobile/operation/modules.php:634
-#: ../../mobile/operation/modules.php:642
-#: ../../mobile/operation/modules.php:650
+#: ../../mobile/operation/modules.php:645
+#: ../../mobile/operation/modules.php:653
+#: ../../mobile/operation/modules.php:661
#: ../../include/functions_modules.php:2911
#: ../../include/functions_modules.php:2915
#: ../../include/functions_modules.php:2919
-#: ../../operation/agentes/status_monitor.php:1895
-#: ../../operation/agentes/status_monitor.php:1901
-#: ../../operation/agentes/status_monitor.php:1911
-#: ../../operation/agentes/status_monitor.php:1917
-#: ../../operation/agentes/status_monitor.php:1927
-#: ../../operation/agentes/status_monitor.php:1933
-#: ../../operation/agentes/pandora_networkmap.view.php:1856
-#: ../../operation/agentes/pandora_networkmap.view.php:1861
-#: ../../operation/agentes/pandora_networkmap.view.php:1866
-#: ../../operation/search_modules.php:142
-#: ../../operation/search_modules.php:150
-#: ../../operation/search_modules.php:158
+#: ../../operation/agentes/status_monitor.php:1897
+#: ../../operation/agentes/status_monitor.php:1903
+#: ../../operation/agentes/status_monitor.php:1913
+#: ../../operation/agentes/status_monitor.php:1919
+#: ../../operation/agentes/status_monitor.php:1929
+#: ../../operation/agentes/status_monitor.php:1935
+#: ../../operation/agentes/pandora_networkmap.view.php:1857
+#: ../../operation/agentes/pandora_networkmap.view.php:1862
+#: ../../operation/agentes/pandora_networkmap.view.php:1867
+#: ../../operation/search_modules.php:145
+#: ../../operation/search_modules.php:153
+#: ../../operation/search_modules.php:161
msgid "Last status"
msgstr ""
@@ -30676,116 +30843,117 @@ msgid "Tag view"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:54
-#: ../../extensions/agents_modules.php:556
+#: ../../extensions/agents_modules.php:564
#: ../../extensions/module_groups.php:264
#: ../../extensions/realtime_graphs.php:71
+#: ../../godmode/agentes/status_monitor_custom_fields.php:48
#: ../../include/class/AgentsAlerts.class.php:755
#: ../../operation/heatmap.php:144
#: ../../operation/agentes/alerts_status.php:202
#: ../../operation/agentes/estado_agente.php:250
#: ../../operation/agentes/interface_view.php:76
-#: ../../operation/agentes/status_monitor.php:340
+#: ../../operation/agentes/status_monitor.php:339
#: ../../operation/agentes/group_view.php:102
#: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165
msgid "Views"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:139
-#: ../../operation/agentes/status_monitor.php:884
+#: ../../operation/agentes/status_monitor.php:883
msgid "Monitor status"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:241
-#: ../../operation/agentes/status_monitor.php:609
+#: ../../operation/agentes/status_monitor.php:608
#: ../../operation/agentes/alerts_status.functions.php:146
msgid "Only it is show tags in use."
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:288
#: ../../godmode/agentes/module_manager_editor_data.php:15
-#: ../../operation/agentes/status_monitor.php:655
+#: ../../operation/agentes/status_monitor.php:654
msgid "Data server module"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:290
-#: ../../godmode/agentes/module_manager_editor_network.php:78
-#: ../../operation/agentes/status_monitor.php:657
+#: ../../godmode/agentes/module_manager_editor_network.php:79
+#: ../../operation/agentes/status_monitor.php:656
msgid "Network server module"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:294
#: ../../godmode/agentes/module_manager_editor_plugin.php:46
-#: ../../operation/agentes/status_monitor.php:661
+#: ../../operation/agentes/status_monitor.php:660
msgid "Plugin server module"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:298
#: ../../godmode/agentes/module_manager_editor_wmi.php:33
-#: ../../operation/agentes/status_monitor.php:665
+#: ../../operation/agentes/status_monitor.php:664
msgid "WMI server module"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:302
#: ../../godmode/agentes/module_manager_editor_prediction.php:117
-#: ../../operation/agentes/status_monitor.php:669
+#: ../../operation/agentes/status_monitor.php:668
msgid "Prediction server module"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:306
#: ../../godmode/agentes/module_manager_editor_web.php:57
-#: ../../operation/agentes/status_monitor.php:673
+#: ../../operation/agentes/status_monitor.php:672
msgid "Web server module"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:310
#: ../../enterprise/operation/agentes/tag_view.php:783
-#: ../../godmode/agentes/status_monitor_custom_fields.php:89
-#: ../../godmode/agentes/status_monitor_custom_fields.php:144
-#: ../../operation/agentes/status_monitor.php:935
-#: ../../operation/agentes/status_monitor.php:1553
+#: ../../godmode/agentes/status_monitor_custom_fields.php:109
+#: ../../godmode/agentes/status_monitor_custom_fields.php:164
+#: ../../operation/agentes/status_monitor.php:937
+#: ../../operation/agentes/status_monitor.php:1555
msgid "Server type"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:329
#: ../../godmode/agentes/modificar_agente.php:290
-#: ../../operation/agentes/status_monitor.php:681
+#: ../../operation/agentes/status_monitor.php:680
msgid "Only enabled"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:330
#: ../../godmode/agentes/modificar_agente.php:289
#: ../../include/class/SatelliteAgent.class.php:153
-#: ../../operation/agentes/status_monitor.php:682
+#: ../../operation/agentes/status_monitor.php:681
msgid "Only disabled"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:334
-#: ../../operation/agentes/status_monitor.php:953
+#: ../../operation/agentes/status_monitor.php:955
msgid "Show monitors..."
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:358
#: ../../enterprise/operation/agentes/tag_view.php:782
-#: ../../godmode/agentes/status_monitor_custom_fields.php:81
-#: ../../godmode/agentes/status_monitor_custom_fields.php:142
-#: ../../operation/agentes/status_monitor.php:976
+#: ../../godmode/agentes/status_monitor_custom_fields.php:101
+#: ../../godmode/agentes/status_monitor_custom_fields.php:162
+#: ../../operation/agentes/status_monitor.php:978
msgid "Data type"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:503
#: ../../operation/agentes/estado_agente.php:431
#: ../../operation/agentes/agent_fields.php:37
-#: ../../operation/agentes/status_monitor.php:1007
+#: ../../operation/agentes/status_monitor.php:1009
msgid "Agent custom fields"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:672
-#: ../../operation/agentes/status_monitor.php:2280
+#: ../../operation/agentes/status_monitor.php:2282
msgid "Sorry no search parameters"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:748
-#: ../../operation/agentes/estado_agente.php:1206
+#: ../../operation/agentes/estado_agente.php:1215
msgid "Remote config"
msgstr ""
@@ -30793,69 +30961,70 @@ msgstr ""
#: ../../enterprise/operation/services/services.service.php:121
#: ../../enterprise/operation/services/services.list.php:547
#: ../../extensions/realtime_graphs.php:112
-#: ../../godmode/agentes/status_monitor_custom_fields.php:105
-#: ../../godmode/agentes/status_monitor_custom_fields.php:148
+#: ../../godmode/agentes/status_monitor_custom_fields.php:125
+#: ../../godmode/agentes/status_monitor_custom_fields.php:168
+#: ../../mobile/operation/modules.php:856
#: ../../include/functions_visual_map_editor.php:58
-#: ../../include/class/NetworkMap.class.php:3065
+#: ../../include/class/NetworkMap.class.php:3071
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:340
-#: ../../include/functions_events.php:4508
+#: ../../include/functions_events.php:4513
#: ../../operation/agentes/interface_view.functions.php:558
-#: ../../operation/agentes/status_monitor.php:1579
-#: ../../operation/search_modules.php:37
+#: ../../operation/agentes/status_monitor.php:1581
+#: ../../operation/search_modules.php:40
msgid "Graph"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:786
-#: ../../godmode/agentes/status_monitor_custom_fields.php:109
-#: ../../godmode/agentes/status_monitor_custom_fields.php:149
+#: ../../godmode/agentes/status_monitor_custom_fields.php:129
+#: ../../godmode/agentes/status_monitor_custom_fields.php:169
#: ../../godmode/agentes/module_manager.php:646
msgid "Warn"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1083
#: ../../mobile/operation/modules.php:542
-#: ../../mobile/operation/modules.php:605
+#: ../../mobile/operation/modules.php:616
#: ../../include/functions_modules.php:2896
#: ../../include/functions_modules.php:4251
#: ../../include/functions_events.php:70
-#: ../../operation/agentes/status_monitor.php:1784
-#: ../../operation/search_modules.php:109 ../../operation/events/events.php:746
+#: ../../operation/agentes/status_monitor.php:1786
+#: ../../operation/search_modules.php:112 ../../operation/events/events.php:751
msgid "NOT INIT"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1223
-#: ../../include/functions_reporting.php:13188
-#: ../../include/functions_reporting.php:13197
+#: ../../include/functions_reporting.php:13261
+#: ../../include/functions_reporting.php:13270
#, php-format
msgid "%d Total modules"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1224
-#: ../../include/functions_reporting.php:13189
+#: ../../include/functions_reporting.php:13262
#, php-format
msgid "%d Modules in normal status"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1225
-#: ../../include/functions_reporting.php:13190
+#: ../../include/functions_reporting.php:13263
#, php-format
msgid "%d Modules in critical status"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1226
-#: ../../include/functions_reporting.php:13191
+#: ../../include/functions_reporting.php:13264
#, php-format
msgid "%d Modules in warning status"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1227
-#: ../../include/functions_reporting.php:13192
+#: ../../include/functions_reporting.php:13265
#, php-format
msgid "%d Modules in unknown status"
msgstr ""
#: ../../enterprise/operation/agentes/tag_view.php:1228
-#: ../../include/functions_reporting.php:13193
+#: ../../include/functions_reporting.php:13266
#, php-format
msgid "%d Modules in not init status"
msgstr ""
@@ -30866,7 +31035,8 @@ msgid "Main IP"
msgstr ""
#: ../../enterprise/operation/agentes/ver_agente.php:96
-#: ../../include/functions_events.php:4435
+#: ../../godmode/groups/tactical.php:182
+#: ../../include/functions_events.php:4440
#: ../../operation/agentes/ver_agente.php:1047
msgid "Last remote contact"
msgstr ""
@@ -30877,24 +31047,24 @@ msgid "Monitors down"
msgstr ""
#: ../../enterprise/operation/agentes/ver_agente.php:182
-#: ../../mobile/operation/groups.php:174
+#: ../../mobile/operation/groups.php:213
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:600
#: ../../operation/agentes/ver_agente.php:1133
msgid "Alerts fired"
msgstr ""
#: ../../enterprise/operation/agentes/ver_agente.php:297
-#: ../../operation/agentes/ver_agente.php:1877
+#: ../../operation/agentes/ver_agente.php:1873
msgid "URL Route Analyzer"
msgstr ""
#: ../../enterprise/operation/agentes/ver_agente.php:316
-#: ../../operation/agentes/ver_agente.php:1868
+#: ../../operation/agentes/ver_agente.php:1864
msgid "UX Console"
msgstr ""
#: ../../enterprise/operation/agentes/ver_agente.php:335
-#: ../../operation/agentes/ver_agente.php:1872
+#: ../../operation/agentes/ver_agente.php:1868
msgid "WUX Console"
msgstr ""
@@ -30994,10 +31164,10 @@ msgid "View all stats"
msgstr ""
#: ../../enterprise/operation/agentes/wux_console_view.php:570
-#: ../../include/class/SnmpConsole.class.php:893
-#: ../../include/class/SnmpConsole.class.php:894 ../../operation/menu.php:379
-#: ../../operation/menu.php:381 ../../operation/events/events.php:590
-#: ../../operation/events/events.php:855
+#: ../../include/class/SnmpConsole.class.php:895
+#: ../../include/class/SnmpConsole.class.php:896 ../../operation/menu.php:379
+#: ../../operation/menu.php:381 ../../operation/events/events.php:595
+#: ../../operation/events/events.php:860
msgid "Show more"
msgstr ""
@@ -31007,7 +31177,7 @@ msgstr ""
#: ../../enterprise/operation/log/elasticsearch_interface.php:37
#: ../../enterprise/operation/log/elasticsearch_interface.php:50
-#: ../../enterprise/operation/log/log_viewer.php:413
+#: ../../enterprise/operation/log/log_viewer.php:411
#: ../../enterprise/operation/menu.php:192
msgid "Elasticsearch Interface"
msgstr ""
@@ -31021,50 +31191,50 @@ msgid ""
"Elasticsearch"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:427
-#: ../../enterprise/operation/log/log_viewer.php:445
-#: ../../enterprise/operation/log/log_viewer.php:455
+#: ../../enterprise/operation/log/log_viewer.php:425
+#: ../../enterprise/operation/log/log_viewer.php:443
+#: ../../enterprise/operation/log/log_viewer.php:453
msgid "Log sources"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:519
+#: ../../enterprise/operation/log/log_viewer.php:517
#: ../../godmode/modules/manage_inventory_modules.php:83
#: ../../godmode/modules/manage_inventory_modules_form.php:57
#: ../../godmode/netflow/nf_edit.php:70
-#: ../../operation/netflow/nf_live_view.php:150
+#: ../../operation/netflow/nf_live_view.php:155
msgid "Not supported in Windows systems"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:541
+#: ../../enterprise/operation/log/log_viewer.php:539
msgid "All words"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:542
+#: ../../enterprise/operation/log/log_viewer.php:540
msgid "Any word"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:547
+#: ../../enterprise/operation/log/log_viewer.php:545
msgid "Search mode"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:607
+#: ../../enterprise/operation/log/log_viewer.php:605
#: ../../godmode/reporting/reporting_builder.item_editor.php:1325
msgid "Full context"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:660
+#: ../../enterprise/operation/log/log_viewer.php:658
msgid "Select dates by range"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:671
+#: ../../enterprise/operation/log/log_viewer.php:669
#: ../../godmode/reporting/create_container.php:417
#: ../../include/functions.php:2744
msgid "custom"
msgstr ""
+#: ../../enterprise/operation/log/log_viewer.php:671
+#: ../../enterprise/operation/log/log_viewer.php:672
#: ../../enterprise/operation/log/log_viewer.php:673
-#: ../../enterprise/operation/log/log_viewer.php:674
-#: ../../enterprise/operation/log/log_viewer.php:675
#: ../../godmode/reporting/create_container.php:419
#: ../../godmode/reporting/create_container.php:420
#: ../../godmode/reporting/create_container.php:421
@@ -31075,8 +31245,8 @@ msgstr ""
msgid "%s hours"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:677
-#: ../../enterprise/operation/log/log_viewer.php:678
+#: ../../enterprise/operation/log/log_viewer.php:675
+#: ../../enterprise/operation/log/log_viewer.php:676
#: ../../godmode/reporting/create_container.php:423
#: ../../godmode/reporting/create_container.php:424
#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152
@@ -31084,117 +31254,117 @@ msgstr ""
msgid "%s days"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:679
+#: ../../enterprise/operation/log/log_viewer.php:677
#: ../../godmode/reporting/create_container.php:425
-#: ../../include/functions.php:2759 ../../include/ajax/module.php:225
+#: ../../include/functions.php:2759 ../../include/ajax/module.php:248
#: ../../include/ajax/graph.ajax.php:153
msgid "1 week"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:681
+#: ../../enterprise/operation/log/log_viewer.php:679
#: ../../godmode/reporting/create_container.php:427
-#: ../../include/functions.php:2761 ../../include/ajax/module.php:227
+#: ../../include/functions.php:2761 ../../include/ajax/module.php:250
#: ../../include/ajax/graph.ajax.php:155
#: ../../include/class/AuditLog.class.php:214
msgid "1 month"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:684
-#: ../../enterprise/operation/log/log_viewer.php:704
+#: ../../enterprise/operation/log/log_viewer.php:682
+#: ../../enterprise/operation/log/log_viewer.php:702
#: ../../operation/network/network_report.php:114
#: ../../operation/network/network_usage_map.php:128
-#: ../../operation/netflow/nf_live_view.php:403
+#: ../../operation/netflow/nf_live_view.php:476
msgid "Start date"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:736
+#: ../../enterprise/operation/log/log_viewer.php:734
#: ../../operation/agentes/exportdata.php:427
#: ../../operation/network/network_report.php:157
#: ../../operation/network/network_usage_map.php:161
-#: ../../operation/netflow/nf_live_view.php:436
+#: ../../operation/netflow/nf_live_view.php:509
msgid "End date"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:806
-#: ../../enterprise/operation/log/log_viewer.php:807
+#: ../../enterprise/operation/log/log_viewer.php:804
+#: ../../enterprise/operation/log/log_viewer.php:805
msgid "Edit sources"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:853
+#: ../../enterprise/operation/log/log_viewer.php:851
msgid "Show log entries"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:854
+#: ../../enterprise/operation/log/log_viewer.php:852
msgid "Graph log results"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:857
+#: ../../enterprise/operation/log/log_viewer.php:855
msgid "Display mode"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:875
+#: ../../enterprise/operation/log/log_viewer.php:873
msgid "Use capture model"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:910
+#: ../../enterprise/operation/log/log_viewer.php:908
msgid "Create new model"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:918
+#: ../../enterprise/operation/log/log_viewer.php:916
#: ../../godmode/reporting/graph_builder.main.php:214
msgid "Horizontal bars"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:919
+#: ../../enterprise/operation/log/log_viewer.php:917
#: ../../godmode/reporting/graph_builder.main.php:215
msgid "Vertical bars"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:922
+#: ../../enterprise/operation/log/log_viewer.php:920
msgid "Graph type"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:942
+#: ../../enterprise/operation/log/log_viewer.php:940
msgid "Advanced options "
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1101
+#: ../../enterprise/operation/log/log_viewer.php:1099
msgid ""
"The maximum limit of rows has been exceeded. Please enter an email to send "
"the csv file"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1103
+#: ../../enterprise/operation/log/log_viewer.php:1101
msgid "e-mail address"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1106
+#: ../../enterprise/operation/log/log_viewer.php:1104
msgid ""
"WARNING: If your email size exceeds your mail attachment size limit, the "
"file will be saved in the local attachment folder."
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1239
+#: ../../enterprise/operation/log/log_viewer.php:1237
msgid "The start date cannot be greater than the end date"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1676
+#: ../../enterprise/operation/log/log_viewer.php:1674
msgid "Add new capture model"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1679
+#: ../../enterprise/operation/log/log_viewer.php:1677
msgid "Edit capture model"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1762
+#: ../../enterprise/operation/log/log_viewer.php:1760
msgid "Error create new model"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1789
+#: ../../enterprise/operation/log/log_viewer.php:1787
msgid "Error delete model"
msgstr ""
-#: ../../enterprise/operation/log/log_viewer.php:1835
+#: ../../enterprise/operation/log/log_viewer.php:1833
msgid "Error update model"
msgstr ""
@@ -31207,8 +31377,8 @@ msgid "AWS view"
msgstr ""
#: ../../enterprise/operation/menu.php:48
-#: ../../operation/agentes/ver_agente.php:1698
-#: ../../operation/agentes/ver_agente.php:1905
+#: ../../operation/agentes/ver_agente.php:1694
+#: ../../operation/agentes/ver_agente.php:1901
msgid "SAP view"
msgstr ""
@@ -31342,55 +31512,55 @@ msgstr ""
msgid "Add selected"
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1170
+#: ../../enterprise/operation/services/massive/services.create.php:1182
msgid ""
"Weights configured are common for every item added to the service, if you "
"want to customize them, please edit the service."
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1174
+#: ../../enterprise/operation/services/massive/services.create.php:1186
#: ../../enterprise/operation/services/massive/service.delete.elements.php:209
#: ../../enterprise/operation/services/massive/service.create.elements.php:532
#: ../../enterprise/operation/services/massive/service.edit.elements.php:290
msgid "Service items summary"
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1181
+#: ../../enterprise/operation/services/massive/services.create.php:1193
#: ../../enterprise/operation/services/massive/service.create.elements.php:539
#: ../../enterprise/operation/services/massive/service.edit.elements.php:298
-#: ../../include/functions_visual_map_editor.php:1146
-#: ../../include/rest-api/models/VisualConsole/Item.php:2528
+#: ../../include/functions_visual_map_editor.php:1198
+#: ../../include/rest-api/models/VisualConsole/Item.php:2531
msgid "Critical weight"
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1193
+#: ../../enterprise/operation/services/massive/services.create.php:1205
#: ../../enterprise/operation/services/massive/service.create.elements.php:552
#: ../../enterprise/operation/services/massive/service.edit.elements.php:311
-#: ../../include/functions_visual_map_editor.php:1172
-#: ../../include/rest-api/models/VisualConsole/Item.php:2542
+#: ../../include/functions_visual_map_editor.php:1224
+#: ../../include/rest-api/models/VisualConsole/Item.php:2545
msgid "Warning weight"
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1205
+#: ../../enterprise/operation/services/massive/services.create.php:1217
#: ../../enterprise/operation/services/massive/service.create.elements.php:565
#: ../../enterprise/operation/services/massive/service.edit.elements.php:324
msgid "Unknown weight"
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1217
+#: ../../enterprise/operation/services/massive/services.create.php:1229
#: ../../enterprise/operation/services/massive/service.create.elements.php:578
#: ../../enterprise/operation/services/massive/service.edit.elements.php:337
msgid "Normal weight"
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1289
+#: ../../enterprise/operation/services/massive/services.create.php:1301
#: ../../enterprise/operation/services/massive/service.delete.elements.php:246
#: ../../enterprise/operation/services/massive/service.create.elements.php:594
#: ../../enterprise/operation/services/massive/service.edit.elements.php:353
msgid "Selected services"
msgstr ""
-#: ../../enterprise/operation/services/massive/services.create.php:1370
+#: ../../enterprise/operation/services/massive/services.create.php:1382
msgid "Create service"
msgstr ""
@@ -31510,10 +31680,10 @@ msgid "Show sunburst"
msgstr ""
#: ../../enterprise/operation/services/services.service_map.php:129
-#: ../../extensions/agents_modules.php:1043
+#: ../../extensions/agents_modules.php:1067
#: ../../extensions/module_groups.php:464
#: ../../godmode/snmpconsole/snmp_alert.php:2203
-#: ../../include/functions_reporting_html.php:2281
+#: ../../include/functions_reporting_html.php:2302
#: ../../include/class/SnmpConsole.class.php:522
msgid "Legend"
msgstr ""
@@ -31552,23 +31722,24 @@ msgstr ""
#: ../../enterprise/operation/services/services.treeview_services.php:281
#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:89
-#: ../../godmode/groups/group_list.php:1074
-#: ../../include/functions_inventory.php:301
-#: ../../include/class/Heatmap.class.php:1234
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:694
-#: ../../operation/tree.php:463 ../../operation/tree.php:493
+#: ../../godmode/groups/group_list.php:1086
+#: ../../include/functions_inventory.php:310
+#: ../../include/class/Heatmap.class.php:1272
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:687
+#: ../../operation/tree.php:465 ../../operation/tree.php:495
#: ../../operation/network/network_report.php:391
msgid "No data found"
msgstr ""
#: ../../enterprise/operation/services/services.treeview_services.php:282
-#: ../../godmode/groups/group_list.php:1075
+#: ../../godmode/groups/group_list.php:1087
msgid "Found groups"
msgstr ""
#: ../../enterprise/operation/services/services.treeview_services.php:376
-#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419
-#: ../../operation/agentes/estado_monitores.php:430
+#: ../../operation/tree.php:593 ../../operation/agentes/status_monitor.php:2421
+#: ../../operation/agentes/estado_monitores.php:427
+#: ../../operation/search_modules.php:302
msgid "Module: "
msgstr ""
@@ -31971,8 +32142,8 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1515
#: ../../enterprise/tools/ipam/ipam_vlan_config.php:990
-#: ../../include/functions_visual_map_editor.php:791
-#: ../../include/rest-api/models/VisualConsole/Items/Group.php:564
+#: ../../include/functions_visual_map_editor.php:831
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:727
msgid "Show statistics"
msgstr ""
@@ -32036,7 +32207,7 @@ msgstr ""
#: ../../operation/agentes/interface_view.functions.php:97
#: ../../operation/agentes/interface_view.functions.php:150
#: ../../operation/agentes/ver_agente.php:1419
-#: ../../operation/agentes/ver_agente.php:1844
+#: ../../operation/agentes/ver_agente.php:1840
msgid "Interfaces"
msgstr ""
@@ -32061,7 +32232,7 @@ msgid "Please enter adress, for search vlans"
msgstr ""
#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435
-#: ../../godmode/wizards/HostDevices.class.php:1287
+#: ../../godmode/wizards/HostDevices.class.php:1283
msgid "Context"
msgstr ""
@@ -32104,13 +32275,13 @@ msgid "Network name already exists in supernet %s (%s)"
msgstr ""
#: ../../enterprise/tools/ipam/ipam_action.php:445
-#: ../../operation/agentes/pandora_networkmap.view.php:1689
+#: ../../operation/agentes/pandora_networkmap.view.php:1690
msgid "Could not be updated."
msgstr ""
#: ../../enterprise/tools/ipam/ipam_action.php:451
#: ../../update_manager_client/views/offline.php:78
-#: ../../update_manager_client/views/online.php:94
+#: ../../update_manager_client/views/online.php:96
msgid "Successfully updated."
msgstr ""
@@ -32126,8 +32297,8 @@ msgstr ""
#: ../../enterprise/tools/ipam/ipam_network_location_config.php:72
#: ../../godmode/modules/manage_nc_groups.php:143
-#: ../../godmode/netflow/nf_edit_form.php:141 ../../godmode/setup/news.php:125
-#: ../../godmode/events/event_edit_filter.php:243
+#: ../../godmode/netflow/nf_edit_form.php:173 ../../godmode/setup/news.php:125
+#: ../../godmode/events/event_edit_filter.php:245
msgid "Not updated. Error updating data"
msgstr ""
@@ -32197,7 +32368,7 @@ msgid "leased expiration"
msgstr ""
#: ../../enterprise/tools/ipam/ipam_ajax.php:476
-#: ../../include/class/NetworkMap.class.php:3067
+#: ../../include/class/NetworkMap.class.php:3073
msgid "MAC"
msgstr ""
@@ -32219,7 +32390,7 @@ msgid "Executing command: %s"
msgstr ""
#: ../../enterprise/tools/ipam/ipam_ajax.php:554
-#: ../../include/functions_events.php:5965
+#: ../../include/functions_events.php:5970
msgid "Execute again"
msgstr ""
@@ -32462,8 +32633,8 @@ msgid "Click on the file below to begin."
msgstr ""
#: ../../update_manager_client/views/offline.php:70
-#: ../../update_manager_client/views/online.php:123
-#: ../../update_manager_client/views/online.php:164
+#: ../../update_manager_client/views/online.php:125
+#: ../../update_manager_client/views/online.php:166
msgid "This action will upgrade this console to version "
msgstr ""
@@ -32472,27 +32643,27 @@ msgid "This action will upgrade all servers to version "
msgstr ""
#: ../../update_manager_client/views/offline.php:73
-#: ../../update_manager_client/views/online.php:89
+#: ../../update_manager_client/views/online.php:91
msgid "Updating to"
msgstr ""
#: ../../update_manager_client/views/offline.php:74
-#: ../../update_manager_client/views/online.php:90
+#: ../../update_manager_client/views/online.php:92
msgid "Do you really want to leave our brilliant application?"
msgstr ""
#: ../../update_manager_client/views/offline.php:75
-#: ../../update_manager_client/views/online.php:91
+#: ../../update_manager_client/views/online.php:93
msgid "There are no updates available"
msgstr ""
#: ../../update_manager_client/views/offline.php:76
-#: ../../update_manager_client/views/online.php:92
+#: ../../update_manager_client/views/online.php:94
msgid "Searching for updates..."
msgstr ""
#: ../../update_manager_client/views/offline.php:77
-#: ../../update_manager_client/views/online.php:93
+#: ../../update_manager_client/views/online.php:95
msgid "Package"
msgstr ""
@@ -32555,16 +32726,16 @@ msgid ""
"manager settings."
msgstr ""
-#: ../../update_manager_client/views/register.php:47
+#: ../../update_manager_client/views/register.php:48
msgid "Register to Warp Update"
msgstr ""
-#: ../../update_manager_client/views/register.php:54
+#: ../../update_manager_client/views/register.php:55
#, php-format
msgid "Keep this %s console up to date with latest updates."
msgstr ""
-#: ../../update_manager_client/views/register.php:61
+#: ../../update_manager_client/views/register.php:62
#, php-format
msgid ""
"When you subscribe to the Warp update service for %s, you accept that we\n"
@@ -32575,34 +32746,34 @@ msgid ""
" said database at any time from the Warp update options."
msgstr ""
-#: ../../update_manager_client/views/register.php:74
+#: ../../update_manager_client/views/register.php:75
msgid "Visit our privacy policy for more information"
msgstr ""
-#: ../../update_manager_client/views/register.php:78
-#: ../../include/class/Diagnostics.class.php:1938
+#: ../../update_manager_client/views/register.php:79
+#: ../../include/class/Diagnostics.class.php:1942
msgid "Your email"
msgstr ""
-#: ../../update_manager_client/views/register.php:97
+#: ../../update_manager_client/views/register.php:98
msgid "OK!"
msgstr ""
-#: ../../update_manager_client/views/register.php:112
+#: ../../update_manager_client/views/register.php:113
msgid "Are you sure you don't want to use Warp update?"
msgstr ""
-#: ../../update_manager_client/views/register.php:116
+#: ../../update_manager_client/views/register.php:117
msgid ""
"You will need to update your system manually, through source code or RPM\n"
" packages to be up to date with latest updates."
msgstr ""
-#: ../../update_manager_client/views/register.php:208
+#: ../../update_manager_client/views/register.php:209
msgid "Unsuccessful subscription"
msgstr ""
-#: ../../update_manager_client/views/register.php:213
+#: ../../update_manager_client/views/register.php:214
msgid "Pandora successfully subscribed with UID: "
msgstr ""
@@ -32610,25 +32781,25 @@ msgstr ""
msgid "The latest version of package installed is"
msgstr ""
-#: ../../update_manager_client/views/online.php:64
+#: ../../update_manager_client/views/online.php:65
msgid "Update to next version"
msgstr ""
-#: ../../update_manager_client/views/online.php:65
+#: ../../update_manager_client/views/online.php:66
msgid "Update to latest version"
msgstr ""
-#: ../../update_manager_client/views/online.php:124
-#: ../../update_manager_client/views/online.php:165
+#: ../../update_manager_client/views/online.php:126
+#: ../../update_manager_client/views/online.php:167
msgid "Update to"
msgstr ""
-#: ../../update_manager_client/views/online.php:145
-#: ../../update_manager_client/views/online.php:149
+#: ../../update_manager_client/views/online.php:147
+#: ../../update_manager_client/views/online.php:151
msgid "Failed to update to "
msgstr ""
-#: ../../update_manager_client/views/online.php:188
+#: ../../update_manager_client/views/online.php:190
msgid "Failed to update:"
msgstr ""
@@ -32657,25 +32828,25 @@ msgstr ""
msgid "Failed storing uploaded file."
msgstr ""
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:646
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:648
#, php-format
msgid "Invalid extension. The package needs to be in `%s` or `%s` format."
msgstr ""
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:655
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:657
msgid "Failed uploading file."
msgstr ""
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:690
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:692
msgid "Signatures does not match."
msgstr ""
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:749
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:751
#, php-format
msgid "Update %s successfully installed."
msgstr ""
-#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:752
+#: ../../update_manager_client/lib/UpdateManager/UI/Manager.php:754
#, php-format
msgid "Failed while updating: %s"
msgstr ""
@@ -32747,6 +32918,7 @@ msgid "Matrix events"
msgstr ""
#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251
+#: ../../godmode/setup/setup_websocket_engine.php:162
msgid "WebService engine has not been started, please check documentation."
msgstr ""
@@ -32975,7 +33147,7 @@ msgstr ""
#: ../../godmode/netflow/nf_edit.php:59 ../../godmode/menu.php:132
#: ../../godmode/category/category.php:81
#: ../../godmode/category/edit_category.php:92
-#: ../../operation/agentes/ver_agente.php:1934
+#: ../../operation/agentes/ver_agente.php:1930
msgid "Resources"
msgstr ""
@@ -33025,8 +33197,8 @@ msgid "%s Console URL"
msgstr ""
#: ../../extensions/api_checker.php:243
-#: ../../godmode/users/configure_user.php:1006
-#: ../../godmode/users/configure_user.php:1029
+#: ../../godmode/users/configure_user.php:1054
+#: ../../godmode/users/configure_user.php:1077
#: ../../operation/users/user_edit.php:299
#: ../../operation/users/user_edit.php:338
msgid "API Token"
@@ -33085,7 +33257,7 @@ msgid "Show URL"
msgstr ""
#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520
-#: ../../godmode/menu.php:478
+#: ../../godmode/menu.php:476
msgid "DB Schema check"
msgstr ""
@@ -33252,84 +33424,84 @@ msgstr ""
msgid "Error querying database node"
msgstr ""
-#: ../../extensions/agents_modules.php:396
+#: ../../extensions/agents_modules.php:404
#: ../../godmode/reporting/reporting_builder.item_editor.php:2000
#: ../../include/lib/Dashboard/Widgets/agent_module.php:255
msgid "Show module status"
msgstr ""
-#: ../../extensions/agents_modules.php:397
+#: ../../extensions/agents_modules.php:405
#: ../../godmode/reporting/reporting_builder.item_editor.php:2001
#: ../../include/lib/Dashboard/Widgets/agent_module.php:256
msgid "Show module data"
msgstr ""
-#: ../../extensions/agents_modules.php:401
+#: ../../extensions/agents_modules.php:409
#: ../../godmode/reporting/reporting_builder.item_editor.php:1996
#: ../../include/lib/Dashboard/Widgets/agent_module.php:265
msgid "Information to be shown"
msgstr ""
-#: ../../extensions/agents_modules.php:543
+#: ../../extensions/agents_modules.php:551
#: ../../include/functions_reports.php:807
msgid "Agents/Modules"
msgstr ""
-#: ../../extensions/agents_modules.php:636
+#: ../../extensions/agents_modules.php:644
msgid "Agent/module view"
msgstr ""
-#: ../../extensions/agents_modules.php:681
+#: ../../extensions/agents_modules.php:690
msgid "Filters "
msgstr ""
-#: ../../extensions/agents_modules.php:681
+#: ../../extensions/agents_modules.php:690
msgid "Secondary groups and agent subgroups will be taken into account."
msgstr ""
-#: ../../extensions/agents_modules.php:833
-#: ../../include/functions_reporting.php:3376
+#: ../../extensions/agents_modules.php:857
+#: ../../include/functions_reporting.php:3385
msgid "There are no agents with modules"
msgstr ""
-#: ../../extensions/agents_modules.php:848
+#: ../../extensions/agents_modules.php:872
msgid "Previous modules"
msgstr ""
-#: ../../extensions/agents_modules.php:874
+#: ../../extensions/agents_modules.php:898
msgid "More modules"
msgstr ""
-#: ../../extensions/agents_modules.php:1030
-#: ../../include/functions_reporting_html.php:2282
+#: ../../extensions/agents_modules.php:1054
+#: ../../include/functions_reporting_html.php:2303
msgid "Orange cell when the module has fired alerts"
msgstr ""
-#: ../../extensions/agents_modules.php:1032
-#: ../../include/functions_reporting_html.php:2283
+#: ../../extensions/agents_modules.php:1056
+#: ../../include/functions_reporting_html.php:2304
msgid "Red cell when the module has a critical status"
msgstr ""
-#: ../../extensions/agents_modules.php:1035
-#: ../../include/functions_reporting_html.php:2284
+#: ../../extensions/agents_modules.php:1059
+#: ../../include/functions_reporting_html.php:2305
msgid "Yellow cell when the module has a warning status"
msgstr ""
-#: ../../extensions/agents_modules.php:1037
-#: ../../include/functions_reporting_html.php:2285
+#: ../../extensions/agents_modules.php:1061
+#: ../../include/functions_reporting_html.php:2306
msgid "Green cell when the module has a normal status"
msgstr ""
-#: ../../extensions/agents_modules.php:1039
-#: ../../include/functions_reporting_html.php:2286
+#: ../../extensions/agents_modules.php:1063
+#: ../../include/functions_reporting_html.php:2307
msgid "Grey cell when the module has an unknown status"
msgstr ""
-#: ../../extensions/agents_modules.php:1041
+#: ../../extensions/agents_modules.php:1065
msgid "Cell turns blue when the module is in 'not initialize' status"
msgstr ""
-#: ../../extensions/agents_modules.php:1055
+#: ../../extensions/agents_modules.php:1079
msgid "Agents/Modules view"
msgstr ""
@@ -33418,7 +33590,7 @@ msgid "Public link"
msgstr ""
#: ../../extensions/files_repo/files_repo_list.php:58
-#: ../../include/functions_filemanager.php:645
+#: ../../include/functions_filemanager.php:660
msgid "Last modification"
msgstr ""
@@ -33427,8 +33599,8 @@ msgid "Copy to clipboard"
msgstr ""
#: ../../extensions/files_repo/files_repo_list.php:167
-#: ../../include/functions_reporting_html.php:2314
-#: ../../include/functions_reporting_html.php:2318
+#: ../../include/functions_reporting_html.php:2335
+#: ../../include/functions_reporting_html.php:2339
msgid "No items"
msgstr ""
@@ -33532,7 +33704,7 @@ msgid "Save agent (%s), module (%s) data xml."
msgstr ""
#: ../../extensions/realtime_graphs.php:58
-#: ../../extensions/realtime_graphs.php:295
+#: ../../extensions/realtime_graphs.php:301
msgid "Realtime graphs"
msgstr ""
@@ -33579,12 +33751,12 @@ msgstr ""
msgid "Incremental"
msgstr ""
-#: ../../extensions/realtime_graphs.php:203
+#: ../../extensions/realtime_graphs.php:199
msgid "Clear graph"
msgstr ""
-#: ../../extensions/realtime_graphs.php:276
-#: ../../godmode/agentes/module_manager_editor_network.php:44
+#: ../../extensions/realtime_graphs.php:282
+#: ../../godmode/agentes/module_manager_editor_network.php:45
msgid "Use this OID"
msgstr ""
@@ -33673,8 +33845,8 @@ msgid "No modules for this profile"
msgstr ""
#: ../../godmode/modules/manage_network_templates_form.php:260
-#: ../../operation/snmpconsole/snmp_browser.php:155
-#: ../../operation/snmpconsole/snmp_browser.php:175
+#: ../../operation/snmpconsole/snmp_browser.php:160
+#: ../../operation/snmpconsole/snmp_browser.php:180
msgid "Add modules"
msgstr ""
@@ -33746,15 +33918,15 @@ msgid "You can find more information at:"
msgstr ""
#: ../../godmode/modules/manage_network_components_form_common.php:723
-#: ../../godmode/agentes/module_manager_editor_common.php:2270
+#: ../../godmode/agentes/module_manager_editor_common.php:2280
msgid "Please introduce a positive percentage value"
msgstr ""
-#: ../../godmode/modules/manage_network_components_form_network.php:72
+#: ../../godmode/modules/manage_network_components_form_network.php:98
msgid "SNMP Enterprise String"
msgstr ""
-#: ../../godmode/modules/manage_network_components_form_network.php:191
+#: ../../godmode/modules/manage_network_components_form_network.php:193
#: ../../godmode/modules/manage_network_components_form_wizard.php:315
msgid "Name OID"
msgstr ""
@@ -33762,58 +33934,58 @@ msgstr ""
#: ../../godmode/modules/manage_network_components_form_wmi.php:41
#: ../../godmode/agentes/module_manager_editor_wmi.php:106
#: ../../include/class/CredentialStore.class.php:1009
-#: ../../include/class/CredentialStore.class.php:1347
+#: ../../include/class/CredentialStore.class.php:1353
msgid "Namespace"
msgstr ""
-#: ../../godmode/modules/manage_network_components_form.php:358
+#: ../../godmode/modules/manage_network_components_form.php:361
msgid "Update Network Component"
msgstr ""
-#: ../../godmode/modules/manage_network_components_form.php:360
+#: ../../godmode/modules/manage_network_components_form.php:363
msgid "Create Network Component"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:289
+#: ../../godmode/modules/manage_network_components.php:290
msgid "Remote component management"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:321
+#: ../../godmode/modules/manage_network_components.php:322
#, php-format
msgid ""
"This node is configured with centralized mode. All remote components are "
"read only. Go to %s to manage them."
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:433
+#: ../../godmode/modules/manage_network_components.php:435
msgid "Could not be created because the component exists"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:686
+#: ../../godmode/modules/manage_network_components.php:689
msgid "Search by name, description, tcp send or tcp rcv, list matches."
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:779
+#: ../../godmode/modules/manage_network_components.php:782
msgid "Max/Min"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:888
+#: ../../godmode/modules/manage_network_components.php:891
msgid "There are no defined network components"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:921
+#: ../../godmode/modules/manage_network_components.php:924
msgid "Create a new network component"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:922
+#: ../../godmode/modules/manage_network_components.php:925
msgid "Create a new plugin component"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:923
+#: ../../godmode/modules/manage_network_components.php:926
msgid "Create a new WMI component"
msgstr ""
-#: ../../godmode/modules/manage_network_components.php:924
+#: ../../godmode/modules/manage_network_components.php:927
msgid "Create a new wizard component"
msgstr ""
@@ -33928,6 +34100,7 @@ msgstr ""
#: ../../godmode/massive/massive_enable_disable_alerts.php:196
#: ../../godmode/massive/massive_enable_disable_alerts.php:231
#: ../../include/class/ModuleTemplates.class.php:1184
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:491
msgid "Format"
msgstr ""
@@ -34011,7 +34184,7 @@ msgstr ""
#: ../../godmode/db/db_main.php:108
#: ../../include/class/Diagnostics.class.php:603
-#: ../../include/functions_reporting.php:14740
+#: ../../include/functions_reporting.php:14813
msgid "Total events"
msgstr ""
@@ -34064,7 +34237,7 @@ msgid "Update group"
msgstr ""
#: ../../godmode/groups/configure_group.php:95
-#: ../../godmode/groups/group_list.php:1006
+#: ../../godmode/groups/group_list.php:1018
msgid "Create group"
msgstr ""
@@ -34073,44 +34246,44 @@ msgstr ""
msgid "Manage agents group"
msgstr ""
-#: ../../godmode/groups/configure_group.php:160
+#: ../../godmode/groups/configure_group.php:179
msgid "You have not access to the parent."
msgstr ""
-#: ../../godmode/groups/configure_group.php:218
+#: ../../godmode/groups/configure_group.php:237
msgid "Group Password"
msgstr ""
-#: ../../godmode/groups/configure_group.php:224
+#: ../../godmode/groups/configure_group.php:243
msgid "Enable alert use in this group."
msgstr ""
-#: ../../godmode/groups/configure_group.php:229
+#: ../../godmode/groups/configure_group.php:248
msgid "Propagate ACL"
msgstr ""
-#: ../../godmode/groups/configure_group.php:229
+#: ../../godmode/groups/configure_group.php:248
msgid "Propagate the same ACL security into the child subgroups."
msgstr ""
-#: ../../godmode/groups/configure_group.php:244
-#: ../../include/functions_events.php:5068
+#: ../../godmode/groups/configure_group.php:263
+#: ../../include/functions_events.php:5073
msgid "Contact"
msgstr ""
-#: ../../godmode/groups/configure_group.php:244
+#: ../../godmode/groups/configure_group.php:263
msgid "Contact information accessible through the _groupcontact_ macro"
msgstr ""
-#: ../../godmode/groups/configure_group.php:249
+#: ../../godmode/groups/configure_group.php:268
msgid "Information accessible through the _group_other_ macro"
msgstr ""
-#: ../../godmode/groups/configure_group.php:254
+#: ../../godmode/groups/configure_group.php:273
msgid "Max agents allowed"
msgstr ""
-#: ../../godmode/groups/configure_group.php:254
+#: ../../godmode/groups/configure_group.php:273
msgid "Set the maximum of agents allowed for this group. 0 is unlimited."
msgstr ""
@@ -34128,8 +34301,8 @@ msgid "Groups defined in %s"
msgstr ""
#: ../../godmode/groups/group_list.php:352
-#: ../../godmode/agentes/module_manager_editor_network.php:172
-#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723
+#: ../../godmode/agentes/module_manager_editor_network.php:173
+#: ../../godmode/menu.php:225 ../../include/class/AgentWizard.class.php:723
#: ../../include/class/AgentWizard.class.php:779
msgid "Credential store"
msgstr ""
@@ -34152,70 +34325,70 @@ msgid "There was a problem creating group"
msgstr ""
#: ../../godmode/groups/group_list.php:470
-#: ../../godmode/groups/group_list.php:542
+#: ../../godmode/groups/group_list.php:543
msgid "Each group must have a different name"
msgstr ""
#: ../../godmode/groups/group_list.php:473
-#: ../../godmode/groups/group_list.php:545
+#: ../../godmode/groups/group_list.php:546
msgid "Group must have a name"
msgstr ""
-#: ../../godmode/groups/group_list.php:537
+#: ../../godmode/groups/group_list.php:538
#: ../../godmode/groups/modu_group_list.php:165
msgid "Group successfully updated"
msgstr ""
-#: ../../godmode/groups/group_list.php:539
+#: ../../godmode/groups/group_list.php:540
#: ../../godmode/groups/modu_group_list.php:168
msgid "There was a problem modifying group"
msgstr ""
-#: ../../godmode/groups/group_list.php:602
+#: ../../godmode/groups/group_list.php:603
#, php-format
msgid "The group %s could not be deleted because it is not empty in the nodes"
msgstr ""
-#: ../../godmode/groups/group_list.php:676
+#: ../../godmode/groups/group_list.php:677
msgid ""
"The group has not been deleted in the metaconsole due to an error in the "
"node database"
msgstr ""
-#: ../../godmode/groups/group_list.php:685
+#: ../../godmode/groups/group_list.php:686
#, php-format
msgid "The group %s has been deleted in the nodes"
msgstr ""
-#: ../../godmode/groups/group_list.php:725
+#: ../../godmode/groups/group_list.php:726
#: ../../godmode/groups/modu_group_list.php:238
msgid "Group successfully deleted"
msgstr ""
-#: ../../godmode/groups/group_list.php:728
+#: ../../godmode/groups/group_list.php:729
#: ../../godmode/groups/modu_group_list.php:239
msgid "There was a problem deleting group"
msgstr ""
-#: ../../godmode/groups/group_list.php:735
+#: ../../godmode/groups/group_list.php:736
#, php-format
msgid "The group is not empty. It is use in %s."
msgstr ""
-#: ../../godmode/groups/group_list.php:774
-#: ../../godmode/groups/group_list.php:994
+#: ../../godmode/groups/group_list.php:775
+#: ../../godmode/groups/group_list.php:1006
msgid "There are no defined groups"
msgstr ""
-#: ../../godmode/groups/group_list.php:832
+#: ../../godmode/groups/group_list.php:833
msgid "Edit or delete groups can cause problems with synchronization"
msgstr ""
-#: ../../godmode/groups/group_list.php:958
+#: ../../godmode/groups/group_list.php:970
msgid "Are you sure? This group will also be deleted in all the nodes."
msgstr ""
-#: ../../godmode/groups/group_list.php:964
+#: ../../godmode/groups/group_list.php:976
msgid ""
"The child groups will be updated to use the parent id of the deleted group"
msgstr ""
@@ -34261,24 +34434,20 @@ msgstr ""
msgid "Tactical group view"
msgstr ""
-#: ../../godmode/groups/tactical.php:115
+#: ../../godmode/groups/tactical.php:114
msgid "Distribution by os"
msgstr ""
-#: ../../godmode/groups/tactical.php:146
+#: ../../godmode/groups/tactical.php:145
#: ../../include/functions_reporting_html.php:1204
-#: ../../include/functions_reporting_html.php:1419
+#: ../../include/functions_reporting_html.php:1428
msgid "Events by agent"
msgstr ""
-#: ../../godmode/groups/tactical.php:155
+#: ../../godmode/groups/tactical.php:154
msgid "Alerts and events"
msgstr ""
-#: ../../godmode/groups/tactical.php:182
-msgid "Ultimo contacto remoto"
-msgstr ""
-
#: ../../godmode/extensions.php:46
msgid "Defined extensions"
msgstr ""
@@ -34421,7 +34590,7 @@ msgstr ""
#: ../../godmode/users/configure_profile.php:90
#: ../../godmode/users/configure_profile.php:389
#: ../../godmode/users/user_list.php:301
-#: ../../godmode/users/configure_user.php:280
+#: ../../godmode/users/configure_user.php:218
msgid "Manage users"
msgstr ""
@@ -34573,7 +34742,7 @@ msgid "Create Profile"
msgstr ""
#: ../../godmode/users/configure_profile.php:283
-#: ../../operation/agentes/ver_agente.php:1938
+#: ../../operation/agentes/ver_agente.php:1934
msgid "View agents"
msgstr ""
@@ -34594,7 +34763,7 @@ msgid "Edit events"
msgstr ""
#: ../../godmode/users/configure_profile.php:317
-#: ../../operation/events/events.php:1545
+#: ../../operation/events/events.php:1599
msgid "Manage events"
msgstr ""
@@ -34623,7 +34792,7 @@ msgid "Manage network maps"
msgstr ""
#: ../../godmode/users/configure_profile.php:354
-#: ../../include/functions_menu.php:571
+#: ../../include/functions_menu.php:573
msgid "View visual console"
msgstr ""
@@ -34653,36 +34822,36 @@ msgid "Profile name already on use, please, change the name before save"
msgstr ""
#: ../../godmode/users/user_list.php:351
-#: ../../godmode/users/configure_user.php:115
+#: ../../godmode/users/configure_user.php:885
#, php-format
msgid "Deleted user %s"
msgstr ""
#: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400
-#: ../../godmode/users/configure_user.php:122
+#: ../../godmode/users/configure_user.php:892
msgid "There was a problem deleting the user"
msgstr ""
#: ../../godmode/users/user_list.php:376
-#: ../../godmode/users/configure_user.php:137
+#: ../../godmode/users/configure_user.php:907
#, php-format
msgid "Deleted user %s from metaconsole"
msgstr ""
#: ../../godmode/users/user_list.php:388
-#: ../../godmode/users/configure_user.php:149
+#: ../../godmode/users/configure_user.php:919
#, php-format
msgid "Deleted user %s from %s"
msgstr ""
#: ../../godmode/users/user_list.php:394
-#: ../../godmode/users/configure_user.php:158
+#: ../../godmode/users/configure_user.php:928
#, php-format
msgid "Successfully deleted from %s"
msgstr ""
#: ../../godmode/users/user_list.php:395
-#: ../../godmode/users/configure_user.php:159
+#: ../../godmode/users/configure_user.php:929
#, php-format
msgid "There was a problem deleting the user from %s"
msgstr ""
@@ -34691,15 +34860,15 @@ msgstr ""
msgid "ID user cannot be empty"
msgstr ""
-#: ../../godmode/users/user_list.php:443
+#: ../../godmode/users/user_list.php:444
msgid "There was a problem disabling user"
msgstr ""
-#: ../../godmode/users/user_list.php:449
+#: ../../godmode/users/user_list.php:450
msgid "There was a problem enabling user"
msgstr ""
-#: ../../godmode/users/user_list.php:544
+#: ../../godmode/users/user_list.php:545
#: ../../operation/users/user_edit.php:284
#, php-format
msgid ""
@@ -34707,235 +34876,253 @@ msgid ""
"only. Go to %s to manage it."
msgstr ""
-#: ../../godmode/users/user_list.php:580
+#: ../../godmode/users/user_list.php:581
msgid "Profile / Group"
msgstr ""
-#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63
+#: ../../godmode/users/user_list.php:769 ../../operation/search_users.php:63
msgid "Administrator"
msgstr ""
-#: ../../godmode/users/user_list.php:794
+#: ../../godmode/users/user_list.php:795
msgid "Show profiles"
msgstr ""
-#: ../../godmode/users/user_list.php:812
+#: ../../godmode/users/user_list.php:813
msgid "Other profiles are also assigned."
msgstr ""
-#: ../../godmode/users/user_list.php:814
+#: ../../godmode/users/user_list.php:815
msgid ""
"Other profiles you cannot manage are also assigned. These profiles are not "
"shown. You cannot enable/disable or delete this user."
msgstr ""
-#: ../../godmode/users/user_list.php:823
-#: ../../include/functions_reporting.php:5140
-#: ../../include/functions_reporting.php:5187
+#: ../../godmode/users/user_list.php:824
+#: ../../include/functions_reporting.php:5149
+#: ../../include/functions_reporting.php:5196
#: ../../operation/search_users.php:87
msgid "The user doesn't have any assigned profile/group"
msgstr ""
-#: ../../godmode/users/user_list.php:935
+#: ../../godmode/users/user_list.php:936
#: ../../operation/users/user_edit_header.php:129
msgid "Edit user"
msgstr ""
-#: ../../godmode/users/user_list.php:1032
+#: ../../godmode/users/user_list.php:1034
msgid "Create user"
msgstr ""
-#: ../../godmode/users/user_list.php:1046
-#: ../../godmode/users/configure_user.php:357
+#: ../../godmode/users/user_list.php:1048
+#: ../../godmode/users/configure_user.php:295
#, php-format
msgid "The current authentication scheme doesn't support creating users on %s"
msgstr ""
-#: ../../godmode/users/configure_user.php:267
+#: ../../godmode/users/configure_user.php:60
+#: ../../godmode/users/user_management.php:39
+#: ../../godmode/massive/massive_edit_users.php:275
+#: ../../godmode/events/events.php:56 ../../include/auth/mysql.php:808
+#: ../../operation/users/user_edit.php:470
+#: ../../operation/events/events.php:1525
+msgid "Event list"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:64
+#: ../../godmode/users/user_management.php:43 ../../include/auth/mysql.php:812
+msgid "External link"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:205
msgid "Update User"
msgstr ""
-#: ../../godmode/users/configure_user.php:267
+#: ../../godmode/users/configure_user.php:205
msgid "Create User"
msgstr ""
-#: ../../godmode/users/configure_user.php:284
+#: ../../godmode/users/configure_user.php:222
msgid "User Detail Editor"
msgstr ""
-#: ../../godmode/users/configure_user.php:449
+#: ../../godmode/users/configure_user.php:391
msgid "User ID cannot be empty"
msgstr ""
-#: ../../godmode/users/configure_user.php:456
+#: ../../godmode/users/configure_user.php:399
+msgid "User ID already exists"
+msgstr ""
+
+#: ../../godmode/users/configure_user.php:405
msgid "Invalid user ID: leading or trailing blank spaces not allowed"
msgstr ""
-#: ../../godmode/users/configure_user.php:464
+#: ../../godmode/users/configure_user.php:413
msgid "Passwords cannot be empty"
msgstr ""
-#: ../../godmode/users/configure_user.php:471
+#: ../../godmode/users/configure_user.php:420
msgid "Passwords didn't match"
msgstr ""
-#: ../../godmode/users/configure_user.php:478
+#: ../../godmode/users/configure_user.php:427
msgid "The password provided is not valid. Please set another one."
msgstr ""
-#: ../../godmode/users/configure_user.php:540
+#: ../../godmode/users/configure_user.php:489
msgid ""
"Strict ACL is not recommended for admin users because performance could be "
"affected."
msgstr ""
-#: ../../godmode/users/configure_user.php:624
-#: ../../godmode/users/configure_user.php:963
+#: ../../godmode/users/configure_user.php:573
+#: ../../godmode/users/configure_user.php:1011
msgid "Profile added successfully"
msgstr ""
-#: ../../godmode/users/configure_user.php:625
-#: ../../godmode/users/configure_user.php:964
+#: ../../godmode/users/configure_user.php:574
+#: ../../godmode/users/configure_user.php:1012
msgid "Profile cannot be added"
msgstr ""
-#: ../../godmode/users/configure_user.php:754
-#: ../../godmode/users/configure_user.php:778
-#: ../../godmode/users/configure_user.php:852
-#: ../../godmode/users/configure_user.php:859
-#: ../../godmode/users/configure_user.php:891
+#: ../../godmode/users/configure_user.php:715
+#: ../../godmode/users/configure_user.php:743
+#: ../../godmode/users/configure_user.php:817
+#: ../../godmode/users/configure_user.php:824
+#: ../../godmode/users/configure_user.php:939
#: ../../operation/users/user_edit.php:216
#: ../../operation/users/user_edit.php:262
msgid "User info successfully updated"
msgstr ""
-#: ../../godmode/users/configure_user.php:755
-#: ../../godmode/users/configure_user.php:779
-#: ../../godmode/users/configure_user.php:853
-#: ../../godmode/users/configure_user.php:860
-#: ../../godmode/users/configure_user.php:892
+#: ../../godmode/users/configure_user.php:716
+#: ../../godmode/users/configure_user.php:744
+#: ../../godmode/users/configure_user.php:818
+#: ../../godmode/users/configure_user.php:825
+#: ../../godmode/users/configure_user.php:940
msgid "Error updating user info (no change?)"
msgstr ""
-#: ../../godmode/users/configure_user.php:784
+#: ../../godmode/users/configure_user.php:749
msgid "Password of the active user is required to perform password change"
msgstr ""
-#: ../../godmode/users/configure_user.php:786
+#: ../../godmode/users/configure_user.php:751
msgid "Password of active user is not correct"
msgstr ""
-#: ../../godmode/users/configure_user.php:802
+#: ../../godmode/users/configure_user.php:767
msgid "Passwords does not match"
msgstr ""
-#: ../../godmode/users/configure_user.php:852
+#: ../../godmode/users/configure_user.php:817
#: ../../operation/users/user_edit.php:214
msgid "You have generated a new API Token."
msgstr ""
-#: ../../godmode/users/configure_user.php:881
+#: ../../godmode/users/configure_user.php:846
msgid ""
"Strict ACL is not recommended for this user. Performance could be affected."
msgstr ""
-#: ../../godmode/users/configure_user.php:1014
+#: ../../godmode/users/configure_user.php:1062
#: ../../operation/users/user_edit.php:306
msgid ""
"The API token will be renewed. After this action, the last token you were "
"using will not work. Are you sure?"
msgstr ""
-#: ../../godmode/users/configure_user.php:1030
+#: ../../godmode/users/configure_user.php:1078
#: ../../operation/users/user_edit.php:339
msgid "Your API Token is:"
msgstr ""
-#: ../../godmode/users/configure_user.php:1030
+#: ../../godmode/users/configure_user.php:1078
#: ../../operation/users/user_edit.php:339
msgid "Please, avoid share this string with others."
msgstr ""
-#: ../../godmode/users/configure_user.php:1091
+#: ../../godmode/users/configure_user.php:1155
#: ../../godmode/users/user_management.php:178
#: ../../operation/users/user_edit.php:384
msgid "Full (display) name"
msgstr ""
-#: ../../godmode/users/configure_user.php:1109
-#: ../../godmode/users/user_management.php:664
+#: ../../godmode/users/configure_user.php:1173
+#: ../../godmode/users/user_management.php:690
#: ../../godmode/massive/massive_edit_users.php:469
-#: ../../operation/users/user_edit.php:537
+#: ../../operation/users/user_edit.php:530
msgid "The timezone must be that of the associated server."
msgstr ""
-#: ../../godmode/users/configure_user.php:1142
+#: ../../godmode/users/configure_user.php:1206
#: ../../godmode/users/user_management.php:299
#: ../../operation/users/user_edit.php:411
msgid "Password confirmation"
msgstr ""
-#: ../../godmode/users/configure_user.php:1160
+#: ../../godmode/users/configure_user.php:1224
#: ../../godmode/users/user_management.php:319
msgid "Own password confirmation"
msgstr ""
-#: ../../godmode/users/configure_user.php:1170
+#: ../../godmode/users/configure_user.php:1234
#: ../../godmode/users/user_management.php:233
msgid "Administrator user"
msgstr ""
-#: ../../godmode/users/configure_user.php:1197
+#: ../../godmode/users/configure_user.php:1261
#: ../../godmode/users/user_management.php:198
#: ../../operation/users/user_edit.php:404
msgid "E-mail"
msgstr ""
-#: ../../godmode/users/configure_user.php:1213
+#: ../../godmode/users/configure_user.php:1277
#: ../../godmode/users/user_management.php:206
#: ../../godmode/users/user_management.php:218
#: ../../operation/users/user_edit.php:406
msgid "Phone number"
msgstr ""
-#: ../../godmode/users/configure_user.php:1229
-#: ../../godmode/users/user_management.php:695
-#: ../../operation/users/user_edit.php:755
+#: ../../godmode/users/configure_user.php:1293
+#: ../../godmode/users/user_management.php:721
+#: ../../operation/users/user_edit.php:752
msgid "Login allowed IP list"
msgstr ""
-#: ../../godmode/users/configure_user.php:1230
-#: ../../godmode/users/user_management.php:712
-#: ../../operation/users/user_edit.php:756
+#: ../../godmode/users/configure_user.php:1294
+#: ../../godmode/users/user_management.php:738
+#: ../../operation/users/user_edit.php:753
msgid ""
"Add the source IPs that will allow console access. Each IP must be separated "
"only by comma. * allows all."
msgstr ""
-#: ../../godmode/users/configure_user.php:1269
+#: ../../godmode/users/configure_user.php:1333
msgid "Skin"
msgstr ""
-#: ../../godmode/users/configure_user.php:1280
+#: ../../godmode/users/configure_user.php:1344
msgid "Search custom field view"
msgstr ""
-#: ../../godmode/users/configure_user.php:1294
+#: ../../godmode/users/configure_user.php:1358
msgid "Load by default the selected view in custom field view"
msgstr ""
-#: ../../godmode/users/configure_user.php:1300
+#: ../../godmode/users/configure_user.php:1364
msgid "Use global conf"
msgstr ""
-#: ../../godmode/users/configure_user.php:1305
-#: ../../godmode/users/user_management.php:614
+#: ../../godmode/users/configure_user.php:1369
+#: ../../godmode/users/user_management.php:629
#: ../../godmode/massive/massive_edit_users.php:270
#: ../../operation/users/user_edit.php:466
msgid "Home screen"
msgstr ""
-#: ../../godmode/users/configure_user.php:1306
+#: ../../godmode/users/configure_user.php:1370
#: ../../godmode/massive/massive_edit_users.php:270
#: ../../operation/users/user_edit.php:466
msgid ""
@@ -34944,114 +35131,103 @@ msgid ""
"ver_agente&id_agente=1 to show agent detail view"
msgstr ""
-#: ../../godmode/users/configure_user.php:1410
+#: ../../godmode/users/configure_user.php:1459
msgid "Metaconsole access"
msgstr ""
-#: ../../godmode/users/configure_user.php:1442
+#: ../../godmode/users/configure_user.php:1495
msgid "Default event filter"
msgstr ""
-#: ../../godmode/users/configure_user.php:1456
+#: ../../godmode/users/configure_user.php:1509
msgid "eHorus user access enabled"
msgstr ""
-#: ../../godmode/users/configure_user.php:1464
-#: ../../include/functions_config.php:1820
+#: ../../godmode/users/configure_user.php:1517
+#: ../../include/functions_config.php:1832
msgid "eHorus user"
msgstr ""
-#: ../../godmode/users/configure_user.php:1473
-#: ../../include/functions_config.php:1824
+#: ../../godmode/users/configure_user.php:1526
+#: ../../include/functions_config.php:1836
msgid "eHorus password"
msgstr ""
-#: ../../godmode/users/configure_user.php:1502
+#: ../../godmode/users/configure_user.php:1555
msgid "User must be created before activating double authentication."
msgstr ""
-#: ../../godmode/users/configure_user.php:1529
-#: ../../operation/users/user_edit.php:559
+#: ../../godmode/users/configure_user.php:1582
+#: ../../operation/users/user_edit.php:552
msgid "Show information"
msgstr ""
-#: ../../godmode/users/configure_user.php:1608
+#: ../../godmode/users/configure_user.php:1662
msgid "Enable agents managment"
msgstr ""
-#: ../../godmode/users/configure_user.php:1616
+#: ../../godmode/users/configure_user.php:1670
msgid "Enable node access"
msgstr ""
-#: ../../godmode/users/configure_user.php:1617
+#: ../../godmode/users/configure_user.php:1671
msgid "With this option enabled, the user will can access to nodes console"
msgstr ""
-#: ../../godmode/users/configure_user.php:1849
+#: ../../godmode/users/configure_user.php:1901
msgid "yes"
msgstr ""
-#: ../../godmode/users/configure_user.php:1852
+#: ../../godmode/users/configure_user.php:1904
msgid "no"
msgstr ""
-#: ../../godmode/users/configure_user.php:1856
+#: ../../godmode/users/configure_user.php:1908
msgid "Please select profile and group"
msgstr ""
-#: ../../godmode/users/configure_user.php:1870
-#: ../../godmode/users/configure_user.php:1921
+#: ../../godmode/users/configure_user.php:1922
+#: ../../godmode/users/configure_user.php:1973
msgid "This profile is already defined"
msgstr ""
-#: ../../godmode/users/configure_user.php:1935
+#: ../../godmode/users/configure_user.php:1987
msgid "Deleting last profile will delete this user"
msgstr ""
-#: ../../godmode/users/configure_user.php:1975
+#: ../../godmode/users/configure_user.php:2027
msgid ""
"User will be created without profiles assigned and won't be able to log in, "
"are you sure?"
msgstr ""
-#: ../../godmode/users/configure_user.php:2082
-#: ../../operation/users/user_edit.php:1256
+#: ../../godmode/users/configure_user.php:2134
+#: ../../operation/users/user_edit.php:1253
msgid "Double autentication information"
msgstr ""
-#: ../../godmode/users/configure_user.php:2171
-#: ../../operation/users/user_edit.php:1345
+#: ../../godmode/users/configure_user.php:2223
+#: ../../operation/users/user_edit.php:1342
msgid "The double authentication will be deactivated"
msgstr ""
-#: ../../godmode/users/configure_user.php:2172
-#: ../../operation/users/user_edit.php:1346
+#: ../../godmode/users/configure_user.php:2224
+#: ../../operation/users/user_edit.php:1343
msgid "Deactivate"
msgstr ""
-#: ../../godmode/users/configure_user.php:2207
-#: ../../operation/users/user_edit.php:1378
+#: ../../godmode/users/configure_user.php:2259
+#: ../../operation/users/user_edit.php:1375
msgid "The double autentication was deactivated successfully"
msgstr ""
-#: ../../godmode/users/configure_user.php:2210
-#: ../../godmode/users/configure_user.php:2214
-#: ../../operation/users/user_edit.php:1381
-#: ../../operation/users/user_edit.php:1385
+#: ../../godmode/users/configure_user.php:2262
+#: ../../godmode/users/configure_user.php:2266
+#: ../../operation/users/user_edit.php:1378
+#: ../../operation/users/user_edit.php:1382
msgid "There was an error deactivating the double autentication"
msgstr ""
-#: ../../godmode/users/user_management.php:39
-#: ../../godmode/massive/massive_edit_users.php:275
-#: ../../godmode/events/events.php:56 ../../operation/users/user_edit.php:470
-#: ../../operation/events/events.php:1471
-msgid "Event list"
-msgstr ""
-
-#: ../../godmode/users/user_management.php:43
-msgid "External link"
-msgstr ""
-
#: ../../godmode/users/user_management.php:136
msgid "Profile information"
msgstr ""
@@ -35091,102 +35267,98 @@ msgid ""
"authentication."
msgstr ""
-#: ../../godmode/users/user_management.php:384
+#: ../../godmode/users/user_management.php:390
msgid "Session time"
msgstr ""
-#: ../../godmode/users/user_management.php:394
+#: ../../godmode/users/user_management.php:400
msgid ""
"This is defined in minutes, If you wish a permanent session should putting "
"-1 in this field."
msgstr ""
-#: ../../godmode/users/user_management.php:399
+#: ../../godmode/users/user_management.php:405
#: ../../godmode/massive/massive_edit_users.php:378
-#: ../../operation/users/user_edit.php:645
+#: ../../operation/users/user_edit.php:642
msgid "Autorefresh"
msgstr ""
-#: ../../godmode/users/user_management.php:434
+#: ../../godmode/users/user_management.php:440
#: ../../godmode/massive/massive_edit_users.php:418
-#: ../../operation/users/user_edit.php:681
+#: ../../operation/users/user_edit.php:678
msgid "Full list of pages"
msgstr ""
-#: ../../godmode/users/user_management.php:445
+#: ../../godmode/users/user_management.php:451
msgid "Pages with autorefresh"
msgstr ""
-#: ../../godmode/users/user_management.php:466
-#: ../../godmode/users/user_management.php:467
+#: ../../godmode/users/user_management.php:472
+#: ../../godmode/users/user_management.php:473
#: ../../godmode/massive/massive_edit_users.php:427
#: ../../godmode/massive/massive_edit_users.php:428
-#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382
-#: ../../operation/users/user_edit.php:690
-#: ../../operation/users/user_edit.php:691
+#: ../../include/functions_html.php:1386 ../../include/functions_html.php:1387
+#: ../../operation/users/user_edit.php:687
+#: ../../operation/users/user_edit.php:688
msgid "Push selected pages into autorefresh list"
msgstr ""
-#: ../../godmode/users/user_management.php:483
-#: ../../godmode/users/user_management.php:484
+#: ../../godmode/users/user_management.php:489
+#: ../../godmode/users/user_management.php:490
#: ../../godmode/massive/massive_edit_users.php:437
#: ../../godmode/massive/massive_edit_users.php:438
-#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394
-#: ../../operation/users/user_edit.php:699
-#: ../../operation/users/user_edit.php:700
+#: ../../include/functions_html.php:1398 ../../include/functions_html.php:1399
+#: ../../operation/users/user_edit.php:696
+#: ../../operation/users/user_edit.php:697
msgid "Pop selected pages out of autorefresh list"
msgstr ""
-#: ../../godmode/users/user_management.php:530
+#: ../../godmode/users/user_management.php:536
msgid "Autorefresh pages"
msgstr ""
-#: ../../godmode/users/user_management.php:536
+#: ../../godmode/users/user_management.php:542
msgid "Time for autorefresh"
msgstr ""
-#: ../../godmode/users/user_management.php:549
+#: ../../godmode/users/user_management.php:555
#: ../../godmode/massive/massive_edit_users.php:454
-#: ../../operation/users/user_edit.php:716
+#: ../../operation/users/user_edit.php:713
msgid ""
"Interval of autorefresh of the elements, by default they are 30 seconds, "
"needing to enable the autorefresh first"
msgstr ""
-#: ../../godmode/users/user_management.php:554
+#: ../../godmode/users/user_management.php:560
msgid "Language and Appearance"
msgstr ""
-#: ../../godmode/users/user_management.php:576
+#: ../../godmode/users/user_management.php:582
msgid "User color scheme"
msgstr ""
-#: ../../godmode/users/user_management.php:593
+#: ../../godmode/users/user_management.php:603
#: ../../godmode/massive/massive_edit_users.php:340
-#: ../../operation/users/user_edit.php:574
+#: ../../operation/users/user_edit.php:571
msgid "Event filter"
msgstr ""
-#: ../../godmode/users/user_management.php:661
-#: ../../include/functions_visual_map_editor.php:313
+#: ../../godmode/users/user_management.php:687
+#: ../../include/functions_visual_map_editor.php:309
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302
msgid "Time zone"
msgstr ""
-#: ../../godmode/users/user_management.php:678
+#: ../../godmode/users/user_management.php:704
msgid "Additional settings"
msgstr ""
-#: ../../godmode/users/user_management.php:717
+#: ../../godmode/users/user_management.php:743
msgid "Allow all IPs"
msgstr ""
-#: ../../godmode/users/user_management.php:749
-msgid "Generated automatically with the information provided for the user"
-msgstr ""
-
#: ../../godmode/agentes/agent_template.php:83
-#: ../../include/functions_api.php:15092
+#: ../../include/functions_api.php:15103
msgid "Created by template "
msgstr ""
@@ -35199,14 +35371,14 @@ msgid "Error adding modules. The following errors already exists: "
msgstr ""
#: ../../godmode/agentes/agent_template.php:179
-#: ../../include/functions_api.php:15186
+#: ../../include/functions_api.php:15197
msgid "Modules successfully added"
msgstr ""
#: ../../godmode/agentes/agent_template.php:204
#: ../../godmode/agentes/configurar_agente.php:456
#: ../../godmode/agentes/configurar_agente.php:749 ../../godmode/menu.php:177
-#: ../../godmode/wizards/HostDevices.class.php:1098
+#: ../../godmode/wizards/HostDevices.class.php:1094
msgid "Module templates"
msgstr ""
@@ -35217,7 +35389,7 @@ msgid "Assign"
msgstr ""
#: ../../godmode/agentes/agent_template.php:317
-#: ../../mobile/operation/modules.php:772
+#: ../../mobile/operation/modules.php:804
msgid "No modules"
msgstr ""
@@ -35236,70 +35408,75 @@ msgid ""
"Column number to retrieve from the WQL query result (starting from zero)."
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:161
+#: ../../godmode/agentes/module_manager_editor_web.php:164
msgid "Debug remotely this module"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:164
+#: ../../godmode/agentes/module_manager_editor_web.php:167
msgid "Debug this module once it has been initialized"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:190
+#: ../../godmode/agentes/module_manager_editor_web.php:193
#: ../../include/class/WebServerModuleDebug.class.php:325
msgid "Debug"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:219
+#: ../../godmode/agentes/module_manager_editor_web.php:222
msgid "Requests"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:222
+#: ../../godmode/agentes/module_manager_editor_web.php:225
msgid "Agent browser id"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:228
+#: ../../godmode/agentes/module_manager_editor_web.php:231
msgid "HTTP auth (login)"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:231
+#: ../../godmode/agentes/module_manager_editor_web.php:234
msgid "HTTP auth (password)"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:245
+#: ../../godmode/agentes/module_manager_editor_web.php:248
msgid "Proxy auth (login)"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:249
+#: ../../godmode/agentes/module_manager_editor_web.php:252
msgid "Proxy auth (pass)"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:256
+#: ../../godmode/agentes/module_manager_editor_web.php:259
msgid "Proxy auth (server)"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:260
+#: ../../godmode/agentes/module_manager_editor_web.php:263
msgid "Proxy auth (realm)"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_web.php:272
+#: ../../godmode/agentes/module_manager_editor_web.php:275
msgid "There isn't get or post"
msgstr ""
-#: ../../godmode/agentes/status_monitor_custom_fields.php:101
-#: ../../godmode/agentes/status_monitor_custom_fields.php:147
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4011
-#: ../../include/functions_reporting_html.php:1784
+#: ../../godmode/agentes/status_monitor_custom_fields.php:35
+#: ../../operation/agentes/status_monitor.php:326 ../../operation/menu.php:186
+msgid "Monitor detail"
+msgstr ""
+
+#: ../../godmode/agentes/status_monitor_custom_fields.php:121
+#: ../../godmode/agentes/status_monitor_custom_fields.php:167
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4020
+#: ../../mobile/operation/agents.php:100 ../../mobile/operation/agents.php:426
+#: ../../include/functions_reporting_html.php:1793
#: ../../include/functions_treeview.php:310
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:545
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:560
-#: ../../operation/agentes/status_monitor.php:1572
-#: ../../operation/agentes/estado_generalagente.php:529
-#: ../../operation/inventory/inventory.php:1008
-#: ../../operation/inventory/inventory.php:1302
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561
+#: ../../operation/agentes/status_monitor.php:1574
+#: ../../operation/agentes/estado_generalagente.php:500
+#: ../../operation/inventory/inventory.php:1254
msgid "Last status change"
msgstr ""
-#: ../../godmode/agentes/status_monitor_custom_fields.php:165
+#: ../../godmode/agentes/status_monitor_custom_fields.php:185
msgid "Show monitor detail fields"
msgstr ""
@@ -35321,15 +35498,15 @@ msgid "Could not be created, because IP already exists"
msgstr ""
#: ../../godmode/agentes/configurar_agente.php:536
-#: ../../operation/agentes/ver_agente.php:1523
-#: ../../operation/agentes/ver_agente.php:1827
+#: ../../operation/agentes/ver_agente.php:1519
+#: ../../operation/agentes/ver_agente.php:1823
msgid "GIS data"
msgstr ""
#: ../../godmode/agentes/configurar_agente.php:605
#: ../../godmode/agentes/configurar_agente.php:758
-#: ../../operation/agentes/ver_agente.php:1538
-#: ../../operation/agentes/ver_agente.php:1885 ../../operation/menu.php:657
+#: ../../operation/agentes/ver_agente.php:1534
+#: ../../operation/agentes/ver_agente.php:1881 ../../operation/menu.php:657
#: ../../general/first_task/incidents.php:28
msgid "Incidents"
msgstr ""
@@ -35359,12 +35536,12 @@ msgid "Manage agents"
msgstr ""
#: ../../godmode/agentes/configurar_agente.php:874
-#: ../../godmode/servers/modificar_server.php:350
+#: ../../godmode/servers/modificar_server.php:372
msgid "Conf file deleted successfully"
msgstr ""
#: ../../godmode/agentes/configurar_agente.php:875
-#: ../../godmode/servers/modificar_server.php:351
+#: ../../godmode/servers/modificar_server.php:373
msgid "Could not delete conf file"
msgstr ""
@@ -35406,81 +35583,81 @@ msgstr ""
msgid "There was a problem updating the agent"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1227
+#: ../../godmode/agentes/configurar_agente.php:1243
msgid "There was a problem loading the agent"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1736
+#: ../../godmode/agentes/configurar_agente.php:1797
msgid ""
"There was a problem updating module. Another module already exists with the "
"same name."
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1740
+#: ../../godmode/agentes/configurar_agente.php:1801
msgid ""
"There was a problem updating module. Some required fields are missed: (name)"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1744
+#: ../../godmode/agentes/configurar_agente.php:1805
msgid "There was a problem updating module. \"No change\""
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1750
+#: ../../godmode/agentes/configurar_agente.php:1811
msgid "There was a problem updating module. Processing error"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1779
+#: ../../godmode/agentes/configurar_agente.php:1840
msgid "Module successfully updated"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1913
+#: ../../godmode/agentes/configurar_agente.php:1974
msgid ""
"There was a problem adding module. Another module already exists with the "
"same name."
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1917
+#: ../../godmode/agentes/configurar_agente.php:1978
msgid ""
"There was a problem adding module. Some required fields are missed : (name)"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1923
+#: ../../godmode/agentes/configurar_agente.php:1984
msgid "There was a problem adding module. Processing error"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:1952
+#: ../../godmode/agentes/configurar_agente.php:2013
#: ../../godmode/reporting/graph_builder.php:392
msgid "Module added successfully"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:2106
+#: ../../godmode/agentes/configurar_agente.php:2169
msgid "There was a problem deleting the module"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:2110
+#: ../../godmode/agentes/configurar_agente.php:2173
msgid "Module deleted succesfully"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:2249
-#: ../../include/functions_api.php:11217
+#: ../../godmode/agentes/configurar_agente.php:2312
+#: ../../include/functions_api.php:11220
#, php-format
msgid "Save by %s Console"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:2267
-#: ../../include/functions_api.php:11218
+#: ../../godmode/agentes/configurar_agente.php:2330
+#: ../../include/functions_api.php:11221
#, php-format
msgid "Update by %s Console"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:2283
-#: ../../include/functions_api.php:11219
+#: ../../godmode/agentes/configurar_agente.php:2346
+#: ../../include/functions_api.php:11222
#, php-format
msgid "Insert by %s Console"
msgstr ""
-#: ../../godmode/agentes/configurar_agente.php:2356
-#: ../../godmode/agentes/configurar_agente.php:2372
+#: ../../godmode/agentes/configurar_agente.php:2419
+#: ../../godmode/agentes/configurar_agente.php:2435
msgid "Invalid tab specified"
msgstr ""
@@ -35564,7 +35741,7 @@ msgid "Error forcing inventory module"
msgstr ""
#: ../../godmode/agentes/inventory_manager.php:235
-#: ../../include/functions_ui.php:7438
+#: ../../include/functions_ui.php:7515
msgid "Target"
msgstr ""
@@ -35614,49 +35791,54 @@ msgid ""
"content"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:692
+#: ../../godmode/agentes/modificar_agente.php:702
msgid "Remote agent configuration"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:692
+#: ../../godmode/agentes/modificar_agente.php:702
msgid "R"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:772
-#: ../../godmode/agentes/module_manager.php:788
+#: ../../godmode/agentes/modificar_agente.php:784
+#: ../../godmode/agentes/module_manager.php:798
msgid "Module in scheduled downtime"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:858
+#: ../../godmode/agentes/modificar_agente.php:870
msgid "Edit remote config"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:905
+#: ../../godmode/agentes/modificar_agente.php:917
msgid "Enable agent"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:907
+#: ../../godmode/agentes/modificar_agente.php:919
msgid "You are going to enable a cluster agent. Are you sure?"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:910
+#: ../../godmode/agentes/modificar_agente.php:922
msgid "Disable agent"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:912
+#: ../../godmode/agentes/modificar_agente.php:924
msgid "You are going to disable a cluster agent. Are you sure?"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:943
+#: ../../godmode/agentes/modificar_agente.php:955
msgid "WARNING! - You are going to delete a cluster agent. Are you sure?"
msgstr ""
-#: ../../godmode/agentes/modificar_agente.php:965
-#: ../../godmode/agentes/agent_manager.php:1067
-#: ../../godmode/agentes/agent_manager.php:1120
+#: ../../godmode/agentes/modificar_agente.php:977
+#: ../../godmode/agentes/agent_manager.php:1073
+#: ../../godmode/agentes/agent_manager.php:1126
msgid "Delete agent"
msgstr ""
+#: ../../godmode/agentes/modificar_agente.php:1046
+#: ../../include/class/AgentDeployWizard.class.php:706
+msgid "Deploy agent"
+msgstr ""
+
#: ../../godmode/agentes/agent_conf_gis.php:38
#: ../../operation/agentes/gis_view.php:59
msgid ""
@@ -35706,7 +35888,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:66
#: ../../godmode/agentes/planned_downtime.editor.php:79
#: ../../include/functions_reporting_html.php:887
-#: ../../include/functions_reporting_html.php:4891
+#: ../../include/functions_reporting_html.php:4919
msgid "Scheduled Downtime"
msgstr ""
@@ -35801,7 +35983,7 @@ msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:229
#: ../../godmode/agentes/planned_downtime.editor.php:1574
-#: ../../godmode/agentes/planned_downtime.editor.php:1777
+#: ../../godmode/agentes/planned_downtime.editor.php:1775
msgid "This elements cannot be modified while the downtime is being executed"
msgstr ""
@@ -35951,12 +36133,12 @@ msgid "Type Periodicity"
msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1069
-#: ../../include/functions_reporting.php:14923
+#: ../../include/functions_reporting.php:14996
msgid "From day"
msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1085
-#: ../../include/functions_reporting.php:14924
+#: ../../include/functions_reporting.php:14997
msgid "To day"
msgstr ""
@@ -35973,14 +36155,14 @@ msgid "To hour"
msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1152
-#: ../../godmode/agentes/module_manager_editor_common.php:1085
-#: ../../godmode/agentes/module_manager_editor_common.php:1091
+#: ../../godmode/agentes/module_manager_editor_common.php:1095
+#: ../../godmode/agentes/module_manager_editor_common.php:1101
msgid "Cron from"
msgstr ""
#: ../../godmode/agentes/planned_downtime.editor.php:1155
-#: ../../godmode/agentes/module_manager_editor_common.php:1088
-#: ../../godmode/agentes/module_manager_editor_common.php:1094
+#: ../../godmode/agentes/module_manager_editor_common.php:1098
+#: ../../godmode/agentes/module_manager_editor_common.php:1104
msgid "Cron to"
msgstr ""
@@ -36024,12 +36206,12 @@ msgstr ""
msgid "Add Module:"
msgstr ""
-#: ../../godmode/agentes/planned_downtime.editor.php:1907
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4939
+#: ../../godmode/agentes/planned_downtime.editor.php:1903
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4948
msgid "Please select a module."
msgstr ""
-#: ../../godmode/agentes/planned_downtime.editor.php:2046
+#: ../../godmode/agentes/planned_downtime.editor.php:2042
msgid ""
"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
"may be altered"
@@ -36086,12 +36268,12 @@ msgstr ""
msgid "Create field"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_network.php:310
+#: ../../godmode/agentes/module_manager_editor_network.php:311
#: ../../include/class/AgentWizard.class.php:584
msgid "SNMP Walk"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_network.php:477
+#: ../../godmode/agentes/module_manager_editor_network.php:482
msgid ""
"Please use single quotation marks when necessary. \n"
"\n"
@@ -36099,13 +36281,13 @@ msgid ""
"(\\")"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_network.php:536
+#: ../../godmode/agentes/module_manager_editor_network.php:541
msgid "Windows remote"
msgstr ""
#: ../../godmode/agentes/agent_manager.php:329
-#: ../../godmode/agentes/agent_manager.php:744
-#: ../../godmode/massive/massive_edit_agents.php:1014
+#: ../../godmode/agentes/agent_manager.php:748
+#: ../../godmode/massive/massive_edit_agents.php:1031
msgid "Agent icon"
msgstr ""
@@ -36115,7 +36297,7 @@ msgstr ""
#: ../../godmode/agentes/agent_manager.php:407
#: ../../godmode/setup/setup_general.php:649
-#: ../../include/functions_config.php:390
+#: ../../include/functions_config.php:398
msgid "Unique IP"
msgstr ""
@@ -36140,64 +36322,64 @@ msgstr ""
msgid "Primary group"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:673
+#: ../../godmode/agentes/agent_manager.php:677
msgid "Cascade protection modules"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:689
-#: ../../godmode/massive/massive_edit_agents.php:891
+#: ../../godmode/agentes/agent_manager.php:693
+#: ../../godmode/massive/massive_edit_agents.php:908
msgid "Learning mode"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:699
-#: ../../godmode/massive/massive_edit_agents.php:902
+#: ../../godmode/agentes/agent_manager.php:703
+#: ../../godmode/massive/massive_edit_agents.php:919
msgid "Normal mode"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:709
-#: ../../godmode/massive/massive_edit_agents.php:913
+#: ../../godmode/agentes/agent_manager.php:713
+#: ../../godmode/massive/massive_edit_agents.php:930
msgid "Autodisable mode"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:718
-#: ../../godmode/massive/massive_edit_agents.php:879
+#: ../../godmode/agentes/agent_manager.php:722
+#: ../../godmode/massive/massive_edit_agents.php:896
msgid "Module definition"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:730
+#: ../../godmode/agentes/agent_manager.php:734
msgid "Cascade protection services"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:737
+#: ../../godmode/agentes/agent_manager.php:741
msgid "Update new GIS data"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:809
+#: ../../godmode/agentes/agent_manager.php:817
msgid "URL Address"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:815
+#: ../../godmode/agentes/agent_manager.php:823
msgid "Disabled mode"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:892
-#: ../../godmode/massive/massive_edit_agents.php:1128
+#: ../../godmode/agentes/agent_manager.php:900
+#: ../../godmode/massive/massive_edit_agents.php:1144
msgid "Safe operation mode"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:969
+#: ../../godmode/agentes/agent_manager.php:975
msgid "Link text:"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:980
+#: ../../godmode/agentes/agent_manager.php:986
msgid "Link URL:"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:1121
+#: ../../godmode/agentes/agent_manager.php:1127
msgid "This action is not reversible. Are you sure"
msgstr ""
-#: ../../godmode/agentes/agent_manager.php:1182
+#: ../../godmode/agentes/agent_manager.php:1188
msgid "Secondary group cannot be primary too."
msgstr ""
@@ -36290,86 +36472,86 @@ msgid "Warning threshold"
msgstr ""
#: ../../godmode/agentes/module_manager_editor_common.php:448
-#: ../../godmode/agentes/module_manager_editor_common.php:531
+#: ../../godmode/agentes/module_manager_editor_common.php:536
msgid "Min / Max"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:530
+#: ../../godmode/agentes/module_manager_editor_common.php:535
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435
msgid "Critical threshold"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:741
+#: ../../godmode/agentes/module_manager_editor_common.php:751
msgid "Identification and Categorization"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:944
+#: ../../godmode/agentes/module_manager_editor_common.php:954
msgid "Module parent"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:994
+#: ../../godmode/agentes/module_manager_editor_common.php:1004
msgid "Tags from policy"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1065
+#: ../../godmode/agentes/module_manager_editor_common.php:1075
msgid "Execution interval"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1101
+#: ../../godmode/agentes/module_manager_editor_common.php:1111
msgid "Thresholds and state changes"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1119
+#: ../../godmode/agentes/module_manager_editor_common.php:1129
msgid "Dynamic Threshold Interval"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1172
+#: ../../godmode/agentes/module_manager_editor_common.php:1182
msgid "Two Tailed"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1323
+#: ../../godmode/agentes/module_manager_editor_common.php:1333
msgid "Data and their processing"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1353
+#: ../../godmode/agentes/module_manager_editor_common.php:1363
msgid "Notifications and alerts"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1357
+#: ../../godmode/agentes/module_manager_editor_common.php:1367
msgid "Not needed"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1403
+#: ../../godmode/agentes/module_manager_editor_common.php:1413
msgid "Cascade Protection Services"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1486
-#: ../../godmode/agentes/module_manager_editor_common.php:1620
+#: ../../godmode/agentes/module_manager_editor_common.php:1496
+#: ../../godmode/agentes/module_manager_editor_common.php:1630
msgid "Direct"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1487
-#: ../../godmode/agentes/module_manager_editor_common.php:1620
-#: ../../include/functions_reporting_html.php:4132
-#: ../../include/functions_reporting_html.php:4226
-#: ../../include/functions_reporting_html.php:4306
-#: ../../include/functions_reporting_html.php:4315
-#: ../../include/functions_reporting_html.php:4453
-#: ../../include/functions_reporting_html.php:4462
-#: ../../include/functions_reporting_html.php:4788
-#: ../../include/functions_reporting_html.php:4794
+#: ../../godmode/agentes/module_manager_editor_common.php:1497
+#: ../../godmode/agentes/module_manager_editor_common.php:1630
+#: ../../include/functions_reporting_html.php:4160
+#: ../../include/functions_reporting_html.php:4254
+#: ../../include/functions_reporting_html.php:4334
+#: ../../include/functions_reporting_html.php:4343
+#: ../../include/functions_reporting_html.php:4481
+#: ../../include/functions_reporting_html.php:4490
+#: ../../include/functions_reporting_html.php:4816
+#: ../../include/functions_reporting_html.php:4822
msgid "Failover"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1489
+#: ../../godmode/agentes/module_manager_editor_common.php:1499
msgid "Rel. type"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1511
+#: ../../godmode/agentes/module_manager_editor_common.php:1521
msgid "Add relationship"
msgstr ""
-#: ../../godmode/agentes/module_manager_editor_common.php:1537
+#: ../../godmode/agentes/module_manager_editor_common.php:1547
msgid "Changes"
msgstr ""
@@ -36398,7 +36580,7 @@ msgid "There was a problem completing the operation. Applied to %d/%d modules."
msgstr ""
#: ../../godmode/agentes/module_manager.php:619
-#: ../../include/ajax/module.php:999
+#: ../../include/ajax/module.php:1022
msgid "P"
msgstr ""
@@ -36406,42 +36588,43 @@ msgstr ""
msgid "S"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:836
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072
+#: ../../godmode/agentes/module_manager.php:846
+#: ../../godmode/agentes/module_manager.php:854
+#: ../../include/ajax/module.php:1087 ../../include/ajax/module.php:1095
msgid "Adopted"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:972
+#: ../../godmode/agentes/module_manager.php:986
msgid "Normalize"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:985
+#: ../../godmode/agentes/module_manager.php:999
#: ../../include/functions_snmp_browser.php:638
msgid "Create network component"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:1020
+#: ../../godmode/agentes/module_manager.php:1034
#: ../../godmode/reporting/map_builder.php:485
#: ../../godmode/reporting/map_builder.php:502
-#: ../../operation/agentes/datos_agente.php:295
+#: ../../include/ajax/module.php:609
+#: ../../operation/agentes/datos_agente.php:297
msgid "No available data to show"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:1037
+#: ../../godmode/agentes/module_manager.php:1051
#: ../../include/class/SatelliteAgent.class.php:233
msgid "Execute action"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:1081
+#: ../../godmode/agentes/module_manager.php:1095
msgid "Select module type"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:1104
+#: ../../godmode/agentes/module_manager.php:1119
msgid "Get more modules on Monitoring Library"
msgstr ""
-#: ../../godmode/agentes/module_manager.php:1239
+#: ../../godmode/agentes/module_manager.php:1260
msgid ""
"This module has children modules.The following modules will also be deleted: "
msgstr ""
@@ -36469,7 +36652,7 @@ msgid "Item list"
msgstr ""
#: ../../godmode/netflow/nf_item_list.php:176
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2549
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2558
msgid "Max. values"
msgstr ""
@@ -36495,97 +36678,153 @@ msgstr ""
msgid "There are no defined filters"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69
+#: ../../godmode/netflow/nf_edit_form.php:77 ../../godmode/events/events.php:69
msgid "Filter list"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:67
+#: ../../godmode/netflow/nf_edit_form.php:78
msgid "Add filter"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:181
-#: ../../operation/netflow/nf_live_view.php:261
+#: ../../godmode/netflow/nf_edit_form.php:224
+#: ../../operation/netflow/nf_live_view.php:270
msgid "Src Ip Address"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:182
-#: ../../operation/netflow/nf_live_view.php:262
+#: ../../godmode/netflow/nf_edit_form.php:225
+#: ../../operation/netflow/nf_live_view.php:271
msgid "Dst Ip Address"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:183
-#: ../../godmode/netflow/nf_edit_form.php:314
-#: ../../operation/netflow/nf_live_view.php:263
-#: ../../operation/netflow/nf_live_view.php:321
+#: ../../godmode/netflow/nf_edit_form.php:226
+#: ../../godmode/netflow/nf_edit_form.php:359
+#: ../../operation/netflow/nf_live_view.php:272
+#: ../../operation/netflow/nf_live_view.php:330
msgid "Src Port"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:184
-#: ../../godmode/netflow/nf_edit_form.php:302
-#: ../../operation/netflow/nf_live_view.php:264
-#: ../../operation/netflow/nf_live_view.php:313
+#: ../../godmode/netflow/nf_edit_form.php:227
+#: ../../godmode/netflow/nf_edit_form.php:347
+#: ../../operation/netflow/nf_live_view.php:273
+#: ../../operation/netflow/nf_live_view.php:322
msgid "Dst Port"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:261
+#: ../../godmode/netflow/nf_edit_form.php:306
msgid "Aggregate by"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:278
-#: ../../operation/netflow/nf_live_view.php:294
+#: ../../godmode/netflow/nf_edit_form.php:323
+#: ../../operation/netflow/nf_live_view.php:303
msgid "Dst Ip"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:286
-#: ../../operation/netflow/nf_live_view.php:294
+#: ../../godmode/netflow/nf_edit_form.php:331
+#: ../../operation/netflow/nf_live_view.php:303
msgid ""
"Destination IP. A comma separated list of destination ip. If we leave the "
"field blank, will show all ip. Example filter by ip:"
"
25.46.157.214,160.253.135.249"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:290
-#: ../../operation/netflow/nf_live_view.php:302
+#: ../../godmode/netflow/nf_edit_form.php:335
+#: ../../operation/netflow/nf_live_view.php:311
msgid "Src Ip"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:298
-#: ../../operation/netflow/nf_live_view.php:302
+#: ../../godmode/netflow/nf_edit_form.php:343
+#: ../../operation/netflow/nf_live_view.php:311
msgid ""
"Source IP. A comma separated list of source ip. If we leave the field blank, "
"will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:310
-#: ../../operation/netflow/nf_live_view.php:313
+#: ../../godmode/netflow/nf_edit_form.php:355
+#: ../../operation/netflow/nf_live_view.php:322
msgid ""
"Destination port. A comma separated list of destination ports. If we leave "
"the field blank, will show all ports. Example filter by ports 80 and 22:"
"
80,22"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:322
-#: ../../operation/netflow/nf_live_view.php:321
+#: ../../godmode/netflow/nf_edit_form.php:367
+#: ../../operation/netflow/nf_live_view.php:330
msgid ""
"Source port. A comma separated list of source ports. If we leave the field "
"blank, will show all ports. Example filter by ports 80 and 22:
80,22"
msgstr ""
-#: ../../godmode/netflow/nf_edit_form.php:327
+#: ../../godmode/netflow/nf_edit_form.php:372
msgid "Advanced filters"
msgstr ""
+#: ../../godmode/netflow/nf_edit_form.php:380
+#: ../../operation/netflow/nf_live_view.php:377
+msgid "Enable Netflow monitoring"
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:389
+#: ../../operation/netflow/nf_live_view.php:377
+msgid ""
+"Allows you to create an agent that monitors the traffic volume of this "
+"filter. It also creates a module that measures if the traffic of any IP of "
+"this filter exceeds a certain threshold. A text type module will be created "
+"with the traffic rate for each IP within this filter every five minutes (the "
+"10 IP's with the most traffic). Only available for Enterprise version."
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:395
+#: ../../operation/netflow/nf_live_view.php:391
+msgid "Netflow monitoring interval"
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:403
+#: ../../operation/netflow/nf_live_view.php:391
+msgid "Netflow monitoring interval in secs."
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:407
+#: ../../operation/netflow/nf_live_view.php:401
+msgid "Maximum traffic value of the filter"
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:415
+#: ../../operation/netflow/nf_live_view.php:401
+#, php-format
+msgid ""
+"Specifies the maximum rate (in bytes/sec) of traffic in the filter. It is "
+"then used to calculate the % of maximum traffic per IP."
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:421
+#: ../../operation/netflow/nf_live_view.php:415
+#, php-format
+msgid "CRITICAL threshold for the maximum % of traffic for an IP."
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:431
+#: ../../operation/netflow/nf_live_view.php:415
+msgid ""
+"If this % is exceeded by any IP within the filter, a CRITICAL status will be "
+"generated."
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:435
+#, php-format
+msgid "WARNING threshold for the maximum % of traffic for an IP."
+msgstr ""
+
+#: ../../godmode/netflow/nf_edit_form.php:445
+#: ../../operation/netflow/nf_live_view.php:425
+msgid ""
+"If this % is exceeded by any IP within the filter, a WARNING status will be "
+"generated."
+msgstr ""
+
#: ../../godmode/snmpconsole/snmp_trap_generator.php:38
msgid "SNMP Trap generator"
msgstr ""
-#: ../../godmode/snmpconsole/snmp_trap_generator.php:51
-#: ../../godmode/snmpconsole/snmp_filters.php:59
-#: ../../operation/snmpconsole/snmp_browser.php:90
-#: ../../operation/snmpconsole/snmp_mib_uploader.php:60
-msgid "SMNP"
-msgstr ""
-
#: ../../godmode/snmpconsole/snmp_trap_generator.php:68
msgid "Empty parameters"
msgstr ""
@@ -36700,9 +36939,9 @@ msgid "Custom Value/Enterprise String"
msgstr ""
#: ../../godmode/snmpconsole/snmp_alert.php:1908
-#: ../../include/functions_reporting_html.php:5373
-#: ../../include/functions_reporting_html.php:5495
-#: ../../include/functions_treeview.php:441
+#: ../../include/functions_reporting_html.php:5401
+#: ../../include/functions_reporting_html.php:5523
+#: ../../include/functions_treeview.php:445
msgid "Times fired"
msgstr ""
@@ -36722,7 +36961,7 @@ msgstr ""
msgid "Do you want delete the selected alerts?"
msgstr ""
-#: ../../godmode/snmpconsole/snmp_alert.php:2355
+#: ../../godmode/snmpconsole/snmp_alert.php:2343
msgid "Add action "
msgstr ""
@@ -36809,151 +37048,151 @@ msgstr ""
msgid "Private Enterprise Numbers"
msgstr ""
-#: ../../godmode/menu.php:183
+#: ../../godmode/menu.php:182
msgid "Remote components"
msgstr ""
-#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246
+#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:246
msgid "Agents operations"
msgstr ""
-#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258
+#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:258
msgid "Modules operations"
msgstr ""
-#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270
+#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:270
msgid "Plugins operations"
msgstr ""
-#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234
+#: ../../godmode/menu.php:212 ../../godmode/massive/massive_operations.php:234
msgid "Users operations"
msgstr ""
-#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222
+#: ../../godmode/menu.php:215 ../../godmode/massive/massive_operations.php:222
msgid "Alerts operations"
msgstr ""
-#: ../../godmode/menu.php:234
+#: ../../godmode/menu.php:233
msgid "Event filters"
msgstr ""
-#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95
+#: ../../godmode/menu.php:238 ../../godmode/events/events.php:95
#: ../../godmode/events/events.php:110
msgid "Custom columns"
msgstr ""
-#: ../../godmode/menu.php:270
+#: ../../godmode/menu.php:268
msgid "List of Alerts"
msgstr ""
-#: ../../godmode/menu.php:285
+#: ../../godmode/menu.php:283
msgid "Special days list"
msgstr ""
-#: ../../godmode/menu.php:290
+#: ../../godmode/menu.php:288 ../../include/functions_groups.php:267
msgid "SNMP alerts"
msgstr ""
-#: ../../godmode/menu.php:307
+#: ../../godmode/menu.php:305
msgid "Manage servers"
msgstr ""
-#: ../../godmode/menu.php:314
+#: ../../godmode/menu.php:312
msgid "Manage consoles"
msgstr ""
-#: ../../godmode/menu.php:325
+#: ../../godmode/menu.php:323
msgid "Register Plugin"
msgstr ""
-#: ../../godmode/menu.php:351
+#: ../../godmode/menu.php:349
#: ../../include/class/OrderInterpreter.class.php:141
msgid "General Setup"
msgstr ""
-#: ../../godmode/menu.php:376 ../../godmode/setup/setup.php:165
+#: ../../godmode/menu.php:374 ../../godmode/setup/setup.php:165
#: ../../godmode/setup/setup.php:296
msgid "Sflow"
msgstr ""
-#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:191
+#: ../../godmode/menu.php:379 ../../godmode/setup/setup.php:191
#: ../../godmode/setup/setup.php:302
-#: ../../operation/agentes/ver_agente.php:1623
-#: ../../operation/agentes/ver_agente.php:1897
+#: ../../operation/agentes/ver_agente.php:1619
+#: ../../operation/agentes/ver_agente.php:1893
msgid "eHorus"
msgstr ""
-#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:179
+#: ../../godmode/menu.php:382 ../../godmode/setup/setup.php:179
#: ../../godmode/setup/setup.php:308 ../../godmode/setup/setup_integria.php:681
msgid "Integria IMS"
msgstr ""
-#: ../../godmode/menu.php:392
+#: ../../godmode/menu.php:390
msgid "Websocket Engine"
msgstr ""
-#: ../../godmode/menu.php:395 ../../godmode/setup/setup.php:238
+#: ../../godmode/menu.php:393 ../../godmode/setup/setup.php:238
#: ../../godmode/setup/setup.php:336
-#: ../../operation/agentes/ver_agente.php:1713
-#: ../../operation/agentes/ver_agente.php:1914
+#: ../../operation/agentes/ver_agente.php:1709
+#: ../../operation/agentes/ver_agente.php:1910
msgid "External Tools"
msgstr ""
-#: ../../godmode/menu.php:398
+#: ../../godmode/menu.php:396
msgid "Welcome Tips"
msgstr ""
-#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320
+#: ../../godmode/menu.php:400 ../../godmode/setup/setup.php:320
msgid "Map conections GIS"
msgstr ""
-#: ../../godmode/menu.php:430
+#: ../../godmode/menu.php:428
msgid "Diagnostic info"
msgstr ""
-#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43
+#: ../../godmode/menu.php:433 ../../godmode/setup/news.php:43
msgid "Site news"
msgstr ""
-#: ../../godmode/menu.php:444
+#: ../../godmode/menu.php:442
msgid "DB Schema Check"
msgstr ""
-#: ../../godmode/menu.php:447
+#: ../../godmode/menu.php:445
msgid "DB Interface"
msgstr ""
-#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230
-msgid "Accoustic console setup"
+#: ../../godmode/menu.php:454 ../../include/class/EventSound.class.php:230
+msgid "Acoustic console setup"
msgstr ""
-#: ../../godmode/menu.php:533
+#: ../../godmode/menu.php:531
msgid "Extension manager view"
msgstr ""
-#: ../../godmode/menu.php:569
+#: ../../godmode/menu.php:567
#: ../../include/class/OrderInterpreter.class.php:339
msgid "Warp Update"
msgstr ""
-#: ../../godmode/menu.php:574
+#: ../../godmode/menu.php:572
msgid "Update offline"
msgstr ""
-#: ../../godmode/menu.php:577
+#: ../../godmode/menu.php:575
msgid "Update online"
msgstr ""
-#: ../../godmode/menu.php:583
+#: ../../godmode/menu.php:581
msgid "Warp journal"
msgstr ""
-#: ../../godmode/menu.php:592
+#: ../../godmode/menu.php:590
#: ../../godmode/module_library/module_library_view.php:81
msgid "Module library"
msgstr ""
-#: ../../godmode/menu.php:599
+#: ../../godmode/menu.php:597
#: ../../godmode/module_library/module_library_view.php:54
#: ../../godmode/module_library/module_library_view.php:68
#: ../../godmode/module_library/module_library_view.php:104
@@ -37252,10 +37491,10 @@ msgstr ""
#: ../../godmode/massive/massive_delete_action_alerts.php:240
#: ../../godmode/massive/massive_add_action_alerts.php:219
-#: ../../godmode/alerts/alert_templates.php:139
-#: ../../godmode/alerts/alert_templates.php:188
-#: ../../godmode/alerts/alert_templates.php:211
-#: ../../godmode/alerts/alert_templates.php:232
+#: ../../godmode/alerts/alert_templates.php:142
+#: ../../godmode/alerts/alert_templates.php:192
+#: ../../godmode/alerts/alert_templates.php:215
+#: ../../godmode/alerts/alert_templates.php:236
msgid "Alert templates"
msgstr ""
@@ -37277,7 +37516,7 @@ msgstr ""
#: ../../godmode/massive/massive_delete_alerts.php:113
#: ../../godmode/massive/massive_add_action_alerts.php:75
#: ../../include/functions_visual_map.php:2568
-#: ../../include/functions_visual_map.php:2914
+#: ../../include/functions_visual_map.php:2917
msgid "No agents selected"
msgstr ""
@@ -37365,29 +37604,29 @@ msgstr ""
#: ../../godmode/massive/massive_edit_users.php:209
#: ../../godmode/massive/massive_delete_profiles.php:154
#: ../../godmode/massive/massive_add_profiles.php:204
-#: ../../include/functions_reporting.php:12397
+#: ../../include/functions_reporting.php:12470
#: ../../operation/search_results.php:94
msgid "Users"
msgstr ""
#: ../../godmode/massive/massive_edit_users.php:379
-#: ../../operation/users/user_edit.php:646
+#: ../../operation/users/user_edit.php:643
msgid "This will activate autorefresh in selected pages"
msgstr ""
#: ../../godmode/massive/massive_edit_users.php:443
-#: ../../operation/users/user_edit.php:705
+#: ../../operation/users/user_edit.php:702
msgid "List of pages with autorefresh"
msgstr ""
#: ../../godmode/massive/massive_edit_users.php:452
-#: ../../operation/users/user_edit.php:714
+#: ../../operation/users/user_edit.php:711
msgid "Time autorefresh"
msgstr ""
#: ../../godmode/massive/massive_add_alerts.php:105
#: ../../godmode/massive/massive_delete_alerts.php:108
-#: ../../operation/agentes/alerts_status.php:566
+#: ../../operation/agentes/alerts_status.php:576
#: ../../operation/agentes/alerts_status.functions.php:54
msgid "No alert selected"
msgstr ""
@@ -37503,63 +37742,63 @@ msgstr ""
msgid "Configuration files cannot be deleted"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:382
+#: ../../godmode/massive/massive_edit_agents.php:399
#, php-format
msgid "Agents updated successfully (%d)"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:397
+#: ../../godmode/massive/massive_edit_agents.php:414
#, php-format
msgid "Agents cannot be updated (%d), ids (%s)"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:412
+#: ../../godmode/massive/massive_edit_agents.php:429
#, php-format
msgid "Agent ID: %s cannot be updated custom fields (%s)"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:432
+#: ../../godmode/massive/massive_edit_agents.php:449
#, php-format
msgid "Agent ID: %s cannot be updated %s secondary groups (%s)"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:668
+#: ../../godmode/massive/massive_edit_agents.php:685
msgid "Cascade protection"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:940
+#: ../../godmode/massive/massive_edit_agents.php:957
msgid ""
"If the remote configuration is enabled, it will also go into standby mode "
"when disabling it."
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:953
+#: ../../godmode/massive/massive_edit_agents.php:970
#: ../../include/class/EventSound.class.php:344
msgid "Active"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:969
+#: ../../godmode/massive/massive_edit_agents.php:986
msgid "Delete available remote configurations"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:1025
+#: ../../godmode/massive/massive_edit_agents.php:1042
msgid "Without status"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:1052
+#: ../../godmode/massive/massive_edit_agents.php:1069
#: ../../include/lib/Dashboard/Widgets/maps_status.php:371
msgid "Bad"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:1072
+#: ../../godmode/massive/massive_edit_agents.php:1089
msgid "Ignore new GIS data:"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:1110
+#: ../../godmode/massive/massive_edit_agents.php:1127
msgid "The agent still runs but the alerts and events will be stop"
msgstr ""
-#: ../../godmode/massive/massive_edit_agents.php:1130
+#: ../../godmode/massive/massive_edit_agents.php:1146
#, php-format
msgid ""
"This mode allow %s to disable all modules of this agent while the selected "
@@ -37607,15 +37846,11 @@ msgid "Error updating the modules (maybe there was no field to update)"
msgstr ""
#: ../../godmode/massive/massive_edit_modules.php:506
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:419
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:423
msgid "Filter agents"
msgstr ""
-#: ../../godmode/massive/massive_edit_modules.php:811
-msgid "SMNP community"
-msgstr ""
-
-#: ../../godmode/consoles/consoles.php:59
+#: ../../godmode/consoles/consoles.php:67
msgid ""
"If you want to have your consoles registered, you must define them by "
"editing config.php in each individual console and wait for cron to run in "
@@ -37653,7 +37888,7 @@ msgid "Hide"
msgstr ""
#: ../../godmode/alerts/alert_actions.php:79
-#: ../../include/functions_reporting.php:3226
+#: ../../include/functions_reporting.php:3235
msgid "Alert actions"
msgstr ""
@@ -37708,12 +37943,12 @@ msgid ""
"no other action is executed"
msgstr ""
-#: ../../godmode/alerts/alert_list.list.php:1061
+#: ../../godmode/alerts/alert_list.list.php:1060
msgid "View alert advanced details"
msgstr ""
-#: ../../godmode/alerts/alert_list.list.php:1081
-#: ../../include/functions_reporting_html.php:3441
+#: ../../godmode/alerts/alert_list.list.php:1080
+#: ../../include/functions_reporting_html.php:3469
msgid "No alerts defined"
msgstr ""
@@ -37753,12 +37988,12 @@ msgid "Alert commands"
msgstr ""
#: ../../godmode/alerts/alert_commands.php:657
-#: ../../include/functions_alerts.php:2659
+#: ../../include/functions_alerts.php:2660
msgid "No name specified"
msgstr ""
#: ../../godmode/alerts/alert_commands.php:661
-#: ../../include/functions_alerts.php:2654
+#: ../../include/functions_alerts.php:2655
msgid "No command specified"
msgstr ""
@@ -37770,20 +38005,20 @@ msgstr ""
msgid "No alert commands configured"
msgstr ""
-#: ../../godmode/alerts/alert_templates.php:273
+#: ../../godmode/alerts/alert_templates.php:277
#, php-format
msgid ""
"This node is configured with centralized mode. All alert templates "
"information is read only. Go to %s to manage it."
msgstr ""
-#: ../../godmode/alerts/alert_templates.php:438
+#: ../../godmode/alerts/alert_templates.php:442
msgid ""
"You cannot edit this alert template, You don't have the permission to edit "
"All group."
msgstr ""
-#: ../../godmode/alerts/alert_templates.php:505
+#: ../../godmode/alerts/alert_templates.php:509
msgid "No alert templates defined"
msgstr ""
@@ -37800,6 +38035,12 @@ msgstr ""
msgid "Create Command"
msgstr ""
+#: ../../godmode/alerts/configure_alert_action.php:287
+msgid ""
+"An alert action is executed only once within this time interval, regardless "
+"of how many times the alert is triggered."
+msgstr ""
+
#: ../../godmode/alerts/configure_alert_action.php:320
msgid "Triggering"
msgstr ""
@@ -37827,7 +38068,7 @@ msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:104
#: ../../godmode/alerts/configure_alert_template.php:135
#: ../../godmode/alerts/configure_alert_template.php:174
-#: ../../include/functions_menu.php:569
+#: ../../include/functions_menu.php:571
msgid "Configure alert template"
msgstr ""
@@ -37852,6 +38093,12 @@ msgstr ""
msgid "No template name specified"
msgstr ""
+#: ../../godmode/alerts/configure_alert_template.php:691
+msgid ""
+"Reset the alert counter within the configured period if there is no manual "
+"recovery or validation of the alert."
+msgstr ""
+
#: ../../godmode/alerts/configure_alert_template.php:722
msgid ""
"Unless they're left blank, the fields from the action will override those "
@@ -37893,7 +38140,7 @@ msgid "No wizard"
msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:1266
-#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504
+#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1547
msgid "The alert would fire when the value matches "
msgstr ""
@@ -37903,17 +38150,17 @@ msgid "The alert would fire when the value doesn\\'t match %s"
msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:1268
-#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493
+#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1536
msgid "The alert would fire when the value is "
msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:1269
-#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498
+#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1541
msgid "The alert would fire when the value is not "
msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:1270
-#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516
+#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1559
msgid ""
"The alert would fire when the value is between and "
""
@@ -37936,12 +38183,12 @@ msgid "The alert would fire when the value is above "
msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:1274
-#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535
+#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1578
msgid "The alert would fire when the module is in warning status"
msgstr ""
#: ../../godmode/alerts/configure_alert_template.php:1275
-#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540
+#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1583
msgid "The alert would fire when the module is in critical status"
msgstr ""
@@ -37988,12 +38235,12 @@ msgstr ""
msgid "Stand by"
msgstr ""
-#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507
+#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1550
msgid ""
"The alert would fire when the value doesn't match "
msgstr ""
-#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519
+#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1562
msgid ""
"The alert would fire when the value is not between "
"and "
@@ -38074,6 +38321,10 @@ msgstr ""
msgid "Create Template"
msgstr ""
+#: ../../godmode/alerts/alert_list.builder.php:169
+msgid "It takes precedence over the action's threshold configuration."
+msgstr ""
+
#: ../../godmode/alerts/alert_list.builder.php:199
msgid "Finish and view cluster"
msgstr ""
@@ -38107,12 +38358,12 @@ msgid "Licence"
msgstr ""
#: ../../godmode/setup/license.php:158
-#: ../../include/class/Diagnostics.class.php:1175
+#: ../../include/class/Diagnostics.class.php:1179
msgid "Customer key"
msgstr ""
#: ../../godmode/setup/license.php:183
-#: ../../include/class/Diagnostics.class.php:1183
+#: ../../include/class/Diagnostics.class.php:1187
msgid "Platform Limit"
msgstr ""
@@ -38128,22 +38379,22 @@ msgid "modules"
msgstr ""
#: ../../godmode/setup/license.php:196
-#: ../../include/class/Diagnostics.class.php:1187
+#: ../../include/class/Diagnostics.class.php:1191
msgid "Current Platform Count"
msgstr ""
#: ../../godmode/setup/license.php:209
-#: ../../include/class/Diagnostics.class.php:1191
+#: ../../include/class/Diagnostics.class.php:1195
msgid "Current Platform Count (enabled: items)"
msgstr ""
#: ../../godmode/setup/license.php:222
-#: ../../include/class/Diagnostics.class.php:1195
+#: ../../include/class/Diagnostics.class.php:1199
msgid "Current Platform Count (disabled: items)"
msgstr ""
#: ../../godmode/setup/license.php:235
-#: ../../include/class/Diagnostics.class.php:1199
+#: ../../include/class/Diagnostics.class.php:1203
msgid "License Mode"
msgstr ""
@@ -38152,7 +38403,7 @@ msgid "NMS"
msgstr ""
#: ../../godmode/setup/license.php:274
-#: ../../include/class/Diagnostics.class.php:1211
+#: ../../include/class/Diagnostics.class.php:1215
msgid "Licensed to"
msgstr ""
@@ -38202,40 +38453,44 @@ msgstr ""
msgid "Site news management"
msgstr ""
-#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105
+#: ../../godmode/setup/news.php:173 ../../godmode/setup/links.php:105
msgid "Name error"
msgstr ""
-#: ../../godmode/setup/news.php:234
+#: ../../godmode/setup/news.php:238
msgid "Modal screen"
msgstr ""
-#: ../../godmode/setup/news.php:247
+#: ../../godmode/setup/news.php:251
msgid "Expire"
msgstr ""
-#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353
+#: ../../godmode/setup/news.php:264 ../../godmode/setup/news.php:357
msgid "Expiration"
msgstr ""
-#: ../../godmode/setup/news.php:344
+#: ../../godmode/setup/news.php:348
msgid "There are no defined news"
msgstr ""
-#: ../../godmode/setup/news.php:351
-#: ../../operation/agentes/estado_generalagente.php:749
+#: ../../godmode/setup/news.php:355
+#: ../../operation/agentes/estado_generalagente.php:718
msgid "Author"
msgstr ""
-#: ../../godmode/setup/news.php:371
+#: ../../godmode/setup/news.php:364 ../../general/logon_ok.php:216
+msgid "Welcome to Pandora FMS Console"
+msgstr ""
+
+#: ../../godmode/setup/news.php:370
msgid "Modal"
msgstr ""
-#: ../../godmode/setup/news.php:373
+#: ../../godmode/setup/news.php:372
msgid "Board"
msgstr ""
-#: ../../godmode/setup/news.php:384
+#: ../../godmode/setup/news.php:383
msgid "Expired"
msgstr ""
@@ -38264,7 +38519,7 @@ msgid "Pandora Websocket Engine"
msgstr ""
#: ../../godmode/setup/setup.php:344
-#: ../../include/class/TipsWindow.class.php:493
+#: ../../include/class/TipsWindow.class.php:505
msgid "Create tip"
msgstr ""
@@ -38281,7 +38536,7 @@ msgid "Correct update the setup options"
msgstr ""
#: ../../godmode/setup/setup_ehorus.php:67
-#: ../../include/functions_config.php:1812
+#: ../../include/functions_config.php:1824
msgid "Enable eHorus"
msgstr ""
@@ -38302,6 +38557,17 @@ msgstr ""
msgid "Request timeout"
msgstr ""
+#: ../../godmode/setup/setup_ehorus.php:135
+#: ../../godmode/setup/setup_integria.php:665
+msgid "Connection its OK"
+msgstr ""
+
+#: ../../godmode/setup/setup_ehorus.php:139
+#: ../../godmode/setup/setup_websocket_engine.php:89
+#: ../../godmode/setup/setup_integria.php:652
+msgid "Test connection"
+msgstr ""
+
#: ../../godmode/setup/setup_ehorus.php:175
msgid "Remote Management System"
msgstr ""
@@ -38343,24 +38609,24 @@ msgstr ""
#: ../../godmode/setup/setup_ehorus.php:297
#: ../../godmode/setup/setup_integria.php:825
#: ../../godmode/setup/setup_integria.php:906
-#: ../../operation/users/user_edit.php:1420
-#: ../../operation/users/user_edit.php:1498
+#: ../../operation/users/user_edit.php:1417
+#: ../../operation/users/user_edit.php:1495
msgid "Empty user or password"
msgstr ""
#: ../../godmode/setup/setup_ehorus.php:298
#: ../../godmode/setup/setup_integria.php:826
#: ../../godmode/setup/setup_integria.php:907
-#: ../../operation/users/user_edit.php:1421
-#: ../../operation/users/user_edit.php:1499
+#: ../../operation/users/user_edit.php:1418
+#: ../../operation/users/user_edit.php:1496
msgid "User not found"
msgstr ""
#: ../../godmode/setup/setup_ehorus.php:299
#: ../../godmode/setup/setup_integria.php:827
#: ../../godmode/setup/setup_integria.php:908
-#: ../../operation/users/user_edit.php:1422
-#: ../../operation/users/user_edit.php:1500
+#: ../../operation/users/user_edit.php:1419
+#: ../../operation/users/user_edit.php:1497
msgid "Invalid password"
msgstr ""
@@ -38370,55 +38636,53 @@ msgid "Data storage path"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:50
-#: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1540
-#: ../../include/functions_config.php:1583
+#: ../../include/functions_config.php:1595
msgid "Daemon interval"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:55
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../include/functions_config.php:1544
-#: ../../include/functions_config.php:1587
+#: ../../godmode/setup/setup_netflow.php:51
+#: ../../include/functions_config.php:1556
+#: ../../include/functions_config.php:1599
msgid "Daemon binary path"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:60
-#: ../../godmode/setup/setup_netflow.php:60
-#: ../../include/functions_config.php:1548
-#: ../../include/functions_config.php:1591
+#: ../../godmode/setup/setup_netflow.php:56
+#: ../../include/functions_config.php:1560
+#: ../../include/functions_config.php:1603
msgid "Nfdump binary path"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:65
-#: ../../godmode/setup/setup_netflow.php:65
-#: ../../include/functions_config.php:1552
-#: ../../include/functions_config.php:1595
+#: ../../godmode/setup/setup_netflow.php:61
+#: ../../include/functions_config.php:1564
+#: ../../include/functions_config.php:1607
msgid "Nfexpire binary path"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:70
-#: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1556
-#: ../../include/functions_config.php:1599
+#: ../../godmode/setup/setup_netflow.php:66
+#: ../../include/functions_config.php:1568
+#: ../../include/functions_config.php:1611
msgid "Maximum chart resolution"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:80
-#: ../../include/functions_config.php:1607
+#: ../../include/functions_config.php:1619
msgid "Sflow max lifetime"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
-#: ../../operation/netflow/nf_live_view.php:339
+#: ../../godmode/setup/setup_netflow.php:80
+#: ../../operation/netflow/nf_live_view.php:348
msgid "IP address resolution can take a lot of time"
msgstr ""
#: ../../godmode/setup/setup_sflow.php:86
-#: ../../godmode/setup/setup_netflow.php:86
-#: ../../include/functions_config.php:1568
-#: ../../include/functions_config.php:1611
+#: ../../godmode/setup/setup_netflow.php:82
+#: ../../include/functions_config.php:1580
+#: ../../include/functions_config.php:1623
msgid "Name resolution for IP address"
msgstr ""
@@ -38435,7 +38699,7 @@ msgid "Bind port"
msgstr ""
#: ../../godmode/setup/setup_websocket_engine.php:71
-#: ../../include/functions_config.php:1964
+#: ../../include/functions_config.php:1976
msgid "WebSocket proxy url"
msgstr ""
@@ -38446,11 +38710,11 @@ msgid ""
"only. Go to %s to manage them."
msgstr ""
-#: ../../godmode/setup/os.list.php:163
+#: ../../godmode/setup/os.list.php:162
msgid "There are no defined operating systems"
msgstr ""
-#: ../../godmode/setup/os.list.php:170
+#: ../../godmode/setup/os.list.php:169
msgid "Create OS"
msgstr ""
@@ -38536,9 +38800,9 @@ msgstr ""
#: ../../godmode/setup/gis_step_2.php:254
#: ../../godmode/reporting/visual_console_builder.elements.php:199
-#: ../../include/functions_visual_map_editor.php:1385
-#: ../../include/functions_visual_map.php:4200
-#: ../../operation/visual_console/view.php:316
+#: ../../include/functions_visual_map_editor.php:1443
+#: ../../include/functions_visual_map.php:4209
+#: ../../operation/visual_console/view.php:318
msgid "Static Image"
msgstr ""
@@ -38587,24 +38851,24 @@ msgid "Corners of the area of the image"
msgstr ""
#: ../../godmode/setup/gis_step_2.php:364
-#: ../../include/rest-api/models/VisualConsole/Item.php:1961
+#: ../../include/rest-api/models/VisualConsole/Item.php:1964
msgid "Left"
msgstr ""
#: ../../godmode/setup/gis_step_2.php:371
-#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../include/rest-api/models/VisualConsole/Item.php:1961
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
msgid "Bottom"
msgstr ""
#: ../../godmode/setup/gis_step_2.php:378
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../include/rest-api/models/VisualConsole/Item.php:1963
msgid "Right"
msgstr ""
#: ../../godmode/setup/gis_step_2.php:385
-#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../include/rest-api/models/VisualConsole/Item.php:1962
msgid "Top"
msgstr ""
@@ -38699,7 +38963,7 @@ msgid "Integria IMS API is not reachable"
msgstr ""
#: ../../godmode/setup/setup_integria.php:262
-#: ../../include/functions_config.php:1850
+#: ../../include/functions_config.php:1862
msgid "Enable Integria IMS"
msgstr ""
@@ -38770,272 +39034,272 @@ msgstr ""
msgid "Unsucessful save the snmp translation."
msgstr ""
-#: ../../godmode/setup/setup_netflow.php:80
-#: ../../include/functions_config.php:1564
+#: ../../godmode/setup/setup_netflow.php:76
+#: ../../include/functions_config.php:1576
msgid "Netflow max lifetime"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:108
+#: ../../godmode/setup/setup_visuals.php:112
msgid "Click to display lateral menus"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:120
+#: ../../godmode/setup/setup_visuals.php:124
msgid "Paginated module view"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:152
-#: ../../include/functions_config.php:1347
+#: ../../godmode/setup/setup_visuals.php:156
+#: ../../include/functions_config.php:1363
msgid "Service label font size"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:156
+#: ../../godmode/setup/setup_visuals.php:160
msgid "Space between items in Service maps"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:235
+#: ../../godmode/setup/setup_visuals.php:239
msgid "Colors"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:236
+#: ../../godmode/setup/setup_visuals.php:240
msgid "Faces"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:237
+#: ../../godmode/setup/setup_visuals.php:241
msgid "Colors and text"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:339
-#: ../../include/functions_config.php:1038
+#: ../../godmode/setup/setup_visuals.php:343
+#: ../../include/functions_config.php:1050
msgid "Style template"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:357
-#: ../../include/functions_config.php:1058
+#: ../../godmode/setup/setup_visuals.php:361
+#: ../../include/functions_config.php:1070
msgid "Status icon set"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:602
-#: ../../include/functions_config.php:1094
+#: ../../godmode/setup/setup_visuals.php:606
+#: ../../include/functions_config.php:1106
msgid "Custom documentation logo"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:642
-#: ../../include/functions_config.php:1098
+#: ../../godmode/setup/setup_visuals.php:646
+#: ../../include/functions_config.php:1110
msgid "Custom support logo"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:680
-#: ../../include/functions_config.php:1102
-#: ../../include/functions_config.php:1106
+#: ../../godmode/setup/setup_visuals.php:684
+#: ../../include/functions_config.php:1114
+#: ../../include/functions_config.php:1118
msgid "Custom networkmap center logo"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:720
+#: ../../godmode/setup/setup_visuals.php:724
msgid "Custom mobile console icon"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:814
+#: ../../godmode/setup/setup_visuals.php:818
msgid "Disable logo in graphs"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:832
+#: ../../godmode/setup/setup_visuals.php:836
msgid "Disable helps"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:842
-#: ../../include/functions_config.php:1286
+#: ../../godmode/setup/setup_visuals.php:846
+#: ../../include/functions_config.php:1302
msgid "Fixed header"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:854
+#: ../../godmode/setup/setup_visuals.php:858
msgid "Automatically hide submenu"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:901
-#: ../../include/functions_config.php:1250
+#: ../../godmode/setup/setup_visuals.php:905
+#: ../../include/functions_config.php:1266
msgid "GIS Labels"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:911
-#: ../../include/functions_config.php:1258
+#: ../../godmode/setup/setup_visuals.php:915
+#: ../../include/functions_config.php:1274
msgid "Default icon in GIS"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:920
+#: ../../godmode/setup/setup_visuals.php:924
msgid "Agent icon group"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:970
+#: ../../godmode/setup/setup_visuals.php:974
msgid "Graphs font size"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:989
+#: ../../godmode/setup/setup_visuals.php:993
msgid "Show unit along with value in reports"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1000
-#: ../../include/functions_config.php:1226
-#: ../../include/functions_config.php:1230
+#: ../../godmode/setup/setup_visuals.php:1004
+#: ../../include/functions_config.php:1242
+#: ../../include/functions_config.php:1246
msgid "Agent size text"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1007
-#: ../../godmode/setup/setup_visuals.php:1029
+#: ../../godmode/setup/setup_visuals.php:1011
+#: ../../godmode/setup/setup_visuals.php:1033
msgid "Small"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1022
-#: ../../include/functions_config.php:1234
+#: ../../godmode/setup/setup_visuals.php:1026
+#: ../../include/functions_config.php:1250
msgid "Module size text"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1046
-#: ../../include/functions_config.php:1238
-#: ../../include/functions_config.php:1242
+#: ../../godmode/setup/setup_visuals.php:1050
+#: ../../include/functions_config.php:1254
+#: ../../include/functions_config.php:1258
msgid "Description size text"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1057
-#: ../../include/functions_config.php:1246
+#: ../../godmode/setup/setup_visuals.php:1061
+#: ../../include/functions_config.php:1262
msgid "Item title size text"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1109
+#: ../../godmode/setup/setup_visuals.php:1113
msgid "Graph color #"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1123
+#: ../../godmode/setup/setup_visuals.php:1127
msgid "Data precision"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1141
+#: ../../godmode/setup/setup_visuals.php:1145
msgid "Data precision in graphs"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1172
-#: ../../include/functions_config.php:1314
+#: ../../godmode/setup/setup_visuals.php:1176
+#: ../../include/functions_config.php:1330
msgid "Default line thickness for the Custom Graph."
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1299
+#: ../../godmode/setup/setup_visuals.php:1303
msgid "Zoom graphs"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1328
+#: ../../godmode/setup/setup_visuals.php:1332
msgid "Classic view"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1329
+#: ../../godmode/setup/setup_visuals.php:1333
msgid "View of favorites"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1384
+#: ../../godmode/setup/setup_visuals.php:1388
msgid "Type of view of visual consoles"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1398
+#: ../../godmode/setup/setup_visuals.php:1402
msgid "Number of favorite visual consoles to show in the menu"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1403
-#: ../../include/functions_config.php:1214
+#: ../../godmode/setup/setup_visuals.php:1407
+#: ../../include/functions_config.php:1226
msgid "Default line thickness for the Visual Console"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1437
+#: ../../godmode/setup/setup_visuals.php:1452
msgid "Number of favorite services to show in the menu"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1535
+#: ../../godmode/setup/setup_visuals.php:1550
msgid ""
"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1724
-#: ../../include/functions_config.php:1298
+#: ../../godmode/setup/setup_visuals.php:1739
+#: ../../include/functions_config.php:1314
msgid "Networkmap max width"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1747
+#: ../../godmode/setup/setup_visuals.php:1762
msgid "Show empty groups in group view"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1773
-#: ../../include/functions_config.php:1520
+#: ../../godmode/setup/setup_visuals.php:1788
+#: ../../include/functions_config.php:1536
msgid "Decimal separator"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1788
+#: ../../godmode/setup/setup_visuals.php:1803
msgid "Visible time of successful notifiations"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1816
+#: ../../godmode/setup/setup_visuals.php:1831
msgid "Custom values post process"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1856
-#: ../../godmode/setup/setup_visuals.php:2023
+#: ../../godmode/setup/setup_visuals.php:1871
+#: ../../godmode/setup/setup_visuals.php:2038
msgid "Delete custom values"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1906
+#: ../../godmode/setup/setup_visuals.php:1921
msgid "Interval values"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1945
+#: ../../godmode/setup/setup_visuals.php:1960
msgid "Delete interval values"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:1988
+#: ../../godmode/setup/setup_visuals.php:2003
msgid "Module units"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2084
+#: ../../godmode/setup/setup_visuals.php:2099
msgid "Behaviour configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2089
+#: ../../godmode/setup/setup_visuals.php:2104
msgid "GIS configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2094
+#: ../../godmode/setup/setup_visuals.php:2109
msgid "Style configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2099
+#: ../../godmode/setup/setup_visuals.php:2114
msgid "Charts configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2104
+#: ../../godmode/setup/setup_visuals.php:2119
msgid "Font and Text configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2109
+#: ../../godmode/setup/setup_visuals.php:2124
msgid "Visual consoles configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2114
+#: ../../godmode/setup/setup_visuals.php:2129
msgid "Reports configuration "
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2119
+#: ../../godmode/setup/setup_visuals.php:2134
msgid "Services configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2124
+#: ../../godmode/setup/setup_visuals.php:2139
msgid "Other configuration"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2405
+#: ../../godmode/setup/setup_visuals.php:2425
msgid "Mobile console logo preview"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2441
+#: ../../godmode/setup/setup_visuals.php:2461
msgid "Gis icons preview"
msgstr ""
-#: ../../godmode/setup/setup_visuals.php:2507
+#: ../../godmode/setup/setup_visuals.php:2527
msgid "Status set preview"
msgstr ""
@@ -39118,8 +39382,12 @@ msgstr ""
msgid "General network path"
msgstr ""
+#: ../../godmode/setup/setup_general.php:434
+msgid "Server timezone setup"
+msgstr ""
+
#: ../../godmode/setup/setup_general.php:515
-#: ../../include/functions_config.php:423
+#: ../../include/functions_config.php:431
msgid "Inventory changes blacklist"
msgstr ""
@@ -39182,11 +39450,11 @@ msgstr ""
msgid "Log location"
msgstr ""
-#: ../../godmode/setup/setup_general.php:710
+#: ../../godmode/setup/setup_general.php:736
msgid "General options"
msgstr ""
-#: ../../godmode/setup/setup_general.php:729
+#: ../../godmode/setup/setup_general.php:755
msgid ""
"Please notice that some providers like Gmail or Office365 need to setup/"
"enable manually external connections using SMTP and you need to use STARTTLS "
@@ -39196,29 +39464,29 @@ msgid ""
"these settings will ignore this console setup."
msgstr ""
-#: ../../godmode/setup/setup_general.php:744
+#: ../../godmode/setup/setup_general.php:770
msgid "From address"
msgstr ""
-#: ../../godmode/setup/setup_general.php:768
+#: ../../godmode/setup/setup_general.php:794
msgid "SMTP Server"
msgstr ""
-#: ../../godmode/setup/setup_general.php:780
+#: ../../godmode/setup/setup_general.php:806
msgid "SMTP Port"
msgstr ""
-#: ../../godmode/setup/setup_general.php:847
+#: ../../godmode/setup/setup_general.php:873
msgid "Email test"
msgstr ""
-#: ../../godmode/setup/setup_general.php:896
-#: ../../include/class/TipsWindow.class.php:767
-#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833
+#: ../../godmode/setup/setup_general.php:922
+#: ../../include/class/TipsWindow.class.php:787
+#: ../../include/class/TipsWindow.class.php:954 ../../general/header.php:833
msgid "Send"
msgstr ""
-#: ../../godmode/setup/setup_general.php:910
+#: ../../godmode/setup/setup_general.php:936
msgid "Check mail configuration"
msgstr ""
@@ -39231,34 +39499,34 @@ msgid "not executed"
msgstr ""
#: ../../godmode/setup/performance.php:278
-#: ../../include/functions_config.php:834
+#: ../../include/functions_config.php:846
msgid "Max. days before delete traps"
msgstr ""
#: ../../godmode/setup/performance.php:308
#: ../../godmode/setup/performance.php:518
-#: ../../include/functions_config.php:838
+#: ../../include/functions_config.php:850
msgid "Max. days before delete string data"
msgstr ""
#: ../../godmode/setup/performance.php:323
-#: ../../include/functions_config.php:846
+#: ../../include/functions_config.php:858
msgid "Max. days before delete GIS data"
msgstr ""
#: ../../godmode/setup/performance.php:353
#: ../../godmode/setup/performance.php:482
-#: ../../include/functions_config.php:862
+#: ../../include/functions_config.php:874
msgid "Max. days before compact data"
msgstr ""
#: ../../godmode/setup/performance.php:368
-#: ../../include/functions_config.php:854
+#: ../../include/functions_config.php:866
msgid "Max. days before delete unknown modules"
msgstr ""
#: ../../godmode/setup/performance.php:383
-#: ../../include/functions_config.php:858
+#: ../../include/functions_config.php:870
msgid "Max. days before delete not initialized modules"
msgstr ""
@@ -39267,28 +39535,28 @@ msgid "Max. days before delete autodisabled agents"
msgstr ""
#: ../../godmode/setup/performance.php:413
-#: ../../include/functions_config.php:914
+#: ../../include/functions_config.php:926
msgid "Retention period of past special days"
msgstr ""
#: ../../godmode/setup/performance.php:494
#: ../../godmode/setup/performance.php:615
-#: ../../include/functions_config.php:878
+#: ../../include/functions_config.php:890
msgid "Compact interpolation in hours (1 Fine-20 bad)"
msgstr ""
#: ../../godmode/setup/performance.php:537
-#: ../../include/functions_config.php:928
+#: ../../include/functions_config.php:940
msgid "Max. days before delete old messages"
msgstr ""
#: ../../godmode/setup/performance.php:549
-#: ../../include/functions_config.php:932
+#: ../../include/functions_config.php:944
msgid "Max. days before delete old network matrix data"
msgstr ""
#: ../../godmode/setup/performance.php:565
-#: ../../include/functions_config.php:923
+#: ../../include/functions_config.php:935
msgid "Max. days before delete inventory data"
msgstr ""
@@ -39309,22 +39577,22 @@ msgid "2 weeks"
msgstr ""
#: ../../godmode/setup/performance.php:652
-#: ../../include/functions_config.php:886
+#: ../../include/functions_config.php:898
msgid "Use realtime statistics"
msgstr ""
#: ../../godmode/setup/performance.php:662
-#: ../../include/functions_config.php:890
+#: ../../include/functions_config.php:902
msgid "Batch statistics period (secs)"
msgstr ""
#: ../../godmode/setup/performance.php:685
-#: ../../include/functions_config.php:898
+#: ../../include/functions_config.php:910
msgid "Max. recommended number of files in attachment directory"
msgstr ""
#: ../../godmode/setup/performance.php:697
-#: ../../include/functions_config.php:902
+#: ../../include/functions_config.php:914
msgid "Delete not init modules"
msgstr ""
@@ -39333,12 +39601,12 @@ msgid "Big Operation Step to purge old data"
msgstr ""
#: ../../godmode/setup/performance.php:722
-#: ../../include/functions_config.php:910
+#: ../../include/functions_config.php:922
msgid "Small Operation Step to purge old data"
msgstr ""
#: ../../godmode/setup/performance.php:737
-#: ../../include/functions_config.php:936
+#: ../../include/functions_config.php:948
msgid "Graph container - Max. Items"
msgstr ""
@@ -39377,7 +39645,7 @@ msgstr ""
#: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404
#: ../../include/functions_netflow.php:2097
-#: ../../include/functions_reporting.php:4063
+#: ../../include/functions_reporting.php:4072
msgid "Others"
msgstr ""
@@ -39386,7 +39654,7 @@ msgid "Agent SNMP Interface Wizard defaults"
msgstr ""
#: ../../godmode/setup/file_manager.php:83
-#: ../../include/functions_filemanager.php:630
+#: ../../include/functions_filemanager.php:645
#, php-format
msgid "Index of %s"
msgstr ""
@@ -39426,8 +39694,8 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.data.php:182
#: ../../godmode/reporting/visual_console_builder.elements.php:167
#: ../../include/functions_visual_map_editor.php:55
-#: ../../include/functions_visual_map_editor.php:632
-#: ../../include/lib/Dashboard/Widget.php:575
+#: ../../include/functions_visual_map_editor.php:626
+#: ../../include/lib/Dashboard/Widget.php:576
msgid "Background"
msgstr ""
@@ -39436,10 +39704,10 @@ msgid "Background image"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.data.php:227
-#: ../../include/functions_visual_map_editor.php:347
+#: ../../include/functions_visual_map_editor.php:343
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:247
msgid "Background color"
msgstr ""
@@ -39488,122 +39756,122 @@ msgstr ""
msgid "Problems with move file to target."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:303
+#: ../../godmode/reporting/visual_console_builder.php:304
msgid "Successfully update."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:322
+#: ../../godmode/reporting/visual_console_builder.php:323
msgid "Could not be update."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:342
+#: ../../godmode/reporting/visual_console_builder.php:343
msgid "Successfully created."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:361
+#: ../../godmode/reporting/visual_console_builder.php:362
msgid "Could not be created."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:409
+#: ../../godmode/reporting/visual_console_builder.php:410
msgid "Successfully multiple delete."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:410
+#: ../../godmode/reporting/visual_console_builder.php:411
msgid "Unsuccessful multiple delete."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:530
+#: ../../godmode/reporting/visual_console_builder.php:531
msgid "Successfully delete."
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:801
-#: ../../operation/visual_console/view.php:130
+#: ../../godmode/reporting/visual_console_builder.php:809
+#: ../../operation/visual_console/view.php:132
#: ../../operation/visual_console/legacy_view.php:117
msgid "Visual consoles list"
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:810
-#: ../../operation/visual_console/view.php:164
+#: ../../godmode/reporting/visual_console_builder.php:818
+#: ../../operation/visual_console/view.php:166
#: ../../operation/visual_console/legacy_view.php:133
msgid "Show link to public Visual Console"
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:814
+#: ../../godmode/reporting/visual_console_builder.php:822
#: ../../godmode/reporting/graph_builder.php:304
-#: ../../godmode/reporting/reporting_builder.php:3634
-#: ../../operation/visual_console/view.php:174
+#: ../../godmode/reporting/reporting_builder.php:3651
+#: ../../operation/visual_console/view.php:176
#: ../../operation/visual_console/legacy_view.php:143
#: ../../operation/reporting/reporting_viewer.php:138
#: ../../operation/reporting/graph_viewer.php:193
msgid "Main data"
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:818
-#: ../../operation/visual_console/view.php:182
+#: ../../godmode/reporting/visual_console_builder.php:826
+#: ../../operation/visual_console/view.php:184
#: ../../operation/visual_console/legacy_view.php:151
msgid "List elements"
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:824
-#: ../../operation/visual_console/view.php:192
+#: ../../godmode/reporting/visual_console_builder.php:832
+#: ../../operation/visual_console/view.php:194
#: ../../operation/visual_console/legacy_view.php:161
msgid "Services wizard"
msgstr ""
-#: ../../godmode/reporting/visual_console_builder.php:849
+#: ../../godmode/reporting/visual_console_builder.php:857
msgid "New visual console"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:701
+#: ../../godmode/reporting/reporting_builder.list_items.php:702
msgid "Sort selected items from position: "
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:704
+#: ../../godmode/reporting/reporting_builder.list_items.php:705
msgid "Move before to"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:705
+#: ../../godmode/reporting/reporting_builder.list_items.php:706
msgid "Move after to"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:754
-#: ../../godmode/reporting/graph_builder.graph_editor.php:301
-#: ../../godmode/reporting/graph_builder.graph_editor.php:369
+#: ../../godmode/reporting/reporting_builder.list_items.php:755
+#: ../../godmode/reporting/graph_builder.graph_editor.php:214
+#: ../../godmode/reporting/graph_builder.graph_editor.php:284
msgid "Sort items"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:763
+#: ../../godmode/reporting/reporting_builder.list_items.php:764
msgid "Delete selected items from position: "
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:766
+#: ../../godmode/reporting/reporting_builder.list_items.php:767
msgid "Delete above to"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:767
+#: ../../godmode/reporting/reporting_builder.list_items.php:768
msgid "Delete below to"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:779
+#: ../../godmode/reporting/reporting_builder.list_items.php:780
msgid "Poisition"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:845
+#: ../../godmode/reporting/reporting_builder.list_items.php:846
msgid ""
"Are you sure to sort the items into the report?\\n. This action change the "
"sorting of items into data base."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:867
-#: ../../godmode/reporting/graph_builder.graph_editor.php:463
+#: ../../godmode/reporting/reporting_builder.list_items.php:868
+#: ../../godmode/reporting/graph_builder.graph_editor.php:478
msgid "Please select any item to order"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:897
+#: ../../godmode/reporting/reporting_builder.list_items.php:898
msgid "Are you sure to delete the items into the report?\\n"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.list_items.php:925
+#: ../../godmode/reporting/reporting_builder.list_items.php:926
msgid "Please select any item to delete"
msgstr ""
@@ -39652,7 +39920,7 @@ msgstr ""
#: ../../godmode/reporting/create_container.php:498
#: ../../godmode/reporting/create_container.php:686
#: ../../godmode/reporting/graph_builder.main.php:219
-#: ../../include/functions_visual_map_editor.php:554
+#: ../../include/functions_visual_map_editor.php:548
msgid "Type of graph"
msgstr ""
@@ -39660,8 +39928,8 @@ msgstr ""
#: ../../godmode/reporting/create_container.php:576
#: ../../godmode/reporting/create_container.php:691
#: ../../godmode/reporting/graph_builder.main.php:290
-#: ../../operation/agentes/stat_win.php:395
-#: ../../operation/agentes/interface_traffic_graph_win.php:240
+#: ../../operation/agentes/stat_win.php:403
+#: ../../operation/agentes/interface_traffic_graph_win.php:256
msgid "Show full scale graph (TIP)"
msgstr ""
@@ -39719,7 +39987,7 @@ msgid "Graph editor"
msgstr ""
#: ../../godmode/reporting/graph_builder.php:326
-#: ../../include/functions_events.php:4542
+#: ../../include/functions_events.php:4547
#: ../../operation/reporting/graph_viewer.php:223
msgid "View graph"
msgstr ""
@@ -39808,23 +40076,23 @@ msgid ""
"first %d will be displayed."
msgstr ""
-#: ../../godmode/reporting/graph_builder.graph_editor.php:315
+#: ../../godmode/reporting/graph_builder.graph_editor.php:228
msgid "Sort selected items"
msgstr ""
-#: ../../godmode/reporting/graph_builder.graph_editor.php:318
+#: ../../godmode/reporting/graph_builder.graph_editor.php:231
msgid "before to"
msgstr ""
-#: ../../godmode/reporting/graph_builder.graph_editor.php:319
+#: ../../godmode/reporting/graph_builder.graph_editor.php:232
msgid "after to"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1067
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1069
msgid "Not valid"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1075
+#: ../../godmode/reporting/reporting_builder.item_editor.php:1077
msgid ""
"This type of report brings a lot of data loading, it is recommended to use "
"it for scheduled reports and not for real-time view."
@@ -39851,241 +40119,241 @@ msgstr ""
msgid "Show modules"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2221
-#: ../../include/functions_ui.php:2494
-#: ../../operation/inventory/inventory.php:687
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2230
+#: ../../include/functions_ui.php:2537
+#: ../../operation/inventory/inventory.php:688
msgid "Last"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2300
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2309
msgid "Target server"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2618
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2627
msgid "Macros definition"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2629
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2638
msgid "Render definition"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2630
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2639
msgid "Please note that not all CSS styles are supported by PDF reports."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2728
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2737
msgid "Greater or equal (>=)"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2729
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2738
msgid "Less or equal (<=)"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2730
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2739
msgid "Less (<)"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2731
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2740
msgid "Greater (>)"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2732
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2741
msgid "Equal (=)"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2733
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2742
msgid "Not equal (!=)"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2858
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2867
msgid ""
"Show a summary chart with max, min and average number of total modules at "
"the end of the report and Checks."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2913
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2922
msgid "Checks in Warning status"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:2983
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2992
msgid "Only data"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3081
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3090
msgid "Include extended events"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3098
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3107
msgid "Show custom data"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3117
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3126
msgid "By agent "
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3127
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3136
msgid "By user validator "
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3137
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3146
msgid "By criticity "
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3147
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3156
msgid "Validated vs unvalidated "
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3162
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3171
msgid ""
"With the token enabled the query will affect the Historical Database, which "
"may mean a small drop in performance."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3347
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3356
msgid "Include filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3351
#: ../../godmode/reporting/reporting_builder.item_editor.php:3360
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3369
msgid "Free text string search on event description"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3356
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3365
msgid "Exclude filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3464
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3473
msgid ""
"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise "
"full value will be displayed (example: 20.742 bytes/sec)"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3502
-#: ../../include/functions_reporting.php:5163
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3511
+#: ../../include/functions_reporting.php:5172
msgid "Unassigned group"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3548
-#: ../../include/functions_reporting.php:5157
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3557
+#: ../../include/functions_reporting.php:5166
msgid "Unnasigned group"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3571
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3580
msgid "Select by group"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3659
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3668
msgid "Display options"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3717
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3726
msgid "Agent group filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3752
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3761
msgid "Agent OS filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3778
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3787
msgid "Agent custom field"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3800
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3809
msgid "Agent custom field filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3824
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3833
msgid "Agent status filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3862
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3871
msgid "Agent version filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3886
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3895
msgid "Agent has remote configuration"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3887
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3896
msgid "Filter agents by remote configuration enabled."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3898
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3907
msgid "Agent module filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3922
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3931
msgid "Module group filter"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:3952
+#: ../../godmode/reporting/reporting_builder.item_editor.php:3961
msgid "Search module name"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4105
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4620
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4114
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4629
msgid "Agent Failover"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4110
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4623
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4119
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4632
msgid "Module Failover"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4150
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4159
msgid "Please save the item before adding entries to this list."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4596
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4605
msgid "rate"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4644
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4653
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:4664
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4673
msgid "Please save the report to start adding items into the list."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4930
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4934
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4938
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4942
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4946
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4950
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4954
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4958
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4939
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4943
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4947
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4951
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4955
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4959
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4963
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4967
msgid "Item Editor Information"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4931
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4940
msgid "Please select a name."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4935
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4944
msgid "Please select an agent."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4943
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4952
msgid "Please insert a SQL query."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4947
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4956
msgid "Please insert a URL."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4951
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4960
msgid "Please checked a custom interval option."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4955
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4964
msgid "Please select a user."
msgstr ""
-#: ../../godmode/reporting/reporting_builder.item_editor.php:4959
+#: ../../godmode/reporting/reporting_builder.item_editor.php:4968
msgid "Please select a group."
msgstr ""
@@ -40106,26 +40374,26 @@ msgid "Percentile Bubble"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:244
-#: ../../mobile/operation/events.php:837
-#: ../../include/functions_visual_map_editor.php:1387
+#: ../../mobile/operation/events.php:866
+#: ../../include/functions_visual_map_editor.php:1445
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545
-#: ../../operation/visual_console/view.php:326
+#: ../../operation/visual_console/view.php:328
msgid "Module Graph"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:255
#: ../../include/functions_visual_map_editor.php:59
-#: ../../include/functions_visual_map_editor.php:1390
-#: ../../include/functions_visual_map.php:4180
-#: ../../operation/visual_console/view.php:346
+#: ../../include/functions_visual_map_editor.php:1448
+#: ../../include/functions_visual_map.php:4189
+#: ../../operation/visual_console/view.php:348
msgid "Event history graph"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:266
-#: ../../include/functions_visual_map_editor.php:1391
-#: ../../include/functions_visual_map.php:4205
-#: ../../include/rest-api/models/VisualConsole/Item.php:2132
-#: ../../operation/visual_console/view.php:351
+#: ../../include/functions_visual_map_editor.php:1449
+#: ../../include/functions_visual_map.php:4214
+#: ../../include/rest-api/models/VisualConsole/Item.php:2135
+#: ../../operation/visual_console/view.php:353
msgid "Simple Value"
msgstr ""
@@ -40143,52 +40411,54 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:332
#: ../../include/functions_visual_map_editor.php:71
-#: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/functions_visual_map.php:4160
-#: ../../operation/visual_console/view.php:376
+#: ../../include/functions_visual_map_editor.php:1454
+#: ../../include/functions_visual_map.php:4169
+#: ../../operation/visual_console/view.php:378
msgid "Box"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:354
-#: ../../include/functions_visual_map_editor.php:1403
-#: ../../operation/visual_console/view.php:391
+#: ../../include/functions_visual_map_editor.php:1461
+#: ../../operation/visual_console/view.php:393
msgid "Network link"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:376
#: ../../include/functions_visual_map_editor.php:73
-#: ../../include/functions_visual_map_editor.php:1398
-#: ../../include/functions_visual_map.php:4220
-#: ../../include/rest-api/models/VisualConsole/Item.php:2144
-#: ../../operation/visual_console/view.php:386
+#: ../../include/functions_visual_map_editor.php:1456
+#: ../../include/functions_visual_map.php:4229
+#: ../../include/rest-api/models/VisualConsole/Item.php:2147
+#: ../../operation/visual_console/view.php:388
msgid "Color cloud"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:387
-#: ../../include/rest-api/models/VisualConsole/Item.php:2156
-#: ../../operation/visual_console/view.php:331
+#: ../../include/rest-api/models/VisualConsole/Item.php:2159
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:172
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:653
+#: ../../operation/visual_console/view.php:333
msgid "Basic chart"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:398
-#: ../../include/rest-api/models/VisualConsole/Item.php:2152
-#: ../../operation/visual_console/view.php:396
+#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../operation/visual_console/view.php:398
msgid "Odometer"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:409
#: ../../include/functions_visual_map_editor.php:69
-#: ../../include/functions_visual_map_editor.php:1394
-#: ../../include/functions_visual_map.php:4170
-#: ../../include/rest-api/models/VisualConsole/Item.php:2104
+#: ../../include/functions_visual_map_editor.php:1452
+#: ../../include/functions_visual_map.php:4179
+#: ../../include/rest-api/models/VisualConsole/Item.php:2107
#: ../../include/lib/Dashboard/Widgets/clock.php:158
#: ../../include/lib/Dashboard/Widgets/clock.php:310
-#: ../../operation/visual_console/view.php:366
+#: ../../operation/visual_console/view.php:368
msgid "Clock"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.elements.php:438
-#: ../../godmode/reporting/visual_console_builder.elements.php:910
+#: ../../godmode/reporting/visual_console_builder.elements.php:895
msgid "Edit label"
msgstr ""
@@ -40229,14 +40499,14 @@ msgid "An error has ocurred"
msgstr ""
#: ../../godmode/reporting/reporting_builder.php:515
-#: ../../godmode/reporting/reporting_builder.php:3560
-#: ../../godmode/reporting/reporting_builder.php:3627
-#: ../../godmode/reporting/reporting_builder.php:3675
+#: ../../godmode/reporting/reporting_builder.php:3577
+#: ../../godmode/reporting/reporting_builder.php:3644
+#: ../../godmode/reporting/reporting_builder.php:3692
msgid "Reports list"
msgstr ""
#: ../../godmode/reporting/reporting_builder.php:531
-#: ../../godmode/reporting/reporting_builder.php:3571
+#: ../../godmode/reporting/reporting_builder.php:3588
#: ../../operation/menu.php:457
#: ../../operation/reporting/custom_reporting.php:23
msgid "Custom reporting"
@@ -40258,16 +40528,16 @@ msgstr ""
msgid "Create report"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.php:3659
+#: ../../godmode/reporting/reporting_builder.php:3676
#: ../../operation/reporting/reporting_viewer.php:172
msgid "View report"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.php:3678
+#: ../../godmode/reporting/reporting_builder.php:3695
msgid "Create Custom Report"
msgstr ""
-#: ../../godmode/reporting/reporting_builder.php:3750
+#: ../../godmode/reporting/reporting_builder.php:3767
msgid "Unsuccessful action
"
msgstr ""
@@ -40278,16 +40548,16 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:124
#: ../../include/functions_visual_map_editor.php:57
-#: ../../include/functions_visual_map_editor.php:1386
-#: ../../operation/visual_console/view.php:321
+#: ../../include/functions_visual_map_editor.php:1444
+#: ../../operation/visual_console/view.php:323
msgid "Percentile Item"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:125
-#: ../../mobile/operation/home.php:102
-#: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map.php:4165
-#: ../../include/rest-api/models/VisualConsole/Item.php:2100
+#: ../../mobile/operation/home.php:118
+#: ../../include/functions_visual_map_editor.php:391
+#: ../../include/functions_visual_map.php:4174
+#: ../../include/rest-api/models/VisualConsole/Item.php:2103
msgid "Module graph"
msgstr ""
@@ -40305,30 +40575,30 @@ msgid "Size (px)"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:232
-#: ../../include/functions_config.php:1066
+#: ../../include/functions_config.php:1078
msgid "Font size"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:260
-#: ../../include/functions_visual_map_editor.php:612
+#: ../../include/functions_visual_map_editor.php:606
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371
msgid "Process"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:263
-#: ../../include/functions_visual_map_editor.php:615
+#: ../../include/functions_visual_map_editor.php:609
msgid "Min value"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:264
#: ../../godmode/reporting/visual_console_builder.wizard.php:284
-#: ../../include/functions_visual_map_editor.php:616
-#: ../../include/functions_visual_map_editor.php:680
+#: ../../include/functions_visual_map_editor.php:610
+#: ../../include/functions_visual_map_editor.php:730
msgid "Max value"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:265
-#: ../../include/functions_visual_map_editor.php:617
+#: ../../include/functions_visual_map_editor.php:611
msgid "Avg value"
msgstr ""
@@ -40337,20 +40607,20 @@ msgid "Width (px)"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:300
-#: ../../include/functions_visual_map_editor.php:685
+#: ../../include/functions_visual_map_editor.php:735
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459
msgid "Bubble"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:319
-#: ../../include/functions_visual_map_editor.php:690
+#: ../../include/functions_visual_map_editor.php:740
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504
msgid "Percent"
msgstr ""
#: ../../godmode/reporting/visual_console_builder.wizard.php:345
-#: ../../include/functions_visual_map_editor.php:709
-#: ../../include/functions_visual_map_editor.php:727
+#: ../../include/functions_visual_map_editor.php:759
+#: ../../include/functions_visual_map_editor.php:777
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509
msgid "Value to show"
msgstr ""
@@ -40405,7 +40675,7 @@ msgstr ""
#: ../../godmode/reporting/visual_console_builder.editor.php:177
#: ../../godmode/reporting/visual_console_builder.editor.php:179
#: ../../godmode/reporting/visual_console_builder.editor.php:181
-#: ../../operation/snmpconsole/snmp_browser.php:225
+#: ../../operation/snmpconsole/snmp_browser.php:230
msgid "Action in progress"
msgstr ""
@@ -40537,88 +40807,88 @@ msgid ""
"event response"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:304
+#: ../../godmode/events/event_edit_filter.php:306
msgid "Save in group"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:304
+#: ../../godmode/events/event_edit_filter.php:306
msgid ""
"This group will be use to restrict the visibility of this filter with ACLs"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:502
+#: ../../godmode/events/event_edit_filter.php:504
msgid "Choose between the users who have validated an event. "
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:520
+#: ../../godmode/events/event_edit_filter.php:522
msgid "Owner."
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:535
-#: ../../operation/events/events.php:1783
+#: ../../godmode/events/event_edit_filter.php:537
+#: ../../operation/events/events.php:1837
msgid "All events"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:536
-#: ../../operation/events/events.php:1784
-#: ../../operation/events/events.php:2435
+#: ../../godmode/events/event_edit_filter.php:538
+#: ../../operation/events/events.php:1838
+#: ../../operation/events/events.php:2489
msgid "Group events"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:537
-#: ../../include/ajax/heatmap.ajax.php:80
+#: ../../godmode/events/event_edit_filter.php:539
+#: ../../include/ajax/heatmap.ajax.php:99
#: ../../include/lib/Dashboard/Widgets/heatmap.php:252
-#: ../../operation/events/events.php:1785
+#: ../../operation/events/events.php:1839
msgid "Group agents"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:538
-#: ../../operation/events/events.php:1786
+#: ../../godmode/events/event_edit_filter.php:540
+#: ../../operation/events/events.php:1840
msgid "Group extra id"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:763
-#: ../../operation/events/events.php:2033
+#: ../../godmode/events/event_edit_filter.php:765
+#: ../../operation/events/events.php:2087
msgid "Filter alert events"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:764
-#: ../../operation/events/events.php:2034
+#: ../../godmode/events/event_edit_filter.php:766
+#: ../../operation/events/events.php:2088
msgid "Only alert events"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:813
-#: ../../operation/events/events.php:1893
+#: ../../godmode/events/event_edit_filter.php:815
+#: ../../operation/events/events.php:1947
msgid "Extra ID"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:845
+#: ../../godmode/events/event_edit_filter.php:847
msgid "Custom data filter type"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:848
+#: ../../godmode/events/event_edit_filter.php:850
msgid "Filter custom data by name field"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:849
+#: ../../godmode/events/event_edit_filter.php:851
msgid "Filter custom data by value field"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:864
+#: ../../godmode/events/event_edit_filter.php:866
#: ../../godmode/events/custom_events.php:117
#: ../../include/functions_reporting_html.php:1074
#: ../../include/functions_reporting_html.php:1322
-#: ../../include/functions_reporting_html.php:2648
-#: ../../include/ajax/events.php:1798 ../../include/functions_events.php:221
+#: ../../include/functions_reporting_html.php:2667
+#: ../../include/ajax/events.php:1799 ../../include/functions_events.php:221
#: ../../include/functions_events.php:323
msgid "Custom data"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:881
+#: ../../godmode/events/event_edit_filter.php:883
msgid "Id souce event"
msgstr ""
-#: ../../godmode/events/event_edit_filter.php:911
+#: ../../godmode/events/event_edit_filter.php:913
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358
#: ../../operation/events/events.php:265
@@ -40691,7 +40961,7 @@ msgstr ""
#: ../../godmode/events/custom_events.php:116
#: ../../include/functions_events.php:307
-#: ../../include/functions_events.php:5103
+#: ../../include/functions_events.php:5108
msgid "Module custom ID"
msgstr ""
@@ -40780,136 +41050,136 @@ msgstr ""
msgid "Manual interval means that it will be executed only On-demand"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:814
-#: ../../include/class/CustomNetScan.class.php:551
-msgid "The minimum recomended interval for Recon Task is 5 minutes"
-msgstr ""
-
-#: ../../godmode/wizards/HostDevices.class.php:869
+#: ../../godmode/wizards/HostDevices.class.php:865
msgid "Use CSV file definition"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:870
+#: ../../godmode/wizards/HostDevices.class.php:866
msgid "Define targets using csv o network definition."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:888
+#: ../../godmode/wizards/HostDevices.class.php:884
msgid "Networks (csv)"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:889
+#: ../../godmode/wizards/HostDevices.class.php:885
msgid ""
"You can upload a CSV file. Each line must contain a network in IP/MASK "
"format. For instance: 192.168.1.1/32"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:901
+#: ../../godmode/wizards/HostDevices.class.php:897
msgid "Networks (current)"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:902
+#: ../../godmode/wizards/HostDevices.class.php:898
msgid "Please upload a new file to overwrite this content."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:918
+#: ../../godmode/wizards/HostDevices.class.php:914
msgid ""
"You can specify networks or fully qualified domain names of a specific host, "
"separated by commas, for example: 192.168.50.0/24,192.168.60.0/24, hostname."
"artica.es"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1068
+#: ../../godmode/wizards/HostDevices.class.php:1064
msgid "Filter by opened ports"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1070
+#: ../../godmode/wizards/HostDevices.class.php:1066
msgid ""
"Targets will be scanned if at least one of defined ports (comma separated) "
"is open."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1083
+#: ../../godmode/wizards/HostDevices.class.php:1079
msgid "Auto discover known hardware"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1085
+#: ../../godmode/wizards/HostDevices.class.php:1081
msgid ""
"Targets will be monitorized based on its Private Enterprise Number. "
"Requires SNMP."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1100
+#: ../../godmode/wizards/HostDevices.class.php:1096
msgid "Module Host Alive will be added to discovered agents by default."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1148
+#: ../../godmode/wizards/HostDevices.class.php:1144
#, php-format
msgid ""
"Configured networks could generate %d agents, your license only allows %d, "
"'review results' is mandatory."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1156
+#: ../../godmode/wizards/HostDevices.class.php:1152
#: ../../godmode/wizards/DiscoveryTaskList.class.php:917
msgid "Review results"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1158
+#: ../../godmode/wizards/HostDevices.class.php:1154
msgid "Targets must be validated by user before create agents."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1184
+#: ../../godmode/wizards/HostDevices.class.php:1180
msgid "Apply autoconfiguration rules"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1186
+#: ../../godmode/wizards/HostDevices.class.php:1182
msgid ""
"System is able to auto configure detected host & devices by applying your "
"defined configuration rules."
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1202
+#: ../../godmode/wizards/HostDevices.class.php:1198
msgid "SNMP enabled"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1243
+#: ../../godmode/wizards/HostDevices.class.php:1239
msgid "Skip non-enabled interfaces"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1262
+#: ../../godmode/wizards/HostDevices.class.php:1258
msgid "SNMP communities to try with"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1264
+#: ../../godmode/wizards/HostDevices.class.php:1260
msgid ""
"You can specify several values, separated by commas, for example: public,"
"mysecret,1234"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1391
+#: ../../godmode/wizards/HostDevices.class.php:1387
msgid "OS detection"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1403
+#: ../../godmode/wizards/HostDevices.class.php:1399
msgid "Name resolution"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1414
+#: ../../godmode/wizards/HostDevices.class.php:1410
msgid "Parent detection"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1425
+#: ../../godmode/wizards/HostDevices.class.php:1421
msgid "Parent recursion"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1436
+#: ../../godmode/wizards/HostDevices.class.php:1432
msgid "VLAN enabled"
msgstr ""
-#: ../../godmode/wizards/HostDevices.class.php:1447
+#: ../../godmode/wizards/HostDevices.class.php:1443
msgid "WMI enabled"
msgstr ""
+#: ../../godmode/wizards/HostDevices.class.php:1590
+#: ../../include/functions_html.php:648 ../../include/functions_html.php:6387
+msgid "Please select..."
+msgstr ""
+
#: ../../godmode/wizards/DiscoveryTaskList.class.php:259
msgid "Task successfully deleted"
msgstr ""
@@ -41215,6 +41485,7 @@ msgstr ""
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1865
#: ../../include/help/clippy/operation_agentes_ver_agente.php:40
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119
+#: ../../include/class/AgentDeployWizard.class.php:558
msgid "Done"
msgstr ""
@@ -41227,47 +41498,42 @@ msgstr ""
msgid "Searching"
msgstr ""
-#: ../../godmode/servers/servers.build_table.php:122
+#: ../../godmode/servers/servers.build_table.php:124
+#: ../../mobile/operation/server_status.php:269
+#: ../../mobile/operation/server_status.php:307
+#: ../../mobile/operation/server_status.php:337
msgid "Server has crashed."
msgstr ""
-#: ../../godmode/servers/servers.build_table.php:130
+#: ../../godmode/servers/servers.build_table.php:132
+#: ../../mobile/operation/server_status.php:275
+#: ../../mobile/operation/server_status.php:313
+#: ../../mobile/operation/server_status.php:343
msgid "Server is stopped."
msgstr ""
-#: ../../godmode/servers/servers.build_table.php:142
+#: ../../godmode/servers/servers.build_table.php:144
msgid "Exec server enabled"
msgstr ""
-#: ../../godmode/servers/servers.build_table.php:200
+#: ../../godmode/servers/servers.build_table.php:213
msgid "Manage Discovery tasks"
msgstr ""
-#: ../../godmode/servers/servers.build_table.php:214
+#: ../../godmode/servers/servers.build_table.php:227
msgid "Reset module status and fired alert counts"
msgstr ""
-#: ../../godmode/servers/servers.build_table.php:225
+#: ../../godmode/servers/servers.build_table.php:238
msgid "Claim back SNMP modules"
msgstr ""
-#: ../../godmode/servers/servers.build_table.php:249
-msgid "Manage satellite hosts"
-msgstr ""
-
#: ../../godmode/servers/modificar_server.php:50
msgid "Update Server"
msgstr ""
-#: ../../godmode/servers/modificar_server.php:63
-#: ../../godmode/servers/modificar_server.php:222
-#: ../../godmode/servers/modificar_server.php:262
-#, php-format
-msgid "%s servers"
-msgstr ""
-
#: ../../godmode/servers/modificar_server.php:73
-#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080
+#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1072
#: ../../include/ajax/consoles.ajax.php:61
msgid "Standard"
msgstr ""
@@ -41296,34 +41562,35 @@ msgstr ""
msgid "Advanced editor"
msgstr ""
-#: ../../godmode/servers/modificar_server.php:209
+#: ../../godmode/servers/modificar_server.php:210
+#: ../../godmode/servers/modificar_server.php:229
msgid "Remote Configuration"
msgstr ""
-#: ../../godmode/servers/modificar_server.php:235
+#: ../../godmode/servers/modificar_server.php:257
msgid "Dynamic search"
msgstr ""
-#: ../../godmode/servers/modificar_server.php:275
+#: ../../godmode/servers/modificar_server.php:297
#: ../../include/class/OrderInterpreter.class.php:247
msgid "Manage Servers"
msgstr ""
-#: ../../godmode/servers/modificar_server.php:287
-#: ../../godmode/servers/modificar_server.php:298
+#: ../../godmode/servers/modificar_server.php:309
+#: ../../godmode/servers/modificar_server.php:320
msgid "Successfully action"
msgstr ""
-#: ../../godmode/servers/modificar_server.php:329
+#: ../../godmode/servers/modificar_server.php:351
msgid "Server updated successfully"
msgstr ""
-#: ../../godmode/servers/modificar_server.php:331
+#: ../../godmode/servers/modificar_server.php:353
msgid "There was a problem updating the server"
msgstr ""
#: ../../godmode/servers/plugin_registration.php:58
-#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751
+#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:743
msgid "To manage plugin you must activate centralized management"
msgstr ""
@@ -41342,55 +41609,62 @@ msgid ""
"from feature from %s."
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:105
+#: ../../godmode/servers/plugin_registration.php:101
msgid "Plugin Registration"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:113
+#: ../../godmode/servers/plugin_registration.php:107
+msgid ""
+"This extension makes registering server plugins an easier task. Here you can "
+"upload a server plugin in .pspz zipped format. Please refer to the official "
+"documentation on how to obtain and use Server Plugins."
+msgstr ""
+
+#: ../../godmode/servers/plugin_registration.php:109
msgid "You can get more plugins in our"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:115
+#: ../../godmode/servers/plugin_registration.php:111
msgid "Public Resource Library"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:143
+#: ../../godmode/servers/plugin_registration.php:139
msgid "Failed to create temporary directory"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:162
+#: ../../godmode/servers/plugin_registration.php:158
msgid "Cannot load INI file"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:187
+#: ../../godmode/servers/plugin_registration.php:183
msgid "Plugin exec not found. Aborting!"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:198
+#: ../../godmode/servers/plugin_registration.php:194
msgid "Plugin already registered. Aborting!"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:365
+#: ../../godmode/servers/plugin_registration.php:361
msgid "Plug-in Remote Registered unsuccessfull"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:368
+#: ../../godmode/servers/plugin_registration.php:364
msgid "Please check the syntax of file \"plugin_definition.ini\""
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:508
+#: ../../godmode/servers/plugin_registration.php:504
msgid "Module plugin registered"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:513
+#: ../../godmode/servers/plugin_registration.php:509
msgid "Registered successfully"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:526
+#: ../../godmode/servers/plugin_registration.php:522
msgid "Unable to uncompress uploaded file"
msgstr ""
-#: ../../godmode/servers/plugin_registration.php:544
+#: ../../godmode/servers/plugin_registration.php:540
#, php-format
msgid "Cannot move uploaded file to %s."
msgstr ""
@@ -41399,15 +41673,15 @@ msgstr ""
msgid "Network Components"
msgstr ""
-#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775
+#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:767
msgid "Attachments"
msgstr ""
-#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785
+#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:777
msgid "Index of attachment/plugin"
msgstr ""
-#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788
+#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:780
#, php-format
msgid "Plug-ins registered on %s"
msgstr ""
@@ -41416,14 +41690,14 @@ msgstr ""
msgid "Plugin update"
msgstr ""
-#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815
+#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:807
msgid ""
"This console is not manager of this environment,\n"
" \t\tplease manage this feature from centralized manager console "
"(Metaconsole)."
msgstr ""
-#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080
+#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1072
msgid "Nagios"
msgstr ""
@@ -41462,84 +41736,88 @@ msgstr ""
msgid "Plug-in parameters"
msgstr ""
-#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689
+#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:681
msgid "Parameters macros"
msgstr ""
#: ../../godmode/servers/plugin.php:585
-#: ../../include/class/ManageNetScanScripts.class.php:675
+#: ../../include/class/ManageNetScanScripts.class.php:671
msgid "Hide value"
msgstr ""
#: ../../godmode/servers/plugin.php:596
-#: ../../include/class/ManageNetScanScripts.class.php:677
+#: ../../include/class/ManageNetScanScripts.class.php:673
msgid "This field will show up as dots like a password"
msgstr ""
-#: ../../godmode/servers/plugin.php:824
+#: ../../godmode/servers/plugin.php:655
+msgid "Remove macro"
+msgstr ""
+
+#: ../../godmode/servers/plugin.php:816
msgid "You need to create your own plugins with Windows compatibility"
msgstr ""
-#: ../../godmode/servers/plugin.php:890
+#: ../../godmode/servers/plugin.php:882
msgid "Problem updating plugin"
msgstr ""
-#: ../../godmode/servers/plugin.php:892
+#: ../../godmode/servers/plugin.php:884
msgid "Plugin updated successfully"
msgstr ""
-#: ../../godmode/servers/plugin.php:950
+#: ../../godmode/servers/plugin.php:942
msgid "Problem creating plugin"
msgstr ""
-#: ../../godmode/servers/plugin.php:952
+#: ../../godmode/servers/plugin.php:944
msgid "Plugin created successfully"
msgstr ""
-#: ../../godmode/servers/plugin.php:964
+#: ../../godmode/servers/plugin.php:956
msgid "Problem deleting plugin"
msgstr ""
-#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978
+#: ../../godmode/servers/plugin.php:958 ../../godmode/servers/plugin.php:970
msgid "Plugin deleted successfully"
msgstr ""
-#: ../../godmode/servers/plugin.php:1034
+#: ../../godmode/servers/plugin.php:1026
msgid "Lock"
msgstr ""
-#: ../../godmode/servers/plugin.php:1062
+#: ../../godmode/servers/plugin.php:1054
msgid "All the modules that are using this plugin will be deleted"
msgstr ""
-#: ../../godmode/servers/plugin.php:1096
+#: ../../godmode/servers/plugin.php:1088
msgid "There are no plugins in the system"
msgstr ""
-#: ../../godmode/servers/plugin.php:1104
+#: ../../godmode/servers/plugin.php:1096
msgid "Add plugin"
msgstr ""
-#: ../../godmode/servers/plugin.php:1117
+#: ../../godmode/servers/plugin.php:1109
#, php-format
msgid "List of modules and components created by \"%s\" "
msgstr ""
-#: ../../godmode/servers/plugin.php:1221
+#: ../../godmode/servers/plugin.php:1213
msgid "Some modules or components are using the plugin"
msgstr ""
-#: ../../godmode/servers/plugin.php:1222
+#: ../../godmode/servers/plugin.php:1214
msgid ""
"The modules or components should be updated manually or using the bulk "
"operations for plugins after this change"
msgstr ""
-#: ../../godmode/servers/plugin.php:1224
+#: ../../godmode/servers/plugin.php:1216
msgid "Are you sure you want to perform this action?"
msgstr ""
-#: ../../godmode/servers/plugin.php:1233
+#: ../../godmode/servers/plugin.php:1225
msgid ""
"The plugin macros cannot be updated because some modules or components are "
"using the plugin"
@@ -41580,37 +41858,37 @@ msgid ""
"only. Go to %s to manage it."
msgstr ""
-#: ../../godmode/tag/tag.php:302
+#: ../../godmode/tag/tag.php:303
msgid "Tag name"
msgstr ""
-#: ../../godmode/tag/tag.php:304
+#: ../../godmode/tag/tag.php:305
msgid "Detail information"
msgstr ""
-#: ../../godmode/tag/tag.php:305
+#: ../../godmode/tag/tag.php:306
msgid "Number of modules affected"
msgstr ""
-#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233
+#: ../../godmode/tag/tag.php:308 ../../godmode/tag/edit_tag.php:237
msgid "Phone"
msgstr ""
-#: ../../godmode/tag/tag.php:336
+#: ../../godmode/tag/tag.php:337
msgid "Tag details"
msgstr ""
-#: ../../godmode/tag/tag.php:369
+#: ../../godmode/tag/tag.php:370
#, php-format
msgid "Emails for the tag: %s"
msgstr ""
-#: ../../godmode/tag/tag.php:392
+#: ../../godmode/tag/tag.php:393
#, php-format
msgid "Phones for the tag: %s"
msgstr ""
-#: ../../godmode/tag/tag.php:455
+#: ../../godmode/tag/tag.php:456
msgid "Create tag"
msgstr ""
@@ -41626,23 +41904,23 @@ msgstr ""
msgid "Error updating tag"
msgstr ""
-#: ../../godmode/tag/edit_tag.php:160
+#: ../../godmode/tag/edit_tag.php:163
msgid "Successfully created tag"
msgstr ""
-#: ../../godmode/tag/edit_tag.php:161
+#: ../../godmode/tag/edit_tag.php:164
msgid "Error creating tag"
msgstr ""
-#: ../../godmode/tag/edit_tag.php:213
+#: ../../godmode/tag/edit_tag.php:217
msgid "Hyperlink to help information that has to exist previously."
msgstr ""
-#: ../../godmode/tag/edit_tag.php:225
+#: ../../godmode/tag/edit_tag.php:229
msgid "Associated Email direction to use later in alerts associated to Tags."
msgstr ""
-#: ../../godmode/tag/edit_tag.php:234
+#: ../../godmode/tag/edit_tag.php:238
msgid "Associated phone number to use later in alerts associated to Tags."
msgstr ""
@@ -41753,19 +42031,26 @@ msgstr ""
msgid "Pandora FMS %s - Build %s"
msgstr ""
-#: ../../mobile/include/system.class.php:156
+#: ../../mobile/include/system.class.php:175
msgid ""
"Access to this page is restricted to authorized users only, please contact "
"your system administrator if you should need help."
msgstr ""
-#: ../../mobile/include/system.class.php:156
+#: ../../mobile/include/system.class.php:175
+#: ../../mobile/include/system.class.php:181
#, php-format
msgid ""
"Please remember that any attempts to access this page will be recorded on "
"the %s System Database."
msgstr ""
+#: ../../mobile/include/system.class.php:181
+msgid ""
+"Invalid license, please contact your system administrator if you should need "
+"help."
+msgstr ""
+
#: ../../mobile/include/ui.class.php:120
#, php-format
msgid "%s mobile"
@@ -41776,7 +42061,7 @@ msgstr ""
msgid "%s : Mobile"
msgstr ""
-#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:161
+#: ../../mobile/include/ui.class.php:239 ../../mobile/operation/home.php:180
msgid "Home"
msgstr ""
@@ -41785,27 +42070,27 @@ msgstr ""
msgid "%s %s - Build %s"
msgstr ""
-#: ../../mobile/include/ui.class.php:773
+#: ../../mobile/include/ui.class.php:803
msgid "Not found header."
msgstr ""
-#: ../../mobile/include/ui.class.php:775
+#: ../../mobile/include/ui.class.php:805
msgid "Not found content."
msgstr ""
-#: ../../mobile/include/ui.class.php:777
+#: ../../mobile/include/ui.class.php:807
msgid "Not found footer."
msgstr ""
-#: ../../mobile/include/ui.class.php:779
+#: ../../mobile/include/ui.class.php:809
msgid "Incorrect form."
msgstr ""
-#: ../../mobile/include/ui.class.php:781
+#: ../../mobile/include/ui.class.php:811
msgid "Incorrect grid."
msgstr ""
-#: ../../mobile/include/ui.class.php:783
+#: ../../mobile/include/ui.class.php:813
msgid "Incorrect collapsible."
msgstr ""
@@ -41843,52 +42128,64 @@ msgstr ""
msgid "Login out"
msgstr ""
-#: ../../mobile/include/user.class.php:391
+#: ../../mobile/include/user.class.php:445
msgid "user"
msgstr ""
-#: ../../mobile/include/user.class.php:398
+#: ../../mobile/include/user.class.php:453
msgid "password"
msgstr ""
-#: ../../mobile/include/user.class.php:488
-#: ../../mobile/include/user.class.php:489
+#: ../../mobile/include/user.class.php:589
msgid "Authenticator code"
msgstr ""
-#: ../../mobile/operation/agents.php:218
+#: ../../mobile/operation/agents.php:219
#, php-format
msgid "Filter Agents by %s"
msgstr ""
-#: ../../mobile/operation/agents.php:260 ../../mobile/operation/modules.php:325
-#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1009
+#: ../../mobile/operation/agents.php:261 ../../mobile/operation/modules.php:325
+#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:1053
msgid "Apply Filter"
msgstr ""
-#: ../../mobile/operation/agents.php:454
+#: ../../mobile/operation/agents.php:459
msgid "No agents"
msgstr ""
-#: ../../mobile/operation/agents.php:550 ../../mobile/operation/modules.php:885
-#: ../../mobile/operation/alerts.php:379 ../../mobile/operation/events.php:1450
+#: ../../mobile/operation/agents.php:561 ../../mobile/operation/modules.php:981
+#: ../../mobile/operation/alerts.php:388
+#: ../../mobile/operation/module_data.php:299
+#: ../../mobile/operation/events.php:1575
+#: ../../mobile/operation/server_status.php:501
msgid "(Default)"
msgstr ""
-#: ../../mobile/operation/agents.php:556 ../../mobile/operation/modules.php:891
-#: ../../mobile/operation/alerts.php:392 ../../mobile/operation/events.php:1483
+#: ../../mobile/operation/agents.php:567 ../../mobile/operation/modules.php:987
+#: ../../mobile/operation/alerts.php:401
+#: ../../mobile/operation/module_data.php:305
+#: ../../mobile/operation/events.php:1608
+#: ../../mobile/operation/server_status.php:507
#, php-format
msgid "Group: %s"
msgstr ""
-#: ../../mobile/operation/agents.php:563 ../../mobile/operation/modules.php:913
-#: ../../mobile/operation/alerts.php:399 ../../mobile/operation/events.php:1503
+#: ../../mobile/operation/agents.php:574
+#: ../../mobile/operation/modules.php:1009
+#: ../../mobile/operation/alerts.php:408
+#: ../../mobile/operation/module_data.php:327
+#: ../../mobile/operation/events.php:1628
+#: ../../mobile/operation/server_status.php:529
#, php-format
msgid "Status: %s"
msgstr ""
-#: ../../mobile/operation/agents.php:570 ../../mobile/operation/modules.php:920
-#: ../../mobile/operation/alerts.php:406
+#: ../../mobile/operation/agents.php:581
+#: ../../mobile/operation/modules.php:1016
+#: ../../mobile/operation/alerts.php:415
+#: ../../mobile/operation/module_data.php:334
+#: ../../mobile/operation/server_status.php:536
#, php-format
msgid "Free Search: %s"
msgstr ""
@@ -41898,20 +42195,28 @@ msgstr ""
msgid "Filter Modules by %s"
msgstr ""
-#: ../../mobile/operation/modules.php:659
+#: ../../mobile/operation/modules.php:670
msgid "Interval."
msgstr ""
-#: ../../mobile/operation/modules.php:661
+#: ../../mobile/operation/modules.php:672
msgid "Last update."
msgstr ""
-#: ../../mobile/operation/modules.php:906
+#: ../../mobile/operation/modules.php:850
+msgid "Choose option"
+msgstr ""
+
+#: ../../mobile/operation/modules.php:1002
+#: ../../mobile/operation/module_data.php:320
+#: ../../mobile/operation/server_status.php:522
#, php-format
msgid "Module group: %s"
msgstr ""
-#: ../../mobile/operation/modules.php:928
+#: ../../mobile/operation/modules.php:1024
+#: ../../mobile/operation/module_data.php:342
+#: ../../mobile/operation/server_status.php:544
#, php-format
msgid "Tag: %s"
msgstr ""
@@ -41921,21 +42226,30 @@ msgstr ""
msgid "Visual consoles"
msgstr ""
-#: ../../mobile/operation/agent.php:162
+#: ../../mobile/operation/home.php:95
+#: ../../mobile/operation/server_status.php:227
+msgid "Server status"
+msgstr ""
+
+#: ../../mobile/operation/services.php:139
+msgid "No services found"
+msgstr ""
+
+#: ../../mobile/operation/agent.php:168
msgid "No agent found"
msgstr ""
-#: ../../mobile/operation/agent.php:238
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588
+#: ../../mobile/operation/agent.php:241
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:589
msgid "Modules by status"
msgstr ""
-#: ../../mobile/operation/agent.php:268
-#: ../../include/functions_treeview.php:724
+#: ../../mobile/operation/agent.php:271
+#: ../../include/functions_treeview.php:728
msgid "Events (24h)"
msgstr ""
-#: ../../mobile/operation/agent.php:369
+#: ../../mobile/operation/agent.php:372
#, php-format
msgid "Last %s Events"
msgstr ""
@@ -41945,15 +42259,22 @@ msgstr ""
msgid "Filter Alerts by %s"
msgstr ""
-#: ../../mobile/operation/alerts.php:346
+#: ../../mobile/operation/alerts.php:336 ../../mobile/operation/alerts.php:337
+#: ../../mobile/operation/alerts.php:342 ../../mobile/operation/alerts.php:344
+#: ../../mobile/operation/alerts.php:347
+msgid "Module/Agent"
+msgstr ""
+
+#: ../../mobile/operation/alerts.php:353
msgid "Last Fired"
msgstr ""
-#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508
+#: ../../mobile/operation/alerts.php:363 ../../include/ajax/events.php:2509
+#: ../../operation/events/sound_events.php:394
msgid "No alerts"
msgstr ""
-#: ../../mobile/operation/alerts.php:385
+#: ../../mobile/operation/alerts.php:394
#, php-format
msgid "Standby: %s"
msgstr ""
@@ -41966,133 +42287,161 @@ msgstr ""
msgid "Favourite visual consoles"
msgstr ""
-#: ../../mobile/operation/visualmaps.php:263
-msgid "No maps defined"
+#: ../../mobile/operation/visualmaps.php:265
+msgid "There are no favorite maps to show"
msgstr ""
-#: ../../mobile/operation/module_graph.php:359
-#: ../../mobile/operation/module_graph.php:372
+#: ../../mobile/operation/module_data.php:125
+msgid "Module data"
+msgstr ""
+
+#: ../../mobile/operation/module_data.php:184
+#: ../../include/graphs/functions_flot.php:515
+#: ../../include/functions_reporting_html.php:663
+#: ../../include/functions_reporting_html.php:4709
+#: ../../include/ajax/events.php:1305 ../../include/functions_graph.php:4832
+#: ../../include/functions_treeview.php:299
+msgid "No data"
+msgstr ""
+
+#: ../../mobile/operation/module_graph.php:360
+#: ../../mobile/operation/module_graph.php:373
#, php-format
msgid "%s: %s"
msgstr ""
-#: ../../mobile/operation/module_graph.php:405
+#: ../../mobile/operation/module_graph.php:406
#, php-format
msgid "Options for %s : %s"
msgstr ""
-#: ../../mobile/operation/module_graph.php:412
+#: ../../mobile/operation/module_graph.php:413
msgid "Show Alerts"
msgstr ""
-#: ../../mobile/operation/module_graph.php:420
+#: ../../mobile/operation/module_graph.php:421
msgid "Show Events"
msgstr ""
-#: ../../mobile/operation/module_graph.php:428
-#: ../../operation/agentes/stat_win.php:377
-#: ../../operation/agentes/stat_win.php:439
+#: ../../mobile/operation/module_graph.php:429
+#: ../../operation/agentes/stat_win.php:385
+#: ../../operation/agentes/stat_win.php:455
msgid "Time compare (Separated)"
msgstr ""
-#: ../../mobile/operation/module_graph.php:444
-#: ../../operation/agentes/stat_win.php:317
+#: ../../mobile/operation/module_graph.php:445
+#: ../../operation/agentes/stat_win.php:325
msgid "Show unknown graph"
msgstr ""
-#: ../../mobile/operation/module_graph.php:449
+#: ../../mobile/operation/module_graph.php:450
msgid "Time range (hours)"
msgstr ""
-#: ../../mobile/operation/module_graph.php:461
+#: ../../mobile/operation/module_graph.php:462
#: ../../operation/agentes/stat_win.php:289
-#: ../../operation/agentes/stat_win.php:408
+#: ../../operation/agentes/stat_win.php:416
#: ../../operation/agentes/interface_traffic_graph_win.php:183
#: ../../operation/agentes/graphs.php:222
#: ../../operation/agentes/exportdata.php:393
msgid "Begin date"
msgstr ""
-#: ../../mobile/operation/module_graph.php:468
+#: ../../mobile/operation/module_graph.php:469
msgid "Update graph"
msgstr ""
-#: ../../mobile/operation/module_graph.php:478
+#: ../../mobile/operation/module_graph.php:479
msgid "Error get the graph"
msgstr ""
-#: ../../mobile/operation/events.php:450
+#: ../../mobile/operation/events.php:442
#: ../../include/functions_reporting_html.php:1095
#: ../../include/functions_reporting_html.php:1337
-#: ../../include/functions_reporting_html.php:2658
+#: ../../include/functions_reporting_html.php:2677
#: ../../include/functions_events.php:2571
-#: ../../include/functions_events.php:4742
-#: ../../operation/events/events.php:779
+#: ../../include/functions_events.php:4747
+#: ../../operation/events/events.php:784
msgid "New event"
msgstr ""
-#: ../../mobile/operation/events.php:455
+#: ../../mobile/operation/events.php:447
#: ../../include/functions_reporting_html.php:1084
#: ../../include/functions_reporting_html.php:1342
-#: ../../include/functions_reporting_html.php:2663
+#: ../../include/functions_reporting_html.php:2682
#: ../../include/functions_events.php:2576
-#: ../../include/functions_events.php:4748
-#: ../../operation/events/events.php:792
+#: ../../include/functions_events.php:4753
+#: ../../operation/events/events.php:797
msgid "Event validated"
msgstr ""
-#: ../../mobile/operation/events.php:460
+#: ../../mobile/operation/events.php:452
#: ../../include/functions_reporting_html.php:1089
#: ../../include/functions_reporting_html.php:1347
-#: ../../include/functions_reporting_html.php:2668
+#: ../../include/functions_reporting_html.php:2687
#: ../../include/functions_events.php:2581
-#: ../../include/functions_events.php:4754
-#: ../../operation/events/events.php:804
+#: ../../include/functions_events.php:4759
+#: ../../operation/events/events.php:809
msgid "Event in process"
msgstr ""
-#: ../../mobile/operation/events.php:768
+#: ../../mobile/operation/events.php:797
msgid "ERROR: Event detail"
msgstr ""
-#: ../../mobile/operation/events.php:769
+#: ../../mobile/operation/events.php:798
msgid "Error connecting to DB."
msgstr ""
-#: ../../mobile/operation/events.php:789
+#: ../../mobile/operation/events.php:818
msgid "Event detail"
msgstr ""
-#: ../../mobile/operation/events.php:800
-#: ../../include/functions_events.php:4895
+#: ../../mobile/operation/events.php:829
+#: ../../include/functions_events.php:4900
msgid "Event ID"
msgstr ""
-#: ../../mobile/operation/events.php:828
-#: ../../include/functions_events.php:5013
+#: ../../mobile/operation/events.php:857
+#: ../../include/functions_events.php:5018
msgid "Acknowledged by"
msgstr ""
-#: ../../mobile/operation/events.php:878
+#: ../../mobile/operation/events.php:894
+#: ../../include/functions_events.php:3275
+#: ../../include/functions_events.php:3548
+#: ../../include/functions_events.php:3557
+msgid "In process"
+msgstr ""
+
+#: ../../mobile/operation/events.php:915
msgid "Sucessful validate"
msgstr ""
-#: ../../mobile/operation/events.php:880
+#: ../../mobile/operation/events.php:917
msgid "Fail validate"
msgstr ""
+#: ../../mobile/operation/events.php:922
+msgid "Sucessful in process"
+msgstr ""
+
#: ../../mobile/operation/events.php:924
+msgid "Fail in process"
+msgstr ""
+
+#: ../../mobile/operation/events.php:968
#, php-format
msgid "Filter Events by %s"
msgstr ""
-#: ../../mobile/operation/events.php:934 ../../mobile/operation/events.php:935
+#: ../../mobile/operation/events.php:978 ../../mobile/operation/events.php:979
msgid "Preset Filters"
msgstr ""
-#: ../../mobile/operation/events.php:1144
-#: ../../include/functions_reporting_html.php:6176
-#: ../../include/functions_reporting_html.php:6335
+#: ../../mobile/operation/events.php:1191
+#: ../../include/functions_reporting_html.php:6210
+#: ../../include/functions_reporting_html.php:6369
#: ../../include/functions_reporting.php:2189
#: ../../include/functions_reporting.php:2564
#: ../../include/functions_events.php:2497
@@ -42100,31 +42449,35 @@ msgstr ""
msgid "No events"
msgstr ""
-#: ../../mobile/operation/events.php:1455
+#: ../../mobile/operation/events.php:1580
#, php-format
msgid "Filter: %s"
msgstr ""
-#: ../../mobile/operation/events.php:1467
+#: ../../mobile/operation/events.php:1592
#, php-format
msgid "Severity: %s"
msgstr ""
-#: ../../mobile/operation/events.php:1496
+#: ../../mobile/operation/events.php:1621
#, php-format
msgid "Type: %s"
msgstr ""
-#: ../../mobile/operation/events.php:1510
+#: ../../mobile/operation/events.php:1635
#, php-format
msgid "Free search: %s"
msgstr ""
-#: ../../mobile/operation/events.php:1517
+#: ../../mobile/operation/events.php:1642
#, php-format
msgid "Hours: %s"
msgstr ""
+#: ../../mobile/operation/server_status.php:371
+msgid "No servers"
+msgstr ""
+
#: ../../mobile/operation/tactical.php:216
msgid "Last activity"
msgstr ""
@@ -42150,388 +42503,384 @@ msgstr ""
msgid "Border color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:151
+#: ../../include/functions_visual_map_editor.php:149
msgid "Border width"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:160
+#: ../../include/functions_visual_map_editor.php:158
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:323
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:364
msgid "Fill color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:239
+#: ../../include/functions_visual_map_editor.php:235
msgid ""
"Scroll the mouse wheel over the label editor to change the background color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:255
+#: ../../include/functions_visual_map_editor.php:251
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:333
msgid "Clock animation"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:258
+#: ../../include/functions_visual_map_editor.php:254
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:328
msgid "Simple analogic"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:259
+#: ../../include/functions_visual_map_editor.php:255
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:329
msgid "Simple digital"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:273
+#: ../../include/functions_visual_map_editor.php:269
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:351
msgid "Time format"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:276
+#: ../../include/functions_visual_map_editor.php:272
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:346
msgid "Only time"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:277
+#: ../../include/functions_visual_map_editor.php:273
#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:347
msgid "Time and date"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:329
+#: ../../include/functions_visual_map_editor.php:325
msgid "Enable link"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:350
+#: ../../include/functions_visual_map_editor.php:346
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508
msgid "White"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:351
+#: ../../include/functions_visual_map_editor.php:347
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509
msgid "Black"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:352
+#: ../../include/functions_visual_map_editor.php:348
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510
msgid "Transparent"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:378
+#: ../../include/functions_visual_map_editor.php:374
#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402
msgid "Grid color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:498
+#: ../../include/functions_visual_map_editor.php:492
msgid "Data image"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:503
+#: ../../include/functions_visual_map_editor.php:498
msgid "Resume data color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:517
+#: ../../include/functions_visual_map_editor.php:511
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274
msgid "24h"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:518
+#: ../../include/functions_visual_map_editor.php:512
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276
msgid "8h"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:519
+#: ../../include/functions_visual_map_editor.php:513
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
msgid "2h"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:520
+#: ../../include/functions_visual_map_editor.php:514
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278
msgid "1h"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:524
+#: ../../include/functions_visual_map_editor.php:518
#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282
msgid "Max. Time"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:640
+#: ../../include/functions_visual_map_editor.php:634
msgid "Original Size"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:648
+#: ../../include/functions_visual_map_editor.php:654
msgid "Aspect ratio"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:649
+#: ../../include/functions_visual_map_editor.php:657
msgid "Proportional Width"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:657
+#: ../../include/functions_visual_map_editor.php:677
msgid "Height proportional"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:668
-msgid "Widtzzzzh"
-msgstr ""
-
-#: ../../include/functions_visual_map_editor.php:686
-#: ../../include/functions_visual_map.php:4190
+#: ../../include/functions_visual_map_editor.php:736
+#: ../../include/functions_visual_map.php:4199
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
-#: ../../include/rest-api/models/VisualConsole/Item.php:2124
+#: ../../include/rest-api/models/VisualConsole/Item.php:2127
msgid "Circular progress bar"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:687
-#: ../../include/functions_visual_map.php:4195
+#: ../../include/functions_visual_map_editor.php:737
+#: ../../include/functions_visual_map.php:4204
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-#: ../../include/rest-api/models/VisualConsole/Item.php:2128
+#: ../../include/rest-api/models/VisualConsole/Item.php:2131
msgid "Circular progress bar (interior)"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:737
+#: ../../include/functions_visual_map_editor.php:787
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522
msgid "Element color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:757
+#: ../../include/functions_visual_map_editor.php:802
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534
msgid "Value color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:799
+#: ../../include/functions_visual_map_editor.php:839
msgid "Diameter"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:806
+#: ../../include/functions_visual_map_editor.php:846
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426
msgid "Default color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:810
+#: ../../include/functions_visual_map_editor.php:850
msgid ""
"The color of the element will be the one selected in the first range created "
"in which the value of the module is found (with the initial and final values "
"of the range included)"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "Ranges"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "From value"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
msgid "To value"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:813
+#: ../../include/functions_visual_map_editor.php:853
#: ../../include/rest-api/index.php:379
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:533
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:938
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:942
msgid "Color"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:818
+#: ../../include/functions_visual_map_editor.php:859
msgid "Always show on top"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:819
+#: ../../include/functions_visual_map_editor.php:861
msgid ""
"It allows the element to be superimposed to the rest of items of the visual "
"console"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:822
+#: ../../include/functions_visual_map_editor.php:870
#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404
msgid "Hide last value on boolean modules"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:828
+#: ../../include/functions_visual_map_editor.php:876
msgid "Show last value"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:932
+#: ../../include/functions_visual_map_editor.php:980
msgid "For use the original image file size, set 0 width and 0 height."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:972
-#: ../../include/rest-api/models/VisualConsole/Item.php:2439
+#: ../../include/functions_visual_map_editor.php:1020
+#: ../../include/rest-api/models/VisualConsole/Item.php:2442
msgid "Linked visual console"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1079
-#: ../../include/rest-api/models/VisualConsole/Item.php:2490
+#: ../../include/functions_visual_map_editor.php:1131
+#: ../../include/rest-api/models/VisualConsole/Item.php:2493
msgid "By status weight"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1080
-#: ../../include/rest-api/models/VisualConsole/Item.php:2491
+#: ../../include/functions_visual_map_editor.php:1132
+#: ../../include/rest-api/models/VisualConsole/Item.php:2494
msgid "By critical elements"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1095
-#: ../../include/rest-api/models/VisualConsole/Item.php:2498
+#: ../../include/functions_visual_map_editor.php:1147
+#: ../../include/rest-api/models/VisualConsole/Item.php:2501
msgid "Type of the status calculation of the linked visual console"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1100
-#: ../../include/rest-api/models/VisualConsole/Item.php:2489
+#: ../../include/functions_visual_map_editor.php:1152
+#: ../../include/rest-api/models/VisualConsole/Item.php:2492
msgid "By default"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1120
-#: ../../include/rest-api/models/VisualConsole/Item.php:2514
+#: ../../include/functions_visual_map_editor.php:1172
+#: ../../include/rest-api/models/VisualConsole/Item.php:2517
msgid "Linked visual console weight"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1187
+#: ../../include/functions_visual_map_editor.php:1239
msgid "Lines haven't advanced options"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1204
-#: ../../include/rest-api/models/VisualConsole/Item.php:2189
+#: ../../include/functions_visual_map_editor.php:1257
+#: ../../include/rest-api/models/VisualConsole/Item.php:2192
msgid "Restrict access to group"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1215
+#: ../../include/functions_visual_map_editor.php:1259
msgid ""
"If selected, restrict visualization of this item in the visual console to "
"users who have access to selected group. This is also used on calculating "
"child visual consoles."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1246
-#: ../../include/rest-api/models/VisualConsole/Item.php:2202
+#: ../../include/functions_visual_map_editor.php:1304
+#: ../../include/rest-api/models/VisualConsole/Item.php:2205
msgid "Cache expiration"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1285
+#: ../../include/functions_visual_map_editor.php:1343
msgid "Click start point
of the line"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1288
+#: ../../include/functions_visual_map_editor.php:1346
msgid "Click end point
of the line"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1388
-#: ../../operation/visual_console/view.php:336
+#: ../../include/functions_visual_map_editor.php:1446
+#: ../../operation/visual_console/view.php:338
msgid "Serialized pie graph"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1389
-#: ../../operation/visual_console/view.php:341
+#: ../../include/functions_visual_map_editor.php:1447
+#: ../../operation/visual_console/view.php:343
msgid "Bars Graph"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1418
+#: ../../include/functions_visual_map_editor.php:1476
msgid "Show grid"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1420
+#: ../../include/functions_visual_map_editor.php:1478
msgid "Delete item"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1421
+#: ../../include/functions_visual_map_editor.php:1479
msgid "Copy item"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1458
-#: ../../include/functions_visual_map_editor.php:1462
-#: ../../include/functions_visual_map_editor.php:1466
-#: ../../include/functions_visual_map_editor.php:1470
-#: ../../include/functions_visual_map_editor.php:1474
-#: ../../include/functions_visual_map_editor.php:1478
-#: ../../include/functions_visual_map_editor.php:1482
-#: ../../include/functions_visual_map_editor.php:1486
-#: ../../include/functions_visual_map_editor.php:1490
-#: ../../include/functions_visual_map_editor.php:1494
-#: ../../include/functions_visual_map_editor.php:1498
-#: ../../include/functions_visual_map_editor.php:1502
-#: ../../include/functions_visual_map_editor.php:1506
-#: ../../include/functions_visual_map_editor.php:1510
-#: ../../include/functions_visual_map_editor.php:1514
-#: ../../include/functions_visual_map_editor.php:1518
-#: ../../include/functions_visual_map_editor.php:1522
-#: ../../include/functions_visual_map_editor.php:1526
-#: ../../include/functions_visual_map_editor.php:1530
+#: ../../include/functions_visual_map_editor.php:1516
+#: ../../include/functions_visual_map_editor.php:1520
+#: ../../include/functions_visual_map_editor.php:1524
+#: ../../include/functions_visual_map_editor.php:1528
+#: ../../include/functions_visual_map_editor.php:1532
+#: ../../include/functions_visual_map_editor.php:1536
+#: ../../include/functions_visual_map_editor.php:1540
+#: ../../include/functions_visual_map_editor.php:1544
+#: ../../include/functions_visual_map_editor.php:1548
+#: ../../include/functions_visual_map_editor.php:1552
+#: ../../include/functions_visual_map_editor.php:1556
+#: ../../include/functions_visual_map_editor.php:1560
+#: ../../include/functions_visual_map_editor.php:1564
+#: ../../include/functions_visual_map_editor.php:1568
+#: ../../include/functions_visual_map_editor.php:1572
+#: ../../include/functions_visual_map_editor.php:1576
+#: ../../include/functions_visual_map_editor.php:1580
+#: ../../include/functions_visual_map_editor.php:1584
+#: ../../include/functions_visual_map_editor.php:1588
msgid "Visual Console Builder Information"
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1459
+#: ../../include/functions_visual_map_editor.php:1517
msgid "Min allowed size is 1024x768."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1463
-#: ../../include/functions_visual_map_editor.php:1531
+#: ../../include/functions_visual_map_editor.php:1521
+#: ../../include/functions_visual_map_editor.php:1589
msgid "No custom graph defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1467
+#: ../../include/functions_visual_map_editor.php:1525
msgid "No image or name defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1471
+#: ../../include/functions_visual_map_editor.php:1529
msgid "No label defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1475
+#: ../../include/functions_visual_map_editor.php:1533
msgid "No service defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1479
+#: ../../include/functions_visual_map_editor.php:1537
msgid "No image defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1483
+#: ../../include/functions_visual_map_editor.php:1541
msgid "No process defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1487
+#: ../../include/functions_visual_map_editor.php:1545
msgid "No Max value defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1491
+#: ../../include/functions_visual_map_editor.php:1549
msgid "No width defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1495
+#: ../../include/functions_visual_map_editor.php:1553
msgid "No height defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1499
+#: ../../include/functions_visual_map_editor.php:1557
msgid "The width must not exceed the size of the visual console container."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1503
+#: ../../include/functions_visual_map_editor.php:1561
msgid "The height must not exceed the size of the visual console container."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1507
+#: ../../include/functions_visual_map_editor.php:1565
msgid "No period defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1511
+#: ../../include/functions_visual_map_editor.php:1569
msgid "No agent defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1515
+#: ../../include/functions_visual_map_editor.php:1573
msgid "No module defined."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1519
+#: ../../include/functions_visual_map_editor.php:1577
msgid "No module defined. This module must be string type."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1523
+#: ../../include/functions_visual_map_editor.php:1581
msgid "Successfully save the changes."
msgstr ""
-#: ../../include/functions_visual_map_editor.php:1527
+#: ../../include/functions_visual_map_editor.php:1585
msgid "Could not be save."
msgstr ""
@@ -42545,101 +42894,97 @@ msgid "Selected"
msgstr ""
#: ../../include/graphs/functions_gd.php:183
-#: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2774
-#: ../../include/functions_graph.php:2822
+#: ../../include/graphs/functions_gd.php:470
+#: ../../include/functions_graph.php:2784
+#: ../../include/functions_graph.php:2832
msgid "Out of limits"
msgstr ""
-#: ../../include/graphs/functions_flot.php:370
+#: ../../include/graphs/functions_flot.php:371
msgid "Cancel zoom"
msgstr ""
-#: ../../include/graphs/functions_flot.php:372
+#: ../../include/graphs/functions_flot.php:373
msgid "Warning and Critical thresholds"
msgstr ""
-#: ../../include/graphs/functions_flot.php:377
+#: ../../include/graphs/functions_flot.php:378
msgid "Overview graph"
msgstr ""
-#: ../../include/graphs/functions_flot.php:514
-#: ../../include/functions_reporting_html.php:663
-#: ../../include/functions_reporting_html.php:4681
-#: ../../include/ajax/events.php:1304 ../../include/functions_graph.php:4822
-#: ../../include/functions_treeview.php:299
-msgid "No data"
-msgstr ""
-
-#: ../../include/functions_servers.php:582
+#: ../../include/functions_servers.php:590
msgid "SNMP Trap server"
msgstr ""
-#: ../../include/functions_servers.php:699
+#: ../../include/functions_servers.php:707
msgid "Correlation server"
msgstr ""
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1230
+#: ../../include/functions_servers.php:720
+#: ../../include/functions_servers.php:1253
msgid "Enterprise ICMP server"
msgstr ""
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1233
+#: ../../include/functions_servers.php:733
+#: ../../include/functions_servers.php:1256
msgid "Enterprise SNMP server"
msgstr ""
-#: ../../include/functions_servers.php:738
+#: ../../include/functions_servers.php:746
#: ../../include/class/AgentWizard.class.php:1353
msgid "Enterprise Satellite server"
msgstr ""
-#: ../../include/functions_servers.php:751
+#: ../../include/functions_servers.php:759
msgid "Enterprise Transactional server"
msgstr ""
-#: ../../include/functions_servers.php:764
+#: ../../include/functions_servers.php:772
msgid "Mainframe server"
msgstr ""
-#: ../../include/functions_servers.php:777
+#: ../../include/functions_servers.php:785
msgid "Sync server"
msgstr ""
-#: ../../include/functions_servers.php:790
+#: ../../include/functions_servers.php:798
msgid "Wux server"
msgstr ""
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1260
+#: ../../include/functions_servers.php:811
+#: ../../include/functions_servers.php:1283
msgid "Log server"
msgstr ""
-#: ../../include/functions_servers.php:829
+#: ../../include/functions_servers.php:837
msgid "Autoprovision server"
msgstr ""
-#: ../../include/functions_servers.php:842
+#: ../../include/functions_servers.php:850
msgid "Migration server"
msgstr ""
-#: ../../include/functions_servers.php:1239
+#: ../../include/functions_servers.php:876
+msgid "Netflow server"
+msgstr ""
+
+#: ../../include/functions_servers.php:1262
msgid "Prediction Server"
msgstr ""
-#: ../../include/functions_servers.php:1266
+#: ../../include/functions_servers.php:1289
#: ../../operation/agentes/estado_generalagente.php:329
msgid "Satellite server"
msgstr ""
#: ../../include/functions_reporting_html.php:87
-#: ../../include/functions_reporting_html.php:5823
+#: ../../include/functions_reporting_html.php:5851
#: ../../include/ajax/alert_list.ajax.php:592
msgid "From:"
msgstr ""
#: ../../include/functions_reporting_html.php:87
-#: ../../include/functions_reporting_html.php:5823
+#: ../../include/functions_reporting_html.php:5851
#: ../../include/ajax/alert_list.ajax.php:606
msgid "To:"
msgstr ""
@@ -42666,31 +43011,31 @@ msgid "Downtime"
msgstr ""
#: ../../include/functions_reporting_html.php:1003
-#: ../../include/functions_reporting_html.php:2514
-#: ../../include/functions_reporting_html.php:4563
-#: ../../include/functions_reporting_html.php:5102
+#: ../../include/functions_reporting_html.php:2535
+#: ../../include/functions_reporting_html.php:4591
+#: ../../include/functions_reporting_html.php:5130
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:367
msgid "Min Value"
msgstr ""
#: ../../include/functions_reporting_html.php:1004
-#: ../../include/functions_reporting_html.php:2515
-#: ../../include/functions_reporting_html.php:4564
-#: ../../include/functions_reporting_html.php:5103
+#: ../../include/functions_reporting_html.php:2536
+#: ../../include/functions_reporting_html.php:4592
+#: ../../include/functions_reporting_html.php:5131
msgid "Average Value"
msgstr ""
#: ../../include/functions_reporting_html.php:1005
-#: ../../include/functions_reporting_html.php:2516
-#: ../../include/functions_reporting_html.php:4561
-#: ../../include/functions_reporting_html.php:5105
+#: ../../include/functions_reporting_html.php:2537
+#: ../../include/functions_reporting_html.php:4589
+#: ../../include/functions_reporting_html.php:5133
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:366
msgid "Max Value"
msgstr ""
#: ../../include/functions_reporting_html.php:1061
#: ../../include/functions_reporting_html.php:1069
-#: ../../include/functions_reporting_html.php:2645
+#: ../../include/functions_reporting_html.php:2664
msgid "Val. by"
msgstr ""
@@ -42700,203 +43045,208 @@ msgid "%s System"
msgstr ""
#: ../../include/functions_reporting_html.php:1221
-#: ../../include/functions_reporting_html.php:1436
+#: ../../include/functions_reporting_html.php:1445
msgid "Events by user validator"
msgstr ""
#: ../../include/functions_reporting_html.php:1238
-#: ../../include/functions_reporting_html.php:1453
+#: ../../include/functions_reporting_html.php:1462
msgid "Events by Severity"
msgstr ""
#: ../../include/functions_reporting_html.php:1255
-#: ../../include/functions_reporting_html.php:1470
+#: ../../include/functions_reporting_html.php:1479
msgid "Events validated vs unvalidated"
msgstr ""
-#: ../../include/functions_reporting_html.php:1612
+#: ../../include/functions_reporting_html.php:1621
msgid "Sec. groups"
msgstr ""
-#: ../../include/functions_reporting_html.php:1632
+#: ../../include/functions_reporting_html.php:1641
msgid "Remote conf."
msgstr ""
-#: ../../include/functions_reporting_html.php:1919
-#: ../../include/functions_inventory.php:1068
-#: ../../include/functions_inventory.php:1131
+#: ../../include/functions_reporting_html.php:1928
+#: ../../include/functions_inventory.php:1178
+#: ../../include/functions_inventory.php:1241
msgid "Added"
msgstr ""
-#: ../../include/functions_reporting_html.php:1930
-#: ../../include/functions_inventory.php:1074
-#: ../../include/functions_inventory.php:1139
+#: ../../include/functions_reporting_html.php:1939
+#: ../../include/functions_inventory.php:1184
+#: ../../include/functions_inventory.php:1249
#: ../../include/functions_filemanager.php:343
#: ../../include/functions_filemanager.php:360
msgid "Deleted"
msgstr ""
-#: ../../include/functions_reporting_html.php:2287
+#: ../../include/functions_reporting_html.php:2308
msgid "Cell turns grey when the module is in 'not initialize' status"
msgstr ""
-#: ../../include/functions_reporting_html.php:2580
-#: ../../include/functions_reporting_html.php:5691
+#: ../../include/functions_reporting_html.php:2601
+#: ../../include/functions_reporting_html.php:5719
msgid "Monitors"
msgstr ""
-#: ../../include/functions_reporting_html.php:2599
+#: ../../include/functions_reporting_html.php:2620
msgid "Events (not validated)"
msgstr ""
-#: ../../include/functions_reporting_html.php:2755
+#: ../../include/functions_reporting_html.php:2783
msgid "Events validated by user"
msgstr ""
-#: ../../include/functions_reporting_html.php:2772
-#: ../../include/functions_reporting_html.php:5980
+#: ../../include/functions_reporting_html.php:2800
+#: ../../include/functions_reporting_html.php:6008
msgid "Events by severity"
msgstr ""
-#: ../../include/functions_reporting_html.php:2789
+#: ../../include/functions_reporting_html.php:2817
msgid "Amount events validated"
msgstr ""
-#: ../../include/functions_reporting_html.php:3219
+#: ../../include/functions_reporting_html.php:3247
msgid "Total summary"
msgstr ""
-#: ../../include/functions_reporting_html.php:3226
+#: ../../include/functions_reporting_html.php:3254
msgid "No alerts fired"
msgstr ""
-#: ../../include/functions_reporting_html.php:3326
+#: ../../include/functions_reporting_html.php:3354
#, php-format
msgid "Interface '%s' throughput graph"
msgstr ""
-#: ../../include/functions_reporting_html.php:3330
+#: ../../include/functions_reporting_html.php:3358
msgid "Mac"
msgstr ""
-#: ../../include/functions_reporting_html.php:3331
+#: ../../include/functions_reporting_html.php:3359
msgid "Actual status"
msgstr ""
-#: ../../include/functions_reporting_html.php:3702
-#: ../../include/functions_reporting_html.php:3704
+#: ../../include/functions_reporting_html.php:3730
+#: ../../include/functions_reporting_html.php:3732
msgid "Empty modules"
msgstr ""
-#: ../../include/functions_reporting_html.php:4175
+#: ../../include/functions_reporting_html.php:4203
msgid "Time Not Init Module"
msgstr ""
-#: ../../include/functions_reporting_html.php:4186
+#: ../../include/functions_reporting_html.php:4214
msgid "% Ok"
msgstr ""
-#: ../../include/functions_reporting_html.php:4263
+#: ../../include/functions_reporting_html.php:4291
msgid "Checks Uknown"
msgstr ""
-#: ../../include/functions_reporting_html.php:4302
-#: ../../include/functions_reporting_html.php:4449
-#: ../../include/functions_reporting_html.php:4776
-#: ../../include/functions_reporting_html.php:4782
+#: ../../include/functions_reporting_html.php:4330
+#: ../../include/functions_reporting_html.php:4477
+#: ../../include/functions_reporting_html.php:4804
+#: ../../include/functions_reporting_html.php:4810
msgid "Primary"
msgstr ""
-#: ../../include/functions_reporting_html.php:5217
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:12115
+#: ../../include/functions_reporting_html.php:5245
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12124
+#: ../../include/functions_reporting.php:12169
msgid "Alert level"
msgstr ""
-#: ../../include/functions_reporting_html.php:5465
+#: ../../include/functions_reporting_html.php:5493
#, php-format
msgid "Agents in group: %s"
msgstr ""
-#: ../../include/functions_reporting_html.php:5567
+#: ../../include/functions_reporting_html.php:5595
msgid "Last failure"
msgstr ""
-#: ../../include/functions_reporting_html.php:5657
+#: ../../include/functions_reporting_html.php:5685
msgid "N/A(*)"
msgstr ""
-#: ../../include/functions_reporting_html.php:5905
-#: ../../include/functions_reporting.php:12322
-#: ../../include/functions_groups.php:2650
+#: ../../include/functions_reporting_html.php:5933
+#: ../../include/functions_reporting.php:12395
+#: ../../include/functions_groups.php:2675
msgid "Monitor checks"
msgstr ""
-#: ../../include/functions_reporting_html.php:5912
-#: ../../include/functions_reporting.php:12341
-#: ../../include/functions_groups.php:2669
+#: ../../include/functions_reporting_html.php:5940
+#: ../../include/functions_reporting.php:12414
+#: ../../include/functions_groups.php:2694
msgid "Total agents and monitors"
msgstr ""
-#: ../../include/functions_reporting_html.php:5931
-#: ../../include/functions_reporting_html.php:5936
+#: ../../include/functions_reporting_html.php:5959
+#: ../../include/functions_reporting_html.php:5964
msgid "Node overview"
msgstr ""
-#: ../../include/functions_reporting_html.php:5956
-#: ../../include/functions_reporting_html.php:5968
+#: ../../include/functions_reporting_html.php:5984
+#: ../../include/functions_reporting_html.php:5996
msgid "Critical events"
msgstr ""
-#: ../../include/functions_reporting_html.php:5959
-#: ../../include/functions_reporting_html.php:5970
+#: ../../include/functions_reporting_html.php:5987
+#: ../../include/functions_reporting_html.php:5998
msgid "Warning events"
msgstr ""
-#: ../../include/functions_reporting_html.php:5962
-#: ../../include/functions_reporting_html.php:5972
+#: ../../include/functions_reporting_html.php:5990
+#: ../../include/functions_reporting_html.php:6000
msgid "OK events"
msgstr ""
-#: ../../include/functions_reporting_html.php:5965
-#: ../../include/functions_reporting_html.php:5974
+#: ../../include/functions_reporting_html.php:5993
+#: ../../include/functions_reporting_html.php:6002
msgid "Unknown events"
msgstr ""
-#: ../../include/functions_reporting_html.php:5990
+#: ../../include/functions_reporting_html.php:6019
+msgid "Event count corresponds to events within the last hour"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:6024
msgid "Important Events by Criticity"
msgstr ""
-#: ../../include/functions_reporting_html.php:6017
+#: ../../include/functions_reporting_html.php:6051
#, php-format
msgid "Last activity in %s console"
msgstr ""
-#: ../../include/functions_reporting_html.php:6066
-#: ../../include/functions_reporting_html.php:6208
+#: ../../include/functions_reporting_html.php:6100
+#: ../../include/functions_reporting_html.php:6242
msgid "Events info (1hr.)"
msgstr ""
-#: ../../include/functions_reporting_html.php:6365
+#: ../../include/functions_reporting_html.php:6399
msgid "This SLA has been affected by the following scheduled downtimes"
msgstr ""
-#: ../../include/functions_reporting_html.php:6366
+#: ../../include/functions_reporting_html.php:6400
msgid ""
"If the duration of the scheduled downtime is less than 5 minutes it will not "
"be represented in the graph"
msgstr ""
-#: ../../include/functions_reporting_html.php:6373
+#: ../../include/functions_reporting_html.php:6407
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396
msgid "Dates"
msgstr ""
-#: ../../include/functions_reporting_html.php:6404
+#: ../../include/functions_reporting_html.php:6438
msgid "This item is affected by a malformed scheduled downtime"
msgstr ""
-#: ../../include/functions_reporting_html.php:6404
+#: ../../include/functions_reporting_html.php:6438
msgid "Go to the scheduled downtimes section to solve this"
msgstr ""
@@ -42914,7 +43264,7 @@ msgstr ""
#: ../../include/functions.php:501 ../../include/functions.php:653
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-#: ../../include/rest-api/models/VisualConsole/Item.php:2037
+#: ../../include/rest-api/models/VisualConsole/Item.php:2040
msgid "Y"
msgstr ""
@@ -42931,51 +43281,51 @@ msgid "N"
msgstr ""
#: ../../include/functions.php:1079 ../../include/functions.php:1325
-#: ../../include/functions.php:1359 ../../include/functions_graph.php:3317
-#: ../../include/functions_graph.php:3319
-#: ../../include/functions_graph.php:4834
+#: ../../include/functions.php:1359 ../../include/functions_graph.php:3327
+#: ../../include/functions_graph.php:3329
+#: ../../include/functions_graph.php:4844
#: ../../include/functions_incidents.php:34
#: ../../include/functions_incidents.php:75
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547
-#: ../../include/functions_events.php:3210
-#: ../../operation/visual_console/view.php:451
+#: ../../include/functions_events.php:3215
+#: ../../operation/visual_console/view.php:453
msgid "Maintenance"
msgstr ""
#: ../../include/functions.php:1083 ../../include/functions.php:1326
-#: ../../include/functions.php:1363 ../../include/functions_graph.php:3323
-#: ../../include/functions_graph.php:3325
-#: ../../include/functions_graph.php:4838
+#: ../../include/functions.php:1363 ../../include/functions_graph.php:3333
+#: ../../include/functions_graph.php:3335
+#: ../../include/functions_graph.php:4848
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:552
-#: ../../include/functions_events.php:3214
+#: ../../include/functions_events.php:3219
msgid "Informational"
msgstr ""
#: ../../include/functions.php:1099 ../../include/functions.php:1328
-#: ../../include/functions.php:1379 ../../include/functions_graph.php:3335
-#: ../../include/functions_graph.php:3337
-#: ../../include/functions_graph.php:4854
+#: ../../include/functions.php:1379 ../../include/functions_graph.php:3345
+#: ../../include/functions_graph.php:3347
+#: ../../include/functions_graph.php:4864
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:572
msgid "Minor"
msgstr ""
#: ../../include/functions.php:1103 ../../include/functions.php:1330
-#: ../../include/functions.php:1383 ../../include/functions_graph.php:3347
-#: ../../include/functions_graph.php:3349
-#: ../../include/functions_graph.php:4858
+#: ../../include/functions.php:1383 ../../include/functions_graph.php:3357
+#: ../../include/functions_graph.php:3359
+#: ../../include/functions_graph.php:4868
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:577
msgid "Major"
msgstr ""
-#: ../../include/functions.php:1278 ../../include/functions_events.php:3130
+#: ../../include/functions.php:1278 ../../include/functions_events.php:3135
msgid "Monitor Critical"
msgstr ""
-#: ../../include/functions.php:1279 ../../include/functions_events.php:3134
+#: ../../include/functions.php:1279 ../../include/functions_events.php:3139
msgid "Monitor Warning"
msgstr ""
-#: ../../include/functions.php:1280 ../../include/functions_events.php:3138
+#: ../../include/functions.php:1280 ../../include/functions_events.php:3143
msgid "Monitor Normal"
msgstr ""
@@ -42983,17 +43333,17 @@ msgstr ""
msgid "Monitor Unknown"
msgstr ""
-#: ../../include/functions.php:1285 ../../include/functions_events.php:2914
-#: ../../include/functions_events.php:3146
+#: ../../include/functions.php:1285 ../../include/functions_events.php:2919
+#: ../../include/functions_events.php:3151
msgid "Alert recovered"
msgstr ""
-#: ../../include/functions.php:1286 ../../include/functions_events.php:2962
-#: ../../include/functions_events.php:3150
+#: ../../include/functions.php:1286 ../../include/functions_events.php:2967
+#: ../../include/functions_events.php:3155
msgid "Alert ceased"
msgstr ""
-#: ../../include/functions.php:1287 ../../include/functions_events.php:3154
+#: ../../include/functions.php:1287 ../../include/functions_events.php:3159
msgid "Alert manual validation"
msgstr ""
@@ -43001,12 +43351,12 @@ msgstr ""
msgid "Agent created"
msgstr ""
-#: ../../include/functions.php:1290 ../../include/functions_events.php:3158
+#: ../../include/functions.php:1290 ../../include/functions_events.php:3163
msgid "Recon host detected"
msgstr ""
-#: ../../include/functions.php:1293 ../../include/functions_events.php:2958
-#: ../../include/functions_events.php:3170
+#: ../../include/functions.php:1293 ../../include/functions_events.php:2963
+#: ../../include/functions_events.php:3175
msgid "Configuration change"
msgstr ""
@@ -43016,9 +43366,9 @@ msgstr ""
#: ../../include/functions.php:1413 ../../include/functions.php:1450
#: ../../include/functions_modules.php:4263
-#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598
-#: ../../operation/agentes/status_monitor.php:1868
-#: ../../operation/agentes/status_monitor.php:1881
+#: ../../include/class/Tree.class.php:678 ../../include/lib/Module.php:598
+#: ../../operation/agentes/status_monitor.php:1870
+#: ../../operation/agentes/status_monitor.php:1883
msgid "NO DATA"
msgstr ""
@@ -43114,7 +43464,7 @@ msgid "2 minutes"
msgstr ""
#: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55
-#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181
+#: ../../include/ajax/module.php:242 ../../operation/heatmap.php:181
#: ../../operation/gis_maps/render_view.php:155
msgid "5 minutes"
msgstr ""
@@ -43123,55 +43473,60 @@ msgstr ""
msgid "15 minutes"
msgstr ""
-#: ../../include/functions.php:3422 ../../include/ajax/module.php:220
+#: ../../include/functions.php:3422 ../../include/ajax/module.php:243
msgid "30 minutes"
msgstr ""
-#: ../../include/functions.php:3949
+#: ../../include/functions.php:3975
msgid "Summatory series"
msgstr ""
-#: ../../include/functions.php:3953
+#: ../../include/functions.php:3979
msgid "Average series"
msgstr ""
-#: ../../include/functions.php:3981 ../../include/functions.php:4000
-#: ../../include/functions.php:4014 ../../include/functions.php:4036
-#: ../../include/functions.php:4117 ../../include/functions.php:4194
+#: ../../include/functions.php:4007 ../../include/functions.php:4026
+#: ../../include/functions.php:4040 ../../include/functions.php:4062
+#: ../../include/functions.php:4143 ../../include/functions.php:4220
msgid "Unit "
msgstr ""
-#: ../../include/functions.php:4062 ../../include/functions.php:4127
+#: ../../include/functions.php:4102
+#: ../../include/lib/Dashboard/Widgets/top_n.php:280
+msgid "Avg."
+msgstr ""
+
+#: ../../include/functions.php:4153
msgid "Min:"
msgstr ""
-#: ../../include/functions.php:4069 ../../include/functions.php:4136
+#: ../../include/functions.php:4162
msgid "Max:"
msgstr ""
-#: ../../include/functions.php:4076 ../../include/functions.php:4145
+#: ../../include/functions.php:4171
msgid "Avg:"
msgstr ""
-#: ../../include/functions.php:4191 ../../include/functions.php:4199
+#: ../../include/functions.php:4217 ../../include/functions.php:4225
msgid "of module"
msgstr ""
-#: ../../include/functions.php:4218
+#: ../../include/functions.php:4244
msgid "Projection"
msgstr ""
-#: ../../include/functions.php:6064
+#: ../../include/functions.php:6094
msgid "Testing Pandora FMS email"
msgstr ""
-#: ../../include/functions.php:6077
+#: ../../include/functions.php:6107
msgid ""
"This is an email test sent from Pandora FMS. If you can read this, your "
"configuration works."
msgstr ""
-#: ../../include/functions.php:6311
+#: ../../include/functions.php:6341
#: ../../include/class/ConsoleSupervisor.php:1645
#: ../../include/class/ConsoleSupervisor.php:1669
#: ../../include/class/ConsoleSupervisor.php:1698
@@ -43180,11 +43535,11 @@ msgstr ""
msgid "Not recommended '%s' value in PHP configuration"
msgstr ""
-#: ../../include/functions.php:6312
+#: ../../include/functions.php:6342
msgid "Recommended value is: -1"
msgstr ""
-#: ../../include/functions.php:6313
+#: ../../include/functions.php:6343
#: ../../include/class/ConsoleSupervisor.php:1704
#: ../../include/class/ConsoleSupervisor.php:1785
msgid ""
@@ -43192,7 +43547,7 @@ msgid ""
"administrator"
msgstr ""
-#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96
+#: ../../include/functions.php:6344 ../../general/login_help_dialog.php:96
#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41
msgid "Documentation"
msgstr ""
@@ -43315,9 +43670,9 @@ msgstr ""
msgid "Successful delete of alert template."
msgstr ""
-#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12016
-#: ../../include/functions_api.php:12082 ../../include/functions_api.php:12363
-#: ../../include/functions_api.php:12443
+#: ../../include/functions_api.php:6463 ../../include/functions_api.php:12019
+#: ../../include/functions_api.php:12085 ../../include/functions_api.php:12366
+#: ../../include/functions_api.php:12446
#, php-format
msgid "%d agents affected"
msgstr ""
@@ -43413,159 +43768,159 @@ msgstr ""
msgid "Successful deletion"
msgstr ""
-#: ../../include/functions_api.php:9624
+#: ../../include/functions_api.php:9625
msgid "User created."
msgstr ""
-#: ../../include/functions_api.php:9717
+#: ../../include/functions_api.php:9720
msgid "User updated."
msgstr ""
-#: ../../include/functions_api.php:9794
+#: ../../include/functions_api.php:9797
msgid "Enabled user."
msgstr ""
-#: ../../include/functions_api.php:9802
+#: ../../include/functions_api.php:9805
msgid "Disabled user."
msgstr ""
-#: ../../include/functions_api.php:10097
+#: ../../include/functions_api.php:10100
#, php-format
msgid "Template have been inserted in %d agents."
msgstr ""
-#: ../../include/functions_api.php:10273
+#: ../../include/functions_api.php:10276
msgid "XML file was generated successfully in path: "
msgstr ""
-#: ../../include/functions_api.php:10413
+#: ../../include/functions_api.php:10416
#, php-format
msgid "Module has been created in %d agents."
msgstr ""
-#: ../../include/functions_api.php:10541
+#: ../../include/functions_api.php:10544
#, php-format
msgid "Action has been set for %d agents."
msgstr ""
-#: ../../include/functions_api.php:11616
+#: ../../include/functions_api.php:11619
msgid "User deleted."
msgstr ""
-#: ../../include/functions_api.php:11675
+#: ../../include/functions_api.php:11678
msgid "User profile added."
msgstr ""
-#: ../../include/functions_api.php:11740
+#: ../../include/functions_api.php:11743
msgid "User profile deleted."
msgstr ""
-#: ../../include/functions_api.php:12023
+#: ../../include/functions_api.php:12026
msgid "Module disabled successfully."
msgstr ""
-#: ../../include/functions_api.php:12025
+#: ../../include/functions_api.php:12028
msgid "The module could not be disabled."
msgstr ""
-#: ../../include/functions_api.php:12089
+#: ../../include/functions_api.php:12092
msgid "Module enabled successfully."
msgstr ""
-#: ../../include/functions_api.php:12091
+#: ../../include/functions_api.php:12094
msgid "The module could not be enabled."
msgstr ""
-#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192
+#: ../../include/functions_api.php:12142 ../../include/functions_api.php:12195
msgid "The alert could not be disabled."
msgstr ""
-#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292
+#: ../../include/functions_api.php:12242 ../../include/functions_api.php:12295
msgid "The alert could not be enabled."
msgstr ""
-#: ../../include/functions_api.php:13586
+#: ../../include/functions_api.php:13597
msgid "Enabled agent."
msgstr ""
-#: ../../include/functions_api.php:13594
+#: ../../include/functions_api.php:13605
msgid "Disabled agent."
msgstr ""
-#: ../../include/functions_api.php:14573
+#: ../../include/functions_api.php:14584
msgid "Metaconsole and the licenses of all nodes were updated."
msgstr ""
-#: ../../include/functions_api.php:14575
+#: ../../include/functions_api.php:14586
#, php-format
msgid "Metaconsole license updated but %d of %d node failed to sync."
msgstr ""
-#: ../../include/functions_api.php:14578
+#: ../../include/functions_api.php:14589
msgid "This function is for metaconsole only."
msgstr ""
-#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039
+#: ../../include/functions_api.php:14979 ../../include/functions_api.php:15050
msgid "Successfully deleted."
msgstr ""
-#: ../../include/functions_api.php:14998
+#: ../../include/functions_api.php:15009
msgid "The user cannot access the cluster."
msgstr ""
-#: ../../include/functions_api.php:15884
+#: ../../include/functions_api.php:15895
msgid "Event filter successfully created."
msgstr ""
-#: ../../include/functions_api.php:16117
+#: ../../include/functions_api.php:16128
msgid "Event filter successfully updated."
msgstr ""
-#: ../../include/functions_api.php:16158
+#: ../../include/functions_api.php:16169
msgid "Event filter successfully deleted."
msgstr ""
-#: ../../include/functions_api.php:16474
+#: ../../include/functions_api.php:16485
msgid "Validated traps."
msgstr ""
-#: ../../include/functions_api.php:16501
+#: ../../include/functions_api.php:16512
msgid "Deleted traps."
msgstr ""
-#: ../../include/functions_api.php:16694
+#: ../../include/functions_api.php:16705
#, php-format
msgid "Successfully updated module/alert count in id agent %d."
msgstr ""
-#: ../../include/functions_api.php:16696
+#: ../../include/functions_api.php:16707
msgid "Successfully updated module/alert count in all agents"
msgstr ""
-#: ../../include/functions_api.php:17170
+#: ../../include/functions_api.php:17181
#, php-format
msgid "Successfully added to delete pending id agent %d to id policy %d."
msgstr ""
-#: ../../include/functions_api.php:17359
+#: ../../include/functions_api.php:17370
msgid "Error enable/disable discovery task. Id_user cannot be left blank."
msgstr ""
-#: ../../include/functions_api.php:17367
+#: ../../include/functions_api.php:17378
msgid ""
"Error enable/disable discovery task. Enable/disable value cannot be left "
"blank."
msgstr ""
-#: ../../include/functions_api.php:17392
+#: ../../include/functions_api.php:17403
msgid "Error in discovery task enabling/disabling."
msgstr ""
-#: ../../include/functions_api.php:17400
+#: ../../include/functions_api.php:17411
msgid "Enabled discovery task."
msgstr ""
-#: ../../include/functions_api.php:17408
+#: ../../include/functions_api.php:17419
msgid "Disabled discovery task."
msgstr ""
@@ -43691,25 +44046,39 @@ msgstr ""
msgid "3 minutes"
msgstr ""
-#: ../../include/ajax/heatmap.ajax.php:81
+#: ../../include/ajax/heatmap.ajax.php:100
#: ../../include/lib/Dashboard/Widgets/heatmap.php:253
msgid "Group modules by tag"
msgstr ""
-#: ../../include/ajax/heatmap.ajax.php:82
+#: ../../include/ajax/heatmap.ajax.php:101
#: ../../include/lib/Dashboard/Widgets/heatmap.php:254
msgid "Group modules by module group"
msgstr ""
-#: ../../include/ajax/heatmap.ajax.php:83
+#: ../../include/ajax/heatmap.ajax.php:102
#: ../../include/lib/Dashboard/Widgets/heatmap.php:255
msgid "Group modules by agents"
msgstr ""
-#: ../../include/ajax/heatmap.ajax.php:100
+#: ../../include/ajax/heatmap.ajax.php:123
msgid "Show groups"
msgstr ""
+#: ../../include/ajax/heatmap.ajax.php:356
+msgid "Date of last data"
+msgstr ""
+
+#: ../../include/ajax/heatmap.ajax.php:491
+#: ../../operation/agentes/estado_generalagente.php:406
+msgid "Out of bounds"
+msgstr ""
+
+#: ../../include/ajax/heatmap.ajax.php:494
+#: ../../operation/agentes/estado_generalagente.php:441
+msgid "Next contact"
+msgstr ""
+
#: ../../include/ajax/alert_list.ajax.php:289
#: ../../include/ajax/alert_list.ajax.php:314
msgid "Force execution"
@@ -43721,13 +44090,17 @@ msgid "F."
msgstr ""
#: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:372
-#: ../../operation/agentes/alerts_status.php:373
-#: ../../operation/agentes/alerts_status.php:414
-#: ../../operation/agentes/alerts_status.php:415
+#: ../../operation/agentes/alerts_status.php:374
+#: ../../operation/agentes/alerts_status.php:375
+#: ../../operation/agentes/alerts_status.php:416
+#: ../../operation/agentes/alerts_status.php:417
msgid "No alerts found"
msgstr ""
+#: ../../include/ajax/alert_list.ajax.php:540
+msgid "If a value of 0 is assigned, the Threshold of the action will be used."
+msgstr ""
+
#: ../../include/ajax/alert_list.ajax.php:633
msgid "Insufficient permissions to validate alerts"
msgstr ""
@@ -43758,49 +44131,45 @@ msgstr ""
msgid "Policy created succesfully"
msgstr ""
-#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215
+#: ../../include/ajax/module.php:251 ../../include/class/AuditLog.class.php:215
msgid "3 months"
msgstr ""
-#: ../../include/ajax/module.php:231
+#: ../../include/ajax/module.php:254
msgid "2 years"
msgstr ""
-#: ../../include/ajax/module.php:232
+#: ../../include/ajax/module.php:255
msgid "3 years"
msgstr ""
-#: ../../include/ajax/module.php:243
-#: ../../operation/agentes/datos_agente.php:194
+#: ../../include/ajax/module.php:266
+#: ../../operation/agentes/datos_agente.php:196
msgid "Choose a time from now"
msgstr ""
-#: ../../include/ajax/module.php:269
-#: ../../operation/agentes/datos_agente.php:197
+#: ../../include/ajax/module.php:292
+#: ../../operation/agentes/datos_agente.php:199
msgid "Specify time range"
msgstr ""
-#: ../../include/ajax/module.php:327
+#: ../../include/ajax/module.php:350
msgid "Exact phrase"
msgstr ""
-#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485
-#: ../../operation/agentes/interface_traffic_graph_win.php:310
+#: ../../include/ajax/module.php:442 ../../operation/agentes/stat_win.php:501
+#: ../../operation/agentes/interface_traffic_graph_win.php:319
msgid ""
"In Pandora FMS, data is stored compressed. The data visualization in "
"database, charts or CSV exported data won't match, because is interpreted at "
"runtime. Please check 'Pandora FMS Engineering' chapter from documentation."
msgstr ""
-#: ../../include/ajax/module.php:586
-msgid "No available data to showaaaa"
-msgstr ""
-
-#: ../../include/ajax/module.php:1000
+#: ../../include/ajax/module.php:1023
msgid "T"
msgstr ""
-#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650
+#: ../../include/ajax/module.php:1030 ../../include/functions_reports.php:650
#: ../../include/functions_reports.php:654
#: ../../include/functions_reports.php:659
#: ../../include/functions_reports.php:665
@@ -43813,41 +44182,41 @@ msgstr ""
#: ../../include/functions_groups.php:123
#: ../../include/functions_groups.php:187
#: ../../operation/search_results.php:120
-#: ../../operation/agentes/ver_agente.php:1578
-#: ../../operation/agentes/ver_agente.php:1881
+#: ../../operation/agentes/ver_agente.php:1574
+#: ../../operation/agentes/ver_agente.php:1877
msgid "Graphs"
msgstr ""
-#: ../../include/ajax/module.php:1155
+#: ../../include/ajax/module.php:1182
msgid "Time elapsed since last status change: "
msgstr ""
-#: ../../include/ajax/module.php:1281
-#: ../../operation/agentes/estado_generalagente.php:411
+#: ../../include/ajax/module.php:1309
+#: ../../operation/agentes/estado_generalagente.php:382
msgid "Force checks"
msgstr ""
-#: ../../include/ajax/module.php:1360
+#: ../../include/ajax/module.php:1388
msgid "Any monitors aren't with this filter."
msgstr ""
-#: ../../include/ajax/module.php:1360
+#: ../../include/ajax/module.php:1388
msgid "This agent doesn't have any active monitors."
msgstr ""
-#: ../../include/ajax/module.php:2138
+#: ../../include/ajax/module.php:2167
msgid "Load"
msgstr ""
-#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582
+#: ../../include/ajax/module.php:2264 ../../include/ajax/agent.php:582
msgid "Update/delete filter"
msgstr ""
-#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672
+#: ../../include/ajax/module.php:2342 ../../include/ajax/agent.php:672
msgid "Save current filter"
msgstr ""
-#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687
+#: ../../include/ajax/module.php:2357 ../../include/ajax/agent.php:687
#: ../../include/ajax/custom_fields.php:702
msgid "Delete filter"
msgstr ""
@@ -43930,108 +44299,116 @@ msgstr ""
msgid "Console successfully deleted"
msgstr ""
-#: ../../include/ajax/events.php:98
+#: ../../include/ajax/events.php:99
msgid "Failed to retrieve comments"
msgstr ""
-#: ../../include/ajax/events.php:897
+#: ../../include/ajax/events.php:898
msgid "Save/Update filters"
msgstr ""
-#: ../../include/ajax/events.php:1287
+#: ../../include/ajax/events.php:1288
msgid "unauthorized"
msgstr ""
-#: ../../include/ajax/events.php:1393
+#: ../../include/ajax/events.php:1394
msgid "Error executing response"
msgstr ""
-#: ../../include/ajax/events.php:1746
+#: ../../include/ajax/events.php:1747
msgid "Related"
msgstr ""
-#: ../../include/ajax/events.php:1758
+#: ../../include/ajax/events.php:1759
msgid "Agent fields"
msgstr ""
-#: ../../include/ajax/events.php:1896
+#: ../../include/ajax/events.php:1897
msgid "Error adding comment"
msgstr ""
-#: ../../include/ajax/events.php:1903
+#: ../../include/ajax/events.php:1904
msgid "Comment added successfully"
msgstr ""
-#: ../../include/ajax/events.php:1910
+#: ../../include/ajax/events.php:1911
msgid "Error changing event status"
msgstr ""
-#: ../../include/ajax/events.php:1917
+#: ../../include/ajax/events.php:1918
msgid "Event status changed successfully"
msgstr ""
-#: ../../include/ajax/events.php:1924
+#: ../../include/ajax/events.php:1925
msgid "Error changing event owner"
msgstr ""
-#: ../../include/ajax/events.php:1931
+#: ../../include/ajax/events.php:1932
msgid "Event owner changed successfully"
msgstr ""
-#: ../../include/ajax/events.php:1938
+#: ../../include/ajax/events.php:1939
msgid "Error deleting event"
msgstr ""
-#: ../../include/ajax/events.php:2073
+#: ../../include/ajax/events.php:2074
msgid "Show all Events 24h"
msgstr ""
-#: ../../include/ajax/events.php:2170
+#: ../../include/ajax/events.php:2171
msgid "These commands will apply to all selected events"
msgstr ""
-#: ../../include/ajax/events.php:2232
+#: ../../include/ajax/events.php:2233
msgid "Total number of events in this node reached"
msgstr ""
-#: ../../include/ajax/events.php:2266
+#: ../../include/ajax/events.php:2267
msgid "Total Events per node"
msgstr ""
-#: ../../include/ajax/events.php:2331
+#: ../../include/ajax/events.php:2332
+#: ../../operation/events/sound_events.php:208
msgid "Console configuration"
msgstr ""
-#: ../../include/ajax/events.php:2338
+#: ../../include/ajax/events.php:2339
+#: ../../operation/events/sound_events.php:215
msgid "Set condition"
msgstr ""
-#: ../../include/ajax/events.php:2345
-#: ../../operation/events/sound_events.php:192
+#: ../../include/ajax/events.php:2346
+#: ../../operation/events/sound_events.php:222
msgid "All new events"
msgstr ""
-#: ../../include/ajax/events.php:2382
+#: ../../include/ajax/events.php:2383
+#: ../../operation/events/sound_events.php:259
msgid "Sound duration"
msgstr ""
-#: ../../include/ajax/events.php:2418
+#: ../../include/ajax/events.php:2419
+#: ../../operation/events/sound_events.php:295
msgid "Sound melody"
msgstr ""
-#: ../../include/ajax/events.php:2432
+#: ../../include/ajax/events.php:2433
+#: ../../operation/events/sound_events.php:309
msgid "Test sound"
msgstr ""
-#: ../../include/ajax/events.php:2456
+#: ../../include/ajax/events.php:2457
+#: ../../operation/events/sound_events.php:333
msgid "Discovered alerts"
msgstr ""
-#: ../../include/ajax/events.php:2463
+#: ../../include/ajax/events.php:2464
+#: ../../operation/events/sound_events.php:340
msgid "No alerts discovered"
msgstr ""
-#: ../../include/ajax/events.php:2468
+#: ../../include/ajax/events.php:2469
+#: ../../operation/events/sound_events.php:345
msgid "Congrats! thereâs nothing to show"
msgstr ""
@@ -44054,28 +44431,28 @@ msgstr ""
#: ../../include/functions_agents.php:3030
#: ../../include/functions_agents.php:3091
#: ../../include/functions_agents.php:3158
-#: ../../include/functions_reporting.php:13111
+#: ../../include/functions_reporting.php:13184
msgid "At least one module in CRITICAL status"
msgstr ""
#: ../../include/functions_agents.php:3036
#: ../../include/functions_agents.php:3104
#: ../../include/functions_agents.php:3166
-#: ../../include/functions_reporting.php:13118
+#: ../../include/functions_reporting.php:13191
msgid "At least one module in WARNING status"
msgstr ""
#: ../../include/functions_agents.php:3042
#: ../../include/functions_agents.php:3117
#: ../../include/functions_agents.php:3174
-#: ../../include/functions_reporting.php:13125
+#: ../../include/functions_reporting.php:13198
msgid "At least one module is in UKNOWN status"
msgstr ""
#: ../../include/functions_agents.php:3048
#: ../../include/functions_agents.php:3130
#: ../../include/functions_agents.php:3182
-#: ../../include/functions_reporting.php:13132
+#: ../../include/functions_reporting.php:13205
msgid "All Monitors OK"
msgstr ""
@@ -44087,12 +44464,12 @@ msgstr ""
msgid "Dialog response time"
msgstr ""
-#: ../../include/functions_inventory.php:115
-#: ../../include/functions_inventory.php:1051
+#: ../../include/functions_inventory.php:116
+#: ../../include/functions_inventory.php:1161
msgid "No changes found"
msgstr ""
-#: ../../include/functions_inventory.php:214
+#: ../../include/functions_inventory.php:215
msgid "Get CSV file"
msgstr ""
@@ -44200,7 +44577,7 @@ msgstr ""
msgid "Could not changes password on remote pandora"
msgstr ""
-#: ../../include/auth/mysql.php:858
+#: ../../include/auth/mysql.php:886
msgid "Your installation of PHP does not support LDAP"
msgstr ""
@@ -44220,19 +44597,19 @@ msgstr ""
msgid "User, group or profile status not specified"
msgstr ""
-#: ../../include/functions_graph.php:2607
+#: ../../include/functions_graph.php:2617
msgid "Not fired alerts"
msgstr ""
-#: ../../include/functions_graph.php:3235
-#: ../../include/functions_graph.php:5490 ../../include/functions_ui.php:4233
+#: ../../include/functions_graph.php:3245
+#: ../../include/functions_graph.php:5500 ../../include/functions_ui.php:4307
#: ../../include/functions_events.php:108
-#: ../../include/functions_events.php:2946
-#: ../../operation/events/events.php:698
+#: ../../include/functions_events.php:2951
+#: ../../operation/events/events.php:703
msgid "SYSTEM"
msgstr ""
-#: ../../include/functions_graph.php:5237
+#: ../../include/functions_graph.php:5247
msgid "Main node"
msgstr ""
@@ -44253,240 +44630,264 @@ msgstr ""
msgid "Module information"
msgstr ""
-#: ../../include/functions_treeview.php:380
+#: ../../include/functions_treeview.php:329
+msgid "Go to module edition"
+msgstr ""
+
+#: ../../include/functions_treeview.php:384
msgid "There was a problem loading alerts"
msgstr ""
-#: ../../include/functions_treeview.php:467
+#: ../../include/functions_treeview.php:471
msgid "Go to alerts edition"
msgstr ""
-#: ../../include/functions_treeview.php:559
+#: ../../include/functions_treeview.php:563
#: ../../operation/agentes/agent_fields.php:24
#: ../../operation/agentes/custom_fields.php:24
#: ../../operation/agentes/estado_generalagente.php:62
msgid "There was a problem loading agent"
msgstr ""
-#: ../../include/functions_treeview.php:611
+#: ../../include/functions_treeview.php:615
msgid "Click here for view this agent"
msgstr ""
-#: ../../include/functions_treeview.php:633
-#: ../../operation/agentes/estado_generalagente.php:588
+#: ../../include/functions_treeview.php:637
+#: ../../operation/agentes/estado_generalagente.php:557
msgid "Other IP addresses"
msgstr ""
-#: ../../include/functions_treeview.php:676
+#: ../../include/functions_treeview.php:680
msgid "Remote contact"
msgstr ""
-#: ../../include/functions_treeview.php:684
+#: ../../include/functions_treeview.php:688
msgid "Next agent contact"
msgstr ""
-#: ../../include/functions_treeview.php:697
+#: ../../include/functions_treeview.php:701
msgid "Agent information"
msgstr ""
-#: ../../include/functions_treeview.php:744
+#: ../../include/functions_treeview.php:748
msgid "Agent access rate (24h)"
msgstr ""
-#: ../../include/functions_treeview.php:800
+#: ../../include/functions_treeview.php:804
#: ../../operation/agentes/interface_view.functions.php:722
-#: ../../operation/agentes/pandora_networkmap.view.php:1303
-#: ../../operation/agentes/estado_generalagente.php:826
+#: ../../operation/agentes/pandora_networkmap.view.php:1304
+#: ../../operation/agentes/estado_generalagente.php:784
msgid "Interface traffic"
msgstr ""
-#: ../../include/functions_treeview.php:823
+#: ../../include/functions_treeview.php:827
msgid "Interface information"
msgstr ""
-#: ../../include/functions_treeview.php:863
-#: ../../operation/agentes/estado_generalagente.php:549
+#: ../../include/functions_treeview.php:867
+#: ../../operation/agentes/estado_generalagente.php:524
msgid "Position (Long, Lat)"
msgstr ""
-#: ../../include/functions_treeview.php:872
-#: ../../operation/agentes/ver_agente.php:1552
-#: ../../operation/agentes/ver_agente.php:1889
-#: ../../operation/agentes/estado_generalagente.php:575
+#: ../../include/functions_treeview.php:876
+#: ../../operation/agentes/ver_agente.php:1548
+#: ../../operation/agentes/ver_agente.php:1885
+#: ../../operation/agentes/estado_generalagente.php:544
msgid "Url address"
msgstr ""
-#: ../../include/functions_treeview.php:886
-#: ../../operation/agentes/estado_generalagente.php:600
+#: ../../include/functions_treeview.php:890
+#: ../../operation/agentes/estado_generalagente.php:569
msgid "Timezone Offset"
msgstr ""
-#: ../../include/functions_treeview.php:917
+#: ../../include/functions_treeview.php:921
msgid "Advanced information"
msgstr ""
-#: ../../include/functions_menu.php:561
+#: ../../include/functions_treeview.php:940
+msgid "Go to cluster edition"
+msgstr ""
+
+#: ../../include/functions_treeview.php:949
+msgid "Go to module creation"
+msgstr ""
+
+#: ../../include/functions_treeview.php:958
+msgid "Go to agent edition"
+msgstr ""
+
+#: ../../include/functions_menu.php:563
msgid "Configure user"
msgstr ""
-#: ../../include/functions_menu.php:562
+#: ../../include/functions_menu.php:564
msgid "Configure profile"
msgstr ""
-#: ../../include/functions_menu.php:564
+#: ../../include/functions_menu.php:566
msgid "Module templates management"
msgstr ""
-#: ../../include/functions_menu.php:565
+#: ../../include/functions_menu.php:567
msgid "Inventory modules management"
msgstr ""
-#: ../../include/functions_menu.php:572
+#: ../../include/functions_menu.php:574
msgid "Builder visual console"
msgstr ""
-#: ../../include/functions_menu.php:574
+#: ../../include/functions_menu.php:576
msgid "View reporting"
msgstr ""
-#: ../../include/functions_menu.php:575
+#: ../../include/functions_menu.php:577
msgid "Graph viewer"
msgstr ""
-#: ../../include/functions_menu.php:577
+#: ../../include/functions_menu.php:579
msgid "Manage custom graphs"
msgstr ""
-#: ../../include/functions_menu.php:578
+#: ../../include/functions_menu.php:580
msgid "View graph containers"
msgstr ""
-#: ../../include/functions_menu.php:579
+#: ../../include/functions_menu.php:581
msgid "Manage graph containers"
msgstr ""
-#: ../../include/functions_menu.php:580
+#: ../../include/functions_menu.php:582
msgid "View graph templates"
msgstr ""
-#: ../../include/functions_menu.php:581
+#: ../../include/functions_menu.php:583
msgid "Manage graph templates"
msgstr ""
-#: ../../include/functions_menu.php:582
+#: ../../include/functions_menu.php:584
msgid "Graph template items"
msgstr ""
-#: ../../include/functions_menu.php:583
+#: ../../include/functions_menu.php:585
msgid "Graph template wizard"
msgstr ""
-#: ../../include/functions_menu.php:586
+#: ../../include/functions_menu.php:588
+msgid "New custom reports"
+msgstr ""
+
+#: ../../include/functions_menu.php:589
msgid "Edit custom reports"
msgstr ""
-#: ../../include/functions_menu.php:588
-msgid "Edit item"
-msgstr ""
-
#: ../../include/functions_menu.php:590
-msgid "Wizard sla"
-msgstr ""
-
-#: ../../include/functions_menu.php:591
-msgid "Global custom reports"
+msgid "Remove custom reports"
msgstr ""
#: ../../include/functions_menu.php:592
-msgid "Avanced options"
+msgid "Edit item"
+msgstr ""
+
+#: ../../include/functions_menu.php:594
+msgid "Wizard sla"
msgstr ""
#: ../../include/functions_menu.php:595
+msgid "Global custom reports"
+msgstr ""
+
+#: ../../include/functions_menu.php:596
+msgid "Avanced options"
+msgstr ""
+
+#: ../../include/functions_menu.php:599
msgid "Manage GIS Maps"
msgstr ""
-#: ../../include/functions_menu.php:598
+#: ../../include/functions_menu.php:602
msgid "Manage messages"
msgstr ""
-#: ../../include/functions_menu.php:600
+#: ../../include/functions_menu.php:604
msgid "Manage module groups"
msgstr ""
-#: ../../include/functions_menu.php:601
+#: ../../include/functions_menu.php:605
msgid "Manage custom field"
msgstr ""
-#: ../../include/functions_menu.php:603
+#: ../../include/functions_menu.php:607
msgid "Manage alert actions"
msgstr ""
-#: ../../include/functions_menu.php:604
+#: ../../include/functions_menu.php:608
msgid "Manage commands"
msgstr ""
-#: ../../include/functions_menu.php:606
+#: ../../include/functions_menu.php:610
msgid "Manage export targets"
msgstr ""
-#: ../../include/functions_menu.php:608 ../../operation/menu.php:254
+#: ../../include/functions_menu.php:612 ../../operation/menu.php:254
msgid "SNMP trap generator"
msgstr ""
-#: ../../include/functions_menu.php:611
+#: ../../include/functions_menu.php:615
msgid "Manage incident"
msgstr ""
-#: ../../include/functions_menu.php:613
+#: ../../include/functions_menu.php:617
msgid "Manage groups"
msgstr ""
-#: ../../include/functions_menu.php:673
+#: ../../include/functions_menu.php:677
msgid "Administration"
msgstr ""
-#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303
+#: ../../include/functions_menu.php:941 ../../include/functions_ui.php:303
msgid "Information"
msgstr ""
-#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109
+#: ../../include/functions_menu.php:943 ../../include/functions_menu.php:1114
#: ../../include/class/Diagnostics.class.php:251
msgid "System Info"
msgstr ""
-#: ../../include/functions_menu.php:939
+#: ../../include/functions_menu.php:944
msgid "PHP System"
msgstr ""
-#: ../../include/functions_menu.php:954
+#: ../../include/functions_menu.php:959
msgid "MR version"
msgstr ""
-#: ../../include/functions_menu.php:962
+#: ../../include/functions_menu.php:967
msgid "Update manager"
msgstr ""
-#: ../../include/functions_menu.php:974
+#: ../../include/functions_menu.php:979
msgid "System report"
msgstr ""
-#: ../../include/functions_menu.php:1006
+#: ../../include/functions_menu.php:1011
#: ../../include/class/Diagnostics.class.php:243
msgid "Database health status"
msgstr ""
-#: ../../include/functions_menu.php:1036
+#: ../../include/functions_menu.php:1041
#: ../../include/class/Diagnostics.class.php:247
msgid "Database status info"
msgstr ""
-#: ../../include/functions_menu.php:1074
+#: ../../include/functions_menu.php:1079
#: ../../include/class/Diagnostics.class.php:260
#, php-format
msgid "Tables fragmentation in the %s database"
msgstr ""
-#: ../../include/functions_menu.php:1168
+#: ../../include/functions_menu.php:1173
msgid "PHP system"
msgstr ""
@@ -44598,6 +44999,7 @@ msgid "Now, pull down the Manage alerts menu and click on Actions. "
msgstr ""
#: ../../include/help/clippy/module_unknow.php:35
+#: ../../include/functions_clippy.php:321
msgid "You have unknown modules in this agent."
msgstr ""
@@ -44914,8 +45316,8 @@ msgid "Please check if the email configuration is correct."
msgstr ""
#: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:972
-#: ../../operation/users/user_edit.php:981
+#: ../../operation/users/user_edit.php:969
+#: ../../operation/users/user_edit.php:978
msgid "Profiles/Groups assigned to this user"
msgstr ""
@@ -44949,150 +45351,150 @@ msgid ""
"access"
msgstr ""
-#: ../../include/functions_ui.php:985
+#: ../../include/functions_ui.php:1017
msgid "Software"
msgstr ""
-#: ../../include/functions_ui.php:1281
+#: ../../include/functions_ui.php:1318
msgid "Force check"
msgstr ""
-#: ../../include/functions_ui.php:1525
+#: ../../include/functions_ui.php:1568
msgid "The alert would fire when the value is over "
msgstr ""
-#: ../../include/functions_ui.php:1530
+#: ../../include/functions_ui.php:1573
msgid "The alert would fire when the value is under "
msgstr ""
-#: ../../include/functions_ui.php:1545
+#: ../../include/functions_ui.php:1588
msgid "Unknown option."
msgstr ""
-#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666
+#: ../../include/functions_ui.php:1950 ../../include/functions_config.php:2686
msgid "the Flexible Monitoring System"
msgstr ""
-#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312
+#: ../../include/functions_ui.php:2329 ../../include/functions_ui.php:2355
#, php-format
msgid "Total items: %s"
msgstr ""
-#: ../../include/functions_ui.php:2341
+#: ../../include/functions_ui.php:2384
msgid "First"
msgstr ""
-#: ../../include/functions_ui.php:2797
+#: ../../include/functions_ui.php:2840
msgid "Unknown type"
msgstr ""
-#: ../../include/functions_ui.php:3752
+#: ../../include/functions_ui.php:3800
msgid "No matching records found"
msgstr ""
-#: ../../include/functions_ui.php:3753
+#: ../../include/functions_ui.php:3801
msgid "No data available in table"
msgstr ""
-#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995
+#: ../../include/functions_ui.php:4066 ../../include/functions_ui.php:4067
msgid "Export current page to CSV"
msgstr ""
-#: ../../include/functions_ui.php:4224 ../../include/functions_events.php:75
-#: ../../include/functions_events.php:101 ../../operation/events/events.php:689
-#: ../../operation/events/events.php:753
+#: ../../include/functions_ui.php:4298 ../../include/functions_events.php:75
+#: ../../include/functions_events.php:101 ../../operation/events/events.php:694
+#: ../../operation/events/events.php:758
msgid "ALERT"
msgstr ""
-#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167
-#: ../../operation/events/events.php:613
+#: ../../include/functions_ui.php:4386 ../../include/functions_events.php:167
+#: ../../operation/events/events.php:618
msgid "MAINTENANCE"
msgstr ""
-#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170
-#: ../../operation/events/events.php:618
+#: ../../include/functions_ui.php:4391 ../../include/functions_events.php:170
+#: ../../operation/events/events.php:623
msgid "INFORMATIONAL"
msgstr ""
-#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176
-#: ../../operation/events/events.php:628
+#: ../../include/functions_ui.php:4411 ../../include/functions_events.php:176
+#: ../../operation/events/events.php:633
msgid "MINOR"
msgstr ""
-#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173
-#: ../../operation/events/events.php:623
+#: ../../include/functions_ui.php:4416 ../../include/functions_events.php:173
+#: ../../operation/events/events.php:628
msgid "MAJOR"
msgstr ""
-#: ../../include/functions_ui.php:5168 ../../include/functions_html.php:962
-#: ../../include/functions_html.php:3659 ../../include/functions_html.php:4158
-#: ../../include/functions_reporting.php:12166
-#: ../../include/functions_reporting.php:12319
-#: ../../include/functions_reporting.php:12333
-#: ../../include/functions_reporting.php:14672
-#: ../../include/functions_reporting.php:14747
-#: ../../include/functions_groups.php:2647
-#: ../../include/functions_groups.php:2661
-#: ../../include/functions_groups.php:2711
+#: ../../include/functions_ui.php:5243 ../../include/functions_html.php:967
+#: ../../include/functions_html.php:3675 ../../include/functions_html.php:4174
+#: ../../include/functions_reporting.php:12239
+#: ../../include/functions_reporting.php:12392
+#: ../../include/functions_reporting.php:12406
+#: ../../include/functions_reporting.php:14745
+#: ../../include/functions_reporting.php:14820
+#: ../../include/functions_groups.php:2672
+#: ../../include/functions_groups.php:2686
+#: ../../include/functions_groups.php:2736
msgid "Enterprise version not installed"
msgstr ""
-#: ../../include/functions_ui.php:5563
+#: ../../include/functions_ui.php:5638
msgid "Type at least two characters to search."
msgstr ""
-#: ../../include/functions_ui.php:6503
+#: ../../include/functions_ui.php:6578
msgid "Unhandled error"
msgstr ""
-#: ../../include/functions_ui.php:6504
+#: ../../include/functions_ui.php:6579
msgid "An unhandled error occurs"
msgstr ""
-#: ../../include/functions_ui.php:6775
+#: ../../include/functions_ui.php:6850
#, php-format
msgid ""
"These controls are using the timezone of the system (%s) instead of yours "
"(%s). The difference with your time zone in hours is %s."
msgstr ""
-#: ../../include/functions_ui.php:7127
+#: ../../include/functions_ui.php:7199
msgid "Results"
msgstr ""
-#: ../../include/functions_ui.php:7173
+#: ../../include/functions_ui.php:7245
msgid "Execute query"
msgstr ""
-#: ../../include/functions_ui.php:7196
+#: ../../include/functions_ui.php:7266
msgid "Show password"
msgstr ""
-#: ../../include/functions_ui.php:7296
+#: ../../include/functions_ui.php:7366
msgid "WEB server"
msgstr ""
-#: ../../include/functions_ui.php:7306
+#: ../../include/functions_ui.php:7376
msgid "Wizard Module"
msgstr ""
-#: ../../include/functions_ui.php:7399
+#: ../../include/functions_ui.php:7469
msgid "Select inventory module"
msgstr ""
-#: ../../include/functions_ui.php:7455
+#: ../../include/functions_ui.php:7532
msgid "Use custom fields"
msgstr ""
-#: ../../include/functions_ui.php:7581
+#: ../../include/functions_ui.php:7672
msgid "Field name"
msgstr ""
-#: ../../include/functions_ui.php:7598
+#: ../../include/functions_ui.php:7689
msgid "It's a password"
msgstr ""
-#: ../../include/functions_ui.php:7606
+#: ../../include/functions_ui.php:7697
msgid "Add field"
msgstr ""
@@ -45111,21 +45513,21 @@ msgstr ""
msgid "Modules successfully added to layout"
msgstr ""
-#: ../../include/functions_visual_map.php:3108
+#: ../../include/functions_visual_map.php:3111
msgid "Agents successfully added to layout"
msgstr ""
-#: ../../include/functions_visual_map.php:3504
+#: ../../include/functions_visual_map.php:3512
msgid "Cannot load the visualmap"
msgstr ""
-#: ../../include/functions_visual_map.php:4175
-#: ../../include/rest-api/models/VisualConsole/Item.php:2108
+#: ../../include/functions_visual_map.php:4184
+#: ../../include/rest-api/models/VisualConsole/Item.php:2111
msgid "Bars graph"
msgstr ""
-#: ../../include/functions_visual_map.php:4185
-#: ../../include/rest-api/models/VisualConsole/Item.php:2116
+#: ../../include/functions_visual_map.php:4194
+#: ../../include/rest-api/models/VisualConsole/Item.php:2119
msgid "Percentile bar"
msgstr ""
@@ -45175,7 +45577,7 @@ msgstr ""
msgid "No actions defined"
msgstr ""
-#: ../../include/functions_alerts.php:2665
+#: ../../include/functions_alerts.php:2666
msgid "Alert and command group does not match"
msgstr ""
@@ -45305,24 +45707,24 @@ msgid "Current ranges"
msgstr ""
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-#: ../../include/rest-api/models/VisualConsole/Item.php:1995
+#: ../../include/rest-api/models/VisualConsole/Item.php:1998
msgid "width"
msgstr ""
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-#: ../../include/rest-api/models/VisualConsole/Item.php:2005
+#: ../../include/rest-api/models/VisualConsole/Item.php:2008
msgid "height"
msgstr ""
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-#: ../../include/rest-api/models/VisualConsole/Item.php:2027
+#: ../../include/rest-api/models/VisualConsole/Item.php:2030
msgid "X"
msgstr ""
#: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
#: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
-#: ../../include/rest-api/models/VisualConsole/Item.php:2064
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:954
+#: ../../include/rest-api/models/VisualConsole/Item.php:2067
msgid "Show on top"
msgstr ""
@@ -45365,11 +45767,15 @@ msgstr ""
msgid "Show legend"
msgstr ""
+#: ../../include/rest-api/models/VisualConsole/Items/Group.php:715
+msgid "Recursive"
+msgstr ""
+
#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
-#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
+#: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:621
#: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:721
-#: ../../include/rest-api/models/VisualConsole/View.php:800
+#: ../../include/rest-api/models/VisualConsole/View.php:687
+#: ../../include/rest-api/models/VisualConsole/View.php:766
msgid "Failed to connect to node"
msgstr ""
@@ -45392,67 +45798,67 @@ msgstr ""
msgid "Specific settings"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:221
+#: ../../include/rest-api/models/VisualConsole/View.php:183
msgid "Item type not valid ["
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:226
+#: ../../include/rest-api/models/VisualConsole/View.php:188
msgid "Item type has no getFormInputs method ["
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:738
+#: ../../include/rest-api/models/VisualConsole/View.php:704
msgid "NetworkLink from"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:742
-#: ../../include/rest-api/models/VisualConsole/View.php:821
+#: ../../include/rest-api/models/VisualConsole/View.php:708
+#: ../../include/rest-api/models/VisualConsole/View.php:787
#, php-format
msgid "Interface %s status"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:747
-#: ../../include/rest-api/models/VisualConsole/View.php:826
+#: ../../include/rest-api/models/VisualConsole/View.php:713
+#: ../../include/rest-api/models/VisualConsole/View.php:792
#: ../../operation/agentes/interface_traffic_graph_win.php:78
msgid "In"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:748
-#: ../../include/rest-api/models/VisualConsole/View.php:827
+#: ../../include/rest-api/models/VisualConsole/View.php:714
+#: ../../include/rest-api/models/VisualConsole/View.php:793
#: ../../operation/agentes/interface_traffic_graph_win.php:79
msgid "Out"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:817
+#: ../../include/rest-api/models/VisualConsole/View.php:783
msgid "NetworkLink to"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/View.php:869
+#: ../../include/rest-api/models/VisualConsole/View.php:835
#, php-format
msgid "Failed to generate charts: %s"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/Item.php:1965
+#: ../../include/rest-api/models/VisualConsole/Item.php:1968
msgid "Label position"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/Item.php:2052
+#: ../../include/rest-api/models/VisualConsole/Item.php:2055
msgid "Link enabled"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/Item.php:2094
+#: ../../include/rest-api/models/VisualConsole/Item.php:2097
msgid "Static graph"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/Item.php:2112
+#: ../../include/rest-api/models/VisualConsole/Item.php:2115
msgid "Event History Graph"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/Item.php:2120
+#: ../../include/rest-api/models/VisualConsole/Item.php:2123
msgid "Percentile bubble"
msgstr ""
-#: ../../include/rest-api/models/VisualConsole/Item.php:2590
-#: ../../include/rest-api/models/VisualConsole/Item.php:2591
+#: ../../include/rest-api/models/VisualConsole/Item.php:2593
+#: ../../include/rest-api/models/VisualConsole/Item.php:2594
msgid "Image Vc"
msgstr ""
@@ -45494,8 +45900,8 @@ msgstr ""
#: ../../include/functions_reports.php:651
#: ../../include/functions_reports.php:1102
-#: ../../include/functions_reporting.php:10729
-#: ../../include/functions_reporting.php:10889
+#: ../../include/functions_reporting.php:10738
+#: ../../include/functions_reporting.php:10898
msgid "Simple graph"
msgstr ""
@@ -45616,12 +46022,12 @@ msgid "Inventory changes"
msgstr ""
#: ../../include/functions_reports.php:918
-#: ../../include/functions_reporting.php:6921
+#: ../../include/functions_reporting.php:6930
msgid "Agent configuration"
msgstr ""
#: ../../include/functions_reports.php:922
-#: ../../include/functions_reporting.php:5230
+#: ../../include/functions_reporting.php:5239
msgid "Group configuration"
msgstr ""
@@ -45651,60 +46057,61 @@ msgstr ""
msgid "Graph Sql"
msgstr ""
-#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001
+#: ../../include/functions_html.php:622 ../../include/functions_html.php:1006
msgid "Please select an item from this list."
msgstr ""
-#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363
-msgid "Please select..."
-msgstr ""
-
-#: ../../include/functions_html.php:1622
+#: ../../include/functions_html.php:1630
msgid "Type to search agents"
msgstr ""
-#: ../../include/functions_html.php:1636
+#: ../../include/functions_html.php:1644
msgid "Type to search modules"
msgstr ""
-#: ../../include/functions_html.php:1704
+#: ../../include/functions_html.php:1713
msgid "Only common modules"
msgstr ""
-#: ../../include/functions_html.php:2139
+#: ../../include/functions_html.php:2147
msgid "weeks"
msgstr ""
-#: ../../include/functions_html.php:2321
+#: ../../include/functions_html.php:2336
msgid "Month day"
msgstr ""
-#: ../../include/functions_html.php:2323
+#: ../../include/functions_html.php:2338
msgid "Week day"
msgstr ""
-#: ../../include/functions_html.php:4800
+#: ../../include/functions_html.php:4824
msgid "Select a file"
msgstr ""
-#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020
+#: ../../include/functions_html.php:5042 ../../include/functions_html.php:5044
msgid "Type at least two characters to search the module."
msgstr ""
-#: ../../include/functions_html.php:5182 ../../index.php:533
-#: ../../index.php:817 ../../index.php:891
+#: ../../include/functions_html.php:5206 ../../index.php:533
+#: ../../index.php:818 ../../index.php:892
#, php-format
msgid "%s cannot verify the origin of the request. Try again, please."
msgstr ""
-#: ../../include/functions_html.php:6104
+#: ../../include/functions_html.php:6128
msgid "Type at least two characters to search the user."
msgstr ""
-#: ../../include/functions_html.php:6507
+#: ../../include/functions_html.php:6535
msgid "Primary group cannot be secondary too."
msgstr ""
+#: ../../include/functions_html.php:6937 ../../include/functions_html.php:6938
+#: ../../include/functions_html.php:6941 ../../include/functions_html.php:6942
+msgid "Go to top"
+msgstr ""
+
#: ../../include/functions_register.php:105
#, php-format
msgid "%s configuration wizard"
@@ -45766,7 +46173,7 @@ msgid "Integria inventory"
msgstr ""
#: ../../include/functions_config.php:252
-#: ../../include/functions_config.php:1876
+#: ../../include/functions_config.php:1888
msgid "Integria API password"
msgstr ""
@@ -45814,479 +46221,487 @@ msgid "alias_as_name"
msgstr ""
#: ../../include/functions_config.php:374
-msgid "Console log enabled"
+msgid "keep_in_process_status_extra_id"
msgstr ""
#: ../../include/functions_config.php:378
-msgid "Audit log enabled"
+msgid "Console log enabled"
msgstr ""
#: ../../include/functions_config.php:382
+msgid "Audit log enabled"
+msgstr ""
+
+#: ../../include/functions_config.php:386
msgid "Module Custom ID read only"
msgstr ""
-#: ../../include/functions_config.php:446
+#: ../../include/functions_config.php:454
msgid "Replication DB host"
msgstr ""
-#: ../../include/functions_config.php:450
+#: ../../include/functions_config.php:458
msgid "Replication DB database"
msgstr ""
-#: ../../include/functions_config.php:454
+#: ../../include/functions_config.php:462
msgid "Replication DB user"
msgstr ""
-#: ../../include/functions_config.php:458
+#: ../../include/functions_config.php:466
msgid "Replication DB password"
msgstr ""
-#: ../../include/functions_config.php:462
+#: ../../include/functions_config.php:470
msgid "Replication DB port"
msgstr ""
-#: ../../include/functions_config.php:466
+#: ../../include/functions_config.php:474
msgid "Metaconsole agent cache"
msgstr ""
-#: ../../include/functions_config.php:474
+#: ../../include/functions_config.php:482
msgid "Enable Update Manager"
msgstr ""
-#: ../../include/functions_config.php:478
+#: ../../include/functions_config.php:486
msgid "Legacy database HA"
msgstr ""
-#: ../../include/functions_config.php:482
+#: ../../include/functions_config.php:490
msgid "Ipam Ocuppied Manager Critical"
msgstr ""
-#: ../../include/functions_config.php:486
+#: ../../include/functions_config.php:494
msgid "Ipam Ocuppied Manager Warning"
msgstr ""
-#: ../../include/functions_config.php:583
+#: ../../include/functions_config.php:591
msgid "Automatically timezone visual"
msgstr ""
-#: ../../include/functions_config.php:655
+#: ../../include/functions_config.php:611
+msgid "Recursive search"
+msgstr ""
+
+#: ../../include/functions_config.php:667
msgid "Ldap search timeout"
msgstr ""
-#: ../../include/functions_config.php:671
+#: ../../include/functions_config.php:683
msgid "Secontary start TLS"
msgstr ""
-#: ../../include/functions_config.php:787
+#: ../../include/functions_config.php:799
msgid "Saml profile parameters"
msgstr ""
-#: ../../include/functions_config.php:803
+#: ../../include/functions_config.php:815
msgid "2FA all users"
msgstr ""
-#: ../../include/functions_config.php:810
+#: ../../include/functions_config.php:822
msgid "Session timeout forced to 90 minutes"
msgstr ""
-#: ../../include/functions_config.php:830
+#: ../../include/functions_config.php:842
msgid "Event purge"
msgstr ""
-#: ../../include/functions_config.php:866
+#: ../../include/functions_config.php:878
msgid "Max. days before autodisable deletion"
msgstr ""
-#: ../../include/functions_config.php:870
+#: ../../include/functions_config.php:882
msgid "Item limit for realtime reports)"
msgstr ""
-#: ../../include/functions_config.php:906
+#: ../../include/functions_config.php:918
msgid "Big Operatiopn Step to purge old data"
msgstr ""
-#: ../../include/functions_config.php:940
+#: ../../include/functions_config.php:952
msgid "Max execution event response"
msgstr ""
-#: ../../include/functions_config.php:948
+#: ../../include/functions_config.php:960
msgid "SNMP walk binary path"
msgstr ""
-#: ../../include/functions_config.php:952
+#: ../../include/functions_config.php:964
msgid "SNMP walk binary path (fallback for v1)"
msgstr ""
-#: ../../include/functions_config.php:956
+#: ../../include/functions_config.php:968
msgid "Default WMI Binary"
msgstr ""
-#: ../../include/functions_config.php:966
+#: ../../include/functions_config.php:978
msgid "SNMP Interface Agent Wizard"
msgstr ""
-#: ../../include/functions_config.php:977
+#: ../../include/functions_config.php:989
msgid "Notification Autoclose time"
msgstr ""
-#: ../../include/functions_config.php:997
+#: ../../include/functions_config.php:1009
msgid "Graph color #4"
msgstr ""
-#: ../../include/functions_config.php:1001
+#: ../../include/functions_config.php:1013
msgid "Graph color #5"
msgstr ""
-#: ../../include/functions_config.php:1005
+#: ../../include/functions_config.php:1017
msgid "Graph color #6"
msgstr ""
-#: ../../include/functions_config.php:1009
+#: ../../include/functions_config.php:1021
msgid "Graph color #7"
msgstr ""
-#: ../../include/functions_config.php:1013
+#: ../../include/functions_config.php:1025
msgid "Graph color #8"
msgstr ""
-#: ../../include/functions_config.php:1017
+#: ../../include/functions_config.php:1029
msgid "Graph color #9"
msgstr ""
-#: ../../include/functions_config.php:1021
+#: ../../include/functions_config.php:1033
msgid "Graph color #10"
msgstr ""
-#: ../../include/functions_config.php:1054
+#: ../../include/functions_config.php:1066
msgid "Show QR code header"
msgstr ""
-#: ../../include/functions_config.php:1082
+#: ../../include/functions_config.php:1094
msgid "Custom logo white background"
msgstr ""
-#: ../../include/functions_config.php:1110
+#: ../../include/functions_config.php:1122
msgid "Custom title header"
msgstr ""
-#: ../../include/functions_config.php:1114
+#: ../../include/functions_config.php:1126
msgid "Custom subtitle header"
msgstr ""
-#: ../../include/functions_config.php:1134
+#: ../../include/functions_config.php:1146
msgid "Login background"
msgstr ""
-#: ../../include/functions_config.php:1138
-#: ../../include/functions_config.php:1186
+#: ../../include/functions_config.php:1150
+#: ../../include/functions_config.php:1198
msgid "Custom Docs url"
msgstr ""
-#: ../../include/functions_config.php:1142
-#: ../../include/functions_config.php:1190
+#: ../../include/functions_config.php:1154
+#: ../../include/functions_config.php:1202
msgid "Custom support url"
msgstr ""
-#: ../../include/functions_config.php:1162
+#: ../../include/functions_config.php:1174
msgid "Custom logo metaconsole (white background)"
msgstr ""
-#: ../../include/functions_config.php:1166
+#: ../../include/functions_config.php:1178
msgid "Custom logo login metaconsole"
msgstr ""
-#: ../../include/functions_config.php:1170
+#: ../../include/functions_config.php:1182
msgid "Custom splash login metaconsole"
msgstr ""
-#: ../../include/functions_config.php:1174
+#: ../../include/functions_config.php:1186
msgid "Custom title1 login metaconsole"
msgstr ""
-#: ../../include/functions_config.php:1178
+#: ../../include/functions_config.php:1190
msgid "Custom title2 login metaconsole"
msgstr ""
-#: ../../include/functions_config.php:1182
+#: ../../include/functions_config.php:1194
msgid "Login background metaconsole"
msgstr ""
-#: ../../include/functions_config.php:1206
+#: ../../include/functions_config.php:1218
msgid "Default line favourite_view for the Visual Console"
msgstr ""
-#: ../../include/functions_config.php:1210
+#: ../../include/functions_config.php:1222
msgid "Default line menu items for the Visual Console"
msgstr ""
-#: ../../include/functions_config.php:1222
+#: ../../include/functions_config.php:1238
msgid "Default line menu items for the Services"
msgstr ""
-#: ../../include/functions_config.php:1254
+#: ../../include/functions_config.php:1270
msgid "Show units in values report"
msgstr ""
-#: ../../include/functions_config.php:1262
+#: ../../include/functions_config.php:1278
msgid "Autohidden menu"
msgstr ""
-#: ../../include/functions_config.php:1266
+#: ../../include/functions_config.php:1282
msgid "Visual animation"
msgstr ""
-#: ../../include/functions_config.php:1282
+#: ../../include/functions_config.php:1298
msgid "Fixed graph"
msgstr ""
-#: ../../include/functions_config.php:1290
+#: ../../include/functions_config.php:1306
msgid "Paginate module"
msgstr ""
-#: ../../include/functions_config.php:1294
+#: ../../include/functions_config.php:1310
#: ../../include/class/ExternalTools.class.php:323
msgid "Custom graphviz directory"
msgstr ""
-#: ../../include/functions_config.php:1302
+#: ../../include/functions_config.php:1318
msgid "Shortened module graph data"
msgstr ""
-#: ../../include/functions_config.php:1310
+#: ../../include/functions_config.php:1326
msgid "Show empty groups in group view."
msgstr ""
-#: ../../include/functions_config.php:1318
+#: ../../include/functions_config.php:1334
msgid "Default type of module charts."
msgstr ""
-#: ../../include/functions_config.php:1322
+#: ../../include/functions_config.php:1338
msgid "Default Number of elements in Custom Graph."
msgstr ""
-#: ../../include/functions_config.php:1326
+#: ../../include/functions_config.php:1342
msgid "Default type of interface charts."
msgstr ""
-#: ../../include/functions_config.php:1342
+#: ../../include/functions_config.php:1358
msgid "Display lateral menus with left click"
msgstr ""
-#: ../../include/functions_config.php:1351
+#: ../../include/functions_config.php:1367
msgid "Service item padding size"
msgstr ""
-#: ../../include/functions_config.php:1356
+#: ../../include/functions_config.php:1372
msgid "Default percentil"
msgstr ""
-#: ../../include/functions_config.php:1360
+#: ../../include/functions_config.php:1376
msgid "Default full scale (TIP)"
msgstr ""
-#: ../../include/functions_config.php:1364
+#: ../../include/functions_config.php:1380
msgid "Default soft graphs"
msgstr ""
-#: ../../include/functions_config.php:1368
+#: ../../include/functions_config.php:1384
msgid "Default zoom graphs"
msgstr ""
-#: ../../include/functions_config.php:1377
+#: ../../include/functions_config.php:1393
msgid "Default height of the chart image"
msgstr ""
-#: ../../include/functions_config.php:1399
+#: ../../include/functions_config.php:1415
msgid "Add the custom post process"
msgstr ""
-#: ../../include/functions_config.php:1407
+#: ../../include/functions_config.php:1423
msgid "Delete the custom post process"
msgstr ""
-#: ../../include/functions_config.php:1461
+#: ../../include/functions_config.php:1477
msgid "Add custom module unit"
msgstr ""
-#: ../../include/functions_config.php:1467
+#: ../../include/functions_config.php:1483
msgid "Delete custom module unit"
msgstr ""
-#: ../../include/functions_config.php:1524
+#: ../../include/functions_config.php:1540
msgid "Thousand separator"
msgstr ""
-#: ../../include/functions_config.php:1531
+#: ../../include/functions_config.php:1547
msgid "Name storage path"
msgstr ""
-#: ../../include/functions_config.php:1574
+#: ../../include/functions_config.php:1586
msgid "Sflow name dir"
msgstr ""
-#: ../../include/functions_config.php:1617
+#: ../../include/functions_config.php:1629
msgid "IP ElasticSearch server"
msgstr ""
-#: ../../include/functions_config.php:1621
+#: ../../include/functions_config.php:1633
msgid "Port ElasticSearch server"
msgstr ""
-#: ../../include/functions_config.php:1668
+#: ../../include/functions_config.php:1680
msgid "Enable history trap"
msgstr ""
-#: ../../include/functions_config.php:1688
+#: ../../include/functions_config.php:1700
msgid "Enable history database advanced"
msgstr ""
-#: ../../include/functions_config.php:1697
+#: ../../include/functions_config.php:1709
msgid "String Days"
msgstr ""
-#: ../../include/functions_config.php:1713
+#: ../../include/functions_config.php:1725
msgid "Trap Days"
msgstr ""
-#: ../../include/functions_config.php:1721
+#: ../../include/functions_config.php:1733
msgid "Trap history purge"
msgstr ""
-#: ../../include/functions_config.php:1793
+#: ../../include/functions_config.php:1805
msgid "Historical database traps purge"
msgstr ""
-#: ../../include/functions_config.php:1816
+#: ../../include/functions_config.php:1828
msgid "eHorus user login"
msgstr ""
-#: ../../include/functions_config.php:1828
+#: ../../include/functions_config.php:1840
msgid "eHorus API hostname"
msgstr ""
-#: ../../include/functions_config.php:1832
+#: ../../include/functions_config.php:1844
msgid "eHorus API port"
msgstr ""
-#: ../../include/functions_config.php:1836
+#: ../../include/functions_config.php:1848
msgid "eHorus request timeout"
msgstr ""
-#: ../../include/functions_config.php:1840
+#: ../../include/functions_config.php:1852
msgid "eHorus id custom field"
msgstr ""
-#: ../../include/functions_config.php:1846
+#: ../../include/functions_config.php:1858
msgid "Integria user login"
msgstr ""
-#: ../../include/functions_config.php:1854
+#: ../../include/functions_config.php:1866
msgid "Integria user"
msgstr ""
-#: ../../include/functions_config.php:1858
+#: ../../include/functions_config.php:1870
msgid "Integria password"
msgstr ""
-#: ../../include/functions_config.php:1872
+#: ../../include/functions_config.php:1884
msgid "integria API hostname"
msgstr ""
-#: ../../include/functions_config.php:1880
+#: ../../include/functions_config.php:1892
msgid "Integria request timeout"
msgstr ""
-#: ../../include/functions_config.php:1884
+#: ../../include/functions_config.php:1896
msgid "Integria default group"
msgstr ""
-#: ../../include/functions_config.php:1888
+#: ../../include/functions_config.php:1900
msgid "Integria custom response default group"
msgstr ""
-#: ../../include/functions_config.php:1892
+#: ../../include/functions_config.php:1904
msgid "Integria default priority"
msgstr ""
-#: ../../include/functions_config.php:1896
+#: ../../include/functions_config.php:1908
msgid "Integria custom response default priority"
msgstr ""
-#: ../../include/functions_config.php:1900
+#: ../../include/functions_config.php:1912
msgid "Integria default creator"
msgstr ""
-#: ../../include/functions_config.php:1904
+#: ../../include/functions_config.php:1916
msgid "Integria default owner"
msgstr ""
-#: ../../include/functions_config.php:1908
+#: ../../include/functions_config.php:1920
msgid "Integria custom response default owner"
msgstr ""
-#: ../../include/functions_config.php:1912
+#: ../../include/functions_config.php:1924
msgid "Integria default ticket type"
msgstr ""
-#: ../../include/functions_config.php:1916
+#: ../../include/functions_config.php:1928
msgid "Integria custom response default ticket type"
msgstr ""
-#: ../../include/functions_config.php:1920
+#: ../../include/functions_config.php:1932
msgid "Integria default ticket status"
msgstr ""
-#: ../../include/functions_config.php:1924
+#: ../../include/functions_config.php:1936
msgid "Integria custom response default ticket status"
msgstr ""
-#: ../../include/functions_config.php:1928
+#: ../../include/functions_config.php:1940
msgid "Integria default ticket title"
msgstr ""
-#: ../../include/functions_config.php:1932
+#: ../../include/functions_config.php:1944
msgid "Integria custom response default ticket title"
msgstr ""
-#: ../../include/functions_config.php:1936
+#: ../../include/functions_config.php:1948
msgid "Integria default ticket content"
msgstr ""
-#: ../../include/functions_config.php:1940
+#: ../../include/functions_config.php:1952
msgid "Integria custom response default ticket content"
msgstr ""
-#: ../../include/functions_config.php:1946
+#: ../../include/functions_config.php:1958
msgid "Module Library User"
msgstr ""
-#: ../../include/functions_config.php:1950
+#: ../../include/functions_config.php:1962
msgid "Module Library Password"
msgstr ""
-#: ../../include/functions_config.php:1956
+#: ../../include/functions_config.php:1968
msgid "WebSocket bind address"
msgstr ""
-#: ../../include/functions_config.php:1960
+#: ../../include/functions_config.php:1972
msgid "WebSocket port"
msgstr ""
-#: ../../include/functions_config.php:1983
+#: ../../include/functions_config.php:1995
#, php-format
msgid "Update failed. The next values could not be updated:
-%s"
msgstr ""
-#: ../../include/functions_config.php:2662
-#: ../../operation/agentes/networkmap.dinamic.php:220
+#: ../../include/functions_config.php:2682
+#: ../../operation/agentes/networkmap.dinamic.php:228
msgid "Pandora FMS"
msgstr ""
-#: ../../include/functions_config.php:2670
+#: ../../include/functions_config.php:2690
msgid "PandoraFMS Metaconsole"
msgstr ""
-#: ../../include/functions_config.php:2674
+#: ../../include/functions_config.php:2694
msgid "Centralized operation console"
msgstr ""
@@ -46387,7 +46802,7 @@ msgstr ""
msgid "Resolution %s"
msgstr ""
-#: ../../include/class/Tree.class.php:790
+#: ../../include/class/Tree.class.php:813
msgid "Module alerts"
msgstr ""
@@ -46544,7 +46959,6 @@ msgid "Sound not exist"
msgstr ""
#: ../../include/class/EventSound.class.php:188
-#: ../../operation/events/sound_events.php:261
msgid "Sounds"
msgstr ""
@@ -46553,7 +46967,7 @@ msgid "Add new sound"
msgstr ""
#: ../../include/class/EventSound.class.php:212
-msgid "Accoustic console sound list"
+msgid "Acoustic console sound list"
msgstr ""
#: ../../include/class/EventSound.class.php:253
@@ -46597,7 +47011,7 @@ msgid "Something is wrong"
msgstr ""
#: ../../include/class/HelpFeedBack.class.php:172
-#: ../../include/class/Diagnostics.class.php:1922
+#: ../../include/class/Diagnostics.class.php:1926
msgid "What happened?"
msgstr ""
@@ -46610,7 +47024,7 @@ msgid "Submit"
msgstr ""
#: ../../include/class/HelpFeedBack.class.php:214
-#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364
+#: ../../include/class/Diagnostics.class.php:1999 ../../general/header.php:364
#: ../../general/header.php:366
msgid "Feedback"
msgstr ""
@@ -46668,7 +47082,7 @@ msgid "%s Licence Information"
msgstr ""
#: ../../include/class/Diagnostics.class.php:274
-#: ../../include/class/Diagnostics.class.php:1274
+#: ../../include/class/Diagnostics.class.php:1278
msgid "Status of the attachment folder"
msgstr ""
@@ -46861,7 +47275,7 @@ msgstr ""
#: ../../include/class/Diagnostics.class.php:759
#: ../../include/class/Diagnostics.class.php:777
-#: ../../include/class/NetworkMap.class.php:3066
+#: ../../include/class/NetworkMap.class.php:3072
msgid "Ip"
msgstr ""
@@ -46998,423 +47412,423 @@ msgstr ""
msgid "Table fragmentation status"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1048
+#: ../../include/class/Diagnostics.class.php:1052
msgid "Size server logs (current value)"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1052
+#: ../../include/class/Diagnostics.class.php:1056
msgid "Status server logs"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1057
+#: ../../include/class/Diagnostics.class.php:1061
msgid "Size error logs (current value)"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1061
+#: ../../include/class/Diagnostics.class.php:1065
msgid "Status error logs"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1066
+#: ../../include/class/Diagnostics.class.php:1070
msgid "Size console logs (current value)"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1070
+#: ../../include/class/Diagnostics.class.php:1074
msgid "Status console logs"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1105
+#: ../../include/class/Diagnostics.class.php:1109
msgid "License capacity is less than 90 percent"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1108
+#: ../../include/class/Diagnostics.class.php:1112
msgid "License capacity exceeds 90 percent"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1116
+#: ../../include/class/Diagnostics.class.php:1120
msgid ""
"The average of modules per agent is more than 40. You can have performance "
"problems"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1121
+#: ../../include/class/Diagnostics.class.php:1125
msgid "The average of modules per agent is less than 40"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1159
+#: ../../include/class/Diagnostics.class.php:1163
msgid "The system has no load"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1203
+#: ../../include/class/Diagnostics.class.php:1207
msgid "Network Management System"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1204
#: ../../include/class/Diagnostics.class.php:1208
+#: ../../include/class/Diagnostics.class.php:1212
msgid "Off"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1215
+#: ../../include/class/Diagnostics.class.php:1219
msgid "Status of agents capacity"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1220
+#: ../../include/class/Diagnostics.class.php:1224
msgid "Status of average modules per agent"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1226
+#: ../../include/class/Diagnostics.class.php:1230
msgid "Interval average of the network modules"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1256
+#: ../../include/class/Diagnostics.class.php:1260
msgid "The attached folder contains more than 700 files."
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1261
+#: ../../include/class/Diagnostics.class.php:1265
msgid "The attached folder contains less than 700 files."
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1270
+#: ../../include/class/Diagnostics.class.php:1274
msgid "Total files in the attached folder"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1305
+#: ../../include/class/Diagnostics.class.php:1309
msgid ""
"The tagente_datos table contains too much data. A historical database is "
"recommended."
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1310
+#: ../../include/class/Diagnostics.class.php:1314
msgid "The tagente_datos table contains an acceptable amount of data."
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1319
+#: ../../include/class/Diagnostics.class.php:1323
msgid "Total data in tagente_datos table"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1323
+#: ../../include/class/Diagnostics.class.php:1327
msgid "Tagente_datos table status"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1359
+#: ../../include/class/Diagnostics.class.php:1363
msgid "Threads"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1369
+#: ../../include/class/Diagnostics.class.php:1373
msgid "Total threads"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1376
+#: ../../include/class/Diagnostics.class.php:1380
msgid "Current pandora_server running threads"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1380
+#: ../../include/class/Diagnostics.class.php:1384
msgid ""
"There's more pandora_server threads than configured, are you running "
"multiple servers simultaneusly?."
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1514
+#: ../../include/class/Diagnostics.class.php:1518
msgid ""
"Please check your Pandora Server setup and make sure that the database "
"maintenance daemon is running."
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1518
+#: ../../include/class/Diagnostics.class.php:1522
msgid ""
"It' is very important to keep the database up-to-date to get the best "
"performance and results in Pandora"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1780
+#: ../../include/class/Diagnostics.class.php:1784
msgid "You have more than 10 MB of logs"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1783
+#: ../../include/class/Diagnostics.class.php:1787
msgid "You have less than 10 MB of logs"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1950
+#: ../../include/class/Diagnostics.class.php:1954
msgid "Include installation data"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1987
+#: ../../include/class/Diagnostics.class.php:1991
msgid "Hello Feedback-Men"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:1997
+#: ../../include/class/Diagnostics.class.php:2001
msgid "Hello"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2001
+#: ../../include/class/Diagnostics.class.php:2005
#, php-format
msgid "User %s is reporting an issue in its %s experience"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2010
+#: ../../include/class/Diagnostics.class.php:2014
msgid "Find some files attached to this mail"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2013
+#: ../../include/class/Diagnostics.class.php:2017
msgid "PDF is the diagnostic information retrieved at report time"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2016
+#: ../../include/class/Diagnostics.class.php:2020
msgid "CSV contains the statuses of every product file"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2021
+#: ../../include/class/Diagnostics.class.php:2025
#, php-format
msgid ""
"If you think this report must be escalated, feel free to forward this mail "
"to \"%s\""
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2025
+#: ../../include/class/Diagnostics.class.php:2029
msgid "LEGAL WARNING"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2027
+#: ../../include/class/Diagnostics.class.php:2031
msgid ""
"The information contained in this transmission is privileged and "
"confidential information intended only for the use of the individual or "
"entity named above"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2031
+#: ../../include/class/Diagnostics.class.php:2035
msgid ""
"If the reader of this message is not the intended recipient, you are hereby "
"notified that any dissemination, distribution or copying of this "
"communication is strictly prohibited"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2035
+#: ../../include/class/Diagnostics.class.php:2039
msgid "If you have received this transmission in error, do not read it"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2039
+#: ../../include/class/Diagnostics.class.php:2043
msgid ""
"Please immediately reply to the sender that you have received this "
"communication in error and then delete it"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2118
+#: ../../include/class/Diagnostics.class.php:2122
msgid "Invalid cron task"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2119
+#: ../../include/class/Diagnostics.class.php:2123
msgid "Sending of information has been processed"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2154
-#: ../../include/class/Diagnostics.class.php:2164
+#: ../../include/class/Diagnostics.class.php:2158
+#: ../../include/class/Diagnostics.class.php:2168
msgid "Diagnostics Info"
msgstr ""
-#: ../../include/class/Diagnostics.class.php:2272
-#: ../../include/class/Diagnostics.class.php:2282
+#: ../../include/class/Diagnostics.class.php:2276
+#: ../../include/class/Diagnostics.class.php:2286
msgid "PHP Info"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2382
+#: ../../include/class/NetworkMap.class.php:2388
msgid "Failed to generate dotmap, please select different layout schema"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2524
+#: ../../include/class/NetworkMap.class.php:2530
msgid "Failed to retrieve graph data."
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2808
+#: ../../include/class/NetworkMap.class.php:2814
msgid "Holding Area"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2935
+#: ../../include/class/NetworkMap.class.php:2941
#, php-format
msgid "Edit node %s"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2937
+#: ../../include/class/NetworkMap.class.php:2943
msgid "Show details and options"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2938
+#: ../../include/class/NetworkMap.class.php:2944
msgid "Add a interface link"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2939
+#: ../../include/class/NetworkMap.class.php:2945
msgid "Set parent interface"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2940
+#: ../../include/class/NetworkMap.class.php:2946
msgid "Set as children"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2941
+#: ../../include/class/NetworkMap.class.php:2947
msgid "Set parent"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2942
-#: ../../include/class/NetworkMap.class.php:2954
+#: ../../include/class/NetworkMap.class.php:2948
+#: ../../include/class/NetworkMap.class.php:2960
msgid "Abort the action of set relationship"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2944
-#: ../../include/class/NetworkMap.class.php:3344
+#: ../../include/class/NetworkMap.class.php:2950
+#: ../../include/class/NetworkMap.class.php:3350
msgid "Add node"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2945
+#: ../../include/class/NetworkMap.class.php:2951
msgid "Set center"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2947
-#: ../../include/class/NetworkMap.class.php:2950
+#: ../../include/class/NetworkMap.class.php:2953
+#: ../../include/class/NetworkMap.class.php:2956
msgid "Proceed"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2948
+#: ../../include/class/NetworkMap.class.php:2954
msgid ""
"Resetting the map will delete all customizations you have done, including "
"manual relationships between elements, new items, etc."
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2952
+#: ../../include/class/NetworkMap.class.php:2958
msgid "Restart map"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2953
+#: ../../include/class/NetworkMap.class.php:2959
msgid "Abort the interface relationship"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2971
-#: ../../include/class/NetworkMap.class.php:3020
+#: ../../include/class/NetworkMap.class.php:2977
+#: ../../include/class/NetworkMap.class.php:3026
msgid "Edit node"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2981
-#: ../../include/class/NetworkMap.class.php:3036
+#: ../../include/class/NetworkMap.class.php:2987
+#: ../../include/class/NetworkMap.class.php:3042
msgid "Adresses"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2983
-#: ../../include/class/NetworkMap.class.php:3041
+#: ../../include/class/NetworkMap.class.php:2989
+#: ../../include/class/NetworkMap.class.php:3047
msgid "OS type"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:2990
-#: ../../include/class/NetworkMap.class.php:2991
-#: ../../include/class/NetworkMap.class.php:3052
-#: ../../include/class/NetworkMap.class.php:3053
+#: ../../include/class/NetworkMap.class.php:2996
+#: ../../include/class/NetworkMap.class.php:2997
+#: ../../include/class/NetworkMap.class.php:3058
+#: ../../include/class/NetworkMap.class.php:3059
msgid "Node Details"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3078
-#: ../../include/class/NetworkMap.class.php:3079
+#: ../../include/class/NetworkMap.class.php:3084
+#: ../../include/class/NetworkMap.class.php:3085
msgid "Interface Information (SNMP)"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3092
+#: ../../include/class/NetworkMap.class.php:3098
msgid "Shape"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3095
+#: ../../include/class/NetworkMap.class.php:3101
msgid "Circle"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3096
+#: ../../include/class/NetworkMap.class.php:3102
msgid "Square"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3097
+#: ../../include/class/NetworkMap.class.php:3103
msgid "Rhombus"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3113
+#: ../../include/class/NetworkMap.class.php:3119
msgid "name node"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3125
-#: ../../include/class/NetworkMap.class.php:3495
+#: ../../include/class/NetworkMap.class.php:3131
+#: ../../include/class/NetworkMap.class.php:3501
msgid "name fictional node"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3133
-#: ../../include/class/NetworkMap.class.php:3503
+#: ../../include/class/NetworkMap.class.php:3139
+#: ../../include/class/NetworkMap.class.php:3509
msgid "Networkmap to link"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3147
+#: ../../include/class/NetworkMap.class.php:3153
msgid "Update fictional node"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3175
-#: ../../include/class/NetworkMap.class.php:3176
+#: ../../include/class/NetworkMap.class.php:3181
+#: ../../include/class/NetworkMap.class.php:3182
msgid "Node options"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3187
-#: ../../include/class/NetworkMap.class.php:3281
+#: ../../include/class/NetworkMap.class.php:3193
+#: ../../include/class/NetworkMap.class.php:3287
msgid "Node source"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3188
-#: ../../include/class/NetworkMap.class.php:3282
+#: ../../include/class/NetworkMap.class.php:3194
+#: ../../include/class/NetworkMap.class.php:3288
msgid "Interface source"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3189
-#: ../../include/class/NetworkMap.class.php:3283
+#: ../../include/class/NetworkMap.class.php:3195
+#: ../../include/class/NetworkMap.class.php:3289
msgid "Interface Target"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3191
-#: ../../include/class/NetworkMap.class.php:3284
+#: ../../include/class/NetworkMap.class.php:3197
+#: ../../include/class/NetworkMap.class.php:3290
msgid "Node target"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3192
+#: ../../include/class/NetworkMap.class.php:3198
msgid "E."
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3254
+#: ../../include/class/NetworkMap.class.php:3260
msgid "There are not relations"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3327
+#: ../../include/class/NetworkMap.class.php:3333
msgid "Add interface link"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3372
-#: ../../include/class/NetworkMap.class.php:3399
-#: ../../include/class/NetworkMap.class.php:3400
-#: ../../include/class/NetworkMap.class.php:3463
-#: ../../include/class/NetworkMap.class.php:3479
-#: ../../include/class/NetworkMap.class.php:3536
+#: ../../include/class/NetworkMap.class.php:3378
+#: ../../include/class/NetworkMap.class.php:3405
+#: ../../include/class/NetworkMap.class.php:3406
+#: ../../include/class/NetworkMap.class.php:3469
+#: ../../include/class/NetworkMap.class.php:3485
+#: ../../include/class/NetworkMap.class.php:3542
msgid "Add agent node"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3478
+#: ../../include/class/NetworkMap.class.php:3484
msgid "Add agent node (filter by group)"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3520
+#: ../../include/class/NetworkMap.class.php:3526
msgid "Add fictional node"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3535
+#: ../../include/class/NetworkMap.class.php:3541
msgid "Add fictional point"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3620
+#: ../../include/class/NetworkMap.class.php:3626
#: ../../operation/visual_console/legacy_public_view.php:198
-#: ../../operation/visual_console/legacy_view.php:335
+#: ../../operation/visual_console/legacy_view.php:346
msgid "Until refresh"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3775
+#: ../../include/class/NetworkMap.class.php:3781
msgid "Open Minimap"
msgstr ""
-#: ../../include/class/NetworkMap.class.php:3781
+#: ../../include/class/NetworkMap.class.php:3787
msgid "Hide Labels"
msgstr ""
@@ -47476,11 +47890,11 @@ msgstr ""
msgid "Delete Script"
msgstr ""
-#: ../../include/class/ManageNetScanScripts.class.php:490
+#: ../../include/class/ManageNetScanScripts.class.php:486
msgid "There are no net scan scripts in the system"
msgstr ""
-#: ../../include/class/ManageNetScanScripts.class.php:560
+#: ../../include/class/ManageNetScanScripts.class.php:556
msgid "Script fullpath"
msgstr ""
@@ -47538,12 +47952,12 @@ msgid "Extra (2)"
msgstr ""
#: ../../include/class/CredentialStore.class.php:986
-#: ../../include/class/CredentialStore.class.php:1307
+#: ../../include/class/CredentialStore.class.php:1309
msgid "Access key ID"
msgstr ""
#: ../../include/class/CredentialStore.class.php:987
-#: ../../include/class/CredentialStore.class.php:1308
+#: ../../include/class/CredentialStore.class.php:1310
msgid "Secret access key"
msgstr ""
@@ -47553,22 +47967,22 @@ msgid "Account ID"
msgstr ""
#: ../../include/class/CredentialStore.class.php:994
-#: ../../include/class/CredentialStore.class.php:1315
+#: ../../include/class/CredentialStore.class.php:1318
msgid "Application secret"
msgstr ""
#: ../../include/class/CredentialStore.class.php:995
-#: ../../include/class/CredentialStore.class.php:1316
+#: ../../include/class/CredentialStore.class.php:1319
msgid "Tenant or domain name"
msgstr ""
#: ../../include/class/CredentialStore.class.php:996
-#: ../../include/class/CredentialStore.class.php:1317
+#: ../../include/class/CredentialStore.class.php:1320
msgid "Subscription id"
msgstr ""
#: ../../include/class/CredentialStore.class.php:1000
-#: ../../include/class/CredentialStore.class.php:1333
+#: ../../include/class/CredentialStore.class.php:1338
msgid "Auth JSON"
msgstr ""
@@ -47589,45 +48003,45 @@ msgid "3"
msgstr ""
#: ../../include/class/CredentialStore.class.php:1134
-#: ../../include/class/CredentialStore.class.php:1425
+#: ../../include/class/CredentialStore.class.php:1434
msgid "Authenticated and non-private method"
msgstr ""
#: ../../include/class/CredentialStore.class.php:1135
-#: ../../include/class/CredentialStore.class.php:1427
+#: ../../include/class/CredentialStore.class.php:1436
msgid "Authenticated and private method"
msgstr ""
#: ../../include/class/CredentialStore.class.php:1136
-#: ../../include/class/CredentialStore.class.php:1429
+#: ../../include/class/CredentialStore.class.php:1438
msgid "Non-authenticated and non-private method"
msgstr ""
#: ../../include/class/CredentialStore.class.php:1144
-#: ../../include/class/CredentialStore.class.php:1442
+#: ../../include/class/CredentialStore.class.php:1451
#: ../../include/class/AgentWizard.class.php:910
msgid "User authentication"
msgstr ""
#: ../../include/class/CredentialStore.class.php:1179
-#: ../../include/class/CredentialStore.class.php:1476
+#: ../../include/class/CredentialStore.class.php:1485
#: ../../include/class/AgentWizard.class.php:939
msgid "Password authentication"
msgstr ""
-#: ../../include/class/CredentialStore.class.php:1314
+#: ../../include/class/CredentialStore.class.php:1317
msgid "Client ID"
msgstr ""
-#: ../../include/class/CredentialStore.class.php:1323
+#: ../../include/class/CredentialStore.class.php:1327
msgid "Account ID."
msgstr ""
-#: ../../include/class/CredentialStore.class.php:1648
+#: ../../include/class/CredentialStore.class.php:1657
msgid "Register new key into keystore"
msgstr ""
-#: ../../include/class/CredentialStore.class.php:1652
+#: ../../include/class/CredentialStore.class.php:1661
msgid "Update key"
msgstr ""
@@ -47636,9 +48050,9 @@ msgid "Trap subtype"
msgstr ""
#: ../../include/class/SnmpConsole.class.php:291
-#: ../../include/functions_reporting.php:5890
-#: ../../include/functions_reporting.php:5907
-#: ../../include/functions_reporting.php:5924
+#: ../../include/functions_reporting.php:5899
+#: ../../include/functions_reporting.php:5916
+#: ../../include/functions_reporting.php:5933
msgid "Not triggered"
msgstr ""
@@ -47648,25 +48062,25 @@ msgstr ""
#: ../../include/class/SnmpConsole.class.php:309
#: ../../include/class/SnmpConsole.class.php:503
-#: ../../include/class/SnmpConsole.class.php:761
+#: ../../include/class/SnmpConsole.class.php:763
#: ../../include/functions_reporting.php:2366
-#: ../../include/functions_reporting.php:4597
-#: ../../include/functions_reporting.php:11390
+#: ../../include/functions_reporting.php:4606
+#: ../../include/functions_reporting.php:11399
msgid "Not validated"
msgstr ""
#: ../../include/class/SnmpConsole.class.php:310
#: ../../include/class/SnmpConsole.class.php:501
-#: ../../include/class/SnmpConsole.class.php:771
+#: ../../include/class/SnmpConsole.class.php:773
#: ../../include/functions_reporting.php:2365
-#: ../../include/functions_reporting.php:4596
-#: ../../include/functions_reporting.php:11389
+#: ../../include/functions_reporting.php:4605
+#: ../../include/functions_reporting.php:11398
#: ../../include/functions_events.php:2547
-#: ../../include/functions_events.php:3269
-#: ../../include/functions_events.php:3544
-#: ../../include/functions_events.php:3553
-#: ../../include/functions_events.php:3560
-#: ../../include/functions_events.php:3567
+#: ../../include/functions_events.php:3274
+#: ../../include/functions_events.php:3549
+#: ../../include/functions_events.php:3558
+#: ../../include/functions_events.php:3565
+#: ../../include/functions_events.php:3572
msgid "Validated"
msgstr ""
@@ -47674,46 +48088,46 @@ msgstr ""
msgid "Group by Enterprise String/IP"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:783
+#: ../../include/class/SnmpConsole.class.php:785
#: ../../operation/snmpconsole/snmp_statistics.php:199
msgid "View agent details"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:902
-#: ../../include/class/SnmpConsole.class.php:903
+#: ../../include/class/SnmpConsole.class.php:904
+#: ../../include/class/SnmpConsole.class.php:905
msgid "Hide details"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "Count:"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "First trap:"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1365
+#: ../../include/class/SnmpConsole.class.php:1367
msgid "Last trap:"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1403
+#: ../../include/class/SnmpConsole.class.php:1405
msgid "Type:"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1410
+#: ../../include/class/SnmpConsole.class.php:1412
msgid "Description:"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1417
+#: ../../include/class/SnmpConsole.class.php:1419
msgid "Enterprise String:"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1426
-#: ../../include/class/SnmpConsole.class.php:1440
+#: ../../include/class/SnmpConsole.class.php:1428
+#: ../../include/class/SnmpConsole.class.php:1442
msgid "Variable bindings:"
msgstr ""
-#: ../../include/class/SnmpConsole.class.php:1436
+#: ../../include/class/SnmpConsole.class.php:1438
msgid "See more details"
msgstr ""
@@ -47787,51 +48201,51 @@ msgstr ""
msgid "Press enter to search"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:432
+#: ../../include/class/TipsWindow.class.php:444
msgid "Tip deleted"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:482
+#: ../../include/class/TipsWindow.class.php:494
msgid "Search by title"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:683
+#: ../../include/class/TipsWindow.class.php:703
msgid "Tip created"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:743
-#: ../../include/class/TipsWindow.class.php:911
+#: ../../include/class/TipsWindow.class.php:763
+#: ../../include/class/TipsWindow.class.php:931
msgid "Wrong size, we recommend images of 464x260 px"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:751
-#: ../../include/class/TipsWindow.class.php:919
+#: ../../include/class/TipsWindow.class.php:771
+#: ../../include/class/TipsWindow.class.php:939
msgid "Please select a image"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:755
-#: ../../include/class/TipsWindow.class.php:923
+#: ../../include/class/TipsWindow.class.php:775
+#: ../../include/class/TipsWindow.class.php:943
msgid "Add image"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:758
-#: ../../include/class/TipsWindow.class.php:926
+#: ../../include/class/TipsWindow.class.php:778
+#: ../../include/class/TipsWindow.class.php:946
msgid "Images"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:823
+#: ../../include/class/TipsWindow.class.php:843
msgid "Tip edited"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:1096
+#: ../../include/class/TipsWindow.class.php:1116
msgid "Incorrect file"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:1100
+#: ../../include/class/TipsWindow.class.php:1120
msgid "Format image invalid"
msgstr ""
-#: ../../include/class/TipsWindow.class.php:1104
+#: ../../include/class/TipsWindow.class.php:1124
msgid "Image size too large"
msgstr ""
@@ -47840,15 +48254,19 @@ msgstr ""
msgid "NetScan Custom"
msgstr ""
-#: ../../include/class/CustomNetScan.class.php:623
+#: ../../include/class/CustomNetScan.class.php:527
+msgid "The minimum recomended interval for Recon Task is 5 minutes"
+msgstr ""
+
+#: ../../include/class/CustomNetScan.class.php:622
msgid "Recon script"
msgstr ""
-#: ../../include/class/CustomNetScan.class.php:663
+#: ../../include/class/CustomNetScan.class.php:662
msgid "Explanation"
msgstr ""
-#: ../../include/class/CustomNetScan.class.php:679
+#: ../../include/class/CustomNetScan.class.php:678
msgid "macro_desc"
msgstr ""
@@ -47922,7 +48340,7 @@ msgid "The modules is already added"
msgstr ""
#: ../../include/class/ModuleTemplates.class.php:1097
-#: ../../include/class/ModuleTemplates.class.php:1361
+#: ../../include/class/ModuleTemplates.class.php:1365
msgid "Add components"
msgstr ""
@@ -47959,11 +48377,11 @@ msgstr ""
msgid "Do you want delete this module?"
msgstr ""
-#: ../../include/class/ModuleTemplates.class.php:1454
+#: ../../include/class/ModuleTemplates.class.php:1458
msgid "Do you want delete all templates?"
msgstr ""
-#: ../../include/class/ModuleTemplates.class.php:1457
+#: ../../include/class/ModuleTemplates.class.php:1461
msgid "Do you want delete the selected templates?"
msgstr ""
@@ -48603,6 +49021,95 @@ msgstr ""
msgid "If something is not working as expected, look for this icon and report!"
msgstr ""
+#: ../../include/class/AgentDeployWizard.class.php:306
+msgid "Please note that all OS must be 64-bit based architecture"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:309
+msgid "Choose your OS"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:321
+#, php-format
+msgid ""
+"Use your %s Data Server IP address here. It must be possible to establish a "
+"connection from the agent to port 41121/tcp of this address."
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:326
+msgid "Server address"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:379
+msgid "view the following instructions"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:385
+msgid "If you need more information regarding agents"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:415
+msgid "Generate installer"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:436
+msgid "Linux agent"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:446
+msgid ""
+"Run the following command in the shell of your Linux server to perform the "
+"installation of the generated agent:"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:449
+#: ../../include/class/AgentDeployWizard.class.php:491
+msgid ""
+"Once installed, you must run the following command to start the software "
+"agent service:"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:458
+msgid "dependencies"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:460
+msgid ""
+"For the correct operation of the Linux agent it is necessary that the server "
+"has installed the following "
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:478
+msgid "Windows agent"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:488
+msgid "Run the following command in cmd.exe as an administrator:"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:510
+msgid "Mac agent"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:524
+msgid ""
+"To complete the installation process, please perform a manual installation "
+"and configure the server address to XXX and specify the group as XXX. Thank "
+"you for your cooperation."
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:530
+msgid "Click to Download the agent"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:551
+msgid "Change configuration"
+msgstr ""
+
+#: ../../include/class/AgentDeployWizard.class.php:728
+msgid "Installer"
+msgstr ""
+
#: ../../include/class/SatelliteCollection.class.php:306
msgid "Error adding collection"
msgstr ""
@@ -48750,12 +49257,12 @@ msgstr ""
msgid "Current value"
msgstr ""
-#: ../../include/class/AgentWizard.class.php:5716
+#: ../../include/class/AgentWizard.class.php:5712
#, php-format
msgid "The operation '%s' is not permitted. Review for remote components."
msgstr ""
-#: ../../include/class/AgentWizard.class.php:6182
+#: ../../include/class/AgentWizard.class.php:6178
msgid "Modules about to be created"
msgstr ""
@@ -48953,432 +49460,432 @@ msgstr ""
msgid "Event Report Module"
msgstr ""
-#: ../../include/functions_reporting.php:3335
+#: ../../include/functions_reporting.php:3344
msgid "Agent/Modules"
msgstr ""
-#: ../../include/functions_reporting.php:3432
+#: ../../include/functions_reporting.php:3441
msgid "Agent/Modules Status"
msgstr ""
-#: ../../include/functions_reporting.php:3581
+#: ../../include/functions_reporting.php:3590
msgid "Exception - Everything"
msgstr ""
-#: ../../include/functions_reporting.php:3587
+#: ../../include/functions_reporting.php:3596
#, php-format
msgid "Exception - Modules over or equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3590
+#: ../../include/functions_reporting.php:3599
#, php-format
msgid "Modules over or equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3595
+#: ../../include/functions_reporting.php:3604
#, php-format
msgid "Exception - Modules under or equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3598
+#: ../../include/functions_reporting.php:3607
#, php-format
msgid "Modules under or equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3603
+#: ../../include/functions_reporting.php:3612
#, php-format
msgid "Exception - Modules under %s"
msgstr ""
-#: ../../include/functions_reporting.php:3606
+#: ../../include/functions_reporting.php:3615
#, php-format
msgid "Modules under %s"
msgstr ""
-#: ../../include/functions_reporting.php:3611
+#: ../../include/functions_reporting.php:3620
#, php-format
msgid "Exception - Modules over %s"
msgstr ""
-#: ../../include/functions_reporting.php:3614
+#: ../../include/functions_reporting.php:3623
#, php-format
msgid "Modules over %s"
msgstr ""
-#: ../../include/functions_reporting.php:3619
+#: ../../include/functions_reporting.php:3628
#, php-format
msgid "Exception - Equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3622
+#: ../../include/functions_reporting.php:3631
#, php-format
msgid "Equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3627
+#: ../../include/functions_reporting.php:3636
#, php-format
msgid "Exception - Not equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3630
+#: ../../include/functions_reporting.php:3639
#, php-format
msgid "Not equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3634
+#: ../../include/functions_reporting.php:3643
msgid "Exception - Modules at normal status"
msgstr ""
-#: ../../include/functions_reporting.php:3635
+#: ../../include/functions_reporting.php:3644
msgid "Modules at normal status"
msgstr ""
-#: ../../include/functions_reporting.php:3639
+#: ../../include/functions_reporting.php:3648
msgid "Exception - Modules at critical or warning status"
msgstr ""
-#: ../../include/functions_reporting.php:3640
+#: ../../include/functions_reporting.php:3649
msgid "Modules at critical or warning status"
msgstr ""
-#: ../../include/functions_reporting.php:3920
+#: ../../include/functions_reporting.php:3929
msgid "There are no Modules under those conditions."
msgstr ""
-#: ../../include/functions_reporting.php:3924
+#: ../../include/functions_reporting.php:3933
#, php-format
msgid "There are no Modules over or equal to %s."
msgstr ""
-#: ../../include/functions_reporting.php:3928
+#: ../../include/functions_reporting.php:3937
#, php-format
msgid "There are no Modules less or equal to %s."
msgstr ""
-#: ../../include/functions_reporting.php:3932
+#: ../../include/functions_reporting.php:3941
#, php-format
msgid "There are no Modules less %s."
msgstr ""
-#: ../../include/functions_reporting.php:3936
+#: ../../include/functions_reporting.php:3945
#, php-format
msgid "There are no Modules over %s."
msgstr ""
-#: ../../include/functions_reporting.php:3940
+#: ../../include/functions_reporting.php:3949
#, php-format
msgid "There are no Modules equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3944
+#: ../../include/functions_reporting.php:3953
#, php-format
msgid "There are no Modules not equal to %s"
msgstr ""
-#: ../../include/functions_reporting.php:3948
+#: ../../include/functions_reporting.php:3957
msgid "There are no Modules normal status"
msgstr ""
-#: ../../include/functions_reporting.php:3952
+#: ../../include/functions_reporting.php:3961
msgid "There are no Modules at critial or warning status"
msgstr ""
-#: ../../include/functions_reporting.php:4380
+#: ../../include/functions_reporting.php:4389
msgid "Event Report Agent"
msgstr ""
-#: ../../include/functions_reporting.php:4799
+#: ../../include/functions_reporting.php:4808
msgid "Database Serialized"
msgstr ""
-#: ../../include/functions_reporting.php:4995
+#: ../../include/functions_reporting.php:5004
msgid "Last Value"
msgstr ""
-#: ../../include/functions_reporting.php:5045
-#: ../../include/functions_reporting.php:5088
+#: ../../include/functions_reporting.php:5054
+#: ../../include/functions_reporting.php:5097
msgid "No data to display within the selected interval"
msgstr ""
-#: ../../include/functions_reporting.php:5319
+#: ../../include/functions_reporting.php:5328
msgid "Network interfaces report"
msgstr ""
-#: ../../include/functions_reporting.php:5413
+#: ../../include/functions_reporting.php:5422
msgid "Custom render report"
msgstr ""
-#: ../../include/functions_reporting.php:5453
-#: ../../include/functions_reporting.php:5479
+#: ../../include/functions_reporting.php:5462
+#: ../../include/functions_reporting.php:5488
msgid ""
"This query is insecure, it could apply unwanted modiffications on the schema"
msgstr ""
-#: ../../include/functions_reporting.php:5658
+#: ../../include/functions_reporting.php:5667
msgid "The group has no agents or none of the agents has any network interface"
msgstr ""
-#: ../../include/functions_reporting.php:5683
+#: ../../include/functions_reporting.php:5692
msgid "bytes/s"
msgstr ""
-#: ../../include/functions_reporting.php:6350
+#: ../../include/functions_reporting.php:6359
msgid "SQL Graph Vertical Bars"
msgstr ""
-#: ../../include/functions_reporting.php:6354
+#: ../../include/functions_reporting.php:6363
msgid "SQL Graph Horizontal Bars"
msgstr ""
-#: ../../include/functions_reporting.php:6358
+#: ../../include/functions_reporting.php:6367
msgid "SQL Graph Pie"
msgstr ""
-#: ../../include/functions_reporting.php:6585
+#: ../../include/functions_reporting.php:6594
msgid "Netflow Area"
msgstr ""
-#: ../../include/functions_reporting.php:6589
+#: ../../include/functions_reporting.php:6598
msgid "Netflow Summary"
msgstr ""
-#: ../../include/functions_reporting.php:6593
+#: ../../include/functions_reporting.php:6602
msgid "Netflow Data"
msgstr ""
-#: ../../include/functions_reporting.php:6601
+#: ../../include/functions_reporting.php:6610
msgid "Unknown report"
msgstr ""
-#: ../../include/functions_reporting.php:6695
+#: ../../include/functions_reporting.php:6704
msgid "Prediction Date"
msgstr ""
-#: ../../include/functions_reporting.php:7705
+#: ../../include/functions_reporting.php:7714
msgid ""
"Illegal query: Due security restrictions, there are some tokens or words you "
"cannot use: *, delete, drop, alter, modify, password, pass, insert or update."
msgstr ""
-#: ../../include/functions_reporting.php:9118
-#: ../../include/functions_reporting.php:9836
+#: ../../include/functions_reporting.php:9127
+#: ../../include/functions_reporting.php:9845
msgid "No Address"
msgstr ""
-#: ../../include/functions_reporting.php:10135
+#: ../../include/functions_reporting.php:10144
msgid ""
"The monitor have no data in this range of dates or monitor type is not "
"numeric"
msgstr ""
-#: ../../include/functions_reporting.php:10153
+#: ../../include/functions_reporting.php:10162
msgid "The monitor type is not numeric"
msgstr ""
-#: ../../include/functions_reporting.php:10579
+#: ../../include/functions_reporting.php:10588
msgid "Maximum"
msgstr ""
-#: ../../include/functions_reporting.php:10657
+#: ../../include/functions_reporting.php:10666
msgid "Automatic combined graph"
msgstr ""
-#: ../../include/functions_reporting.php:12079
-#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12088
+#: ../../include/functions_reporting.php:12112
+#: ../../include/functions_reporting.php:12151
msgid "Server health"
msgstr ""
-#: ../../include/functions_reporting.php:12079
+#: ../../include/functions_reporting.php:12088
#, php-format
msgid "%d Downed servers"
msgstr ""
-#: ../../include/functions_reporting.php:12084
-#: ../../include/functions_reporting.php:12107
+#: ../../include/functions_reporting.php:12093
+#: ../../include/functions_reporting.php:12116
+#: ../../include/functions_reporting.php:12157
msgid "Monitor health"
msgstr ""
-#: ../../include/functions_reporting.php:12084
+#: ../../include/functions_reporting.php:12093
#, php-format
msgid "%d Not Normal monitors"
msgstr ""
-#: ../../include/functions_reporting.php:12084
-#: ../../include/functions_reporting.php:12108
+#: ../../include/functions_reporting.php:12093
+#: ../../include/functions_reporting.php:12117
msgid "of monitors up"
msgstr ""
-#: ../../include/functions_reporting.php:12089
-msgid "Module sanityX"
+#: ../../include/functions_reporting.php:12098
+#: ../../include/functions_reporting.php:12120
+#: ../../include/functions_reporting.php:12163
+msgid "Module sanity"
msgstr ""
-#: ../../include/functions_reporting.php:12089
+#: ../../include/functions_reporting.php:12098
#, php-format
msgid "%d Not inited monitors"
msgstr ""
-#: ../../include/functions_reporting.php:12089
-#: ../../include/functions_reporting.php:12112
+#: ../../include/functions_reporting.php:12098
+#: ../../include/functions_reporting.php:12121
msgid "of total modules inited"
msgstr ""
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:13202
-#: ../../include/functions_reporting.php:13212
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:13275
+#: ../../include/functions_reporting.php:13285
#, php-format
msgid "%d Fired alerts"
msgstr ""
-#: ../../include/functions_reporting.php:12094
-#: ../../include/functions_reporting.php:12116
+#: ../../include/functions_reporting.php:12103
+#: ../../include/functions_reporting.php:12125
msgid "of defined alerts not fired"
msgstr ""
-#: ../../include/functions_reporting.php:12111
-msgid "Module sanity"
-msgstr ""
-
-#: ../../include/functions_reporting.php:12184
-#: ../../include/functions_groups.php:2733
+#: ../../include/functions_reporting.php:12257
+#: ../../include/functions_groups.php:2758
msgid "Defined and fired alerts"
msgstr ""
-#: ../../include/functions_reporting.php:12363
+#: ../../include/functions_reporting.php:12436
msgid "Defined users"
msgstr ""
-#: ../../include/functions_reporting.php:13059
+#: ../../include/functions_reporting.php:13132
msgid "Agent without data"
msgstr ""
-#: ../../include/functions_reporting.php:13198
+#: ../../include/functions_reporting.php:13271
#, php-format
msgid "%d Normal modules"
msgstr ""
-#: ../../include/functions_reporting.php:13199
+#: ../../include/functions_reporting.php:13272
#, php-format
msgid "%d Critical modules"
msgstr ""
-#: ../../include/functions_reporting.php:13200
+#: ../../include/functions_reporting.php:13273
#, php-format
msgid "%d Warning modules"
msgstr ""
-#: ../../include/functions_reporting.php:13201
+#: ../../include/functions_reporting.php:13274
#, php-format
msgid "%d Unknown modules"
msgstr ""
-#: ../../include/functions_reporting.php:13206
+#: ../../include/functions_reporting.php:13279
#, php-format
msgid "%d Total agents"
msgstr ""
-#: ../../include/functions_reporting.php:13207
+#: ../../include/functions_reporting.php:13280
#, php-format
msgid "%d Normal agents"
msgstr ""
-#: ../../include/functions_reporting.php:13208
+#: ../../include/functions_reporting.php:13281
#, php-format
msgid "%d Critical agents"
msgstr ""
-#: ../../include/functions_reporting.php:13209
+#: ../../include/functions_reporting.php:13282
#, php-format
msgid "%d Warning agents"
msgstr ""
-#: ../../include/functions_reporting.php:13210
+#: ../../include/functions_reporting.php:13283
#, php-format
msgid "%d Unknown agents"
msgstr ""
-#: ../../include/functions_reporting.php:13211
+#: ../../include/functions_reporting.php:13284
#, php-format
msgid "%d not init agents"
msgstr ""
-#: ../../include/functions_reporting.php:14639
+#: ../../include/functions_reporting.php:14712
msgid "Total running modules"
msgstr ""
-#: ../../include/functions_reporting.php:14642
-#: ../../include/functions_reporting.php:14657
-#: ../../include/functions_reporting.php:14669
-#: ../../include/functions_reporting.php:14687
-#: ../../include/functions_reporting.php:14699
-#: ../../include/functions_reporting.php:14711
-#: ../../include/functions_reporting.php:14723
+#: ../../include/functions_reporting.php:14715
+#: ../../include/functions_reporting.php:14730
+#: ../../include/functions_reporting.php:14742
+#: ../../include/functions_reporting.php:14760
+#: ../../include/functions_reporting.php:14772
+#: ../../include/functions_reporting.php:14784
+#: ../../include/functions_reporting.php:14796
msgid "Ratio"
msgstr ""
-#: ../../include/functions_reporting.php:14642
-#: ../../include/functions_reporting.php:14657
-#: ../../include/functions_reporting.php:14669
-#: ../../include/functions_reporting.php:14687
-#: ../../include/functions_reporting.php:14699
-#: ../../include/functions_reporting.php:14711
-#: ../../include/functions_reporting.php:14723
+#: ../../include/functions_reporting.php:14715
+#: ../../include/functions_reporting.php:14730
+#: ../../include/functions_reporting.php:14742
+#: ../../include/functions_reporting.php:14760
+#: ../../include/functions_reporting.php:14772
+#: ../../include/functions_reporting.php:14784
+#: ../../include/functions_reporting.php:14796
msgid "Modules by second"
msgstr ""
-#: ../../include/functions_reporting.php:14654
+#: ../../include/functions_reporting.php:14727
msgid "Local modules"
msgstr ""
-#: ../../include/functions_reporting.php:14664
+#: ../../include/functions_reporting.php:14737
msgid "Network modules"
msgstr ""
-#: ../../include/functions_reporting.php:14683
+#: ../../include/functions_reporting.php:14756
msgid "Plugin modules"
msgstr ""
-#: ../../include/functions_reporting.php:14695
+#: ../../include/functions_reporting.php:14768
msgid "Prediction modules"
msgstr ""
-#: ../../include/functions_reporting.php:14707
+#: ../../include/functions_reporting.php:14780
msgid "WMI modules"
msgstr ""
-#: ../../include/functions_reporting.php:14719
+#: ../../include/functions_reporting.php:14792
msgid "Web modules"
msgstr ""
-#: ../../include/functions_reporting.php:14757
+#: ../../include/functions_reporting.php:14830
#: ../../include/lib/Dashboard/Widgets/tactical.php:287
msgid "Server performance"
msgstr ""
-#: ../../include/functions_reporting.php:14870
+#: ../../include/functions_reporting.php:14943
msgid "Start condition"
msgstr ""
-#: ../../include/functions_reporting.php:14870
+#: ../../include/functions_reporting.php:14943
msgid "Stop condition"
msgstr ""
-#: ../../include/functions_reporting.php:14880
+#: ../../include/functions_reporting.php:14953
msgid "Weekly:"
msgstr ""
-#: ../../include/functions_reporting.php:14922
+#: ../../include/functions_reporting.php:14995
msgid "Monthly:"
msgstr ""
-#: ../../include/functions_reporting.php:15473
+#: ../../include/functions_reporting.php:15546
msgid "Module Histogram Graph"
msgstr ""
-#: ../../include/functions_reporting.php:15836
+#: ../../include/functions_reporting.php:15913
msgid "Attached to this email there's a PDF file of the"
msgstr ""
-#: ../../include/functions_reporting.php:15837
+#: ../../include/functions_reporting.php:15914
msgid "report"
msgstr ""
@@ -49434,84 +49941,84 @@ msgstr ""
msgid "Something gone wrong creating directory"
msgstr ""
-#: ../../include/functions_filemanager.php:541
-#: ../../include/functions_filemanager.php:821
+#: ../../include/functions_filemanager.php:553
+#: ../../include/functions_filemanager.php:838
msgid "Create a Directory"
msgstr ""
-#: ../../include/functions_filemanager.php:545
-#: ../../include/functions_filemanager.php:832
-#: ../../include/functions_filemanager.php:835
+#: ../../include/functions_filemanager.php:559
+#: ../../include/functions_filemanager.php:850
+#: ../../include/functions_filemanager.php:853
msgid "Create File"
msgstr ""
-#: ../../include/functions_filemanager.php:549
-#: ../../include/functions_filemanager.php:846
-#: ../../include/functions_filemanager.php:849
+#: ../../include/functions_filemanager.php:564
+#: ../../include/functions_filemanager.php:864
+#: ../../include/functions_filemanager.php:867
msgid "Upload Files"
msgstr ""
-#: ../../include/functions_filemanager.php:583
-#: ../../include/functions_filemanager.php:793
+#: ../../include/functions_filemanager.php:598
+#: ../../include/functions_filemanager.php:808
msgid "Real path"
msgstr ""
-#: ../../include/functions_filemanager.php:618
+#: ../../include/functions_filemanager.php:633
#, php-format
msgid "Directory %s doesn't exist!"
msgstr ""
-#: ../../include/functions_filemanager.php:663
+#: ../../include/functions_filemanager.php:678
msgid "Parent directory"
msgstr ""
-#: ../../include/functions_filemanager.php:677
+#: ../../include/functions_filemanager.php:692
msgid "Directory"
msgstr ""
-#: ../../include/functions_filemanager.php:685
+#: ../../include/functions_filemanager.php:700
msgid "Compressed file"
msgstr ""
-#: ../../include/functions_filemanager.php:689
-#: ../../include/functions_filemanager.php:696
+#: ../../include/functions_filemanager.php:704
+#: ../../include/functions_filemanager.php:711
msgid "Text file"
msgstr ""
-#: ../../include/functions_filemanager.php:729
+#: ../../include/functions_filemanager.php:744
msgid "This file could be executed by any user"
msgstr ""
-#: ../../include/functions_filemanager.php:730
+#: ../../include/functions_filemanager.php:745
msgid "Make sure it can't perform dangerous tasks"
msgstr ""
-#: ../../include/functions_filemanager.php:804
+#: ../../include/functions_filemanager.php:819
msgid "No files or directories to show."
msgstr ""
-#: ../../include/functions_filemanager.php:818
-#: ../../include/functions_filemanager.php:940
+#: ../../include/functions_filemanager.php:835
+#: ../../include/functions_filemanager.php:961
msgid "Create directory"
msgstr ""
-#: ../../include/functions_filemanager.php:880
+#: ../../include/functions_filemanager.php:900
msgid "The zip upload in this dir, easy to upload multiple files."
msgstr ""
-#: ../../include/functions_filemanager.php:882
+#: ../../include/functions_filemanager.php:902
msgid "Decompress"
msgstr ""
-#: ../../include/functions_filemanager.php:954
+#: ../../include/functions_filemanager.php:976
msgid "Create file"
msgstr ""
-#: ../../include/functions_filemanager.php:968
+#: ../../include/functions_filemanager.php:990
msgid "Upload file/s"
msgstr ""
-#: ../../include/functions_filemanager.php:999
+#: ../../include/functions_filemanager.php:1021
msgid "The directory is read-only"
msgstr ""
@@ -49524,15 +50031,15 @@ msgstr ""
msgid "Copy of %s"
msgstr ""
-#: ../../include/lib/Dashboard/Manager.php:1007
+#: ../../include/lib/Dashboard/Manager.php:1011
msgid "Error create or update dashboard"
msgstr ""
-#: ../../include/lib/Dashboard/Manager.php:1479
+#: ../../include/lib/Dashboard/Manager.php:1483
msgid "Icon image dashboard"
msgstr ""
-#: ../../include/lib/Dashboard/Widget.php:468
+#: ../../include/lib/Dashboard/Widget.php:469
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:263
#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:347
#: ../../include/lib/Dashboard/Widgets/reports.php:336
@@ -49540,28 +50047,28 @@ msgstr ""
msgid "Failed to connect to node %d"
msgstr ""
-#: ../../include/lib/Dashboard/Widget.php:483
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:621
+#: ../../include/lib/Dashboard/Widget.php:484
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:634
msgid "Please configure this widget before usage"
msgstr ""
-#: ../../include/lib/Dashboard/Widget.php:491
+#: ../../include/lib/Dashboard/Widget.php:492
#: ../../include/lib/Dashboard/Widgets/maps_status.php:390
#: ../../include/lib/Dashboard/Widgets/events_list.php:561
msgid "Widget cannot be loaded"
msgstr ""
-#: ../../include/lib/Dashboard/Widget.php:491
+#: ../../include/lib/Dashboard/Widget.php:492
#: ../../include/lib/Dashboard/Widgets/maps_status.php:390
msgid "Please, configure the widget again to recover it"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/groups_status.php:158
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:510
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:533
msgid "General group status"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/groups_status.php:464
+#: ../../include/lib/Dashboard/Widgets/groups_status.php:477
msgid "Not agents in this group"
msgstr ""
@@ -49591,7 +50098,7 @@ msgid "No modules in selected groups"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/heatmap.php:173
-#: ../../include/lib/Dashboard/Widgets/heatmap.php:385
+#: ../../include/lib/Dashboard/Widgets/heatmap.php:386
msgid "Heatmap"
msgstr ""
@@ -49628,7 +50135,7 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:471
#: ../../include/lib/Dashboard/Widgets/sla_percent.php:482
#: ../../include/lib/Dashboard/Widgets/events_list.php:528
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:646
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:659
msgid "You don't have access"
msgstr ""
@@ -49650,13 +50157,14 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:280
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:361
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:464
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:443
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:256
msgid "Agent / module"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552
-#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465
+#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:466
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408
msgid "Not found modules"
@@ -49689,7 +50197,7 @@ msgid "Maps"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175
-#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709
+#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:711
msgid "Avg|Sum|Max|Min Module Data"
msgstr ""
@@ -49767,7 +50275,7 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:174
#: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:199
#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:172
-#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:537
+#: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:545
msgid "Color tabs modules"
msgstr ""
@@ -49851,21 +50359,21 @@ msgid "Zoom level"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:417
msgid "Triggered alerts report"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:390
msgid "Not alert fired"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358
+#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:399
#: ../../include/lib/Dashboard/Widgets/events_list.php:521
msgid "You must select some group"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/events_list.php:175
-#: ../../include/lib/Dashboard/Widgets/events_list.php:715
+#: ../../include/lib/Dashboard/Widgets/events_list.php:722
msgid "List of latest events"
msgstr ""
@@ -49875,16 +50383,16 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/events_list.php:383
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299
-#: ../../include/functions_events.php:3261
-#: ../../include/functions_events.php:3267
-#: ../../include/functions_events.php:3289
+#: ../../include/functions_events.php:3266
+#: ../../include/functions_events.php:3272
+#: ../../include/functions_events.php:3294
msgid "All event"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/events_list.php:384
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300
-#: ../../include/functions_events.php:3263
-#: ../../include/functions_events.php:3297
+#: ../../include/functions_events.php:3268
+#: ../../include/functions_events.php:3302
msgid "Only validated"
msgstr ""
@@ -49897,6 +50405,34 @@ msgstr ""
msgid "Please, event filter has been removed."
msgstr ""
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:420
+msgid "Color chart"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:431
+msgid "Show label"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:458
+msgid "Label size in px"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:470
+msgid "Color label"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:481
+msgid "Show Value"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:501
+msgid "Value size in px"
+msgstr ""
+
+#: ../../include/lib/Dashboard/Widgets/BasicChart.php:513
+msgid "Color value"
+msgstr ""
+
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626
msgid "Event cardboard"
@@ -50031,12 +50567,12 @@ msgid "Missing Service id"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/agent_module.php:173
-#: ../../include/lib/Dashboard/Widgets/agent_module.php:766
+#: ../../include/lib/Dashboard/Widgets/agent_module.php:779
msgid "Agent/Module View"
msgstr ""
#: ../../include/lib/Dashboard/Widgets/agent_module.php:250
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:454
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:459
msgid "Filter modules"
msgstr ""
@@ -50090,61 +50626,61 @@ msgstr ""
msgid "unknown"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:354
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:357
msgid "Type tree"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:386
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:389
msgid "Open all groups"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:407
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:411
msgid "Agents status"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:442
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:447
msgid "Modules status"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:508
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:513
#, php-format
msgid ""
"The user doesn't have permission to read agents. Please contact with your %s "
"administrator."
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:654
-#: ../../operation/tree.php:471
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:647
+#: ../../operation/tree.php:473
msgid "Operating systems found"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:658
-#: ../../operation/tree.php:474
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:651
+#: ../../operation/tree.php:476
msgid "Tags found"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:662
-#: ../../operation/tree.php:477
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:655
+#: ../../operation/tree.php:479
msgid "Module Groups found"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:666
-#: ../../operation/tree.php:480 ../../operation/search_main.php:56
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:659
+#: ../../operation/tree.php:482 ../../operation/search_main.php:56
msgid "Modules found"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:671
-#: ../../operation/tree.php:484
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:664
+#: ../../operation/tree.php:486
msgid "Groups found"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:732
-#: ../../operation/tree.php:536
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:725
+#: ../../operation/tree.php:538
msgid "Not normal agents"
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:733
-#: ../../operation/tree.php:537
+#: ../../include/lib/Dashboard/Widgets/tree_view.php:726
+#: ../../operation/tree.php:539
msgid "Not normal modules"
msgstr ""
@@ -50159,10 +50695,6 @@ msgid ""
"*usage.* will match: cpu_usage, vram usage."
msgstr ""
-#: ../../include/lib/Dashboard/Widgets/top_n.php:280
-msgid "Avg."
-msgstr ""
-
#: ../../include/lib/Dashboard/Widgets/top_n.php:456
msgid "There are no agents/modules found matching filter set"
msgstr ""
@@ -50226,73 +50758,73 @@ msgstr ""
msgid "Cluster already defined, please use another name."
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:782
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:783
msgid "Cluster name"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:783
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:784
msgid ""
"An agent with the same name of the cluster will be created, as well a "
"special service with the same name"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:797
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:798
msgid "Cluster type"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:798
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:799
msgid ""
"AA is a cluster where all members are working. In AP cluster only master "
"member is working"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:806
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:807
msgid "Active - Active"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:807
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:808
msgid "Active - Pasive"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:827
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:828
msgid "Target cluster agent will be stored under this group"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:844
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:845
msgid ""
"You must select a Prediction Server to perform all cluster status "
"calculations"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1042
msgid "critical if"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1051
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1074
#, php-format
msgid "% of balanced modules are down (equal or greater)."
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1090
msgid "Please, set thresholds for all active-passive modules"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1101
msgid "Please, set thresholds for all active-active modules"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1206
msgid "Please, check all active-passive modules critical for this cluster"
msgstr ""
-#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207
+#: ../../include/lib/ClusterViewer/ClusterWizard.php:1208
msgid ""
"If a critical balanced module is going to critical status, then cluster will "
"be critical."
msgstr ""
-#: ../../include/lib/Core/DBMaintainer.php:174
+#: ../../include/lib/Core/DBMaintainer.php:177
#, php-format
msgid "Connection problems: %s"
msgstr ""
@@ -50409,53 +50941,53 @@ msgid "Collapse the tree"
msgstr ""
#: ../../include/functions_snmp_browser.php:1115
-#: ../../include/functions_snmp_browser.php:1170
+#: ../../include/functions_snmp_browser.php:1178
msgid "Search options"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1160
+#: ../../include/functions_snmp_browser.php:1168
msgid "SNMP v3 options"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1192
+#: ../../include/functions_snmp_browser.php:1200
msgid "Search matches"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1208
+#: ../../include/functions_snmp_browser.php:1216
msgid "Create agent modules"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1217
+#: ../../include/functions_snmp_browser.php:1225
msgid "Create policy modules"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1226
+#: ../../include/functions_snmp_browser.php:1234
msgid "Create network components"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1656
+#: ../../include/functions_snmp_browser.php:1665
msgid " available"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1663
+#: ../../include/functions_snmp_browser.php:1672
msgid " to apply"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1668
-#: ../../operation/snmpconsole/snmp_browser.php:535
+#: ../../include/functions_snmp_browser.php:1677
+#: ../../operation/snmpconsole/snmp_browser.php:540
msgid "Create new policy"
msgstr ""
-#: ../../include/functions_snmp_browser.php:1723
+#: ../../include/functions_snmp_browser.php:1732
msgid "Undo"
msgstr ""
-#: ../../include/chart_generator.php:117
+#: ../../include/chart_generator.php:122
#: ../../operation/agentes/stat_win.php:51
#: ../../operation/agentes/stat_win.php:176
#: ../../operation/agentes/realtime_win.php:51
#: ../../operation/agentes/interface_traffic_graph_win.php:54
-#: ../../operation/inventory/inventory.php:369
+#: ../../operation/inventory/inventory.php:371
msgid "There was a problem connecting with the node"
msgstr ""
@@ -50494,7 +51026,8 @@ msgid "GIS map layers"
msgstr ""
#: ../../include/functions_groups.php:251
-#: ../../operation/agentes/pandora_networkmap.view.php:2413
+#: ../../operation/agentes/networkmap.dinamic.php:150
+#: ../../operation/agentes/pandora_networkmap.view.php:2414
msgid "Network maps"
msgstr ""
@@ -50528,159 +51061,153 @@ msgstr ""
msgid "Latest events"
msgstr ""
-#: ../../include/functions_events.php:2910
+#: ../../include/functions_events.php:2915
msgid "Going to unknown"
msgstr ""
-#: ../../include/functions_events.php:2918
+#: ../../include/functions_events.php:2923
msgid "Alert manually validated"
msgstr ""
-#: ../../include/functions_events.php:2922
+#: ../../include/functions_events.php:2927
msgid "Going from critical to warning"
msgstr ""
-#: ../../include/functions_events.php:2928
+#: ../../include/functions_events.php:2933
msgid "Going up to critical state"
msgstr ""
-#: ../../include/functions_events.php:2934
+#: ../../include/functions_events.php:2939
msgid "Going up to normal state"
msgstr ""
-#: ../../include/functions_events.php:2938
+#: ../../include/functions_events.php:2943
msgid "Going down from normal to warning"
msgstr ""
-#: ../../include/functions_events.php:2950
+#: ../../include/functions_events.php:2955
msgid "Discovery server detected a new host"
msgstr ""
-#: ../../include/functions_events.php:2954
+#: ../../include/functions_events.php:2959
msgid "New agent created"
msgstr ""
-#: ../../include/functions_events.php:2971
+#: ../../include/functions_events.php:2976
msgid "Unknown type:"
msgstr ""
-#: ../../include/functions_events.php:3262
-#: ../../include/functions_events.php:3293
+#: ../../include/functions_events.php:3267
+#: ../../include/functions_events.php:3298
msgid "Only new"
msgstr ""
-#: ../../include/functions_events.php:3264
-#: ../../include/functions_events.php:3301
+#: ../../include/functions_events.php:3269
+#: ../../include/functions_events.php:3306
msgid "Only in process"
msgstr ""
-#: ../../include/functions_events.php:3265
-#: ../../include/functions_events.php:3305
+#: ../../include/functions_events.php:3270
+#: ../../include/functions_events.php:3310
msgid "Only not validated"
msgstr ""
-#: ../../include/functions_events.php:3270
-#: ../../include/functions_events.php:3543
-#: ../../include/functions_events.php:3552
-msgid "In process"
-msgstr ""
-
-#: ../../include/functions_events.php:3271
+#: ../../include/functions_events.php:3276
msgid "Not Validated"
msgstr ""
-#: ../../include/functions_events.php:3463
+#: ../../include/functions_events.php:3468
msgid "Change owner"
msgstr ""
-#: ../../include/functions_events.php:3528
+#: ../../include/functions_events.php:3533
msgid "Change status"
msgstr ""
-#: ../../include/functions_events.php:3625
-#: ../../include/functions_events.php:5361
+#: ../../include/functions_events.php:3630
+#: ../../include/functions_events.php:5366
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330
msgid "Add comment"
msgstr ""
-#: ../../include/functions_events.php:3648
-#: ../../include/functions_events.php:3652
-#: ../../operation/events/events.php:978
+#: ../../include/functions_events.php:3653
+#: ../../include/functions_events.php:3657
+#: ../../operation/events/events.php:983
msgid "Delete event"
msgstr ""
-#: ../../include/functions_events.php:3675
+#: ../../include/functions_events.php:3680
msgid "Custom responses"
msgstr ""
-#: ../../include/functions_events.php:4281
+#: ../../include/functions_events.php:4286
msgid "Extended information"
msgstr ""
-#: ../../include/functions_events.php:4312
+#: ../../include/functions_events.php:4317
msgid "There was an error connecting to the node"
msgstr ""
-#: ../../include/functions_events.php:4333
+#: ../../include/functions_events.php:4338
msgid "Agent details"
msgstr ""
-#: ../../include/functions_events.php:4347
+#: ../../include/functions_events.php:4352
msgid "This agent belongs to metaconsole, is not possible display it"
msgstr ""
-#: ../../include/functions_events.php:4442
+#: ../../include/functions_events.php:4447
msgid "View custom fields"
msgstr ""
-#: ../../include/functions_events.php:4465
+#: ../../include/functions_events.php:4470
msgid "Module details"
msgstr ""
-#: ../../include/functions_events.php:4481
+#: ../../include/functions_events.php:4486
msgid "No assigned"
msgstr ""
-#: ../../include/functions_events.php:4562
-#: ../../include/functions_events.php:4571
+#: ../../include/functions_events.php:4567
+#: ../../include/functions_events.php:4576
msgid "Go to data overview"
msgstr ""
-#: ../../include/functions_events.php:4688
+#: ../../include/functions_events.php:4693
#, php-format
msgid "Invalid custom data: %s"
msgstr ""
-#: ../../include/functions_events.php:4917
+#: ../../include/functions_events.php:4922
msgid "First event"
msgstr ""
-#: ../../include/functions_events.php:4920
+#: ../../include/functions_events.php:4925
msgid "Last event"
msgstr ""
-#: ../../include/functions_events.php:5017
+#: ../../include/functions_events.php:5022
msgid "Autovalidated"
msgstr ""
-#: ../../include/functions_events.php:5093
+#: ../../include/functions_events.php:5098
msgid "ID extra"
msgstr ""
-#: ../../include/functions_events.php:5210
+#: ../../include/functions_events.php:5215
msgid "There are no comments"
msgstr ""
-#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214
+#: ../../include/functions_events.php:5279
msgid "by"
msgstr ""
-#: ../../include/functions_events.php:5941
+#: ../../include/functions_events.php:5946
#, php-format
msgid "Event # %d"
msgstr ""
-#: ../../include/functions_events.php:5944
+#: ../../include/functions_events.php:5949
msgid "Executing command: "
msgstr ""
@@ -50753,15 +51280,15 @@ msgstr ""
msgid "User is blocked"
msgstr ""
-#: ../../index.php:1003
+#: ../../index.php:1004
msgid "User doesn\\'t exist."
msgstr ""
-#: ../../index.php:1025
+#: ../../index.php:1026
msgid "User only can use the API."
msgstr ""
-#: ../../index.php:1231
+#: ../../index.php:1232
#, php-format
msgid "Metaconsole MR (%d) is different than this one (%d)"
msgstr ""
@@ -50798,35 +51325,35 @@ msgstr ""
msgid "policies"
msgstr ""
-#: ../../operation/tree.php:215
+#: ../../operation/tree.php:216
msgid "Search group"
msgstr ""
-#: ../../operation/tree.php:221 ../../operation/tree.php:310
+#: ../../operation/tree.php:222 ../../operation/tree.php:312
msgid "Show not init modules"
msgstr ""
-#: ../../operation/tree.php:232
+#: ../../operation/tree.php:233
msgid "Search agent"
msgstr ""
-#: ../../operation/tree.php:244
+#: ../../operation/tree.php:245
msgid "Show not init agents"
msgstr ""
-#: ../../operation/tree.php:254
+#: ../../operation/tree.php:255
msgid "Show full hirearchy"
msgstr ""
-#: ../../operation/tree.php:288
+#: ../../operation/tree.php:289
msgid "Show only disabled"
msgstr ""
-#: ../../operation/tree.php:305
+#: ../../operation/tree.php:307
msgid "Search module"
msgstr ""
-#: ../../operation/tree.php:355
+#: ../../operation/tree.php:357
msgid "Tree search"
msgstr ""
@@ -50899,33 +51426,28 @@ msgstr ""
msgid "If checkbox is clicked then block size global configuration is used"
msgstr ""
-#: ../../operation/users/user_edit.php:519
-#: ../../operation/users/user_edit.php:528
+#: ../../operation/users/user_edit.php:524
msgid "Theme"
msgstr ""
-#: ../../operation/users/user_edit.php:529
-msgid "This change will only apply to nodes"
-msgstr ""
-
-#: ../../operation/users/user_edit.php:846
+#: ../../operation/users/user_edit.php:843
msgid "eHorus user configuration"
msgstr ""
-#: ../../operation/users/user_edit.php:851
+#: ../../operation/users/user_edit.php:848
msgid "eHorus user acces enabled"
msgstr ""
-#: ../../operation/users/user_edit.php:905
+#: ../../operation/users/user_edit.php:902
msgid "Integria user configuration"
msgstr ""
-#: ../../operation/users/user_edit.php:948
+#: ../../operation/users/user_edit.php:945
msgid ""
"You can not change your user info under the current authentication scheme"
msgstr ""
-#: ../../operation/users/user_edit.php:1036
+#: ../../operation/users/user_edit.php:1033
msgid "This user doesn't have any assigned profile/group."
msgstr ""
@@ -50956,40 +51478,40 @@ msgstr ""
msgid "Matches"
msgstr ""
-#: ../../operation/visual_console/view.php:407
+#: ../../operation/visual_console/view.php:409
msgid "Delete Item"
msgstr ""
-#: ../../operation/visual_console/view.php:413
+#: ../../operation/visual_console/view.php:415
msgid "Copy Item"
msgstr ""
-#: ../../operation/visual_console/view.php:430
+#: ../../operation/visual_console/view.php:432
msgid "Force remote checks"
msgstr ""
-#: ../../operation/visual_console/view.php:788
+#: ../../operation/visual_console/view.php:790
msgid "Are you sure you wish to set the visual console in maintenance mode"
msgstr ""
-#: ../../operation/visual_console/view.php:791
-#: ../../operation/visual_console/view.php:798
+#: ../../operation/visual_console/view.php:793
+#: ../../operation/visual_console/view.php:800
msgid "Are you sure you wish to disable maintenance mode"
msgstr ""
-#: ../../operation/visual_console/view.php:794
+#: ../../operation/visual_console/view.php:796
msgid "The visual console was set to maintenance mode"
msgstr ""
-#: ../../operation/visual_console/view.php:796
+#: ../../operation/visual_console/view.php:798
msgid "ago by user"
msgstr ""
-#: ../../operation/visual_console/view.php:803
+#: ../../operation/visual_console/view.php:805
msgid "Maintenance mode"
msgstr ""
-#: ../../operation/visual_console/view.php:864
+#: ../../operation/visual_console/view.php:866
msgid "Are you sure"
msgstr ""
@@ -51021,64 +51543,65 @@ msgstr ""
msgid "Show events"
msgstr ""
-#: ../../operation/agentes/stat_win.php:299
+#: ../../operation/agentes/stat_win.php:303
#: ../../operation/agentes/graphs.php:239
msgid "Show alerts"
msgstr ""
-#: ../../operation/agentes/stat_win.php:307
-#: ../../operation/agentes/stat_win.php:418
-#: ../../operation/agentes/interface_traffic_graph_win.php:209
+#: ../../operation/agentes/stat_win.php:311
+#: ../../operation/agentes/stat_win.php:430
+#: ../../operation/agentes/interface_traffic_graph_win.php:214
msgid "Begin time"
msgstr ""
-#: ../../operation/agentes/stat_win.php:325
-#: ../../operation/agentes/stat_win.php:428
-#: ../../operation/agentes/interface_traffic_graph_win.php:215
+#: ../../operation/agentes/stat_win.php:333
+#: ../../operation/agentes/stat_win.php:444
+#: ../../operation/agentes/interface_traffic_graph_win.php:231
#: ../../operation/agentes/graphs.php:233
#: ../../operation/reporting/graph_viewer.php:346
msgid "Time range"
msgstr ""
-#: ../../operation/agentes/stat_win.php:340
+#: ../../operation/agentes/stat_win.php:348
#: ../../operation/reporting/graph_viewer.php:390
msgid "Zoom"
msgstr ""
-#: ../../operation/agentes/stat_win.php:360
-#: ../../operation/agentes/interface_traffic_graph_win.php:229
+#: ../../operation/agentes/stat_win.php:368
+#: ../../operation/agentes/interface_traffic_graph_win.php:245
msgid "Show percentil"
msgstr ""
-#: ../../operation/agentes/stat_win.php:386
+#: ../../operation/agentes/stat_win.php:394
msgid "Show AVG/MAX/MIN data series in graph"
msgstr ""
-#: ../../operation/agentes/stat_win.php:484
-#: ../../operation/agentes/interface_traffic_graph_win.php:308
+#: ../../operation/agentes/stat_win.php:500
+#: ../../operation/agentes/interface_traffic_graph_win.php:318
+#: ../../operation/agentes/interface_traffic_graph_win.php:322
msgid "Graph configuration menu"
msgstr ""
-#: ../../operation/agentes/alerts_status.php:344
+#: ../../operation/agentes/alerts_status.php:346
msgid "No actions"
msgstr ""
-#: ../../operation/agentes/alerts_status.php:378
-#: ../../operation/agentes/estado_monitores.php:577
+#: ../../operation/agentes/alerts_status.php:380
+#: ../../operation/agentes/estado_monitores.php:575
#: ../../operation/agentes/alerts_status.functions.php:223
msgid "Free text for search (*):"
msgstr ""
-#: ../../operation/agentes/alerts_status.php:379
+#: ../../operation/agentes/alerts_status.php:381
#: ../../operation/agentes/alerts_status.functions.php:224
msgid "Filter by module name, template name or action name"
msgstr ""
-#: ../../operation/agentes/alerts_status.php:475
+#: ../../operation/agentes/alerts_status.php:481
msgid "Full list of alerts"
msgstr ""
-#: ../../operation/agentes/alerts_status.php:567
+#: ../../operation/agentes/alerts_status.php:577
msgid "You must select at least one alert."
msgstr ""
@@ -51153,15 +51676,15 @@ msgid "Search in custom fields"
msgstr ""
#: ../../operation/agentes/estado_agente.php:467
-#: ../../operation/agentes/status_monitor.php:1058
+#: ../../operation/agentes/status_monitor.php:1060
msgid "Manage filter"
msgstr ""
-#: ../../operation/agentes/estado_agente.php:1059
+#: ../../operation/agentes/estado_agente.php:1067
msgid "L.S change"
msgstr ""
-#: ../../operation/agentes/estado_agente.php:1238
+#: ../../operation/agentes/estado_agente.php:1247
msgid "Agent events"
msgstr ""
@@ -51210,14 +51733,14 @@ msgid "Latest events for this agent"
msgstr ""
#: ../../operation/agentes/networkmap.dinamic.php:102
-#: ../../operation/agentes/pandora_networkmap.view.php:2347
+#: ../../operation/agentes/pandora_networkmap.view.php:2348
#: ../../operation/snmpconsole/snmp_statistics.php:45
#: ../../operation/snmpconsole/snmp_browser.php:56
msgid "Normal screen"
msgstr ""
#: ../../operation/agentes/networkmap.dinamic.php:126
-#: ../../operation/agentes/pandora_networkmap.view.php:2375
+#: ../../operation/agentes/pandora_networkmap.view.php:2376
msgid "List of networkmap"
msgstr ""
@@ -51376,39 +51899,39 @@ msgid "Succesfully created"
msgstr ""
#: ../../operation/agentes/pandora_networkmap.php:215
-#: ../../operation/agentes/pandora_networkmap.php:514
+#: ../../operation/agentes/pandora_networkmap.php:515
msgid "Succesfully updated"
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:539
+#: ../../operation/agentes/pandora_networkmap.php:540
msgid "Succesfully duplicate"
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:562
+#: ../../operation/agentes/pandora_networkmap.php:563
msgid "Succesfully deleted"
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:672
+#: ../../operation/agentes/pandora_networkmap.php:673
msgid "List of network maps"
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:787
+#: ../../operation/agentes/pandora_networkmap.php:788
msgid "Empty map"
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:791
+#: ../../operation/agentes/pandora_networkmap.php:792
msgid "Pending to generate"
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:846
+#: ../../operation/agentes/pandora_networkmap.php:847
msgid "There are no maps defined."
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:860
+#: ../../operation/agentes/pandora_networkmap.php:861
msgid "Create network map"
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.php:860
+#: ../../operation/agentes/pandora_networkmap.php:861
msgid "Create empty network map"
msgstr ""
@@ -51417,11 +51940,11 @@ msgstr ""
msgid "%s Interface Graph"
msgstr ""
-#: ../../operation/agentes/interface_traffic_graph_win.php:252
+#: ../../operation/agentes/interface_traffic_graph_win.php:268
msgid "Zoom factor"
msgstr ""
-#: ../../operation/agentes/interface_traffic_graph_win.php:259
+#: ../../operation/agentes/interface_traffic_graph_win.php:275
msgid "Full"
msgstr ""
@@ -51488,21 +52011,21 @@ msgstr ""
msgid "Custom graph create from the tab graphs in the agent."
msgstr ""
-#: ../../operation/agentes/datos_agente.php:173
+#: ../../operation/agentes/datos_agente.php:174
msgid "Received data from"
msgstr ""
-#: ../../operation/agentes/datos_agente.php:180
+#: ../../operation/agentes/datos_agente.php:181
msgid "Main database"
msgstr ""
-#: ../../operation/agentes/datos_agente.php:181
+#: ../../operation/agentes/datos_agente.php:182
msgid ""
"Switch between the main database and the history database to retrieve module "
"data"
msgstr ""
-#: ../../operation/agentes/datos_agente.php:211
+#: ../../operation/agentes/datos_agente.php:213
#: ../../operation/agentes/alerts_status.functions.php:151
msgid "Free text for search"
msgstr ""
@@ -51537,7 +52060,7 @@ msgid "% Bandwidth usage (out)"
msgstr ""
#: ../../operation/agentes/interface_view.functions.php:731
-#: ../../operation/agentes/pandora_networkmap.view.php:1308
+#: ../../operation/agentes/pandora_networkmap.view.php:1309
msgid "inOctets and outOctets must be enabled."
msgstr ""
@@ -51592,53 +52115,49 @@ msgstr ""
msgid "Interface view"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:327 ../../operation/menu.php:186
-msgid "Monitor detail"
-msgstr ""
-
-#: ../../operation/agentes/status_monitor.php:592
+#: ../../operation/agentes/status_monitor.php:591
#: ../../operation/agentes/alerts_status.functions.php:127
msgid "No tags"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:675
+#: ../../operation/agentes/status_monitor.php:674
msgid "Wux server module"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:971
+#: ../../operation/agentes/status_monitor.php:973
msgid "Min. hours in current status"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:981
+#: ../../operation/agentes/status_monitor.php:983
msgid "Not condition"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:996
+#: ../../operation/agentes/status_monitor.php:998
msgid ""
"If you check this option, those elements that do NOT meet any of the "
"requirements will be shown"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:1541
+#: ../../operation/agentes/status_monitor.php:1543
msgid "Data Type"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:1585
+#: ../../operation/agentes/status_monitor.php:1587
msgid "W/C"
msgstr ""
-#: ../../operation/agentes/status_monitor.php:1671
-#: ../../operation/agentes/pandora_networkmap.view.php:1819
+#: ../../operation/agentes/status_monitor.php:1673
+#: ../../operation/agentes/pandora_networkmap.view.php:1820
msgid "(Adopt) "
msgstr ""
-#: ../../operation/agentes/status_monitor.php:1679
-#: ../../operation/agentes/pandora_networkmap.view.php:1827
+#: ../../operation/agentes/status_monitor.php:1681
+#: ../../operation/agentes/pandora_networkmap.view.php:1828
msgid "(Unlinked) (Adopt) "
msgstr ""
-#: ../../operation/agentes/status_monitor.php:1682
-#: ../../operation/agentes/pandora_networkmap.view.php:1830
+#: ../../operation/agentes/status_monitor.php:1684
+#: ../../operation/agentes/pandora_networkmap.view.php:1831
msgid "(Unlinked) "
msgstr ""
@@ -51646,6 +52165,10 @@ msgstr ""
msgid "Summary of the status groups"
msgstr ""
+#: ../../operation/agentes/group_view.php:233
+msgid "Total items"
+msgstr ""
+
#: ../../operation/agentes/estado_monitores.php:51
msgid "Tag's information"
msgstr ""
@@ -51662,21 +52185,15 @@ msgstr ""
msgid "List of modules"
msgstr ""
-#: ../../operation/agentes/estado_monitores.php:191
-msgid ""
-"To see the list of modules paginated, enable this option in the Styles "
-"Configuration."
-msgstr ""
-
-#: ../../operation/agentes/estado_monitores.php:519
+#: ../../operation/agentes/estado_monitores.php:516
msgid "Not Normal"
msgstr ""
-#: ../../operation/agentes/estado_monitores.php:559
+#: ../../operation/agentes/estado_monitores.php:557
msgid "Status:"
msgstr ""
-#: ../../operation/agentes/estado_monitores.php:578
+#: ../../operation/agentes/estado_monitores.php:576
msgid "Search by module name, list matches."
msgstr ""
@@ -51684,24 +52201,24 @@ msgstr ""
msgid "Show only the task with the recon script \"SNMP L2 Recon\"."
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.view.php:1687
+#: ../../operation/agentes/pandora_networkmap.view.php:1688
msgid "Success be updated."
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.view.php:1784
+#: ../../operation/agentes/pandora_networkmap.view.php:1785
msgid "Name: "
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.view.php:1834
+#: ../../operation/agentes/pandora_networkmap.view.php:1835
msgid "Policy: "
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.view.php:1931
+#: ../../operation/agentes/pandora_networkmap.view.php:1932
msgid "Data: "
msgstr ""
-#: ../../operation/agentes/pandora_networkmap.view.php:1933
-#: ../../operation/agentes/estado_generalagente.php:923
+#: ../../operation/agentes/pandora_networkmap.view.php:1934
+#: ../../operation/agentes/estado_generalagente.php:830
msgid "Last contact: "
msgstr ""
@@ -51709,27 +52226,27 @@ msgstr ""
msgid "Sons"
msgstr ""
-#: ../../operation/agentes/ver_agente.php:1596
+#: ../../operation/agentes/ver_agente.php:1592
msgid "Log Viewer"
msgstr ""
-#: ../../operation/agentes/ver_agente.php:1635
+#: ../../operation/agentes/ver_agente.php:1631
msgid "Terminal"
msgstr ""
-#: ../../operation/agentes/ver_agente.php:1657
+#: ../../operation/agentes/ver_agente.php:1653
msgid "Processes"
msgstr ""
-#: ../../operation/agentes/ver_agente.php:1840
+#: ../../operation/agentes/ver_agente.php:1836
msgid "Data View"
msgstr ""
-#: ../../operation/agentes/ver_agente.php:1910
+#: ../../operation/agentes/ver_agente.php:1906
msgid "Network configuration"
msgstr ""
-#: ../../operation/agentes/ver_agente.php:1925
+#: ../../operation/agentes/ver_agente.php:1921
msgid "Agent main view"
msgstr ""
@@ -51741,43 +52258,27 @@ msgstr ""
msgid "In scheduled downtime"
msgstr ""
-#: ../../operation/agentes/estado_generalagente.php:395
+#: ../../operation/agentes/estado_generalagente.php:366
msgid "Agent contact"
msgstr ""
-#: ../../operation/agentes/estado_generalagente.php:401
+#: ../../operation/agentes/estado_generalagente.php:372
msgid "Refresh data"
msgstr ""
-#: ../../operation/agentes/estado_generalagente.php:435
-msgid "Out of bounds"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:470
-msgid "Next contact"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:555
-msgid "There is no GIS data."
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:688
+#: ../../operation/agentes/estado_generalagente.php:657
msgid "Agent access rate (Last 24h)"
msgstr ""
-#: ../../operation/agentes/estado_generalagente.php:745
+#: ../../operation/agentes/estado_generalagente.php:714
msgid "Active incident on this agent"
msgstr ""
-#: ../../operation/agentes/estado_generalagente.php:903
-msgid "Events info (24hr.)"
-msgstr ""
-
-#: ../../operation/agentes/estado_generalagente.php:1050
+#: ../../operation/agentes/estado_generalagente.php:957
msgid "Agent data"
msgstr ""
-#: ../../operation/agentes/estado_generalagente.php:1111
+#: ../../operation/agentes/estado_generalagente.php:1018
msgid "Interface information (SNMP)"
msgstr ""
@@ -51785,8 +52286,8 @@ msgstr ""
msgid "This agent has not modules inventory"
msgstr ""
-#: ../../operation/agentes/agent_inventory.php:193
-#: ../../operation/agentes/agent_inventory.php:194
+#: ../../operation/agentes/agent_inventory.php:248
+#: ../../operation/agentes/agent_inventory.php:249
msgid "Diff view"
msgstr ""
@@ -51941,7 +52442,7 @@ msgstr ""
#: ../../operation/network/network_report.php:183
#: ../../operation/network/network_usage_map.php:189
-#: ../../operation/netflow/nf_live_view.php:483
+#: ../../operation/netflow/nf_live_view.php:556
msgid "Defined period"
msgstr ""
@@ -51978,47 +52479,56 @@ msgstr ""
msgid "Results to show"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:130
+#: ../../operation/netflow/nf_live_view.php:135
msgid "Netflow live view"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:163
+#: ../../operation/netflow/nf_live_view.php:172
msgid "Error creating filter"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:165
+#: ../../operation/netflow/nf_live_view.php:174
msgid "Filter created successfully"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:184
+#: ../../operation/netflow/nf_live_view.php:193
msgid "Filter updated successfully"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:185
+#: ../../operation/netflow/nf_live_view.php:194
msgid "Error updating filter"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:228
+#: ../../operation/netflow/nf_live_view.php:237
msgid "Connection"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:284
+#: ../../operation/netflow/nf_live_view.php:293
msgid "Select a filter"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:357
+#: ../../operation/netflow/nf_live_view.php:366
msgid "IP address resolution"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:357
+#: ../../operation/netflow/nf_live_view.php:366
msgid "Resolve the IP addresses to get their hostnames."
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:360
+#: ../../operation/netflow/nf_live_view.php:369
msgid "Source ip"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:465
+#: ../../operation/netflow/nf_live_view.php:387
+msgid "New filter name"
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:425
+#, php-format
+msgid "WARNING threshold for the maximum % of traffic of an IP."
+msgstr ""
+
+#: ../../operation/netflow/nf_live_view.php:538
#: ../../operation/incidents/integriaims_export_csv.php:84
#: ../../operation/incidents/configure_integriaims_incident.php:353
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:339
@@ -52026,31 +52536,31 @@ msgstr ""
msgid "Resolution"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:477
+#: ../../operation/netflow/nf_live_view.php:550
msgid "The interval will be divided in chunks the length of the resolution."
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:508
+#: ../../operation/netflow/nf_live_view.php:581
msgid "Aggregated by"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:525
+#: ../../operation/netflow/nf_live_view.php:598
msgid "Max values"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:575
+#: ../../operation/netflow/nf_live_view.php:648
msgid "Draw"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:587
+#: ../../operation/netflow/nf_live_view.php:660
msgid "Save as new filter"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:588
+#: ../../operation/netflow/nf_live_view.php:661
msgid "Update current filter"
msgstr ""
-#: ../../operation/netflow/nf_live_view.php:618
+#: ../../operation/netflow/nf_live_view.php:691
msgid "No filter selected"
msgstr ""
@@ -52083,19 +52593,20 @@ msgstr ""
msgid "Trap Enterprise String"
msgstr ""
-#: ../../operation/snmpconsole/snmp_browser.php:77
+#: ../../operation/snmpconsole/snmp_browser.php:79
msgid "SNMP Browser"
msgstr ""
-#: ../../operation/snmpconsole/snmp_browser.php:218
+#: ../../operation/snmpconsole/snmp_browser.php:223
msgid "Adding modules in progress"
msgstr ""
-#: ../../operation/snmpconsole/snmp_browser.php:546
+#: ../../operation/snmpconsole/snmp_browser.php:551
msgid "Create policy"
msgstr ""
-#: ../../operation/snmpconsole/snmp_browser.php:638
+#: ../../operation/snmpconsole/snmp_browser.php:621
+#: ../../operation/snmpconsole/snmp_browser.php:697
msgid "Are you sure you want add module?"
msgstr ""
@@ -52139,11 +52650,10 @@ msgid "RSS"
msgstr ""
#: ../../operation/menu.php:570 ../../operation/menu.php:583
-#: ../../operation/events/sound_events.php:63
-#: ../../operation/events/sound_events.php:164
-#: ../../operation/events/events.php:1532
-#: ../../operation/events/events.php:1582
-msgid "Accoustic console"
+#: ../../operation/events/sound_events.php:62
+#: ../../operation/events/events.php:1586
+#: ../../operation/events/events.php:1636
+msgid "Acoustic console"
msgstr ""
#: ../../operation/menu.php:648
@@ -52405,44 +52915,42 @@ msgstr ""
msgid "No tickets to show"
msgstr ""
-#: ../../operation/inventory/inventory.php:535
-#: ../../operation/inventory/inventory.php:570
+#: ../../operation/inventory/inventory.php:537
+#: ../../operation/inventory/inventory.php:572
msgid "Basic info"
msgstr ""
-#: ../../operation/inventory/inventory.php:661
+#: ../../operation/inventory/inventory.php:663
msgid "Order by agent"
msgstr ""
-#: ../../operation/inventory/inventory.php:733
+#: ../../operation/inventory/inventory.php:734
msgid "You must select at least one filter."
msgstr ""
-#: ../../operation/inventory/inventory.php:859
-#: ../../operation/inventory/inventory.php:860
-#: ../../operation/inventory/inventory.php:948
-#: ../../operation/inventory/inventory.php:949
-#: ../../operation/inventory/inventory.php:1100
-#: ../../operation/inventory/inventory.php:1101
-#: ../../operation/inventory/inventory.php:1211
-#: ../../operation/inventory/inventory.php:1212
+#: ../../operation/inventory/inventory.php:814
+#: ../../operation/inventory/inventory.php:815
+#: ../../operation/inventory/inventory.php:925
+#: ../../operation/inventory/inventory.php:926
+#: ../../operation/inventory/inventory.php:1086
+#: ../../operation/inventory/inventory.php:1087
+#: ../../operation/inventory/inventory.php:1176
+#: ../../operation/inventory/inventory.php:1177
+#: ../../operation/inventory/inventory.php:1206
+#: ../../operation/inventory/inventory.php:1207
msgid "No inventory found"
msgstr ""
-#: ../../operation/inventory/inventory.php:1001
-#: ../../operation/inventory/inventory.php:1295
+#: ../../operation/inventory/inventory.php:1247
msgid "Secondary IP"
msgstr ""
-#: ../../operation/inventory/inventory.php:1010
-#: ../../operation/inventory/inventory.php:1304
+#: ../../operation/inventory/inventory.php:1256
msgid "Values Custom Fields"
msgstr ""
-#: ../../operation/inventory/inventory.php:1031
-#: ../../operation/inventory/inventory.php:1032
-#: ../../operation/inventory/inventory.php:1325
-#: ../../operation/inventory/inventory.php:1326
+#: ../../operation/inventory/inventory.php:1278
+#: ../../operation/inventory/inventory.php:1279
msgid "Agent info not found"
msgstr ""
@@ -52528,14 +53036,6 @@ msgstr ""
msgid "Custom graph viewer"
msgstr ""
-#: ../../operation/events/sound_events.php:229
-msgid "Time Sound"
-msgstr ""
-
-#: ../../operation/events/sound_events.php:288
-msgid "Events not found"
-msgstr ""
-
#: ../../operation/events/events_rss.php:195
msgid "Your IP is not into the IP list with API access."
msgstr ""
@@ -52544,175 +53044,175 @@ msgstr ""
msgid "The URL of your feed has bad hash."
msgstr ""
-#: ../../operation/events/events.php:884
+#: ../../operation/events/events.php:889
msgid "Validate events"
msgstr ""
-#: ../../operation/events/events.php:901
+#: ../../operation/events/events.php:906
msgid "Validate event"
msgstr ""
-#: ../../operation/events/events.php:936
+#: ../../operation/events/events.php:941
msgid "Change to in progress status"
msgstr ""
-#: ../../operation/events/events.php:961
+#: ../../operation/events/events.php:966
msgid "Delete events"
msgstr ""
-#: ../../operation/events/events.php:1440
+#: ../../operation/events/events.php:1494
msgid "Event viewer"
msgstr ""
-#: ../../operation/events/events.php:1482
+#: ../../operation/events/events.php:1536
msgid "History event list"
msgstr ""
-#: ../../operation/events/events.php:1493
+#: ../../operation/events/events.php:1547
msgid "RSS Events"
msgstr ""
-#: ../../operation/events/events.php:1504
+#: ../../operation/events/events.php:1558
msgid "Export to CSV file"
msgstr ""
-#: ../../operation/events/events.php:1587
+#: ../../operation/events/events.php:1641
msgid "History"
msgstr ""
-#: ../../operation/events/events.php:1641
+#: ../../operation/events/events.php:1695
msgid "Errors"
msgstr ""
-#: ../../operation/events/events.php:1706
-#: ../../operation/events/events.php:1727
+#: ../../operation/events/events.php:1760
+#: ../../operation/events/events.php:1781
msgid "WARNING: This could cause a performace impact."
msgstr ""
-#: ../../operation/events/events.php:1725
+#: ../../operation/events/events.php:1779
msgid "Search in secondary groups"
msgstr ""
-#: ../../operation/events/events.php:1815
+#: ../../operation/events/events.php:1869
msgid "Search for elements NOT containing given text."
msgstr ""
-#: ../../operation/events/events.php:2076
+#: ../../operation/events/events.php:2130
msgid "Id source event"
msgstr ""
-#: ../../operation/events/events.php:2134
+#: ../../operation/events/events.php:2188
msgid "From (date:time)"
msgstr ""
-#: ../../operation/events/events.php:2192
+#: ../../operation/events/events.php:2246
msgid "To (date:time)"
msgstr ""
-#: ../../operation/events/events.php:2203
+#: ../../operation/events/events.php:2257
msgid "Filter custom data by field name"
msgstr ""
-#: ../../operation/events/events.php:2204
+#: ../../operation/events/events.php:2258
msgid "Filter custom data by field value"
msgstr ""
-#: ../../operation/events/events.php:2224
+#: ../../operation/events/events.php:2278
msgid "Custom data filter"
msgstr ""
-#: ../../operation/events/events.php:2246
+#: ../../operation/events/events.php:2300
msgid "Custom data search"
msgstr ""
-#: ../../operation/events/events.php:2372
+#: ../../operation/events/events.php:2426
msgid "Current filter"
msgstr ""
-#: ../../operation/events/events.php:2377
+#: ../../operation/events/events.php:2431
msgid "Not set."
msgstr ""
-#: ../../operation/events/events.php:2390
+#: ../../operation/events/events.php:2444
msgid "Any status."
msgstr ""
-#: ../../operation/events/events.php:2394
+#: ../../operation/events/events.php:2448
msgid "New events."
msgstr ""
-#: ../../operation/events/events.php:2398
+#: ../../operation/events/events.php:2452
msgid "Validated."
msgstr ""
-#: ../../operation/events/events.php:2402
+#: ../../operation/events/events.php:2456
msgid "In proccess."
msgstr ""
-#: ../../operation/events/events.php:2406
+#: ../../operation/events/events.php:2460
msgid "Not validated."
msgstr ""
-#: ../../operation/events/events.php:2418
+#: ../../operation/events/events.php:2472
msgid "Any time."
msgstr ""
-#: ../../operation/events/events.php:2420
-#: ../../operation/events/events.php:3030
+#: ../../operation/events/events.php:2474
+#: ../../operation/events/events.php:3089
msgid "Last hour."
msgstr ""
-#: ../../operation/events/events.php:2422
+#: ../../operation/events/events.php:2476
#, php-format
msgid "Last %d hours."
msgstr ""
-#: ../../operation/events/events.php:2430
+#: ../../operation/events/events.php:2484
msgid "Duplicated"
msgstr ""
-#: ../../operation/events/events.php:2433
+#: ../../operation/events/events.php:2487
msgid "All events."
msgstr ""
-#: ../../operation/events/events.php:2437
+#: ../../operation/events/events.php:2491
msgid "Group agents."
msgstr ""
-#: ../../operation/events/events.php:2439
+#: ../../operation/events/events.php:2493
msgid "Group extra id."
msgstr ""
-#: ../../operation/events/events.php:2543
+#: ../../operation/events/events.php:2597
msgid "In progress selected"
msgstr ""
-#: ../../operation/events/events.php:2544
+#: ../../operation/events/events.php:2598
msgid "Validate selected"
msgstr ""
-#: ../../operation/events/events.php:2566
+#: ../../operation/events/events.php:2620
msgid "Execute event response"
msgstr ""
-#: ../../operation/events/events.php:2598
+#: ../../operation/events/events.php:2652
#, php-format
msgid "A maximum of %s event custom responses can be selected"
msgstr ""
-#: ../../operation/events/events.php:2603
+#: ../../operation/events/events.php:2657
msgid "Please, select an event"
msgstr ""
-#: ../../operation/events/events.php:2689
+#: ../../operation/events/events.php:2743
msgid "has at least"
msgstr ""
-#: ../../operation/events/events.php:2691
+#: ../../operation/events/events.php:2745
msgid "events"
msgstr ""
-#: ../../operation/events/events.php:3032
+#: ../../operation/events/events.php:3091
msgid "hours."
msgstr ""
@@ -53127,15 +53627,15 @@ msgstr ""
msgid "Console only reporting node"
msgstr ""
-#: ../../general/reporting_console_node.php:77
+#: ../../general/reporting_console_node.php:82
msgid "Mr"
msgstr ""
-#: ../../general/reporting_console_node.php:85
+#: ../../general/reporting_console_node.php:90
msgid "Memory limit"
msgstr ""
-#: ../../general/reporting_console_node.php:93
+#: ../../general/reporting_console_node.php:98
msgid "Php version"
msgstr ""
@@ -53348,16 +53848,78 @@ msgstr ""
msgid "Maintenance tasks in progress"
msgstr ""
-#: ../../general/logon_ok.php:175
+#: ../../general/logon_ok.php:184
#, php-format
msgid "%s Overview"
msgstr ""
-#: ../../general/logon_ok.php:228
+#: ../../general/logon_ok.php:226
+msgid "By"
+msgstr ""
+
+#: ../../general/logon_ok.php:237
+msgid "Welcome to our monitoring tool so grand,"
+msgstr ""
+
+#: ../../general/logon_ok.php:238
+msgid "Where data insights are at your command."
+msgstr ""
+
+#: ../../general/logon_ok.php:239
+msgid "Sales, marketing, operations too,"
+msgstr ""
+
+#: ../../general/logon_ok.php:240
+msgid "Customer support, we've got you."
+msgstr ""
+
+#: ../../general/logon_ok.php:243
+msgid "Our interface is user-friendly,"
+msgstr ""
+
+#: ../../general/logon_ok.php:244
+msgid "Customize your dashboard, it's easy."
+msgstr ""
+
+#: ../../general/logon_ok.php:245
+msgid "Set up alerts and gain insights so keen,"
+msgstr ""
+
+#: ../../general/logon_ok.php:246
+msgid "Optimize your data, like you've never seen."
+msgstr ""
+
+#: ../../general/logon_ok.php:249
+msgid "Unleash its power now, and join the pro league,"
+msgstr ""
+
+#: ../../general/logon_ok.php:250
+msgid "Unlock the potential of your data to intrigue."
+msgstr ""
+
+#: ../../general/logon_ok.php:251
+msgid "Monitoring made simple, efficient and fun,"
+msgstr ""
+
+#: ../../general/logon_ok.php:252
+msgid "Discover a whole new way to get things done."
+msgstr ""
+
+#: ../../general/logon_ok.php:255
+msgid "And take control of your IT once and for all."
+msgstr ""
+
+#: ../../general/logon_ok.php:257
+msgid ""
+"You can replace this message with a personalized one at Admin tools -> Site "
+"news."
+msgstr ""
+
+#: ../../general/logon_ok.php:273
msgid "News board"
msgstr ""
-#: ../../general/logon_ok.php:304
+#: ../../general/logon_ok.php:349
msgid "Latest activity"
msgstr ""
@@ -53382,7 +53944,7 @@ msgstr ""
msgid "You cannot use this node until system is unified"
msgstr ""
-#: ../../general/node_deactivated.php:56
+#: ../../general/node_deactivated.php:61
#, php-format
msgid "Please navigate to %s to unify system"
msgstr ""
@@ -53399,7 +53961,7 @@ msgid ""
"security logs of Pandora System Database"
msgstr ""
-#: ../../general/main_menu.php:79 ../../general/main_menu.php:86
+#: ../../general/main_menu.php:80 ../../general/main_menu.php:87
msgid "Management"
msgstr ""
@@ -53432,12 +53994,12 @@ msgstr ""
msgid "Go to Login"
msgstr ""
-#: ../../general/login_page.php:297 ../../general/login_page.php:302
-msgid "Login as admin"
+#: ../../general/login_page.php:297 ../../general/login_page.php:355
+msgid "Let's go"
msgstr ""
-#: ../../general/login_page.php:355
-msgid "Let's go"
+#: ../../general/login_page.php:302
+msgid "Login as admin"
msgstr ""
#: ../../general/login_page.php:409
diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo
index 1f1f600bd8..644e4e430c 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 9d57632c97..b1211fe6cd 100644
--- a/pandora_console/include/languages/ja.po
+++ b/pandora_console/include/languages/ja.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: pandora-fms\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-09 10:50+0200\n"
-"PO-Revision-Date: 2023-05-17 15:29+0900\n"
+"PO-Revision-Date: 2023-05-24 11:11+0900\n"
"Last-Translator: Junichi Satoh
WARNING: you also need to delete config."
-"php options in your console or delete the whole console."
+"Are you sure?
WARNING: you also need to delete config.php "
+"options in your console or delete the whole console."
msgstr ""
-"よろしいですか?
警告: コンソールの config.php オプション"
-"を削除するか、コンソール全体を削除する必要もあります。"
+"よろしいですか?
警告: コンソールの config.php オプションを"
+"削除するか、コンソール全体を削除する必要もあります。"
-#: ../../views/consoles/list.php:127
-#: ../../views/calendar/special_days_edit.php:209
+#: ../../views/consoles/list.php:127 ../../views/calendar/special_days_edit.php:209
#: ../../views/calendar/special_days.php:430
#: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70
#: ../../views/dashboard/header.php:106 ../../views/dashboard/list.php:228
@@ -629,8 +623,8 @@ msgstr "キャンセル"
#: ../../enterprise/include/class/LogSource.class.php:767
#: ../../enterprise/include/class/ManageBackups.class.php:482
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1079
-#: ../../include/ajax/snmp_browser.ajax.php:260
-#: ../../include/functions_ui.php:310 ../../include/class/ConfigPEN.class.php:743
+#: ../../include/ajax/snmp_browser.ajax.php:260 ../../include/functions_ui.php:310
+#: ../../include/class/ConfigPEN.class.php:743
#: ../../include/class/SatelliteAgent.class.php:1046
#: ../../include/class/HelpFeedBack.class.php:360
#: ../../include/class/Diagnostics.class.php:2115
@@ -733,10 +727,8 @@ msgstr "失敗"
#: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194
#: ../../include/functions_reporting_html.php:2594
#: ../../include/functions_reporting_html.php:5671
-#: ../../include/functions_treeview.php:392
-#: ../../include/functions_reports.php:855
-#: ../../include/functions_reports.php:859
-#: ../../include/functions_reports.php:865
+#: ../../include/functions_treeview.php:392 ../../include/functions_reports.php:855
+#: ../../include/functions_reports.php:859 ../../include/functions_reports.php:865
#: ../../include/functions_reports.php:871
#: ../../include/class/AgentsAlerts.class.php:567
#: ../../operation/search_agents.php:57 ../../operation/search_results.php:107
@@ -858,11 +850,11 @@ msgstr "任意のノード"
#: ../../views/calendar/edit.php:69 ../../views/calendar/special_days.php:70
#, php-format
msgid ""
-"This node is configured with centralized mode. All alert calendar information "
-"is read only. Go to %s to manage it."
+"This node is configured with centralized mode. All alert calendar information is "
+"read only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は"
-"読み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は読"
+"み取り専用です。管理するには %s に移動します。"
#: ../../views/calendar/list.php:95
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76
@@ -997,8 +989,7 @@ msgstr "ID"
#: ../../godmode/agentes/module_manager_editor_common.php:252
#: ../../godmode/agentes/module_manager_editor_common.php:1430
#: ../../godmode/agentes/module_manager.php:605
-#: ../../godmode/netflow/nf_edit.php:166
-#: ../../godmode/netflow/nf_edit_form.php:199
+#: ../../godmode/netflow/nf_edit.php:166 ../../godmode/netflow/nf_edit_form.php:199
#: ../../godmode/alerts/configure_alert_command.php:220
#: ../../godmode/alerts/alert_actions.php:351
#: ../../godmode/alerts/alert_commands.php:749
@@ -1044,9 +1035,8 @@ msgstr "ID"
#: ../../include/class/SatelliteCollection.class.php:132
#: ../../include/functions_filemanager.php:644
#: ../../include/functions_snmp_browser.php:1851
-#: ../../include/functions_events.php:4339
-#: ../../include/functions_events.php:4472 ../../operation/search_users.php:44
-#: ../../operation/search_helps.php:31
+#: ../../include/functions_events.php:4339 ../../include/functions_events.php:4472
+#: ../../operation/search_users.php:44 ../../operation/search_helps.php:31
#: ../../operation/agentes/pandora_networkmap.editor.php:332
#: ../../operation/agentes/pandora_networkmap.php:716
#: ../../operation/agentes/pandora_networkmap.view.php:137
@@ -1056,8 +1046,7 @@ msgstr "ID"
msgid "Name"
msgstr "名前"
-#: ../../views/calendar/list.php:97
-#: ../../views/calendar/special_days_edit.php:105
+#: ../../views/calendar/list.php:97 ../../views/calendar/special_days_edit.php:105
#: ../../views/calendar/edit.php:100 ../../views/calendar/special_days.php:117
#: ../../views/cluster/list.php:71 ../../views/dashboard/list.php:101
#: ../../views/dashboard/formDashboard.php:92
@@ -1155,8 +1144,7 @@ msgstr "名前"
#: ../../godmode/agentes/planned_downtime.editor.php:1357
#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141
#: ../../godmode/agentes/agent_incidents.php:91
-#: ../../godmode/netflow/nf_edit.php:167
-#: ../../godmode/netflow/nf_edit_form.php:211
+#: ../../godmode/netflow/nf_edit.php:167 ../../godmode/netflow/nf_edit_form.php:211
#: ../../godmode/snmpconsole/snmp_alert.php:837
#: ../../godmode/gis_maps/configure_gis_map.php:509
#: ../../godmode/gis_maps/configure_gis_map.php:646
@@ -1217,12 +1205,10 @@ msgstr "名前"
#: ../../mobile/operation/modules.php:176 ../../mobile/operation/modules.php:266
#: ../../mobile/operation/modules.php:267 ../../mobile/operation/alerts.php:113
#: ../../mobile/operation/alerts.php:118 ../../mobile/operation/alerts.php:231
-#: ../../mobile/operation/alerts.php:232
-#: ../../mobile/operation/visualmaps.php:113
-#: ../../mobile/operation/visualmaps.php:118
-#: ../../mobile/operation/events.php:666 ../../mobile/operation/events.php:671
-#: ../../mobile/operation/events.php:832 ../../mobile/operation/events.php:954
-#: ../../mobile/operation/events.php:955
+#: ../../mobile/operation/alerts.php:232 ../../mobile/operation/visualmaps.php:113
+#: ../../mobile/operation/visualmaps.php:118 ../../mobile/operation/events.php:666
+#: ../../mobile/operation/events.php:671 ../../mobile/operation/events.php:832
+#: ../../mobile/operation/events.php:954 ../../mobile/operation/events.php:955
#: ../../include/functions_visual_map_editor.php:70
#: ../../include/functions_visual_map_editor.php:594
#: ../../include/functions_visual_map_editor.php:1395
@@ -1231,11 +1217,9 @@ msgstr "名前"
#: ../../include/functions_reporting_html.php:3660
#: ../../include/functions_reporting_html.php:6458
#: ../../include/functions_cron.php:503 ../../include/ajax/heatmap.ajax.php:113
-#: ../../include/ajax/heatmap.ajax.php:358
-#: ../../include/ajax/custom_fields.php:630
-#: ../../include/ajax/custom_fields.php:679
-#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228
-#: ../../include/functions_profile.php:204
+#: ../../include/ajax/heatmap.ajax.php:358 ../../include/ajax/custom_fields.php:630
+#: ../../include/ajax/custom_fields.php:679 ../../include/functions_graph.php:4937
+#: ../../include/functions_gis.php:228 ../../include/functions_profile.php:204
#: ../../include/functions_visual_map.php:4215
#: ../../include/rest-api/models/VisualConsole/Items/Group.php:551
#: ../../include/rest-api/models/VisualConsole/Item.php:2140
@@ -1320,10 +1304,9 @@ msgstr "グループ"
msgid "Free search"
msgstr "検索語"
-#: ../../views/calendar/list.php:149
-#: ../../views/calendar/special_days_edit.php:161
-#: ../../views/calendar/special_days_edit.php:208
-#: ../../views/calendar/edit.php:129 ../../views/calendar/special_days.php:346
+#: ../../views/calendar/list.php:149 ../../views/calendar/special_days_edit.php:161
+#: ../../views/calendar/special_days_edit.php:208 ../../views/calendar/edit.php:129
+#: ../../views/calendar/special_days.php:346
#: ../../views/calendar/special_days.php:429
#: ../../views/calendar/special_days.php:504
#: ../../views/calendar/special_days.php:529
@@ -1474,8 +1457,8 @@ msgstr "特別日設定"
#: ../../include/functions_reporting_html.php:2870
#: ../../include/functions_reporting_html.php:2920
#: ../../include/functions_reporting_html.php:2994
-#: ../../include/functions_reporting_html.php:6014
-#: ../../include/functions.php:3109 ../../include/functions_inventory.php:1065
+#: ../../include/functions_reporting_html.php:6014 ../../include/functions.php:3109
+#: ../../include/functions_inventory.php:1065
#: ../../include/class/AuditLog.class.php:112
#: ../../include/functions_reporting.php:4728
#: ../../include/functions_reporting.php:4769
@@ -1609,8 +1592,7 @@ msgstr "休日"
msgid "Same day of the week"
msgstr "同一の曜日"
-#: ../../views/calendar/special_days_edit.php:161
-#: ../../views/calendar/edit.php:129
+#: ../../views/calendar/special_days_edit.php:161 ../../views/calendar/edit.php:129
#: ../../enterprise/views/ncm/snippets/edit.php:123
#: ../../enterprise/views/ncm/templates/edit.php:328
#: ../../enterprise/views/ncm/firmwares/edit.php:183
@@ -1746,12 +1728,10 @@ msgstr "同一の曜日"
#: ../../godmode/alerts/configure_alert_action.php:424
#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216
#: ../../godmode/setup/setup_sflow.php:95
-#: ../../godmode/setup/setup_websocket_engine.php:93
-#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142
-#: ../../godmode/setup/setup_auth.php:515
+#: ../../godmode/setup/setup_websocket_engine.php:93 ../../godmode/setup/os.php:73
+#: ../../godmode/setup/os.php:142 ../../godmode/setup/setup_auth.php:515
#: ../../godmode/setup/setup_integria.php:728 ../../godmode/setup/links.php:168
-#: ../../godmode/setup/snmp_wizard.php:100
-#: ../../godmode/setup/setup_netflow.php:95
+#: ../../godmode/setup/snmp_wizard.php:100 ../../godmode/setup/setup_netflow.php:95
#: ../../godmode/setup/setup_visuals.php:2130
#: ../../godmode/setup/setup_general.php:841
#: ../../godmode/setup/performance.php:880
@@ -1765,8 +1745,7 @@ msgstr "同一の曜日"
#: ../../godmode/events/custom_events.php:192
#: ../../godmode/servers/modificar_server.php:134
#: ../../godmode/servers/plugin.php:196 ../../godmode/servers/plugin.php:721
-#: ../../godmode/tag/edit_tag.php:247
-#: ../../godmode/category/edit_category.php:196
+#: ../../godmode/tag/edit_tag.php:247 ../../godmode/category/edit_category.php:196
#: ../../include/functions_visual_map_editor.php:878
#: ../../include/ajax/alert_list.ajax.php:564
#: ../../include/class/ConfigPEN.class.php:703
@@ -1775,8 +1754,7 @@ msgstr "同一の曜日"
#: ../../include/class/CredentialStore.class.php:1651
#: ../../include/class/ModuleTemplates.class.php:992
#: ../../include/class/ExternalTools.class.php:420
-#: ../../include/functions_events.php:3512
-#: ../../include/functions_events.php:3594
+#: ../../include/functions_events.php:3512 ../../include/functions_events.php:3594
#: ../../operation/users/user_edit.php:951
#: ../../operation/agentes/datos_agente.php:218
#: ../../operation/incidents/configure_integriaims_incident.php:415
@@ -1849,8 +1827,7 @@ msgstr "表示範囲: "
#: ../../godmode/massive/massive_edit_agents.php:1034
#: ../../godmode/alerts/alert_list.list.php:702
#: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:599
-#: ../../godmode/setup/gis_step_2.php:685
-#: ../../godmode/setup/setup_visuals.php:402
+#: ../../godmode/setup/gis_step_2.php:685 ../../godmode/setup/setup_visuals.php:402
#: ../../godmode/setup/setup_visuals.php:433
#: ../../godmode/setup/setup_visuals.php:573
#: ../../godmode/setup/setup_visuals.php:689
@@ -1860,10 +1837,8 @@ msgstr "表示範囲: "
#: ../../include/functions_ui.php:1404
#: ../../include/class/AgentsAlerts.class.php:947
#: ../../include/class/SnmpConsole.class.php:299
-#: ../../operation/users/user_edit.php:429
-#: ../../operation/users/user_edit.php:432
-#: ../../operation/users/user_edit.php:443
-#: ../../operation/users/user_edit.php:468
+#: ../../operation/users/user_edit.php:429 ../../operation/users/user_edit.php:432
+#: ../../operation/users/user_edit.php:443 ../../operation/users/user_edit.php:468
#: ../../operation/gis_maps/gis_map.php:119
msgid "Default"
msgstr "デフォルト"
@@ -2065,8 +2040,7 @@ msgstr "テンプレート表示"
#: ../../enterprise/tools/ipam/ipam_ajax.php:122
#: ../../enterprise/tools/ipam/ipam_ajax.php:530
#: ../../extensions/files_repo/files_repo_list.php:139
-#: ../../godmode/groups/group_list.php:951
-#: ../../godmode/groups/group_list.php:952
+#: ../../godmode/groups/group_list.php:951 ../../godmode/groups/group_list.php:952
#: ../../godmode/users/profile_list.php:444
#: ../../godmode/agentes/agent_template.php:306
#: ../../godmode/agentes/modificar_agente.php:810
@@ -2081,9 +2055,8 @@ msgstr "テンプレート表示"
#: ../../godmode/events/event_responses.list.php:105
#: ../../godmode/servers/servers.build_table.php:237
#: ../../godmode/servers/plugin.php:177 ../../godmode/servers/plugin.php:1050
-#: ../../godmode/category/category.php:182
-#: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918
-#: ../../include/functions_cron.php:944
+#: ../../godmode/category/category.php:182 ../../godmode/category/category.php:211
+#: ../../include/functions_cron.php:918 ../../include/functions_cron.php:944
#: ../../include/class/NetworkMap.class.php:3192
#: ../../include/class/CredentialStore.class.php:1263
#: ../../include/class/TipsWindow.class.php:457
@@ -2186,8 +2159,7 @@ msgstr "編集"
#: ../../godmode/agentes/fields_manager.php:210
#: ../../godmode/agentes/module_manager.php:1014
#: ../../godmode/agentes/module_manager.php:1235
-#: ../../godmode/netflow/nf_item_list.php:262
-#: ../../godmode/netflow/nf_edit.php:202
+#: ../../godmode/netflow/nf_item_list.php:262 ../../godmode/netflow/nf_edit.php:202
#: ../../godmode/snmpconsole/snmp_alert.php:1945
#: ../../godmode/snmpconsole/snmp_alert.php:2325
#: ../../godmode/snmpconsole/snmp_filters.php:326
@@ -2217,8 +2189,7 @@ msgstr "編集"
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1032
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1043
#: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420
-#: ../../godmode/category/category.php:186
-#: ../../godmode/category/category.php:222
+#: ../../godmode/category/category.php:186 ../../godmode/category/category.php:222
#: ../../include/functions_profile.php:319
#: ../../include/class/ConfigPEN.class.php:672
#: ../../include/class/SatelliteAgent.class.php:1145
@@ -2239,8 +2210,7 @@ msgstr "編集"
#: ../../include/functions_container.php:190
#: ../../include/functions_container.php:324
#: ../../include/lib/Dashboard/Widgets/events_list.php:655
-#: ../../include/functions_events.php:3655
-#: ../../operation/users/user_edit.php:1345
+#: ../../include/functions_events.php:3655 ../../operation/users/user_edit.php:1345
#: ../../operation/agentes/pandora_networkmap.editor.php:743
#: ../../operation/messages/message_list.php:300
#: ../../operation/snmpconsole/snmp_browser.php:637
@@ -2273,8 +2243,7 @@ msgstr "カレンダー読み込み"
msgid "Cluster view"
msgstr "クラスタ表示"
-#: ../../views/cluster/list.php:40
-#: ../../enterprise/meta/general/main_header.php:91
+#: ../../views/cluster/list.php:40 ../../enterprise/meta/general/main_header.php:91
#: ../../enterprise/meta/general/logon_ok.php:82
#: ../../enterprise/meta/general/main_menu.php:191
#: ../../enterprise/meta/general/main_menu.php:192
@@ -2372,10 +2341,9 @@ msgstr "クラスタ"
#: ../../godmode/servers/servers.build_table.php:79
#: ../../godmode/servers/modificar_server.php:105
#: ../../godmode/servers/plugin.php:993 ../../mobile/operation/visualmaps.php:125
-#: ../../mobile/operation/visualmaps.php:126
-#: ../../mobile/operation/events.php:658 ../../mobile/operation/events.php:659
-#: ../../mobile/operation/events.php:812 ../../mobile/operation/events.php:972
-#: ../../mobile/operation/events.php:973
+#: ../../mobile/operation/visualmaps.php:126 ../../mobile/operation/events.php:658
+#: ../../mobile/operation/events.php:659 ../../mobile/operation/events.php:812
+#: ../../mobile/operation/events.php:972 ../../mobile/operation/events.php:973
#: ../../include/functions_visual_map_editor.php:700
#: ../../include/functions_visual_map_editor.php:718
#: ../../include/functions_visual_map_editor.php:846
@@ -2399,8 +2367,7 @@ msgstr "クラスタ"
#: ../../include/lib/Dashboard/Widgets/custom_graph.php:364
#: ../../include/lib/Dashboard/Widgets/clock.php:221
#: ../../include/functions_snmp_browser.php:564
-#: ../../include/functions_events.php:2525
-#: ../../include/functions_events.php:4958
+#: ../../include/functions_events.php:2525 ../../include/functions_events.php:4958
#: ../../operation/agentes/estado_agente.php:1043
#: ../../operation/agentes/ver_agente.php:1171
#: ../../operation/netflow/nf_live_view.php:495
@@ -2411,15 +2378,13 @@ msgstr "クラスタ"
msgid "Type"
msgstr "種類"
-#: ../../views/cluster/list.php:73
-#: ../../include/functions_reporting_html.php:5925
+#: ../../views/cluster/list.php:73 ../../include/functions_reporting_html.php:5925
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325
#: ../../operation/agentes/pandora_networkmap.php:717
msgid "Nodes"
msgstr "ノード"
-#: ../../views/cluster/list.php:74
-#: ../../enterprise/views/ncm/devices/list.php:120
+#: ../../views/cluster/list.php:74 ../../enterprise/views/ncm/devices/list.php:120
#: ../../enterprise/meta/advanced/servers.build_table.php:62
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584
#: ../../enterprise/meta/advanced/policymanager.queue.php:225
@@ -2529,8 +2494,8 @@ msgstr "ノード"
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561
#: ../../include/lib/Group.php:562 ../../include/functions_snmp_browser.php:594
#: ../../include/functions_events.php:204 ../../include/functions_events.php:259
-#: ../../include/functions_events.php:2543
-#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56
+#: ../../include/functions_events.php:2543 ../../include/functions_events.php:5004
+#: ../../operation/search_agents.php:56
#: ../../operation/agentes/estado_agente.php:324
#: ../../operation/agentes/estado_agente.php:1049
#: ../../operation/agentes/interface_view.functions.php:516
@@ -2545,8 +2510,7 @@ msgstr "ノード"
msgid "Status"
msgstr "状態"
-#: ../../views/cluster/list.php:99
-#: ../../enterprise/views/ncm/snippets/list.php:95
+#: ../../views/cluster/list.php:99 ../../enterprise/views/ncm/snippets/list.php:95
#: ../../enterprise/views/ncm/templates/list.php:101
#: ../../enterprise/views/ncm/devices/list.php:148
#: ../../enterprise/views/ncm/firmwares/list.php:100
@@ -2630,12 +2594,10 @@ msgstr "このクラスタを編集"
#: ../../mobile/operation/alerts.php:68
#: ../../include/functions_visual_map_editor.php:824
#: ../../include/functions_reporting_html.php:3676
-#: ../../include/functions_agents.php:1472
-#: ../../include/functions_treeview.php:66
+#: ../../include/functions_agents.php:1472 ../../include/functions_treeview.php:66
#: ../../include/functions_treeview.php:602
#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405
-#: ../../include/functions_reporting.php:6992
-#: ../../operation/search_agents.php:93
+#: ../../include/functions_reporting.php:6992 ../../operation/search_agents.php:93
#: ../../operation/agentes/estado_generalagente.php:92
#: ../../operation/agentes/alerts_status.functions.php:101
msgid "Disabled"
@@ -2749,56 +2711,35 @@ msgstr "IP アドレス"
#: ../../include/functions_reporting_html.php:659
#: ../../include/functions_reporting_html.php:662
#: ../../include/functions_reporting_html.php:5564
-#: ../../include/functions_reporting_html.php:5617
-#: ../../include/functions.php:1180 ../../include/functions.php:1186
-#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156
-#: ../../include/functions_treeview.php:153
+#: ../../include/functions_reporting_html.php:5617 ../../include/functions.php:1180
+#: ../../include/functions.php:1186 ../../include/functions.php:1190
+#: ../../include/ajax/module.php:1156 ../../include/functions_treeview.php:153
#: ../../include/functions_treeview.php:311
#: ../../include/functions_treeview.php:410
#: ../../include/functions_treeview.php:639 ../../include/functions_ui.php:2874
#: ../../include/functions_ui.php:2882 ../../include/functions_db.php:241
#: ../../include/class/SnmpConsole.class.php:794
#: ../../include/class/SnmpConsole.class.php:812
-#: ../../include/functions_events.php:3684
-#: ../../include/functions_events.php:3818
-#: ../../include/functions_events.php:3838
-#: ../../include/functions_events.php:3847
-#: ../../include/functions_events.php:3856
-#: ../../include/functions_events.php:3857
-#: ../../include/functions_events.php:3869
-#: ../../include/functions_events.php:3929
-#: ../../include/functions_events.php:3962
-#: ../../include/functions_events.php:4028
-#: ../../include/functions_events.php:4045
-#: ../../include/functions_events.php:4052
-#: ../../include/functions_events.php:4118
-#: ../../include/functions_events.php:4210
-#: ../../include/functions_events.php:4334
-#: ../../include/functions_events.php:4373
-#: ../../include/functions_events.php:4413
-#: ../../include/functions_events.php:4436
-#: ../../include/functions_events.php:4466
-#: ../../include/functions_events.php:4549
-#: ../../include/functions_events.php:4630
-#: ../../include/functions_events.php:4640
-#: ../../include/functions_events.php:4857
-#: ../../include/functions_events.php:4938
-#: ../../include/functions_events.php:5043
-#: ../../include/functions_events.php:5072
-#: ../../include/functions_events.php:5087
-#: ../../include/functions_events.php:5097
-#: ../../include/functions_events.php:5107
-#: ../../include/functions_events.php:5590
-#: ../../include/functions_events.php:5604
-#: ../../include/functions_events.php:5609
-#: ../../include/functions_events.php:5612
-#: ../../include/functions_events.php:5620
-#: ../../include/functions_events.php:5629
-#: ../../include/functions_events.php:5641
-#: ../../include/functions_events.php:5694
-#: ../../include/functions_events.php:5721
-#: ../../include/functions_events.php:5746
-#: ../../include/functions_events.php:5790
+#: ../../include/functions_events.php:3684 ../../include/functions_events.php:3818
+#: ../../include/functions_events.php:3838 ../../include/functions_events.php:3847
+#: ../../include/functions_events.php:3856 ../../include/functions_events.php:3857
+#: ../../include/functions_events.php:3869 ../../include/functions_events.php:3929
+#: ../../include/functions_events.php:3962 ../../include/functions_events.php:4028
+#: ../../include/functions_events.php:4045 ../../include/functions_events.php:4052
+#: ../../include/functions_events.php:4118 ../../include/functions_events.php:4210
+#: ../../include/functions_events.php:4334 ../../include/functions_events.php:4373
+#: ../../include/functions_events.php:4413 ../../include/functions_events.php:4436
+#: ../../include/functions_events.php:4466 ../../include/functions_events.php:4549
+#: ../../include/functions_events.php:4630 ../../include/functions_events.php:4640
+#: ../../include/functions_events.php:4857 ../../include/functions_events.php:4938
+#: ../../include/functions_events.php:5043 ../../include/functions_events.php:5072
+#: ../../include/functions_events.php:5087 ../../include/functions_events.php:5097
+#: ../../include/functions_events.php:5107 ../../include/functions_events.php:5590
+#: ../../include/functions_events.php:5604 ../../include/functions_events.php:5609
+#: ../../include/functions_events.php:5612 ../../include/functions_events.php:5620
+#: ../../include/functions_events.php:5629 ../../include/functions_events.php:5641
+#: ../../include/functions_events.php:5694 ../../include/functions_events.php:5721
+#: ../../include/functions_events.php:5746 ../../include/functions_events.php:5790
#: ../../operation/agentes/estado_agente.php:1222
#: ../../operation/agentes/interface_view.functions.php:742
#: ../../operation/agentes/interface_view.functions.php:743
@@ -2852,8 +2793,7 @@ msgstr "新規ウィジェット"
#: ../../views/dashboard/header.php:43
#: ../../extensions/disabled/matrix_events.php:35
-#: ../../extensions/agents_modules.php:380
-#: ../../extensions/agents_modules.php:387
+#: ../../extensions/agents_modules.php:380 ../../extensions/agents_modules.php:387
#: ../../extensions/agents_modules.php:390
#: ../../operation/visual_console/view.php:231
#: ../../operation/visual_console/legacy_view.php:201
@@ -2900,8 +2840,7 @@ msgstr "ダッシュボードの更新"
#: ../../godmode/massive/massive_edit_agents.php:1043
#: ../../godmode/reporting/graph_builder.graph_editor.php:241
#: ../../godmode/reporting/graph_builder.graph_editor.php:262
-#: ../../include/functions_config.php:1333
-#: ../../include/functions_config.php:3537
+#: ../../include/functions_config.php:1333 ../../include/functions_config.php:3537
#: ../../include/class/SatelliteAgent.class.php:1269
#: ../../operation/gis_maps/render_view.php:167
msgid "Ok"
@@ -3009,13 +2948,12 @@ msgstr "ダッシュボード"
#: ../../godmode/modules/manage_nc_groups.php:176
#: ../../godmode/modules/manage_network_components.php:562
#: ../../godmode/users/profile_list.php:142 ../../godmode/users/user_list.php:357
-#: ../../godmode/users/user_list.php:411
-#: ../../godmode/users/configure_user.php:101
+#: ../../godmode/users/user_list.php:411 ../../godmode/users/configure_user.php:101
#: ../../godmode/users/configure_user.php:121
#: ../../godmode/agentes/planned_downtime.list.php:290
#: ../../godmode/netflow/nf_item_list.php:120
-#: ../../godmode/netflow/nf_item_list.php:148
-#: ../../godmode/netflow/nf_edit.php:111 ../../godmode/netflow/nf_edit.php:144
+#: ../../godmode/netflow/nf_item_list.php:148 ../../godmode/netflow/nf_edit.php:111
+#: ../../godmode/netflow/nf_edit.php:144
#: ../../godmode/snmpconsole/snmp_alert.php:686
#: ../../godmode/snmpconsole/snmp_filters.php:180
#: ../../godmode/massive/massive_delete_action_alerts.php:170
@@ -3024,10 +2962,9 @@ msgstr "ダッシュボード"
#: ../../godmode/alerts/alert_actions.php:208
#: ../../godmode/alerts/alert_commands.php:698
#: ../../godmode/alerts/alert_templates.php:257
-#: ../../godmode/alerts/alert_list.php:239
-#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137
-#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89
-#: ../../godmode/reporting/map_builder.php:209
+#: ../../godmode/alerts/alert_list.php:239 ../../godmode/alerts/alert_list.php:346
+#: ../../godmode/setup/news.php:137 ../../godmode/setup/gis.php:61
+#: ../../godmode/setup/links.php:89 ../../godmode/reporting/map_builder.php:209
#: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162
#: ../../godmode/reporting/graphs.php:213
#: ../../godmode/reporting/reporting_builder.php:631
@@ -3071,9 +3008,8 @@ msgstr "削除しました。"
#: ../../godmode/alerts/alert_actions.php:209
#: ../../godmode/alerts/alert_commands.php:699
#: ../../godmode/alerts/alert_templates.php:258
-#: ../../godmode/alerts/alert_list.php:240
-#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138
-#: ../../godmode/setup/gis.php:59
+#: ../../godmode/alerts/alert_list.php:240 ../../godmode/alerts/alert_list.php:347
+#: ../../godmode/setup/news.php:138 ../../godmode/setup/gis.php:59
#: ../../godmode/reporting/reporting_builder.php:632
#: ../../operation/agentes/pandora_networkmap.php:563
#: ../../operation/messages/message_list.php:110
@@ -3235,8 +3171,8 @@ msgid ""
"This mode will show the dashboard with all the widgets in the screen. Click to "
"change to single screen mode."
msgstr ""
-"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 "
-"クリックしてシングルスクリーンモードに変更します。"
+"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 ク"
+"リックしてシングルスクリーンモードに変更します。"
#: ../../views/dashboard/slides.php:259
msgid "Single screen"
@@ -3261,8 +3197,8 @@ msgstr ""
#: ../../enterprise/views/ncm/models/list.php:32
#: ../../enterprise/views/ncm/models/edit.php:37
#: ../../enterprise/views/ncm/vendors/list.php:32
-#: ../../enterprise/views/ncm/vendors/edit.php:35
-#: ../../include/functions.php:1294 ../../include/functions_events.php:3178
+#: ../../enterprise/views/ncm/vendors/edit.php:35 ../../include/functions.php:1294
+#: ../../include/functions_events.php:3178
msgid "Network configuration manager"
msgstr "ネットワーク設定管理"
@@ -3550,11 +3486,10 @@ msgstr "プレビュー"
#: ../../include/functions_reporting_html.php:2563
#: ../../include/functions_reporting_html.php:2576
#: ../../include/functions_reporting_html.php:3563
-#: ../../include/functions_reporting_html.php:3966
-#: ../../include/functions.php:1281 ../../include/functions.php:4181
-#: ../../include/ajax/module.php:1057 ../../include/ajax/module.php:1946
-#: ../../include/functions_ui.php:606 ../../include/functions_ui.php:607
-#: ../../include/functions_visual_map.php:2457
+#: ../../include/functions_reporting_html.php:3966 ../../include/functions.php:1281
+#: ../../include/functions.php:4181 ../../include/ajax/module.php:1057
+#: ../../include/ajax/module.php:1946 ../../include/functions_ui.php:606
+#: ../../include/functions_ui.php:607 ../../include/functions_visual_map.php:2457
#: ../../include/functions_visual_map.php:2485
#: ../../include/functions_visual_map.php:2503
#: ../../include/functions_visual_map.php:2521
@@ -3763,8 +3698,8 @@ msgid ""
"This action will connect to the device to retrieve firmware version. Are you "
"sure?"
msgstr ""
-"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろし"
-"いですか?"
+"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろしい"
+"ですか?"
#: ../../enterprise/views/ncm/agent/details.php:636
msgid "Get running config?"
@@ -3772,10 +3707,9 @@ msgstr "running config を取得しますか?"
#: ../../enterprise/views/ncm/agent/details.php:637
msgid ""
-"This action will connect to the device to retrieve latest configuration. Are "
-"you sure?"
-msgstr ""
-"この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?"
+"This action will connect to the device to retrieve latest configuration. Are you "
+"sure?"
+msgstr "この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?"
#: ../../enterprise/views/ncm/agent/details.php:648
msgid "Backup latest config?"
@@ -3783,8 +3717,8 @@ msgstr "最新の設定をバックアップしますた?"
#: ../../enterprise/views/ncm/agent/details.php:649
msgid ""
-"This action will overwrite current backup to use latest retrieved "
-"configuration. Are you sure?"
+"This action will overwrite current backup to use latest retrieved configuration. "
+"Are you sure?"
msgstr ""
"この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?"
@@ -3794,10 +3728,9 @@ msgstr "対象の設定をバックアップしますか?"
#: ../../enterprise/views/ncm/agent/details.php:658
msgid ""
-"This action will overwrite current backup to use selected configuration. Are "
-"you sure?"
-msgstr ""
-"この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?"
+"This action will overwrite current backup to use selected configuration. Are you "
+"sure?"
+msgstr "この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?"
#: ../../enterprise/views/ncm/agent/details.php:669
msgid "Restore device configuration?"
@@ -3805,8 +3738,7 @@ msgstr "デバイス設定をリストアしますか?"
#: ../../enterprise/views/ncm/agent/details.php:670
msgid ""
-"This action will overwrite device configuration with latest backup. Are you "
-"sure?"
+"This action will overwrite device configuration with latest backup. Are you sure?"
msgstr ""
"この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?"
@@ -3840,8 +3772,7 @@ msgstr "実行"
#: ../../godmode/modules/manage_network_components.php:302
#: ../../godmode/menu.php:172 ../../godmode/menu.php:275
#: ../../godmode/reporting/reporting_builder.item_editor.php:2027
-#: ../../include/functions_menu.php:585
-#: ../../include/class/ConfigPEN.class.php:334
+#: ../../include/functions_menu.php:585 ../../include/class/ConfigPEN.class.php:334
#: ../../include/class/ModuleTemplates.class.php:196
#: ../../include/class/ModuleTemplates.class.php:214
msgid "Templates"
@@ -3882,8 +3813,7 @@ msgstr "デバイス"
#: ../../enterprise/views/ncm/templates/edit.php:102
msgid ""
-"Comma separated, a vendors list compatible with scripts defined within "
-"template."
+"Comma separated, a vendors list compatible with scripts defined within template."
msgstr ""
"カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるベンダ一覧。"
@@ -3911,11 +3841,10 @@ msgstr "スクリプト: 設定取得"
#: ../../enterprise/views/ncm/templates/edit.php:203
msgid ""
-"This script will be used to apply configuration, previously backed up, to "
-"devices"
+"This script will be used to apply configuration, previously backed up, to devices"
msgstr ""
-"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用され"
-"ます"
+"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用されま"
+"す"
#: ../../enterprise/views/ncm/templates/edit.php:208
msgid "Script: set configuration"
@@ -3924,8 +3853,8 @@ msgstr "スクリプト: 設定投入"
#: ../../enterprise/views/ncm/templates/edit.php:231
msgid "This script will be used to retrieve firmware version from devices"
msgstr ""
-"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用され"
-"ます"
+"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用されま"
+"す"
#: ../../enterprise/views/ncm/templates/edit.php:236
msgid "Script: get firmware"
@@ -3934,8 +3863,8 @@ msgstr "スクリプト: ファームウエア取得"
#: ../../enterprise/views/ncm/templates/edit.php:258
msgid "This script will be used to upgrade firmware version of the devices"
msgstr ""
-"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために"
-"使用されます"
+"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために使"
+"用されます"
#: ../../enterprise/views/ncm/templates/edit.php:263
msgid "Script: set firmware"
@@ -3952,19 +3881,19 @@ msgstr "スクリプト: カスタムタスク"
#: ../../enterprise/views/ncm/devices/list.php:69
msgid ""
"WARNING: This is a new feature and is still at an early stage. It is available "
-"with limited features, use it with caution and send us your feedback to "
-"improve these current capabilities."
+"with limited features, use it with caution and send us your feedback to improve "
+"these current capabilities."
msgstr ""
-"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意し"
-"て使用し、現在の機能の改善のためのフィードバックをお願いします。"
+"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意して"
+"使用し、現在の機能の改善のためのフィードバックをお願いします。"
#: ../../enterprise/views/ncm/devices/list.php:72
msgid ""
"Network configuration manager is used to keep configurations and software "
"versions of any network device in your infrastructure under your control."
msgstr ""
-"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソ"
-"フトウェアバージョンを管理するために使用します。"
+"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソフ"
+"トウェアバージョンを管理するために使用します。"
#: ../../enterprise/views/ncm/devices/list.php:77
msgid ""
@@ -4058,18 +3987,15 @@ msgstr "ファームウエア"
#: ../../enterprise/views/ncm/firmwares/edit.php:101
msgid ""
-"Comma separated, a vendors list compatible with scripts defined within "
-"firmware."
+"Comma separated, a vendors list compatible with scripts defined within firmware."
msgstr ""
-"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一"
-"覧。"
+"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一覧。"
#: ../../enterprise/views/ncm/firmwares/edit.php:129
msgid ""
"Comma separated, a model list compatible with scripts defined within firmware."
msgstr ""
-"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリス"
-"ト。"
+"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリスト。"
#: ../../enterprise/views/ncm/firmwares/edit.php:149
#: ../../enterprise/meta/advanced/metasetup.consoles.php:484
@@ -4122,16 +4048,15 @@ msgstr ""
#: ../../godmode/massive/massive_edit_agents.php:1061
#: ../../godmode/massive/massive_edit_modules.php:386
#: ../../godmode/massive/massive_edit_modules.php:472
-#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
+#: ../../godmode/setup/setup_sflow.php:84 ../../godmode/setup/setup_netflow.php:84
#: ../../godmode/reporting/reporting_builder.item_editor.php:3831
#: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70
-#: ../../include/functions_reporting_html.php:2575
-#: ../../include/functions.php:1091 ../../include/functions.php:1329
-#: ../../include/functions.php:1332 ../../include/functions.php:1371
-#: ../../include/ajax/module.php:1942 ../../include/functions_graph.php:3341
-#: ../../include/functions_graph.php:3343 ../../include/functions_graph.php:4846
-#: ../../include/functions_ui.php:314 ../../include/functions_ui.php:2869
+#: ../../include/functions_reporting_html.php:2575 ../../include/functions.php:1091
+#: ../../include/functions.php:1329 ../../include/functions.php:1332
+#: ../../include/functions.php:1371 ../../include/ajax/module.php:1942
+#: ../../include/functions_graph.php:3341 ../../include/functions_graph.php:3343
+#: ../../include/functions_graph.php:4846 ../../include/functions_ui.php:314
+#: ../../include/functions_ui.php:2869
#: ../../include/rest-api/models/VisualConsole/Items/Group.php:425
#: ../../include/functions_massive_operations.php:147
#: ../../include/class/SatelliteAgent.class.php:1337
@@ -4437,8 +4362,7 @@ msgstr "親"
#: ../../godmode/alerts/configure_alert_template.php:663
#: ../../godmode/alerts/configure_alert_template.php:730
#: ../../godmode/alerts/configure_alert_template.php:824
-#: ../../godmode/setup/os.builder.php:51
-#: ../../godmode/setup/setup_visuals.php:611
+#: ../../godmode/setup/os.builder.php:51 ../../godmode/setup/setup_visuals.php:611
#: ../../godmode/setup/setup_visuals.php:651
#: ../../godmode/setup/setup_visuals.php:1084
#: ../../godmode/setup/setup_general.php:1051
@@ -4480,16 +4404,14 @@ msgstr "親"
#: ../../include/functions_visual_map_editor.php:1008
#: ../../include/functions_visual_map_editor.php:1070
#: ../../include/functions.php:1129 ../../include/functions_cron.php:680
-#: ../../include/functions_networkmap.php:1524
-#: ../../include/ajax/audit_log.php:156
+#: ../../include/functions_networkmap.php:1524 ../../include/ajax/audit_log.php:156
#: ../../include/ajax/planned_downtime.ajax.php:85
#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614
#: ../../include/ajax/agent.php:500 ../../include/ajax/agent.php:838
#: ../../include/ajax/agent.php:921 ../../include/ajax/agent.php:987
#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589
#: ../../include/functions_integriaims.php:135
-#: ../../include/functions_profile.php:349
-#: ../../include/functions_profile.php:367
+#: ../../include/functions_profile.php:349 ../../include/functions_profile.php:367
#: ../../include/functions_profile.php:382
#: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318
#: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364
@@ -4540,12 +4462,9 @@ msgstr "親"
#: ../../include/lib/Dashboard/Widgets/single_graph.php:352
#: ../../include/lib/Dashboard/Widgets/reports.php:552
#: ../../include/lib/Dashboard/Widgets/top_n.php:241
-#: ../../include/functions_events.php:3501
-#: ../../operation/users/user_edit.php:520
-#: ../../operation/users/user_edit.php:532
-#: ../../operation/users/user_edit.php:581
-#: ../../operation/users/user_edit.php:616
-#: ../../operation/users/user_edit.php:631
+#: ../../include/functions_events.php:3501 ../../operation/users/user_edit.php:520
+#: ../../operation/users/user_edit.php:532 ../../operation/users/user_edit.php:581
+#: ../../operation/users/user_edit.php:616 ../../operation/users/user_edit.php:631
#: ../../operation/users/user_edit.php:1081
#: ../../operation/users/user_edit.php:1088
#: ../../operation/users/user_edit.php:1097
@@ -4624,14 +4543,10 @@ msgstr "データベースにサーバがありません。"
#: ../../mobile/operation/agent.php:327
#: ../../include/functions_reporting_html.php:2094
#: ../../include/functions_reporting_html.php:5662
-#: ../../include/functions_reports.php:745
-#: ../../include/functions_reports.php:749
-#: ../../include/functions_reports.php:753
-#: ../../include/functions_reports.php:757
-#: ../../include/functions_reports.php:761
-#: ../../include/functions_reports.php:765
-#: ../../include/functions_reports.php:769
-#: ../../include/functions_reports.php:773
+#: ../../include/functions_reports.php:745 ../../include/functions_reports.php:749
+#: ../../include/functions_reports.php:753 ../../include/functions_reports.php:757
+#: ../../include/functions_reports.php:761 ../../include/functions_reports.php:765
+#: ../../include/functions_reports.php:769 ../../include/functions_reports.php:773
#: ../../include/functions_reports.php:777 ../../include/functions_html.php:1745
#: ../../include/functions_html.php:5982
#: ../../include/class/AgentsAlerts.class.php:253
@@ -4727,15 +4642,15 @@ msgstr "実行キュー"
#: ../../enterprise/meta/advanced/servers.build_table.php:181
msgid ""
-"You have too many items in the processing queue. This can happen if your "
-"server is overloaded and/or improperly configured. This could be something "
-"temporary, or a bottleneck. If it is associated with a delay in monitoring, "
-"with modules going to unknown, try increasing the number of threads."
+"You have too many items in the processing queue. This can happen if your server "
+"is overloaded and/or improperly configured. This could be something temporary, "
+"or a bottleneck. If it is associated with a delay in monitoring, with modules "
+"going to unknown, try increasing the number of threads."
msgstr ""
-"キューにたくさんの処理が溜まっています。サーバに多くの処理が設定されているか"
-"サーバが正しく設定されていません。これは一時的なものかもしれませんがボトルネッ"
-"クになります。監視の遅延が原因でモジュールが不明になる場合は、スレッドの数を増"
-"やしてみてください。"
+"キューにたくさんの処理が溜まっています。サーバに多くの処理が設定されているかサー"
+"バが正しく設定されていません。これは一時的なものかもしれませんがボトルネックにな"
+"ります。監視の遅延が原因でモジュールが不明になる場合は、スレッドの数を増やしてみ"
+"てください。"
#: ../../enterprise/meta/advanced/servers.build_table.php:182
#: ../../enterprise/meta/advanced/cron_main.php:408
@@ -4785,8 +4700,7 @@ msgstr "コマンドセンター"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:68
#, php-format
msgid ""
-"You should centralise management in order to use Wizard section. Please go to "
-"%s"
+"You should centralise management in order to use Wizard section. Please go to %s"
msgstr ""
"ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください"
@@ -4941,8 +4855,7 @@ msgstr "インタフェースグラフの値"
#: ../../godmode/massive/massive_edit_users.php:263
#: ../../godmode/setup/setup_visuals.php:92
#: ../../godmode/events/event_edit_filter.php:457
-#: ../../include/functions_config.php:1042
-#: ../../operation/users/user_edit.php:420
+#: ../../include/functions_config.php:1042 ../../operation/users/user_edit.php:420
msgid "Block size for pagination"
msgstr "ページ毎の表示件数"
@@ -5059,8 +4972,7 @@ msgstr "ヘルプの無効化"
#: ../../godmode/alerts/alert_list.list.php:169
#: ../../godmode/alerts/alert_list.list.php:201
#: ../../godmode/alerts/alert_templates.php:313
-#: ../../godmode/alerts/alert_list.php:553
-#: ../../godmode/alerts/alert_list.php:574
+#: ../../godmode/alerts/alert_list.php:553 ../../godmode/alerts/alert_list.php:574
#: ../../godmode/alerts/alert_list.php:588 ../../godmode/setup/gis_step_2.php:238
#: ../../godmode/setup/setup_visuals.php:1085
#: ../../godmode/reporting/reporting_builder.list_items.php:217
@@ -5422,8 +5334,8 @@ msgid ""
"You can place your favicon into the folder images/custom_favicon/. This file "
"should be in .ico format with a size of 16x16."
msgstr ""
-"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、"
-"16x16 のサイズの .ico 形式である必要があります。"
+"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、16x16 "
+"のサイズの .ico 形式である必要があります。"
#: ../../enterprise/meta/advanced/metasetup.visual.php:563
#: ../../godmode/setup/setup_visuals.php:424
@@ -5512,8 +5424,7 @@ msgstr "著作権表示"
#: ../../enterprise/meta/advanced/metasetup.visual.php:780
#: ../../enterprise/meta/include/functions_meta.php:1614
#: ../../godmode/setup/setup_visuals.php:809
-#: ../../include/functions_config.php:1154
-#: ../../include/functions_config.php:1158
+#: ../../include/functions_config.php:1154 ../../include/functions_config.php:1158
msgid "Background opacity % (login)"
msgstr "背景の透明度 % (ログイン)"
@@ -5644,11 +5555,11 @@ msgstr "説明とともにレポート情報を表示"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1029
msgid ""
-"Custom report description info. It will be applied to all reports and "
-"templates by default."
+"Custom report description info. It will be applied to all reports and templates "
+"by default."
msgstr ""
-"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適"
-"用されます。"
+"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適用"
+"されます。"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1042
#: ../../godmode/setup/setup_visuals.php:1492
@@ -5660,8 +5571,8 @@ msgid ""
"Custom report front page. It will be applied to all reports and templates by "
"default."
msgstr ""
-"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用さ"
-"れます。"
+"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用され"
+"ます。"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1055
#: ../../enterprise/meta/include/functions_meta.php:1459
@@ -5685,8 +5596,8 @@ msgstr "HTML レポートのグラフ画像の高さ"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1066
msgid ""
-"This is the height in pixels of the module graph or custom graph in the "
-"reports (only: HTML)"
+"This is the height in pixels of the module graph or custom graph in the reports "
+"(only: HTML)"
msgstr ""
"これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです"
"(HTMLのみ)。"
@@ -5715,8 +5626,7 @@ msgstr "間隔の表示"
msgid ""
"A long interval description is for example 10 hours, 20 minutes 33 secondsâ, a "
"short one is 10h 20m 33s"
-msgstr ""
-"長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。"
+msgstr "長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1164
#: ../../enterprise/meta/include/functions_meta.php:1654
@@ -5724,8 +5634,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:113
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:125
#: ../../godmode/setup/setup_visuals.php:1534
-#: ../../include/functions_config.php:1074
-#: ../../include/functions_config.php:1492
+#: ../../include/functions_config.php:1074 ../../include/functions_config.php:1492
msgid "Custom logo"
msgstr "カスタムロゴ"
@@ -5736,8 +5645,8 @@ msgid ""
"The path of custom logos is 'images/custom_logo' in the console installation. "
"You can upload more files (ONLY JPEG AND PNG) with the upload tool."
msgstr ""
-"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツー"
-"ルを使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。"
+"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツール"
+"を使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。"
#: ../../enterprise/meta/advanced/metasetup.visual.php:1184
#: ../../enterprise/meta/advanced/metasetup.visual.php:1195
@@ -5754,12 +5663,9 @@ msgstr ""
#: ../../godmode/setup/setup_visuals.php:1555
#: ../../godmode/setup/setup_visuals.php:1568
#: ../../godmode/setup/setup_visuals.php:1582
-#: ../../include/functions_config.php:1484
-#: ../../include/functions_config.php:1488
-#: ../../include/functions_config.php:1492
-#: ../../include/functions_config.php:1496
-#: ../../include/functions_config.php:1500
-#: ../../include/functions_config.php:1504
+#: ../../include/functions_config.php:1484 ../../include/functions_config.php:1488
+#: ../../include/functions_config.php:1492 ../../include/functions_config.php:1496
+#: ../../include/functions_config.php:1500 ../../include/functions_config.php:1504
msgid "Custom report front"
msgstr "カスタムレポートスタイル"
@@ -5887,12 +5793,11 @@ msgstr "エージェント: %d はマイグレーションキューにすでに
#: ../../godmode/modules/manage_nc_groups.php:177
#: ../../godmode/agentes/planned_downtime.list.php:291
#: ../../godmode/netflow/nf_item_list.php:121
-#: ../../godmode/netflow/nf_item_list.php:149
-#: ../../godmode/netflow/nf_edit.php:112 ../../godmode/netflow/nf_edit.php:145
+#: ../../godmode/netflow/nf_item_list.php:149 ../../godmode/netflow/nf_edit.php:112
+#: ../../godmode/netflow/nf_edit.php:145
#: ../../godmode/reporting/map_builder.php:210
#: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163
-#: ../../godmode/reporting/graphs.php:214
-#: ../../godmode/events/event_filter.php:78
+#: ../../godmode/reporting/graphs.php:214 ../../godmode/events/event_filter.php:78
#: ../../godmode/events/event_filter.php:105
#: ../../operation/reporting/graph_viewer.php:59
#: ../../operation/reporting/graph_viewer.php:67
@@ -6001,13 +5906,11 @@ msgid "All collections needed are syncronized with target server."
msgstr "必要なすべてのコレクションは対象サーバと同期されています。"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543
-msgid ""
-"All remote inventory definitions needed are syncronized with target server."
+msgid "All remote inventory definitions needed are syncronized with target server."
msgstr "必要なすべてのインベントリ定義は対象サーバと同期されています。"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544
-msgid ""
-"All alert templates definitions needed are syncronized with target server."
+msgid "All alert templates definitions needed are syncronized with target server."
msgstr "必要なすべてのアラートテンプレート定義は対象サーバっと同期されています。"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545
@@ -6034,8 +5937,7 @@ msgstr "移動"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579
#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130
#: ../../include/functions_inventory.php:142
-#: ../../include/functions_inventory.php:176
-#: ../../include/functions_events.php:250
+#: ../../include/functions_inventory.php:176 ../../include/functions_events.php:250
msgid "Agent alias"
msgstr "エージェントの別名"
@@ -6276,8 +6178,8 @@ msgstr "検索文字列 (*)"
#: ../../operation/agentes/status_monitor.php:915
#: ../../operation/agentes/agent_inventory.php:138
#: ../../operation/agentes/agent_inventory.php:140
-#: ../../operation/inventory/inventory.php:640
-#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113
+#: ../../operation/inventory/inventory.php:640 ../../general/ui/agents_list.php:100
+#: ../../general/ui/agents_list.php:113
msgid "Search"
msgstr "検索"
@@ -6311,8 +6213,7 @@ msgstr "検索"
#: ../../enterprise/operation/services/services.list.php:497
#: ../../enterprise/operation/services/services.table_services.php:472
#: ../../enterprise/operation/services/services.table_services.php:487
-#: ../../extensions/module_groups.php:322
-#: ../../extensions/realtime_graphs.php:220
+#: ../../extensions/module_groups.php:322 ../../extensions/realtime_graphs.php:220
#: ../../godmode/modules/manage_network_components.php:713
#: ../../godmode/groups/group_list.php:820
#: ../../godmode/agentes/planned_downtime.list.php:661
@@ -6464,8 +6365,7 @@ msgstr "関係一覧の表示"
#: ../../include/functions_reporting_html.php:5492
#: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172
#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505
-#: ../../include/functions_reports.php:1087
-#: ../../include/functions_netflow.php:212
+#: ../../include/functions_reports.php:1087 ../../include/functions_netflow.php:212
#: ../../include/functions_snmp_browser.php:560
msgid "Value"
msgstr "値"
@@ -6507,8 +6407,7 @@ msgstr "ノードアドレス"
#: ../../godmode/agentes/agent_template.php:277
#: ../../godmode/agentes/planned_downtime.editor.php:1446
#: ../../godmode/agentes/module_manager.php:647
-#: ../../godmode/netflow/nf_item_list.php:178
-#: ../../godmode/netflow/nf_edit.php:168
+#: ../../godmode/netflow/nf_item_list.php:178 ../../godmode/netflow/nf_edit.php:168
#: ../../godmode/snmpconsole/snmp_alert.php:1915
#: ../../godmode/snmpconsole/snmp_alert.php:2075
#: ../../godmode/snmpconsole/snmp_filters.php:315
@@ -6526,8 +6425,8 @@ msgstr "ノードアドレス"
#: ../../godmode/events/event_filter.php:149
#: ../../mobile/operation/tactical.php:348
#: ../../include/functions_reporting_html.php:3451
-#: ../../include/functions_reporting_html.php:6013
-#: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294
+#: ../../include/functions_reporting_html.php:6013 ../../include/functions.php:3109
+#: ../../include/ajax/alert_list.ajax.php:294
#: ../../include/ajax/alert_list.ajax.php:319
#: ../../include/ajax/alert_list.ajax.php:495
#: ../../include/functions_profile.php:207
@@ -6616,8 +6515,7 @@ msgstr "パスワードポリシーを利用する"
#: ../../godmode/massive/massive_edit_modules.php:1058
#: ../../godmode/massive/massive_edit_modules.php:1096
#: ../../godmode/massive/massive_edit_modules.php:1124
-#: ../../godmode/alerts/alert_view.php:135
-#: ../../godmode/alerts/alert_view.php:265
+#: ../../godmode/alerts/alert_view.php:135 ../../godmode/alerts/alert_view.php:265
#: ../../godmode/reporting/reporting_builder.php:1084
#: ../../godmode/reporting/visual_console_builder.wizard.php:382
#: ../../godmode/reporting/visual_console_builder.wizard.php:481
@@ -6686,8 +6584,7 @@ msgstr "はい"
#: ../../godmode/massive/massive_edit_modules.php:1058
#: ../../godmode/massive/massive_edit_modules.php:1097
#: ../../godmode/massive/massive_edit_modules.php:1125
-#: ../../godmode/alerts/alert_view.php:135
-#: ../../godmode/alerts/alert_view.php:265
+#: ../../godmode/alerts/alert_view.php:135 ../../godmode/alerts/alert_view.php:265
#: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390
#: ../../godmode/reporting/reporting_builder.php:1086
#: ../../godmode/reporting/visual_console_builder.wizard.php:393
@@ -6699,8 +6596,7 @@ msgstr "はい"
#: ../../include/functions_snmp.php:382
#: ../../include/class/EventSound.class.php:348
#: ../../include/class/SnmpConsole.class.php:402
-#: ../../include/functions_events.php:4971
-#: ../../include/functions_events.php:4976
+#: ../../include/functions_events.php:4971 ../../include/functions_events.php:4976
#: ../../operation/users/user_edit.php:434
#: ../../operation/netflow/nf_live_view.php:350
msgid "No"
@@ -6875,12 +6771,12 @@ msgid ""
"If you have manual settings in your pandora_server.conf, please note these "
"settings will ignore this console setup."
msgstr ""
-"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で"
-"設定/有効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意"
-"してください。\n"
+"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で設"
+"定/有効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意して"
+"ください。\n"
"\n"
-"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注"
-"意してください。"
+"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注意"
+"してください。"
#: ../../enterprise/meta/advanced/metasetup.mail.php:117
#: ../../godmode/setup/setup_general.php:725
@@ -6893,8 +6789,7 @@ msgid "From dir"
msgstr "From アドレス"
#: ../../enterprise/meta/advanced/metasetup.mail.php:127
-#: ../../godmode/setup/setup_general.php:756
-#: ../../include/functions_config.php:402
+#: ../../godmode/setup/setup_general.php:756 ../../include/functions_config.php:402
msgid "From name"
msgstr "From 名"
@@ -6909,8 +6804,7 @@ msgid "Port SMTP"
msgstr "SMTP ポート"
#: ../../enterprise/meta/advanced/metasetup.mail.php:142
-#: ../../godmode/setup/setup_general.php:817
-#: ../../include/functions_config.php:410
+#: ../../godmode/setup/setup_general.php:817 ../../include/functions_config.php:410
msgid "Encryption"
msgstr "暗号化"
@@ -6925,14 +6819,12 @@ msgid "none"
msgstr "なし"
#: ../../enterprise/meta/advanced/metasetup.mail.php:155
-#: ../../godmode/setup/setup_general.php:792
-#: ../../include/functions_config.php:414
+#: ../../godmode/setup/setup_general.php:792 ../../include/functions_config.php:414
msgid "Email user"
msgstr "メールユーザ"
#: ../../enterprise/meta/advanced/metasetup.mail.php:160
-#: ../../godmode/setup/setup_general.php:803
-#: ../../include/functions_config.php:418
+#: ../../godmode/setup/setup_general.php:803 ../../include/functions_config.php:418
msgid "Email password"
msgstr "メールユーザパスワード"
@@ -6991,8 +6883,7 @@ msgstr "パフォーマンス設定"
#: ../../enterprise/meta/advanced/metasetup.php:126
#: ../../enterprise/meta/advanced/metasetup.php:225
#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439
-#: ../../godmode/setup/file_manager.php:47
-#: ../../godmode/setup/file_manager.php:60
+#: ../../godmode/setup/file_manager.php:47 ../../godmode/setup/file_manager.php:60
msgid "File manager"
msgstr "ファイルマネージャ"
@@ -7131,8 +7022,7 @@ msgstr "ポリシー適用"
#: ../../enterprise/godmode/policies/policy.php:154
#: ../../enterprise/include/functions_groups.php:33
#: ../../enterprise/operation/agentes/ver_agente.php:254
-#: ../../include/functions_networkmap.php:1303
-#: ../../include/functions_maps.php:42
+#: ../../include/functions_networkmap.php:1303 ../../include/functions_maps.php:42
#: ../../include/lib/Dashboard/Widgets/tree_view.php:346
#: ../../operation/tree.php:128 ../../operation/search_results.php:172
#: ../../operation/agentes/estado_agente.php:387
@@ -7214,8 +7104,8 @@ msgstr "ノード同期処理に失敗しました。"
#: ../../enterprise/meta/advanced/metasetup.consoles.php:229
#: ../../enterprise/meta/advanced/metasetup.consoles.php:343
msgid ""
-"If you are trying to migrate this node to a new metaconsole, please use the "
-"form available at Settings > Enterprise at node console."
+"If you are trying to migrate this node to a new metaconsole, please use the form "
+"available at Settings > Enterprise at node console."
msgstr ""
"このノードを新しいメタコンソールに移行する場合は、ノードコンソールの 設定 > "
"Enterprise にあるフォームを使用してください。"
@@ -7307,8 +7197,8 @@ msgid ""
"If you have changed the node database to a different one, please go to Command "
"center and perform a database unification process."
msgstr ""
-"ノードデータベースを別のものに変更した場合は、コマンドセンタにてデータベースの"
-"統合プロセスを実行してください。"
+"ノードデータベースを別のものに変更した場合は、コマンドセンタにてデータベースの統"
+"合プロセスを実行してください。"
#: ../../enterprise/meta/advanced/metasetup.consoles.php:455
msgid ""
@@ -7320,8 +7210,8 @@ msgid ""
"System is centralised, please go to command center to perform a database merge "
"process to add new nodes."
msgstr ""
-"システムは中央管理されています。コマンドセンターにアクセスして、データベース"
-"マージプロセスを実行し新しいノードを追加してください。"
+"システムは中央管理されています。コマンドセンターにアクセスして、データベースマー"
+"ジプロセスを実行し新しいノードを追加してください。"
#: ../../enterprise/meta/advanced/metasetup.consoles.php:464
msgid ""
@@ -7332,11 +7222,11 @@ msgstr "環境が統一されるまで、新しいノードは使用できない
#: ../../enterprise/meta/advanced/metasetup.consoles.php:470
#, php-format
msgid ""
-"System is centralised, but you just modify nodes registered, please go to %s "
-"to perform a database merge process."
+"System is centralised, but you just modify nodes registered, please go to %s to "
+"perform a database merge process."
msgstr ""
-"システムは中央管理になっています。登録されているノードを変更するだけです。%s に"
-"移動して、データベースの管理処理を実行してください。"
+"システムは中央管理になっています。登録されているノードを変更するだけです。%s に移"
+"動して、データベースの管理処理を実行してください。"
#: ../../enterprise/meta/advanced/metasetup.consoles.php:473
msgid "This node will not be usable until unifying the environment"
@@ -7411,8 +7301,7 @@ msgstr ""
#: ../../enterprise/meta/include/functions_meta.php:221
#: ../../enterprise/meta/include/functions_meta.php:231
#: ../../enterprise/godmode/setup/setup_metaconsole.php:210
-#: ../../godmode/setup/setup_general.php:359
-#: ../../include/functions_config.php:240
+#: ../../godmode/setup/setup_general.php:359 ../../include/functions_config.php:240
msgid "API password"
msgstr "API パスワード"
@@ -7515,9 +7404,8 @@ msgid ""
"erased, and replaced with new data from this metaconsole automatically after "
"register the node. Are you sure?"
msgstr ""
-"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後"
-"にこのメタコンソールからの新しいデータに自動的に置き換えられます。よろしいです"
-"か?"
+"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後に"
+"このメタコンソールからの新しいデータに自動的に置き換えられます。よろしいですか?"
#: ../../enterprise/meta/advanced/metasetup.consoles.php:877
msgid "Node data will be merged"
@@ -7525,14 +7413,13 @@ msgstr "ノードデータはマージされます"
#: ../../enterprise/meta/advanced/metasetup.consoles.php:878
msgid ""
-"Information contained in this node is useful. After register the node, you "
-"must launch a merge process from command center, which will combine "
-"information in current environment with information contained in this new "
-"node. Are you sure?"
+"Information contained in this node is useful. After register the node, you must "
+"launch a merge process from command center, which will combine information in "
+"current environment with information contained in this new node. Are you sure?"
msgstr ""
-"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターから"
-"マージ処理を起動する必要があります。これにより、現在の環境の情報がこの新しい"
-"ノードに含まれる情報とマージされます。よろしいですか?"
+"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターからマー"
+"ジ処理を起動する必要があります。これにより、現在の環境の情報がこの新しいノードに"
+"含まれる情報とマージされます。よろしいですか?"
#: ../../enterprise/meta/advanced/metasetup.consoles.php:920
#: ../../enterprise/godmode/setup/setup_metaconsole.php:270
@@ -7675,8 +7562,7 @@ msgstr "リンクの編集に失敗しました。"
#: ../../godmode/alerts/configure_alert_template.php:571
#: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319
#: ../../godmode/setup/news.php:124 ../../godmode/setup/gis.php:39
-#: ../../godmode/setup/links.php:76
-#: ../../godmode/events/event_edit_filter.php:242
+#: ../../godmode/setup/links.php:76 ../../godmode/events/event_edit_filter.php:242
#: ../../include/functions_alerts.php:2754
#: ../../include/class/CalendarManager.class.php:534
#: ../../include/class/CalendarManager.class.php:891
@@ -7971,11 +7857,11 @@ msgstr "短い名前"
#: ../../enterprise/meta/advanced/collections.data.php:452
#: ../../enterprise/godmode/agentes/collections.data.php:562
msgid ""
-"The collection's short name is the name of dir in attachment dir and the "
-"package collection."
+"The collection's short name is the name of dir in attachment dir and the package "
+"collection."
msgstr ""
-"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレ"
-"クトリ名です。"
+"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレク"
+"トリ名です。"
#: ../../enterprise/meta/advanced/collections.data.php:452
#: ../../enterprise/godmode/agentes/collections.data.php:564
@@ -7985,8 +7871,7 @@ msgstr "短い名前は、アルファベットと、- および _ のみ利用
#: ../../enterprise/meta/advanced/collections.data.php:452
#: ../../enterprise/godmode/agentes/collections.data.php:566
msgid "Empty for default short name fc_X where X is the collection id."
-msgstr ""
-"指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。"
+msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。"
#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72
#, php-format
@@ -8006,8 +7891,7 @@ msgstr "カスタムプロビジョニングデータの移動中にエラーで
#: ../../enterprise/meta/advanced/collections.editor.php:219
#: ../../enterprise/godmode/agentes/collections.editor.php:179
#: ../../enterprise/godmode/agentes/collections.editor.php:245
-#: ../../godmode/servers/plugin.php:171
-#: ../../include/functions_filemanager.php:776
+#: ../../godmode/servers/plugin.php:171 ../../include/functions_filemanager.php:776
msgid "Edit file"
msgstr "ファイル編集"
@@ -8083,11 +7967,10 @@ msgid "Edit job"
msgstr "ジョブ編集"
#: ../../enterprise/meta/advanced/cron_main.php:313
-msgid ""
-"In order to make backups it is necessary to have mysqldump on your console."
+msgid "In order to make backups it is necessary to have mysqldump on your console."
msgstr ""
-"バックアップを作成するには、コンソールに mysqldump をインストールする必要があり"
-"ます。"
+"バックアップを作成するには、コンソールに mysqldump をインストールする必要がありま"
+"す。"
#: ../../enterprise/meta/advanced/cron_main.php:402
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:950
@@ -8300,20 +8183,18 @@ msgstr "言語設定"
#: ../../enterprise/meta/advanced/metasetup.setup.php:99
#: ../../enterprise/meta/include/functions_meta.php:85
-#: ../../godmode/setup/setup_general.php:270
-#: ../../include/functions_config.php:196
+#: ../../godmode/setup/setup_general.php:270 ../../include/functions_config.php:196
msgid "Auto login (hash) password"
msgstr "自動ログインパスワード(ハッシュ)"
#: ../../enterprise/meta/advanced/metasetup.setup.php:110
#: ../../godmode/setup/setup_general.php:58 ../../mobile/operation/events.php:248
#: ../../include/functions_reporting_html.php:1142
-#: ../../include/functions_reporting_html.php:2701
-#: ../../include/functions.php:1291
+#: ../../include/functions_reporting_html.php:2701 ../../include/functions.php:1291
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434
#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430
-#: ../../include/functions_events.php:2609
-#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833
+#: ../../include/functions_events.php:2609 ../../include/functions_events.php:3162
+#: ../../operation/events/events.php:833
msgid "System"
msgstr "システム"
@@ -8324,8 +8205,7 @@ msgstr "データベース"
#: ../../enterprise/meta/advanced/metasetup.setup.php:113
#: ../../enterprise/meta/include/functions_meta.php:95
-#: ../../godmode/setup/setup_general.php:282
-#: ../../include/functions_config.php:200
+#: ../../godmode/setup/setup_general.php:282 ../../include/functions_config.php:200
msgid "Time source"
msgstr "日時データソース"
@@ -8335,20 +8215,18 @@ msgid ""
"If SSL is not properly configured, you will lose access to the %s Console. Do "
"you want to continue?"
msgstr ""
-"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けま"
-"すか?"
+"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けます"
+"か?"
#: ../../enterprise/meta/advanced/metasetup.setup.php:148
#: ../../enterprise/meta/include/functions_meta.php:105
-#: ../../godmode/setup/setup_general.php:307
-#: ../../include/functions_config.php:212
+#: ../../godmode/setup/setup_general.php:307 ../../include/functions_config.php:212
msgid "Enforce https"
msgstr "httpsの利用"
#: ../../enterprise/meta/advanced/metasetup.setup.php:153
#: ../../enterprise/meta/include/functions_meta.php:130
-#: ../../godmode/setup/setup_general.php:295
-#: ../../include/functions_config.php:223
+#: ../../godmode/setup/setup_general.php:295 ../../include/functions_config.php:223
msgid "Attachment store"
msgstr "添付ファイル保存場所"
@@ -8358,8 +8236,7 @@ msgstr "テンポラリデータの保存ディレクトリ"
#: ../../enterprise/meta/advanced/metasetup.setup.php:168
#: ../../enterprise/meta/include/functions_meta.php:141
-#: ../../godmode/setup/setup_general.php:244
-#: ../../include/functions_config.php:188
+#: ../../godmode/setup/setup_general.php:244 ../../include/functions_config.php:188
msgid "Remote config directory"
msgstr "リモート設定ディレクトリ"
@@ -8480,8 +8357,7 @@ msgstr "タイムゾーン変更"
#: ../../enterprise/meta/advanced/metasetup.setup.php:232
#: ../../enterprise/meta/include/functions_meta.php:161
#: ../../godmode/setup/setup_general.php:434
-#: ../../include/functions_register.php:164
-#: ../../include/functions_config.php:283
+#: ../../include/functions_register.php:164 ../../include/functions_config.php:283
msgid "Timezone setup"
msgstr "タイムゾーン設定"
@@ -8491,8 +8367,8 @@ msgid ""
"Set this value when you need your %s to be accessible via a public URL (for "
"example using Apache mod_proxy settings)."
msgstr ""
-"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、"
-"Apache mod_proxy 設定を使用)、この値を設定します。"
+"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、Apache "
+"mod_proxy 設定を使用)、この値を設定します。"
#: ../../enterprise/meta/advanced/metasetup.setup.php:251
#, php-format
@@ -8500,20 +8376,18 @@ msgid ""
"If public URL is not properly configured, you will lose access to the %s "
"Console. Do you want to continue?"
msgstr ""
-"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 "
-"続けますか?"
+"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 続"
+"けますか?"
#: ../../enterprise/meta/advanced/metasetup.setup.php:266
#: ../../enterprise/meta/include/functions_meta.php:191
-#: ../../godmode/setup/setup_general.php:502
-#: ../../include/functions_config.php:322
+#: ../../godmode/setup/setup_general.php:502 ../../include/functions_config.php:322
msgid "Public URL host exclusions"
msgstr "公開 URL 除外ホスト"
#: ../../enterprise/meta/advanced/metasetup.setup.php:278
#: ../../enterprise/meta/include/functions_meta.php:181
-#: ../../godmode/setup/setup_general.php:492
-#: ../../include/functions_config.php:318
+#: ../../godmode/setup/setup_general.php:492 ../../include/functions_config.php:318
msgid "Force use Public URL"
msgstr "公開 URL の強制利用"
@@ -8522,20 +8396,18 @@ msgid "Force using defined public URL)."
msgstr "定義された公開 URL を使用するように強制します)。"
#: ../../enterprise/meta/advanced/metasetup.setup.php:306
-#: ../../godmode/setup/setup_sflow.php:75
-#: ../../godmode/setup/setup_netflow.php:75
-#: ../../include/functions_config.php:1560
-#: ../../include/functions_config.php:1603
+#: ../../godmode/setup/setup_sflow.php:75 ../../godmode/setup/setup_netflow.php:75
+#: ../../include/functions_config.php:1560 ../../include/functions_config.php:1603
msgid "Disable custom live view filters"
msgstr "カスタムライブビューフィルタの無効化"
#: ../../enterprise/meta/advanced/metasetup.setup.php:307
msgid ""
-"Disable the definition of custom filters in the live view. Only existing "
-"filters can be used."
+"Disable the definition of custom filters in the live view. Only existing filters "
+"can be used."
msgstr ""
-"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ"
-"利用可能です。"
+"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ利"
+"用可能です。"
#: ../../enterprise/meta/advanced/metasetup.setup.php:329
msgid "Disabled sections"
@@ -8559,8 +8431,7 @@ msgstr "セクションのカスタマイズ"
#: ../../enterprise/meta/advanced/metasetup.setup.php:370
#: ../../enterprise/meta/include/functions_meta.php:211
-#: ../../godmode/setup/setup_general.php:542
-#: ../../include/functions_config.php:334
+#: ../../godmode/setup/setup_general.php:542 ../../include/functions_config.php:334
msgid "Command Snapshot"
msgstr "コマンドスナップショット"
@@ -8574,8 +8445,7 @@ msgstr "パスワードの設定には注意してください。httpsアクセ
#: ../../enterprise/meta/advanced/metasetup.setup.php:402
#: ../../enterprise/meta/include/functions_meta.php:241
-#: ../../godmode/setup/setup_general.php:371
-#: ../../include/functions_config.php:236
+#: ../../godmode/setup/setup_general.php:371 ../../include/functions_config.php:236
msgid "IP list with API access"
msgstr "APIアクセスを許可するIPアドレスリスト"
@@ -8599,8 +8469,8 @@ msgid ""
"Maximum allowed number of agents to be added in policy concurrently (adding a "
"high number of agents at a time can lead to performance issues)"
msgstr ""
-"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを"
-"追加すると、パフォーマンスの問題が発生する可能性があります)"
+"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを追"
+"加すると、パフォーマンスの問題が発生する可能性があります)"
#: ../../enterprise/meta/advanced/metasetup.setup.php:464
msgid "Warning for synchronization queue"
@@ -8644,8 +8514,7 @@ msgstr "ログの場所: pandora_console/log/audit.log"
#: ../../enterprise/meta/advanced/metasetup.setup.php:597
#: ../../enterprise/meta/advanced/metasetup.setup.php:598
#: ../../enterprise/meta/include/functions_meta.php:326
-#: ../../godmode/setup/setup_general.php:698
-#: ../../include/functions_config.php:386
+#: ../../godmode/setup/setup_general.php:698 ../../include/functions_config.php:386
msgid "Enable console report"
msgstr "コンソールレポートの有効化"
@@ -8660,8 +8529,8 @@ msgid ""
"New event with that Extra ID is received, it will be created as "In "
"process" instead."
msgstr ""
-"拡張 ID を持つ "処理中" イベントがある場合に、その ID を持つ新たなイ"
-"ベントを受け取った際に "処理中" として作成します。"
+"拡張 ID を持つ "処理中" イベントがある場合に、その ID を持つ新たなイベ"
+"ントを受け取った際に "処理中" として作成します。"
#: ../../enterprise/meta/advanced/metasetup.setup.php:639
#: ../../enterprise/meta/include/functions_meta.php:336
@@ -8737,8 +8606,7 @@ msgstr "%s ポリシーアラートを削除しました"
#: ../../godmode/events/event_edit_filter.php:797
#: ../../godmode/events/custom_events.php:107
#: ../../include/functions_events.php:212 ../../include/functions_events.php:283
-#: ../../include/functions_events.php:4554
-#: ../../include/functions_events.php:4636
+#: ../../include/functions_events.php:4554 ../../include/functions_events.php:4636
#: ../../operation/agentes/log_sources_status.php:56
#: ../../operation/agentes/pandora_networkmap.editor.php:425
#: ../../operation/agentes/pandora_networkmap.view.php:173
@@ -8806,8 +8674,8 @@ msgid ""
"Be aware that group synchronization can change the group configuration of the "
"node"
msgstr ""
-"グループの同期により、ノードのグループ設定が変更される可能性があることに注意し"
-"てください"
+"グループの同期により、ノードのグループ設定が変更される可能性があることに注意して"
+"ください"
#: ../../enterprise/meta/advanced/metasetup.performance.php:88
#: ../../godmode/setup/performance.php:186
@@ -8815,16 +8683,15 @@ msgid "Pandora_db running in active database."
msgstr "アクティブデータベースで pandora_db が動作しています。"
#: ../../enterprise/meta/advanced/metasetup.performance.php:89
-#: ../../godmode/setup/performance.php:187
-#: ../../godmode/setup/performance.php:243
+#: ../../godmode/setup/performance.php:187 ../../godmode/setup/performance.php:243
msgid "Executed:"
msgstr "実行済:"
#: ../../enterprise/meta/advanced/metasetup.performance.php:95
#: ../../enterprise/operation/agentes/wux_console_view.php:342
#: ../../enterprise/operation/agentes/wux_console_view.php:363
-#: ../../godmode/setup/performance.php:193
-#: ../../godmode/setup/performance.php:248 ../../general/logon_ok.php:199
+#: ../../godmode/setup/performance.php:193 ../../godmode/setup/performance.php:248
+#: ../../general/logon_ok.php:199
msgid "ago"
msgstr "前"
@@ -8836,8 +8703,7 @@ msgstr "パフォーマンス"
#: ../../enterprise/meta/advanced/metasetup.performance.php:117
#: ../../enterprise/meta/include/functions_meta.php:2015
-#: ../../godmode/setup/performance.php:263
-#: ../../godmode/setup/performance.php:506
+#: ../../godmode/setup/performance.php:263 ../../godmode/setup/performance.php:506
msgid "Max. days before delete events"
msgstr "イベントデータ保持日数"
@@ -8898,8 +8764,8 @@ msgstr "クエリごとのイベント制限"
#: ../../enterprise/meta/advanced/metasetup.performance.php:255
#: ../../enterprise/meta/include/functions_meta.php:2123
-#: ../../godmode/setup/performance.php:338
-#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:850
+#: ../../godmode/setup/performance.php:338 ../../godmode/setup/performance.php:470
+#: ../../include/functions_config.php:850
msgid "Max. days before purge"
msgstr "データ保持日数"
@@ -9135,9 +9001,8 @@ msgstr "未完了"
#: ../../godmode/reporting/graphs.php:283
#: ../../godmode/reporting/visual_console_favorite.php:204
#: ../../godmode/reporting/reporting_builder.item_editor.php:1120
-#: ../../godmode/reporting/reporting_builder.php:766
-#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652
-#: ../../include/functions_ui.php:3697
+#: ../../godmode/reporting/reporting_builder.php:766 ../../godmode/tag/tag.php:247
+#: ../../include/ajax/agent.php:652 ../../include/functions_ui.php:3697
#: ../../include/class/ModuleTemplates.class.php:713 ../../operation/tree.php:339
#: ../../operation/agentes/estado_agente.php:444
#: ../../operation/agentes/graphs.php:270
@@ -9222,8 +9087,8 @@ msgstr "サーバ"
#: ../../enterprise/operation/services/massive/services.create.php:985
#: ../../enterprise/operation/services/massive/service.create.elements.php:379
#: ../../enterprise/operation/services/services.service_map.php:148
-#: ../../extensions/agents_modules.php:470
-#: ../../extensions/agents_modules.php:841 ../../godmode/groups/tactical.php:213
+#: ../../extensions/agents_modules.php:470 ../../extensions/agents_modules.php:841
+#: ../../godmode/groups/tactical.php:213
#: ../../godmode/agentes/planned_downtime.list.php:84
#: ../../godmode/agentes/planned_downtime.list.php:109
#: ../../godmode/massive/massive_standby_alerts.php:204
@@ -9239,9 +9104,8 @@ msgstr "サーバ"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1879
#: ../../godmode/reporting/reporting_builder.item_editor.php:2126
#: ../../godmode/reporting/visual_console_builder.wizard.php:430
-#: ../../mobile/include/functions_web.php:23
-#: ../../mobile/operation/agents.php:204 ../../mobile/operation/home.php:81
-#: ../../mobile/operation/agent.php:155
+#: ../../mobile/include/functions_web.php:23 ../../mobile/operation/agents.php:204
+#: ../../mobile/operation/home.php:81 ../../mobile/operation/agent.php:155
#: ../../include/functions_reporting_html.php:2094
#: ../../include/functions_reporting_html.php:2566
#: ../../include/functions_reporting_html.php:3349
@@ -9433,8 +9297,7 @@ msgstr "キューが空です"
#: ../../include/functions_reporting_html.php:5371
#: ../../include/functions_reporting_html.php:5411
#: ../../include/functions_reporting_html.php:5661
-#: ../../include/ajax/heatmap.ajax.php:252
-#: ../../include/ajax/heatmap.ajax.php:291
+#: ../../include/ajax/heatmap.ajax.php:252 ../../include/ajax/heatmap.ajax.php:291
#: ../../include/ajax/heatmap.ajax.php:326
#: ../../include/ajax/alert_list.ajax.php:459
#: ../../include/functions_inventory.php:393
@@ -9486,8 +9349,7 @@ msgstr "キューが空です"
#: ../../operation/agentes/ver_agente.php:1187
#: ../../operation/agentes/exportdata.excel.php:74
#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269
-#: ../../operation/search_alerts.php:34
-#: ../../operation/inventory/inventory.php:628
+#: ../../operation/search_alerts.php:34 ../../operation/inventory/inventory.php:628
#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688
msgid "Agent"
msgstr "エージェント"
@@ -9553,11 +9415,11 @@ msgstr "エージェントの状態"
#: ../../godmode/setup/setup_visuals.php:1035
#: ../../godmode/reporting/reporting_builder.item_editor.php:3830
#: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69
-#: ../../include/functions_reporting_html.php:2573
-#: ../../include/functions.php:1087 ../../include/functions.php:1327
-#: ../../include/functions.php:1334 ../../include/functions.php:1367
-#: ../../include/ajax/module.php:1933 ../../include/functions_graph.php:3329
-#: ../../include/functions_graph.php:3331 ../../include/functions_graph.php:4842
+#: ../../include/functions_reporting_html.php:2573 ../../include/functions.php:1087
+#: ../../include/functions.php:1327 ../../include/functions.php:1334
+#: ../../include/functions.php:1367 ../../include/ajax/module.php:1933
+#: ../../include/functions_graph.php:3329 ../../include/functions_graph.php:3331
+#: ../../include/functions_graph.php:4842
#: ../../include/rest-api/models/VisualConsole/Items/Group.php:432
#: ../../include/functions_massive_operations.php:146
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:315
@@ -9623,12 +9485,12 @@ msgstr "正常"
#: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71
#: ../../include/functions_reporting_html.php:867
#: ../../include/functions_reporting_html.php:2574
-#: ../../include/functions_reporting_html.php:4871
-#: ../../include/functions.php:1095 ../../include/functions.php:1331
-#: ../../include/functions.php:1332 ../../include/functions.php:1334
-#: ../../include/functions.php:1375 ../../include/ajax/module.php:1938
-#: ../../include/functions_graph.php:3353 ../../include/functions_graph.php:3355
-#: ../../include/functions_graph.php:4850 ../../include/functions_ui.php:2869
+#: ../../include/functions_reporting_html.php:4871 ../../include/functions.php:1095
+#: ../../include/functions.php:1331 ../../include/functions.php:1332
+#: ../../include/functions.php:1334 ../../include/functions.php:1375
+#: ../../include/ajax/module.php:1938 ../../include/functions_graph.php:3353
+#: ../../include/functions_graph.php:3355 ../../include/functions_graph.php:4850
+#: ../../include/functions_ui.php:2869
#: ../../include/rest-api/models/VisualConsole/Items/Group.php:418
#: ../../include/functions_massive_operations.php:148
#: ../../include/class/AgentWizard.class.php:1404
@@ -9857,8 +9719,7 @@ msgstr "警告状態エージェント"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:412
#: ../../include/functions_reporting_html.php:5852
-#: ../../include/functions_agents.php:3945
-#: ../../include/functions_agents.php:3999
+#: ../../include/functions_agents.php:3945 ../../include/functions_agents.php:3999
msgid "Agents ok"
msgstr "正常状態エージェント"
@@ -9915,8 +9776,7 @@ msgstr "状態ごとのエージェント"
#: ../../enterprise/meta/monitoring/custom_fields_view.php:531
#: ../../include/functions_reporting.php:12269
#: ../../include/functions_reporting.php:12275
-#: ../../include/functions_groups.php:2836
-#: ../../include/functions_groups.php:2842
+#: ../../include/functions_groups.php:2836 ../../include/functions_groups.php:2842
msgid "Monitors by status"
msgstr "状態ごとの監視項目"
@@ -10218,8 +10078,7 @@ msgstr "アラート作成"
#: ../../operation/agentes/estado_monitores.php:125
#: ../../operation/agentes/agent_inventory.php:116
#: ../../operation/agentes/exportdata.excel.php:74
-#: ../../operation/search_alerts.php:35
-#: ../../operation/inventory/inventory.php:634
+#: ../../operation/search_alerts.php:35 ../../operation/inventory/inventory.php:634
#: ../../operation/search_modules.php:32
msgid "Module"
msgstr "モジュール"
@@ -10241,8 +10100,7 @@ msgstr "モジュール"
#: ../../mobile/operation/alerts.php:342
#: ../../include/functions_reporting_html.php:3449
#: ../../include/functions_reporting_html.php:3452
-#: ../../include/functions_cron.php:691
-#: ../../include/ajax/alert_list.ajax.php:293
+#: ../../include/functions_cron.php:691 ../../include/ajax/alert_list.ajax.php:293
#: ../../include/ajax/alert_list.ajax.php:318
#: ../../include/functions_treeview.php:399
#: ../../include/functions_treeview.php:440
@@ -10392,8 +10250,7 @@ msgstr "モジュール名に不正な文字があります"
#: ../../enterprise/include/functions_reporting.php:8008
#: ../../enterprise/include/functions_reporting.php:8034
#: ../../godmode/reporting/visual_console_builder.php:830
-#: ../../include/functions_menu.php:589
-#: ../../operation/visual_console/view.php:202
+#: ../../include/functions_menu.php:589 ../../operation/visual_console/view.php:202
#: ../../operation/visual_console/legacy_view.php:171
msgid "Wizard"
msgstr "設定追加"
@@ -10486,8 +10343,7 @@ msgstr "テンプレートを設定する必要があります"
#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:588
#: ../../godmode/users/configure_profile.php:302
-#: ../../godmode/alerts/alert_list.php:513
-#: ../../godmode/alerts/alert_list.php:532
+#: ../../godmode/alerts/alert_list.php:513 ../../godmode/alerts/alert_list.php:532
msgid "Manage alerts"
msgstr "アラート管理"
@@ -10542,8 +10398,7 @@ msgstr "ウェブチェック"
#: ../../mobile/operation/modules.php:183 ../../mobile/operation/modules.php:184
#: ../../mobile/operation/modules.php:293 ../../mobile/operation/modules.php:294
#: ../../include/functions_reporting_html.php:1768
-#: ../../include/ajax/heatmap.ajax.php:193
-#: ../../include/ajax/heatmap.ajax.php:263
+#: ../../include/ajax/heatmap.ajax.php:193 ../../include/ajax/heatmap.ajax.php:263
#: ../../include/ajax/heatmap.ajax.php:302 ../../include/functions_graph.php:5085
#: ../../include/functions_treeview.php:121 ../../include/functions_html.php:1600
#: ../../include/lib/Dashboard/Widgets/heatmap.php:324
@@ -10627,8 +10482,7 @@ msgstr "説明なし"
#: ../../godmode/modules/manage_network_components_form_plugin.php:54
#: ../../godmode/modules/manage_network_components_form_wmi.php:60
#: ../../godmode/alerts/configure_alert_template.php:1338
-#: ../../godmode/alerts/alert_list.builder.php:329
-#: ../../include/functions.php:2768
+#: ../../godmode/alerts/alert_list.builder.php:329 ../../include/functions.php:2768
#: ../../include/class/AgentWizard.class.php:2629
msgid "Empty"
msgstr "空"
@@ -10640,8 +10494,7 @@ msgstr "空"
#: ../../enterprise/godmode/agentes/collections.data.php:241
#: ../../enterprise/godmode/agentes/collections.data.php:272
#: ../../enterprise/godmode/agentes/collections.data.php:336
-#: ../../include/functions_events.php:3268
-#: ../../include/functions_events.php:3542
+#: ../../include/functions_events.php:3268 ../../include/functions_events.php:3542
msgid "New"
msgstr "新規"
@@ -10680,8 +10533,7 @@ msgstr "読み込み中"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:156
#: ../../enterprise/meta/include/functions_wizard_meta.php:642
-#: ../../godmode/tag/edit_tag.php:212
-#: ../../include/class/TipsWindow.class.php:726
+#: ../../godmode/tag/edit_tag.php:212 ../../include/class/TipsWindow.class.php:726
#: ../../include/class/TipsWindow.class.php:893
#: ../../include/functions_reporting.php:7470
#: ../../include/lib/Dashboard/Widgets/url.php:216
@@ -10716,14 +10568,14 @@ msgstr "エージェント実行間隔 x %s"
#: ../../enterprise/meta/monitoring/wizard/wizard.php:365
msgid ""
"This feature will be removed in version 771 and its\n"
-" functions transferred to different metaconsole tools "
-"( bulk operations, agent alert editing, etc).\n"
+" functions transferred to different metaconsole tools ( bulk "
+"operations, agent alert editing, etc).\n"
" The current functions of the wizard is minimal and we do "
"not recommend its use."
msgstr ""
"この機能はバージョン 771 で削除され、\n"
-" 別のメタコンソールツール (一括操作、エージェントアラート編"
-"集など) に移ります。\n"
+" 別のメタコンソールツール (一括操作、エージェントアラート編集"
+"など) に移ります。\n"
" ウィザードの現在の機能は最小限で利用はお勧めしません。"
#: ../../enterprise/meta/monitoring/group_view.php:59
@@ -10819,8 +10671,7 @@ msgstr "合計"
#: ../../include/class/AgentsAlerts.class.php:956
#: ../../include/class/SnmpConsole.class.php:841
#: ../../include/functions_reporting.php:13143
-#: ../../include/functions_events.php:2942
-#: ../../include/functions_events.php:3142
+#: ../../include/functions_events.php:2942 ../../include/functions_events.php:3142
#: ../../operation/agentes/group_view.php:252
msgid "Alert fired"
msgstr "発生中アラート"
@@ -10829,11 +10680,11 @@ msgstr "発生中アラート"
#: ../../operation/agentes/group_view.php:343
#, php-format
msgid ""
-"This %s installation are using the secondary groups feature. For this reason, "
-"an agent can be counted several times."
+"This %s installation are using the secondary groups feature. For this reason, an "
+"agent can be counted several times."
msgstr ""
-"この %s インストールはセカンダリグループ機能を使用しています。 このため、エー"
-"ジェントは数回カウントされる可能性があります。"
+"この %s インストールはセカンダリグループ機能を使用しています。 このため、エージェ"
+"ントは数回カウントされる可能性があります。"
#: ../../enterprise/meta/monitoring/tactical.php:46
#: ../../enterprise/meta/general/main_header.php:103
@@ -10843,8 +10694,8 @@ msgstr ""
#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97
#: ../../include/lib/Dashboard/Widgets/tactical.php:176
#: ../../include/lib/Dashboard/Widgets/tactical.php:533
-#: ../../operation/users/user_edit.php:472
-#: ../../operation/agentes/tactical.php:72 ../../operation/menu.php:173
+#: ../../operation/users/user_edit.php:472 ../../operation/agentes/tactical.php:72
+#: ../../operation/menu.php:173
msgid "Tactical view"
msgstr "モニタリング概要"
@@ -10868,8 +10719,7 @@ msgstr "状態レポート"
#: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25
#: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908
#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219
-#: ../../include/functions_reports.php:876
-#: ../../include/functions_reports.php:880
+#: ../../include/functions_reports.php:876 ../../include/functions_reports.php:880
#: ../../include/functions_reports.php:884 ../../operation/menu.php:518
#: ../../operation/events/events.php:1613
msgid "Events"
@@ -10894,8 +10744,7 @@ msgid "View events"
msgstr "イベント参照"
#: ../../enterprise/meta/event/custom_events.php:42
-#: ../../godmode/netflow/nf_edit.php:211
-#: ../../godmode/netflow/nf_edit_form.php:69
+#: ../../godmode/netflow/nf_edit.php:211 ../../godmode/netflow/nf_edit_form.php:69
#: ../../godmode/snmpconsole/snmp_filters.php:37
#: ../../godmode/events/event_filter.php:230
#: ../../include/ajax/custom_fields.php:654
@@ -10977,8 +10826,8 @@ msgstr "イベントフィールド表示"
#: ../../godmode/events/custom_events.php:232
msgid "There must be at least one custom field. Timestamp will be set by default"
msgstr ""
-"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定"
-"されます。"
+"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定さ"
+"れます。"
#: ../../enterprise/meta/include/functions_autoprovision.php:391
msgid "Round Robin"
@@ -10991,16 +10840,16 @@ msgstr "低負荷"
#: ../../enterprise/meta/include/functions_autoprovision.php:435
msgid ""
"It uses the Round-robin planning method to distribute, \n"
-" in an equitable way and in a rational order, all the new "
-"Pandora software agents that reach the Metaconsole.\n"
+" in an equitable way and in a rational order, all the new Pandora "
+"software agents that reach the Metaconsole.\n"
" The distribution of the agents will be done in a circular way, "
"assigning the corresponding server to each new agent.\n"
" "
msgstr ""
-"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウン"
-"ドロビン方式で公平に配布します。\n"
-" エージェントの配布は循環的に行われ、新しいエージェントは対応す"
-"るサーバに割り当てられます。\n"
+"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウンド"
+"ロビン方式で公平に配布します。\n"
+" エージェントの配布は循環的に行われ、新しいエージェントは対応する"
+"サーバに割り当てられます。\n"
" "
#: ../../enterprise/meta/include/functions_autoprovision.php:443
@@ -11017,8 +10866,8 @@ msgid ""
" "
msgstr ""
"カスタム配布では、独自の配布ルールを定義できます。\n"
-" エージェントから取得された情報(エージェント名とその IP アドレ"
-"ス)に基づきます。\n"
+" エージェントから取得された情報(エージェント名とその IP アドレス)"
+"に基づきます。\n"
" "
#: ../../enterprise/meta/include/functions_autoprovision.php:494
@@ -11035,11 +10884,11 @@ msgstr "並べ替え"
#: ../../enterprise/meta/include/functions_autoprovision.php:552
msgid ""
-"There is no custom entries defined. Click on \"Create custom entry\" to add "
-"the first."
+"There is no custom entries defined. Click on \"Create custom entry\" to add the "
+"first."
msgstr ""
-"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックし"
-"て、最初のエントリを追加します。"
+"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックして、"
+"最初のエントリを追加します。"
#: ../../enterprise/meta/include/functions_autoprovision.php:557
msgid "Create custom entry"
@@ -11058,8 +10907,8 @@ msgid ""
"There is no rules configured for this custom entry. Click on Add button to "
"create the first."
msgstr ""
-"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリッ"
-"クして作成します。"
+"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリック"
+"して作成します。"
#: ../../enterprise/meta/include/functions_autoprovision.php:699
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:502
@@ -11129,8 +10978,8 @@ msgstr "ユーザ管理"
#: ../../enterprise/meta/include/functions_users_meta.php:214
#: ../../godmode/users/profile_list.php:72
#: ../../godmode/users/configure_profile.php:65
-#: ../../godmode/users/user_list.php:262
-#: ../../godmode/users/configure_user.php:256 ../../godmode/menu.php:159
+#: ../../godmode/users/user_list.php:262 ../../godmode/users/configure_user.php:256
+#: ../../godmode/menu.php:159
msgid "Profile management"
msgstr "プロファイル管理"
@@ -11167,8 +11016,8 @@ msgstr "ユーザ管理"
#: ../../godmode/reporting/reporting_builder.item_editor.php:69
#: ../../godmode/reporting/reporting_builder.item_editor.php:3993
#: ../../include/functions_reporting_html.php:1592
-#: ../../include/functions_reporting_html.php:1756
-#: ../../include/lib/Group.php:554 ../../operation/inventory/inventory.php:999
+#: ../../include/functions_reporting_html.php:1756 ../../include/lib/Group.php:554
+#: ../../operation/inventory/inventory.php:999
#: ../../operation/inventory/inventory.php:1293
msgid "Alias"
msgstr "別名"
@@ -11184,8 +11033,8 @@ msgstr "別名"
#: ../../include/functions_reporting_html.php:1596
#: ../../include/functions_reporting_html.php:4139
#: ../../include/functions_reporting_html.php:4233
-#: ../../include/functions_treeview.php:643
-#: ../../include/functions_events.php:4372 ../../operation/gis_maps/ajax.php:290
+#: ../../include/functions_treeview.php:643 ../../include/functions_events.php:4372
+#: ../../operation/gis_maps/ajax.php:290
msgid "IP Address"
msgstr "IP アドレス"
@@ -11280,11 +11129,10 @@ msgstr "プライマリを利用"
#: ../../godmode/setup/setup_integria.php:292
#: ../../godmode/reporting/reporting_builder.item_editor.php:3525
#: ../../godmode/events/custom_events.php:97
-#: ../../mobile/include/user.class.php:392
-#: ../../mobile/operation/tactical.php:349
-#: ../../include/functions_reporting_html.php:6011
-#: ../../include/functions.php:3109 ../../include/functions_cron.php:498
-#: ../../include/functions_config.php:731 ../../include/functions_config.php:751
+#: ../../mobile/include/user.class.php:392 ../../mobile/operation/tactical.php:349
+#: ../../include/functions_reporting_html.php:6011 ../../include/functions.php:3109
+#: ../../include/functions_cron.php:498 ../../include/functions_config.php:731
+#: ../../include/functions_config.php:751
#: ../../include/class/CredentialStore.class.php:817
#: ../../include/class/CredentialStore.class.php:1300
#: ../../include/class/AuditLog.class.php:110
@@ -11339,9 +11187,8 @@ msgstr "ユーザ"
#: ../../include/class/CredentialStore.class.php:1324
#: ../../include/class/CredentialStore.class.php:1346
#: ../../include/class/AgentWizard.class.php:690
-#: ../../operation/users/user_edit.php:863
-#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290
-#: ../../general/login_page.php:351
+#: ../../operation/users/user_edit.php:863 ../../operation/users/user_edit.php:916
+#: ../../general/login_page.php:290 ../../general/login_page.php:351
msgid "Password"
msgstr "パスワード"
@@ -11726,8 +11573,7 @@ msgid "%s Modules deleted"
msgstr "%s モジュールを削除しました"
#: ../../enterprise/meta/include/functions_wizard_meta.php:2693
-msgid ""
-"There was an error creating the alerts, the operation has been cancelled ."
+msgid "There was an error creating the alerts, the operation has been cancelled ."
msgstr "アラート作成エラーです。操作はキャンセルされました。"
#: ../../enterprise/meta/include/functions_wizard_meta.php:2723
@@ -11877,10 +11723,9 @@ msgstr "イベント名"
#: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849
#: ../../include/functions_reporting_html.php:3659
#: ../../include/functions_treeview.php:607
-#: ../../include/class/SatelliteAgent.class.php:513
-#: ../../include/lib/Group.php:550 ../../include/functions_events.php:201
-#: ../../include/functions_events.php:247 ../../include/functions_events.php:2534
-#: ../../operation/events/events.php:2669
+#: ../../include/class/SatelliteAgent.class.php:513 ../../include/lib/Group.php:550
+#: ../../include/functions_events.php:201 ../../include/functions_events.php:247
+#: ../../include/functions_events.php:2534 ../../operation/events/events.php:2669
msgid "Agent name"
msgstr "エージェント名"
@@ -11916,8 +11761,7 @@ msgstr "エージェント名"
#: ../../include/functions_netflow.php:278
#: ../../include/class/SnmpConsole.class.php:279
#: ../../include/functions_events.php:205 ../../include/functions_events.php:262
-#: ../../include/functions_events.php:2539
-#: ../../include/functions_events.php:4914
+#: ../../include/functions_events.php:2539 ../../include/functions_events.php:4914
#: ../../operation/agentes/exportdata.csv.php:74
#: ../../operation/agentes/exportdata.php:114
#: ../../operation/agentes/status_monitor.php:1598
@@ -11957,9 +11801,8 @@ msgstr "イベントタイプ"
#: ../../godmode/agentes/status_monitor_custom_fields.php:143
#: ../../godmode/alerts/alert_list.list.php:104
#: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848
-#: ../../include/ajax/heatmap.ajax.php:239
-#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001
-#: ../../include/ajax/custom_fields.php:411
+#: ../../include/ajax/heatmap.ajax.php:239 ../../include/ajax/heatmap.ajax.php:278
+#: ../../include/ajax/module.php:1001 ../../include/ajax/custom_fields.php:411
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:542
#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:558
#: ../../operation/agentes/status_monitor.php:902
@@ -11995,10 +11838,9 @@ msgstr "アラート"
#: ../../godmode/reporting/reporting_builder.item_editor.php:2998
#: ../../godmode/events/event_filter.php:148
#: ../../godmode/events/event_edit_filter.php:372
-#: ../../godmode/events/custom_events.php:104
-#: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679
-#: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982
-#: ../../mobile/operation/events.php:983
+#: ../../godmode/events/custom_events.php:104 ../../mobile/operation/events.php:678
+#: ../../mobile/operation/events.php:679 ../../mobile/operation/events.php:820
+#: ../../mobile/operation/events.php:982 ../../mobile/operation/events.php:983
#: ../../include/functions_reporting_html.php:1060
#: ../../include/functions_reporting_html.php:1068
#: ../../include/functions_reporting_html.php:1308
@@ -12044,12 +11886,10 @@ msgstr "コメント"
#: ../../godmode/massive/massive_edit_modules.php:1062
#: ../../godmode/reporting/reporting_builder.item_editor.php:85
#: ../../godmode/reporting/reporting_builder.item_editor.php:3964
-#: ../../godmode/events/custom_events.php:106
-#: ../../mobile/operation/events.php:845
+#: ../../godmode/events/custom_events.php:106 ../../mobile/operation/events.php:845
#: ../../include/functions_reporting_html.php:1772
#: ../../include/functions_reporting_html.php:3715
-#: ../../include/functions_treeview.php:152
-#: ../../include/functions_profile.php:205
+#: ../../include/functions_treeview.php:152 ../../include/functions_profile.php:205
#: ../../include/lib/Dashboard/Widgets/events_list.php:461
#: ../../include/lib/Dashboard/Widgets/tree_view.php:342
#: ../../include/functions_events.php:211 ../../include/functions_events.php:280
@@ -12070,9 +11910,9 @@ msgstr "拡張 ID"
#: ../../enterprise/meta/include/functions_events_meta.php:118
#: ../../godmode/setup/setup_integria.php:464
#: ../../godmode/setup/setup_integria.php:598
-#: ../../godmode/events/custom_events.php:109
-#: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214
-#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936
+#: ../../godmode/events/custom_events.php:109 ../../mobile/operation/events.php:808
+#: ../../include/functions_events.php:214 ../../include/functions_events.php:289
+#: ../../include/functions_events.php:4936
#: ../../operation/incidents/integriaims_export_csv.php:89
#: ../../operation/incidents/configure_integriaims_incident.php:339
#: ../../operation/incidents/list_integriaims_incidents.php:360
@@ -12116,8 +11956,7 @@ msgstr "モジュールの状態"
#: ../../enterprise/meta/include/process_reset_pass.php:28
#: ../../enterprise/meta/include/reset_pass.php:28
-#: ../../enterprise/meta/general/login_page.php:99
-#: ../../general/login_page.php:101
+#: ../../enterprise/meta/general/login_page.php:99 ../../general/login_page.php:101
msgid "Splash login"
msgstr "スプラッシュログイン"
@@ -12202,8 +12041,8 @@ msgstr "メタコンソール"
#: ../../enterprise/meta/general/login_page.php:316
#: ../../enterprise/include/process_reset_pass.php:239
#: ../../enterprise/include/reset_pass.php:213
-#: ../../enterprise/include/reset_pass.php:320
-#: ../../include/functions_menu.php:955 ../../general/login_page.php:460
+#: ../../enterprise/include/reset_pass.php:320 ../../include/functions_menu.php:955
+#: ../../general/login_page.php:460
msgid "Build"
msgstr "ビルド"
@@ -12708,8 +12547,7 @@ msgid "type mode zoom charts"
msgstr "タイプモード拡大グラフ"
#: ../../enterprise/meta/include/functions_meta.php:1604
-#: ../../include/functions_config.php:1270
-#: ../../include/functions_config.php:1274
+#: ../../include/functions_config.php:1270 ../../include/functions_config.php:1274
msgid "Random background"
msgstr "ランダム背景"
@@ -13006,9 +12844,8 @@ msgstr "%s - フレキシブルモニタリングシステム"
#: ../../include/functions_menu.php:892 ../../include/functions_ui.php:306
#: ../../include/class/SatelliteAgent.class.php:831
#: ../../include/class/Diagnostics.class.php:1855
-#: ../../include/functions_events.php:2966
-#: ../../include/functions_events.php:3166 ../../index.php:1555
-#: ../../operation/users/user_edit.php:1241
+#: ../../include/functions_events.php:2966 ../../include/functions_events.php:3166
+#: ../../index.php:1555 ../../operation/users/user_edit.php:1241
#: ../../operation/users/user_edit.php:1307 ../../general/register.php:168
#: ../../general/mysqlerr.php:28 ../../general/login_page.php:566
msgid "Error"
@@ -13034,8 +12871,8 @@ msgid "User to reset password"
msgstr "パスワードリセットするユーザ"
#: ../../enterprise/meta/include/reset_pass.php:103
-#: ../../enterprise/meta/index.php:757
-#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928
+#: ../../enterprise/meta/index.php:757 ../../enterprise/include/reset_pass.php:195
+#: ../../index.php:928
msgid "Reset password"
msgstr "パスワードをリセット"
@@ -13045,9 +12882,8 @@ msgstr "パスワードをリセット"
#: ../../enterprise/include/process_reset_pass.php:174
#: ../../enterprise/include/reset_pass.php:295
#: ../../enterprise/include/reset_pass.php:298
-#: ../../include/functions_config.php:2678
-#: ../../include/functions_config.php:2730 ../../general/login_page.php:527
-#: ../../general/login_page.php:530
+#: ../../include/functions_config.php:2678 ../../include/functions_config.php:2730
+#: ../../general/login_page.php:527 ../../general/login_page.php:530
msgid "ONE TOOL TO RULE THEM ALL"
msgstr "一つのツールですべてを管理"
@@ -13115,8 +12951,8 @@ msgid ""
"The relation type: %s to %s -> %s was not saved. This relationship already "
"exists in the database"
msgstr ""
-"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既"
-"に存在します"
+"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既に"
+"存在します"
#: ../../enterprise/meta/include/functions_relations.php:230
#, php-format
@@ -13151,11 +12987,11 @@ msgstr "サーバとの接続が切断されました"
#: ../../operation/gis_maps/public_console.php:278
#: ../../operation/events/sound_events.php:169
msgid ""
-"Connection to the server has been lost. Please check your internet connection "
-"or contact with administrator."
+"Connection to the server has been lost. Please check your internet connection or "
+"contact with administrator."
msgstr ""
-"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡して"
-"ください。"
+"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡してく"
+"ださい。"
#: ../../enterprise/meta/index.php:345 ../../mobile/include/user.class.php:303
#: ../../include/ajax/double_auth.ajax.php:515 ../../index.php:380
@@ -13228,8 +13064,8 @@ msgstr "メール送信エラー"
msgid ""
"System is not centralised, please go to %s to perform a database merge process."
msgstr ""
-"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行っ"
-"てください。"
+"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行って"
+"ください。"
#: ../../enterprise/meta/index.php:1001
#, php-format
@@ -13265,9 +13101,8 @@ msgstr "エージェントが見つかりました"
#: ../../mobile/operation/agents.php:99 ../../mobile/operation/agents.php:417
#: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422
#: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:1006
-#: ../../include/functions_treeview.php:671
-#: ../../include/functions_events.php:4389 ../../operation/search_users.php:46
-#: ../../operation/search_agents.php:58
+#: ../../include/functions_treeview.php:671 ../../include/functions_events.php:4389
+#: ../../operation/search_users.php:46 ../../operation/search_agents.php:58
#: ../../operation/agentes/log_sources_status.php:58
#: ../../operation/agentes/estado_agente.php:1055
#: ../../operation/agentes/ver_agente.php:1046
@@ -13344,8 +13179,8 @@ msgid ""
"Metaconsole needs previous activation from regular console, please contact "
"system administrator if you need assistance.
"
msgstr ""
-"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが"
-"必要であればシステム管理者へ問い合わせてください。
"
+"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが必"
+"要であればシステム管理者へ問い合わせてください。
"
#: ../../enterprise/meta/general/header.php:69
#: ../../enterprise/meta/general/header.php:75
@@ -13386,10 +13221,9 @@ msgstr "自動更新の無効化"
#: ../../enterprise/meta/general/header.php:264
#: ../../enterprise/meta/general/header.php:266
#: ../../enterprise/meta/general/main_header.php:535
-#: ../../mobile/include/functions_web.php:34
-#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460
-#: ../../mobile/operation/home.php:148 ../../general/header.php:443
-#: ../../general/header.php:445
+#: ../../mobile/include/functions_web.php:34 ../../mobile/include/ui.class.php:225
+#: ../../mobile/include/user.class.php:460 ../../mobile/operation/home.php:148
+#: ../../general/header.php:443 ../../general/header.php:445
msgid "Logout"
msgstr "ログアウト"
@@ -13528,10 +13362,8 @@ msgstr "ビジュアルコンソールウィザード"
#: ../../enterprise/include/functions_enterprise.php:439
#: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371
#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290
-#: ../../include/functions_reports.php:925
-#: ../../include/functions_reports.php:929
-#: ../../include/functions_reports.php:933
-#: ../../include/functions_reports.php:937
+#: ../../include/functions_reports.php:925 ../../include/functions_reports.php:929
+#: ../../include/functions_reports.php:933 ../../include/functions_reports.php:937
msgid "Netflow"
msgstr "Netflow"
@@ -13606,10 +13438,9 @@ msgstr "リンク"
#: ../../enterprise/meta/general/main_menu.php:806
#: ../../enterprise/meta/general/main_menu.php:807
#: ../../enterprise/extensions/csv_import_group/main.php:23
-#: ../../extensions/extension_uploader.php:30
-#: ../../extensions/api_checker.php:200 ../../extensions/files_repo.php:132
-#: ../../extensions/dbmanager.php:102 ../../extensions/pandora_logs.php:86
-#: ../../godmode/extensions.php:29
+#: ../../extensions/extension_uploader.php:30 ../../extensions/api_checker.php:200
+#: ../../extensions/files_repo.php:132 ../../extensions/dbmanager.php:102
+#: ../../extensions/pandora_logs.php:86 ../../godmode/extensions.php:29
msgid "Extensions"
msgstr "拡張"
@@ -13647,11 +13478,11 @@ msgstr "レポート"
#: ../../enterprise/meta/general/noaccesssaml.php:135
#: ../../general/noaccesssaml.php:135
msgid ""
-"Access to this page is restricted to authorized users SAML only, please "
-"contact system administrator if you need assistance."
+"Access to this page is restricted to authorized users SAML only, please contact "
+"system administrator if you need assistance."
msgstr ""
-"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が"
-"必要な場合はシステム管理者に連絡してください。"
+"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が必"
+"要な場合はシステム管理者に連絡してください。"
#: ../../enterprise/meta/general/noaccesssaml.php:137
#: ../../general/noaccesssaml.php:137
@@ -13661,26 +13492,26 @@ msgid ""
"information the error to access this page are recorded in security logs of %s "
"System Database"
msgstr ""
-"SAML 認証が適切に構成されていることを確認してください。 詳細については、この"
-"ページへのアクセスエラーが %s システムデータベースのセキュリティログに記録され"
-"ています。"
+"SAML 認証が適切に構成されていることを確認してください。 詳細については、このペー"
+"ジへのアクセスエラーが %s システムデータベースのセキュリティログに記録されていま"
+"す。"
#: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:152
msgid ""
"Access to this page is restricted to authorized users only, please contact "
"system administrator if you need assistance."
msgstr ""
-"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要"
-"な場合はシステム管理者に連絡してください。"
+"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な"
+"場合はシステム管理者に連絡してください。"
#: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:154
#, php-format
msgid ""
-"Please know that all attempts to access this page are recorded in security "
-"logs of %s System Database"
+"Please know that all attempts to access this page are recorded in security logs "
+"of %s System Database"
msgstr ""
-"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに"
-"記録されます。"
+"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに記"
+"録されます。"
#: ../../enterprise/meta/general/main_menu.php:240
#: ../../enterprise/godmode/policies/policies.php:611
@@ -13690,10 +13521,8 @@ msgstr ""
#: ../../godmode/agentes/configurar_agente.php:468
#: ../../godmode/agentes/configurar_agente.php:725
#: ../../godmode/setup/setup_integria.php:366
-#: ../../include/functions_reports.php:890
-#: ../../include/functions_reports.php:897
-#: ../../include/functions_reports.php:904
-#: ../../include/functions_reports.php:905
+#: ../../include/functions_reports.php:890 ../../include/functions_reports.php:897
+#: ../../include/functions_reports.php:904 ../../include/functions_reports.php:905
#: ../../include/functions_reports.php:909
#: ../../include/functions_reporting.php:3124
#: ../../operation/agentes/ver_agente.php:1450
@@ -13716,9 +13545,8 @@ msgstr "サウンドコンソール"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:376
#: ../../godmode/menu.php:52 ../../godmode/setup/setup_ehorus.php:141
#: ../../godmode/setup/setup_integria.php:654 ../../include/ajax/events.php:2493
-#: ../../operation/users/user_edit.php:874
-#: ../../operation/users/user_edit.php:927 ../../operation/menu.php:571
-#: ../../operation/events/events.php:1517
+#: ../../operation/users/user_edit.php:874 ../../operation/users/user_edit.php:927
+#: ../../operation/menu.php:571 ../../operation/events/events.php:1517
msgid "Start"
msgstr "開始"
@@ -13885,8 +13713,8 @@ msgid ""
"Your session has ended. Please close your browser window to close this %s "
"session."
msgstr ""
-"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを"
-"閉じてください。"
+"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを閉"
+"じてください。"
#: ../../enterprise/load_enterprise.php:568 ../../godmode/setup/license.php:111
msgid "License updated"
@@ -13942,8 +13770,8 @@ msgid ""
"node has a metaconsole license and cannot contact with the metaconsole."
msgstr ""
"メタコンソールに到達できません "
-"
このノードはメタコンソールライセンスを持っていますがメタコンソールに接"
-"続できません。"
+"
このノードはメタコンソールライセンスを持っていますがメタコンソールに接続"
+"できません。"
#: ../../enterprise/load_enterprise.php:874
#: ../../enterprise/load_enterprise.php:880
@@ -13953,8 +13781,8 @@ msgid ""
"License exceeded
This "
"license allows %d agents and you have %d agents configured."
msgstr ""
-"ライセンス超過
このライセン"
-"スは %d エージェントまでですが、%d エージェントが設定されています。"
+"ライセンス超過
このライセンス"
+"は %d エージェントまでですが、%d エージェントが設定されています。"
#: ../../enterprise/load_enterprise.php:875
#: ../../enterprise/load_enterprise.php:882
@@ -13971,8 +13799,7 @@ msgstr "ライセンスを拡張するには %s へ連絡してください。"
#: ../../enterprise/load_enterprise.php:899
#: ../../enterprise/load_enterprise.php:926
#: ../../enterprise/load_enterprise.php:934
-msgid ""
-"This console will work in limited mode. Enterprise features will not work."
+msgid "This console will work in limited mode. Enterprise features will not work."
msgstr "このコンソールは制限モードで動作します。Enterprise 機能は動作しません。"
#: ../../enterprise/load_enterprise.php:890
@@ -13981,8 +13808,8 @@ msgid ""
"License exceeded
This "
"license allows %d agents and you have %d agents configured."
msgstr ""
-"ライセンス超過
このライセ"
-"ンスは %d エージェントまでですが、%d エージェントが設定されています。"
+"ライセンス超過
このライセン"
+"スは %d エージェントまでですが、%d エージェントが設定されています。"
#: ../../enterprise/load_enterprise.php:909
#, php-format
@@ -13990,14 +13817,14 @@ msgid ""
"License exceeded
This "
"license allows %d modules and you have %d modules configured."
msgstr ""
-"ライセンス超過
このラインセ"
-"ンスは %d モジュールまでですが、%d モジュールが設定されています。"
+"ライセンス超過
このラインセン"
+"スは %d モジュールまでですが、%d モジュールが設定されています。"
#: ../../enterprise/load_enterprise.php:919
#: ../../enterprise/load_enterprise.php:925
msgid ""
-"This license has expired. "
-"
You can not get updates until you renew the license."
+"This license has expired.
You "
+"can not get updates until you renew the license."
msgstr ""
"このライセンスは期限切れです。 "
"
ライセンスを更新するまでアップデートの入手はできません。"
@@ -14022,8 +13849,8 @@ msgid ""
"limitations, but without support or updates."
msgstr ""
"このライセンスはサポート外です。 "
-"
この %s インストールは引き続き制限なく動作しますが、サポートや更新はあ"
-"りません。"
+"
この %s インストールは引き続き制限なく動作しますが、サポートや更新はあり"
+"ません。"
#: ../../enterprise/extensions/disabled/check_acls.php:16
msgid "ACL users for this agent"
@@ -14136,22 +13963,22 @@ msgstr "VMware 表示"
#: ../../enterprise/include/class/Omnishell.class.php:341
#: ../../enterprise/operation/log/elasticsearch_interface.php:46
#: ../../enterprise/tools/ipam/ipam.php:449
-#: ../../extensions/extension_uploader.php:39
-#: ../../extensions/api_checker.php:209 ../../extensions/db_status.php:34
-#: ../../extensions/files_repo.php:141 ../../extensions/files_repo.php:253
-#: ../../extensions/pandora_logs.php:95 ../../godmode/extensions.php:38
-#: ../../godmode/menu.php:417 ../../godmode/setup/news.php:39
-#: ../../godmode/setup/links.php:29 ../../godmode/setup/file_manager.php:56
+#: ../../extensions/extension_uploader.php:39 ../../extensions/api_checker.php:209
+#: ../../extensions/db_status.php:34 ../../extensions/files_repo.php:141
+#: ../../extensions/files_repo.php:253 ../../extensions/pandora_logs.php:95
+#: ../../godmode/extensions.php:38 ../../godmode/menu.php:417
+#: ../../godmode/setup/news.php:39 ../../godmode/setup/links.php:29
+#: ../../godmode/setup/file_manager.php:56
#: ../../include/class/EventSound.class.php:226
#: ../../include/class/Diagnostics.class.php:159
msgid "Admin tools"
msgstr "管理ツール"
#: ../../enterprise/extensions/csv_import_group/main.php:36
-#: ../../extensions/extension_uploader.php:43
-#: ../../extensions/api_checker.php:213 ../../extensions/files_repo.php:145
-#: ../../extensions/files_repo.php:257 ../../extensions/pandora_logs.php:99
-#: ../../godmode/extensions.php:42 ../../godmode/menu.php:537
+#: ../../extensions/extension_uploader.php:43 ../../extensions/api_checker.php:213
+#: ../../extensions/files_repo.php:145 ../../extensions/files_repo.php:257
+#: ../../extensions/pandora_logs.php:99 ../../godmode/extensions.php:42
+#: ../../godmode/menu.php:537
msgid "Extension manager"
msgstr "拡張マネージャ"
@@ -14590,8 +14417,8 @@ msgid ""
"Looking for VMware configuration? You can configure several tasks using "
"Discovery Applications."
msgstr ""
-"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設"
-"定できます。"
+"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設定"
+"できます。"
#: ../../enterprise/extensions/vmware/vmware_view.php:1299
#: ../../enterprise/extensions/vmware/vmware_view.php:1586
@@ -14708,13 +14535,13 @@ msgstr "こちら"
#: ../../enterprise/extensions/vmware/vmware_view.php:1872
#, php-format
msgid ""
-"This map is a quick representation of all your VMware entities detected. You "
-"can create a custom VMware map by defining a network map based on your VMware "
+"This map is a quick representation of all your VMware entities detected. You can "
+"create a custom VMware map by defining a network map based on your VMware "
"discovery task %s"
msgstr ""
"このマップは、検出されたすべての VMware エンティティをすばやく表したものです。 "
-"VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタ"
-"ム VMware マップを作成できます。"
+"VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタム "
+"VMware マップを作成できます。"
#: ../../enterprise/extensions/vmware/vmware_manager.php:227
msgid "Power Status: "
@@ -14747,8 +14574,8 @@ msgid ""
"This node is configured with centralized mode. All group information is read "
"only. Go to %s to import the CSV."
msgstr ""
-"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専"
-"用です。CSV をインポートするには %s に移動します。"
+"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専用"
+"です。CSV をインポートするには %s に移動します。"
#: ../../enterprise/extensions/csv_import_group.php:75
msgid "CSV group import"
@@ -14768,8 +14595,8 @@ msgid ""
"You can activate it manually here or "
"automatically filling the form below:"
msgstr ""
-"ここから手動で有効化するか、以下のフォーム"
-"から自動入力できます:"
+"ここから手動で有効化するか、以下のフォームか"
+"ら自動入力できます:"
#: ../../enterprise/load_html_extra.php:213
msgid "Auth Key:"
@@ -14860,8 +14687,7 @@ msgstr "警告状態"
#: ../../godmode/massive/massive_edit_modules.php:900
#: ../../godmode/alerts/configure_alert_template.php:870
#: ../../include/functions_reporting_html.php:5528
-#: ../../include/functions_treeview.php:91
-#: ../../include/functions_treeview.php:103
+#: ../../include/functions_treeview.php:91 ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:676
#: ../../include/lib/Dashboard/Widgets/top_n.php:282
msgid "Min."
@@ -14884,8 +14710,7 @@ msgstr "最小"
#: ../../godmode/massive/massive_edit_modules.php:902
#: ../../godmode/alerts/configure_alert_template.php:883
#: ../../include/functions_reporting_html.php:5529
-#: ../../include/functions_treeview.php:91
-#: ../../include/functions_treeview.php:103
+#: ../../include/functions_treeview.php:91 ../../include/functions_treeview.php:103
#: ../../include/functions_alerts.php:675
#: ../../include/lib/Dashboard/Widgets/top_n.php:281
msgid "Max."
@@ -14903,8 +14728,7 @@ msgstr "最大"
#: ../../godmode/agentes/module_manager_editor_common.php:596
#: ../../godmode/massive/massive_edit_modules.php:610
#: ../../godmode/massive/massive_edit_modules.php:701
-#: ../../include/functions_treeview.php:89
-#: ../../include/functions_treeview.php:101
+#: ../../include/functions_treeview.php:89 ../../include/functions_treeview.php:101
msgid "Str."
msgstr "文字列"
@@ -14946,8 +14770,7 @@ msgstr "警告状態の期間。"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589
#: ../../godmode/modules/manage_network_components_form_common.php:216
#: ../../godmode/massive/massive_edit_modules.php:667
-#: ../../include/functions_treeview.php:107
-#: ../../include/functions_alerts.php:680
+#: ../../include/functions_treeview.php:107 ../../include/functions_alerts.php:680
#: ../../include/class/TreeService.class.php:432
#: ../../include/class/TreeService.class.php:641
msgid "Critical status"
@@ -15041,8 +14864,8 @@ msgstr "連続抑制タイムアウト"
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964
#: ../../godmode/massive/massive_edit_modules.php:1053
msgid ""
-"Timeout in secs from start of flip flop counting. If this value is exceeded, "
-"FF counter is reset. Set to 0 for no timeout."
+"Timeout in secs from start of flip flop counting. If this value is exceeded, FF "
+"counter is reset. Set to 0 for no timeout."
msgstr ""
"連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリ"
"セットされます。0に設定するとタイムアウトしません。"
@@ -15121,8 +14944,8 @@ msgid ""
"Name is missed. Please add a line with \"module_name yourmodulename\" to data "
"configuration"
msgstr ""
-"名前がありません。データ設定に \"module_name モジュール名\" という行を追加して"
-"ください。"
+"名前がありません。データ設定に \"module_name モジュール名\" という行を追加してく"
+"ださい。"
#: ../../enterprise/godmode/modules/configure_local_component.php:522
#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253
@@ -15130,8 +14953,8 @@ msgid ""
"Type is missed. Please add a line with \"module_type yourmoduletype\" to data "
"configuration"
msgstr ""
-"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追"
-"加してください。"
+"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加"
+"してください。"
#: ../../enterprise/godmode/modules/configure_local_component.php:523
#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254
@@ -15334,8 +15157,8 @@ msgid ""
"This node is configured with centralized mode. All local components are read "
"only. Go to %s to manage them."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは"
-"読み取り専用です。それらを管理するには、%s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは読"
+"み取り専用です。それらを管理するには、%s に移動します。"
#: ../../enterprise/godmode/modules/local_components.php:339
#: ../../godmode/modules/manage_network_components.php:447
@@ -15429,16 +15252,15 @@ msgstr "エージェント自動設定情報"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90
msgid "You must click the Create or Update buttom for a correct configuration!!!"
msgstr ""
-"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要がありま"
-"す!!!"
+"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要があります!!!"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98
msgid ""
"Cannot create autoconfiguration from read only console, please create from "
"metaconsole (centralized management)"
msgstr ""
-"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成して"
-"ください(中央管理)"
+"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成してく"
+"ださい(中央管理)"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139
msgid "Cannot create autoconfiguration in metaconsole"
@@ -15453,8 +15275,8 @@ msgid ""
"Cannot udpate autoconfiguration from read only console, please create from "
"metaconsole (centralized management)"
msgstr ""
-"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成して"
-"ください(中央管理)"
+"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成してく"
+"ださい(中央管理)"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194
msgid "Cannot update autoconfiguration"
@@ -15466,8 +15288,8 @@ msgid ""
"Cannot modify autoconfiguration from read only console, please create from "
"metaconsole (centralized management)"
msgstr ""
-"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールか"
-"ら作成してください(中央管理)"
+"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールから"
+"作成してください(中央管理)"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:304
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:93
@@ -15480,11 +15302,11 @@ msgstr "エージェント自動設定一覧"
#: ../../godmode/modules/manage_inventory_modules.php:74
#, php-format
msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from centralized manager console. Go to %s to manage it."
+"This console is not manager of this environment, please manage this feature from "
+"centralized manager console. Go to %s to manage it."
msgstr ""
-"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールから"
-"この機能を管理してください。管理するには %s に移動します。"
+"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールからこ"
+"の機能を管理してください。管理するには %s に移動します。"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:373
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:146
@@ -15690,8 +15512,8 @@ msgid ""
"Put here any extra configuration you want to be applied to any new agent "
"matching previously defined rules"
msgstr ""
-"以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入"
-"力します"
+"以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入力"
+"します"
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870
#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:910
@@ -15976,11 +15798,11 @@ msgstr "コレクションを更新しました"
#: ../../enterprise/godmode/agentes/collections.php:176
#, php-format
msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from %s."
+"This console is not manager of this environment, please manage this feature from "
+"%s."
msgstr ""
-"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理し"
-"てください。"
+"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理して"
+"ください。"
#: ../../enterprise/godmode/agentes/collections.data.php:463
msgid "Please go to the metaconsole and apply this collection"
@@ -16104,8 +15926,8 @@ msgid ""
"Delete this conf file implies that for restore you must reactive remote config "
"in the local agent.
Are you sure?"
msgstr ""
-"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効"
-"化する必要があります。
よろしいですか?"
+"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効化"
+"する必要があります。
よろしいですか?"
#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:339
msgid "Add Modules"
@@ -16141,8 +15963,8 @@ msgid ""
"Support for IE and Edge browsers is experimental. Tests might not work as "
"expected."
msgstr ""
-"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能"
-"しない可能性があります。"
+"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能し"
+"ない可能性があります。"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:210
msgid "User data dir"
@@ -16152,23 +15974,20 @@ msgstr "ユーザデータディレクトリ"
#, php-format
msgid "Google Chrome only. Set user data dir, specify the full path %s."
msgstr ""
-"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定しま"
-"す。"
+"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定します。"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231
#: ../../godmode/tag/edit_tag.php:76 ../../include/class/TipsWindow.class.php:718
-#: ../../include/class/TipsWindow.class.php:885
-#: ../../operation/search_users.php:47
+#: ../../include/class/TipsWindow.class.php:885 ../../operation/search_users.php:47
msgid "Profile"
msgstr "プロファイル"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232
#, php-format
-msgid ""
-"Google Chrome only. Use a custom profile, specify the full folder name %s."
+msgid "Google Chrome only. Use a custom profile, specify the full folder name %s."
msgstr ""
-"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定"
-"します。"
+"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定し"
+"ます。"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252
msgid "Accept insecure certificates"
@@ -16214,11 +16033,11 @@ msgstr "カスタムID"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497
#: ../../godmode/agentes/module_manager.php:902
msgid ""
-"The policy modules of data type will only update their intervals when policy "
-"is applied."
+"The policy modules of data type will only update their intervals when policy is "
+"applied."
msgstr ""
-"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔"
-"でのみ更新されます。"
+"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔で"
+"のみ更新されます。"
#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527
#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961
@@ -16394,8 +16213,7 @@ msgstr "設定の複製"
#: ../../enterprise/godmode/agentes/manage_config_remote.php:345
msgid "The action to be performed cannot be reversed. Are you sure to continue?"
-msgstr ""
-"実行したアクションを元に戻すことはできません。 続行してもよろしいですか?"
+msgstr "実行したアクションを元に戻すことはできません。 続行してもよろしいですか?"
#: ../../enterprise/godmode/agentes/module_manager.php:48
msgid "Create a new web analysis module"
@@ -16421,16 +16239,16 @@ msgstr "新規ウェブ分析モジュールの作成"
#: ../../enterprise/operation/agentes/policy_view.php:58
#, php-format
msgid ""
-"This node is configured with centralized mode. All policies information is "
-"read only. Go to %s to manage it."
+"This node is configured with centralized mode. All policies information is read "
+"only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専"
-"用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専用"
+"です。管理するには %s に移動します。"
#: ../../enterprise/godmode/policies/policy_plugins.php:56
msgid ""
-"Successfully added to delete pending plugins. Will be deleted in the next "
-"policy application."
+"Successfully added to delete pending plugins. Will be deleted in the next policy "
+"application."
msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。"
#: ../../enterprise/godmode/policies/policy_plugins.php:57
@@ -16529,8 +16347,8 @@ msgstr " の作成ができませんでした"
#: ../../enterprise/godmode/policies/policy_alerts.php:266
#: ../../enterprise/godmode/policies/policy_external_alerts.php:157
msgid ""
-"Successfully added to delete pending alerts. Will be deleted in the next "
-"policy application."
+"Successfully added to delete pending alerts. Will be deleted in the next policy "
+"application."
msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。"
#: ../../enterprise/godmode/policies/policy_alerts.php:291
@@ -16647,8 +16465,8 @@ msgid ""
"Force the creation of modules even if the software agent does not have remote "
"configuration"
msgstr ""
-"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制し"
-"ます"
+"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制しま"
+"す"
#: ../../enterprise/godmode/policies/configure_policy.php:151
msgid "Use secondary groups"
@@ -16659,8 +16477,8 @@ msgid ""
"Policy will be applied to those agents belonging to groups or secondary groups "
"that have been selected"
msgstr ""
-"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適"
-"用されます"
+"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適用"
+"されます"
#: ../../enterprise/godmode/policies/policy_modules.php:300
msgid ""
@@ -16707,15 +16525,14 @@ msgstr "データ設定内のモジュールタイプが空です。フォーム
#: ../../enterprise/godmode/policies/policy_modules.php:1285
msgid ""
"The module name in Data configuration is empty, take from text field of form."
-msgstr ""
-"データ設定内のモジュール名が空です。テキストフィールドに入力してください。"
+msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。"
#: ../../enterprise/godmode/policies/policy_modules.php:1315
#: ../../enterprise/godmode/policies/policy_modules.php:1328
#: ../../enterprise/godmode/policies/policy_inventory_modules.php:171
msgid ""
-"Successfully added to delete pending modules. Will be deleted in the next "
-"policy application."
+"Successfully added to delete pending modules. Will be deleted in the next policy "
+"application."
msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。"
#: ../../enterprise/godmode/policies/policy_modules.php:1319
@@ -16812,8 +16629,8 @@ msgid ""
"Starting with Pandora FMS version 760, assigning an entire group to a policy "
"will apply it automatically to all the new agents added to that group."
msgstr ""
-"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグ"
-"ループに追加されたすべての新しいエージェントに自動的に適用されます。"
+"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグルー"
+"プに追加されたすべての新しいエージェントに自動的に適用されます。"
#: ../../enterprise/godmode/policies/policy_queue.php:146
#, php-format
@@ -17037,8 +16854,7 @@ msgstr "ポリシーを削除するにはエージェントがあってはいけ
#: ../../enterprise/godmode/policies/policies.php:672
msgid "A policy with agents cannot be deleted. Purge it first"
msgstr ""
-"エージェントのあるポリシーは削除できません。先にエージェントを削除してくださ"
-"い。"
+"エージェントのあるポリシーは削除できません。先にエージェントを削除してください。"
#: ../../enterprise/godmode/policies/policies.php:682
msgid "Deleting all policy agents"
@@ -17161,8 +16977,8 @@ msgstr "インベントリモジュール"
#: ../../enterprise/godmode/policies/policy_collections.php:118
msgid ""
-"Successfully added to delete the collection. Will be deleted in the next "
-"policy application."
+"Successfully added to delete the collection. Will be deleted in the next policy "
+"application."
msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。"
#: ../../enterprise/godmode/policies/policy_collections.php:295
@@ -17188,14 +17004,14 @@ msgstr "追加するコレクションがありません"
#: ../../enterprise/godmode/policies/policy_agents.php:101
msgid ""
-"Successfully added to delete pending agents. Will be deleted in the next "
-"policy application."
+"Successfully added to delete pending agents. Will be deleted in the next policy "
+"application."
msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。"
#: ../../enterprise/godmode/policies/policy_agents.php:123
msgid ""
-"Successfully added to delete pending groups. Will be deleted in the next "
-"policy application."
+"Successfully added to delete pending groups. Will be deleted in the next policy "
+"application."
msgstr "削除保留中グループに追加しました。 次のポリシー適用で削除されます。"
#: ../../enterprise/godmode/policies/policy_agents.php:147
@@ -17221,11 +17037,11 @@ msgstr "追加しました %d"
#: ../../enterprise/godmode/policies/policy_agents.php:281
msgid ""
-"Number of agents added to the policy concurrently is too large. This might "
-"cause the operation to fail or lead to performance issues."
+"Number of agents added to the policy concurrently is too large. This might cause "
+"the operation to fail or lead to performance issues."
msgstr ""
-"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗"
-"したり、パフォーマンスの問題が発生したりする可能性があります。"
+"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗し"
+"たり、パフォーマンスの問題が発生したりする可能性があります。"
#: ../../enterprise/godmode/policies/policy_agents.php:288
msgid "Successfully added to policy"
@@ -17284,8 +17100,7 @@ msgstr "ポリシー内エージェント"
#: ../../extensions/module_groups.php:350
#: ../../godmode/reporting/visual_console_builder.wizard.php:368
#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57
-#: ../../mobile/operation/groups.php:77
-#: ../../include/functions_networkmap.php:1299
+#: ../../mobile/operation/groups.php:77 ../../include/functions_networkmap.php:1299
#: ../../include/functions_maps.php:46
#: ../../include/lib/Dashboard/Widgets/groups_status.php:231
#: ../../include/lib/Dashboard/Widgets/system_group_status.php:299
@@ -17338,8 +17153,7 @@ msgstr "R."
#: ../../enterprise/operation/agentes/policy_view.php:167
#: ../../enterprise/operation/agentes/policy_view.php:258
#: ../../enterprise/operation/agentes/policy_view.php:263
-#: ../../mobile/operation/agents.php:406
-#: ../../include/ajax/alert_list.ajax.php:286
+#: ../../mobile/operation/agents.php:406 ../../include/ajax/alert_list.ajax.php:286
#: ../../include/ajax/alert_list.ajax.php:311
#: ../../include/class/AuditLog.class.php:130
msgid "S."
@@ -17357,8 +17171,7 @@ msgstr "U."
#: ../../enterprise/godmode/policies/policy_agents.php:1348
#: ../../enterprise/godmode/admin_access_logs.php:54
#: ../../godmode/reporting/visual_console_builder.elements.php:134
-#: ../../mobile/operation/agents.php:407
-#: ../../include/class/AuditLog.class.php:130
+#: ../../mobile/operation/agents.php:407 ../../include/class/AuditLog.class.php:130
msgid "A."
msgstr "A."
@@ -17426,8 +17239,8 @@ msgid ""
"Some features of policy management are disabled because an instance of DB Tool "
"is running on a node."
msgstr ""
-"DB ツールのインスタンスがノード上で実行されているため、ポリシー管理の一部の機能"
-"が無効になっています。"
+"DB ツールのインスタンスがノード上で実行されているため、ポリシー管理の一部の機能が"
+"無効になっています。"
#: ../../enterprise/godmode/policies/policy.php:115
#: ../../enterprise/include/functions_policies.php:3805
@@ -17445,8 +17258,7 @@ msgstr "エージェントウィザード"
#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57
#: ../../include/class/CredentialStore.class.php:965
#: ../../include/class/SnmpConsole.class.php:221
-#: ../../operation/snmpconsole/snmp_statistics.php:104
-#: ../../operation/menu.php:259
+#: ../../operation/snmpconsole/snmp_statistics.php:104 ../../operation/menu.php:259
msgid "SNMP"
msgstr "SNMP"
@@ -17546,8 +17358,8 @@ msgid ""
"MIB files will be loaded and searched for SNMP trap definitions. They will not "
"be installed on the system! You can use the MIB uploader for that purpose."
msgstr ""
-"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストー"
-"ルされません。MIB アップローダはこの目的の範囲で利用できます。"
+"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストール"
+"されません。MIB アップローダはこの目的の範囲で利用できます。"
#: ../../enterprise/godmode/menu.php:16
msgid "Manage Satellite Server"
@@ -17950,8 +17762,7 @@ msgid "When select agents"
msgstr "エージェント選択時の動作"
#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265
-#: ../../extensions/agents_modules.php:489
-#: ../../extensions/agents_modules.php:493
+#: ../../extensions/agents_modules.php:489 ../../extensions/agents_modules.php:493
#: ../../godmode/agentes/planned_downtime.editor.php:1235
#: ../../godmode/massive/massive_delete_action_alerts.php:246
#: ../../godmode/massive/massive_delete_modules.php:555
@@ -18084,8 +17895,8 @@ msgid ""
"Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single "
"value, each Custom OIDs/Datas."
msgstr ""
-"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/"
-"データ フィールドで検索します。"
+"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/デー"
+"タ フィールドで検索します。"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262
@@ -18835,8 +18646,7 @@ msgstr "ランダムな名前"
#: ../../enterprise/godmode/services/services.service.php:612
#: ../../enterprise/operation/services/massive/services.create.php:679
msgid ""
-"This group will be used also to control access to this service and its "
-"elements."
+"This group will be used also to control access to this service and its elements."
msgstr ""
"このグループは、このサービスとその要素へのアクセスを制御するためにも使用されま"
"す。"
@@ -18940,12 +18750,12 @@ msgstr "SLA"
#: ../../enterprise/godmode/services/services.service.php:869
msgid ""
"Here are described the alert templates, which will use their default actions.\n"
-"\t\tYou can modify the default behaviour editing alerts in the agent who "
-"stores data and alert definitions about the service and the SLA status."
+"\t\tYou can modify the default behaviour editing alerts in the agent who stores "
+"data and alert definitions about the service and the SLA status."
msgstr ""
"アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n"
-"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントで"
-"アラートを編集することによりデフォルトの動作を変更できます。"
+"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでア"
+"ラートを編集することによりデフォルトの動作を変更できます。"
#: ../../enterprise/godmode/services/services.service.php:895
#: ../../enterprise/operation/services/massive/services.create.php:916
@@ -19007,8 +18817,7 @@ msgstr "SLA 障害サービスアラート"
#: ../../include/functions_reporting_html.php:862
#: ../../include/functions_reporting_html.php:3569
#: ../../include/functions_reporting_html.php:4866
-#: ../../include/functions_db.php:1974
-#: ../../include/class/ConfigPEN.class.php:674
+#: ../../include/functions_db.php:1974 ../../include/class/ConfigPEN.class.php:674
#: ../../include/class/ConfigPEN.class.php:698
#: ../../include/class/SatelliteAgent.class.php:1105
#: ../../include/class/HelpFeedBack.class.php:370
@@ -19024,16 +18833,16 @@ msgstr "OK"
#: ../../enterprise/godmode/services/services.service.php:1028
msgid ""
-"This change in the service configuration will delete the history of the "
-"service modules. Do you wish to continue?"
+"This change in the service configuration will delete the history of the service "
+"modules. Do you wish to continue?"
msgstr ""
-"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しま"
-"すか?"
+"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行します"
+"か?"
#: ../../enterprise/godmode/services/services.service.php:1030
msgid ""
-"This change in the service configuration will prevent the SLA modules from "
-"being created. Do you wish to continue?"
+"This change in the service configuration will prevent the SLA modules from being "
+"created. Do you wish to continue?"
msgstr ""
"このサービス設定の変更により、SLA モジュールを作成できなくなります。 続行します"
"か?"
@@ -19069,8 +18878,8 @@ msgstr "カスタムフィールド値"
#: ../../enterprise/godmode/services/services.elements.php:260
msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise."
msgstr ""
-"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視"
-"します。"
+"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視し"
+"ます。"
#: ../../enterprise/godmode/services/services.elements.php:265
msgid "MySQL Regular expressions case sensitive."
@@ -19180,12 +18989,12 @@ msgstr "ヒストリ設定有効化"
#, php-format
msgid ""
"Data will be available in active database as time as days you specify here. "
-"Older information will be sent to historical database. Note data will be "
-"purged from active database after %d days."
+"Older information will be sent to historical database. Note data will be purged "
+"from active database after %d days."
msgstr ""
-"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス"
-"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除"
-"されることに注意してください。"
+"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒスト"
+"リデータベースに送信されます。 データは %d 日後にメインのデータベースから削除され"
+"ることに注意してください。"
#: ../../enterprise/godmode/setup/setup_history.php:300
msgid "Data days old to keep in active database"
@@ -19198,9 +19007,9 @@ msgid ""
"here. Older information will be sent to historical database. Note data will be "
"purged from active database after %d days."
msgstr ""
-"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス"
-"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除"
-"されることに注意してください。"
+"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒスト"
+"リデータベースに送信されます。 データは %d 日後にメインのデータベースから削除され"
+"ることに注意してください。"
#: ../../enterprise/godmode/setup/setup_history.php:324
msgid "String data days old to keep in active database"
@@ -19211,8 +19020,8 @@ msgid ""
"Number of rows to be sent to historical database each 'delay' seconds. If you "
"experience issues running pandora_db, try decreasing this value."
msgstr ""
-"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題"
-"が発生した場合は、この値を減らしてみてください。"
+"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題が"
+"発生した場合は、この値を減らしてみてください。"
#: ../../enterprise/godmode/setup/setup_history.php:345
msgid "Transference block size (Step)"
@@ -19244,8 +19053,8 @@ msgid ""
"Automatically create partitions on specific database IDB files (tagente_datos, "
"tagente_datos_string, tevento). Monthly partitions."
msgstr ""
-"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)"
-"にパーティションを自動的に作成します。 月次のパーティションです。"
+"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)に"
+"パーティションを自動的に作成します。 月次のパーティションです。"
#: ../../enterprise/godmode/setup/setup_history.php:420
msgid "Automatic partition of big tables."
@@ -19263,8 +19072,8 @@ msgid ""
"active database after %d days."
msgstr ""
"イベントは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ"
-"データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除さ"
-"れることに注意してください。"
+"データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除され"
+"ることに注意してください。"
#: ../../enterprise/godmode/setup/setup_history.php:448
msgid "Events days old to keep in active database"
@@ -19294,13 +19103,13 @@ msgstr "ヒストリトラップ設定"
#: ../../enterprise/godmode/setup/setup_history.php:516
#, php-format
msgid ""
-"Traps will remain in active database a maximum of specified days, then they "
-"will be transferred to historical database. Note traps will be purged from "
-"active database after %d days."
+"Traps will remain in active database a maximum of specified days, then they will "
+"be transferred to historical database. Note traps will be purged from active "
+"database after %d days."
msgstr ""
"トラップは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ"
-"データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除さ"
-"れることに注意してください。"
+"データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除され"
+"ることに注意してください。"
#: ../../enterprise/godmode/setup/setup_history.php:523
msgid "Days old to keep in active database"
@@ -19376,11 +19185,10 @@ msgstr ""
#: ../../enterprise/godmode/setup/setup_history.php:746
msgid ""
"By enabling historical database, target connection will be tested. If needed, "
-"database schema will be applied on your selected target, do you want to "
-"proceed?"
+"database schema will be applied on your selected target, do you want to proceed?"
msgstr ""
-"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応"
-"じて、データベーススキーマが選択した対象に適用されます。続行しますか?"
+"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応じ"
+"て、データベーススキーマが選択した対象に適用されます。続行しますか?"
#: ../../enterprise/godmode/setup/setup_history.php:747
msgid ""
@@ -19388,9 +19196,9 @@ msgid ""
"old data will remain in previous node, unlinked from this console and not "
"maintained, do you want to proceed?"
msgstr ""
-"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されます"
-"が、古いデータは前のノードに残り、このコンソールからリンク解除され、維持されま"
-"せん。続行しますか?"
+"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されますが、"
+"古いデータは前のノードに残り、このコンソールからリンク解除され、維持されません。"
+"続行しますか?"
#: ../../enterprise/godmode/setup/setup_history.php:749
#, php-format
@@ -19398,17 +19206,17 @@ msgid ""
"Disabling historical database, you will not keep any data older than %d days. "
"Are you sure?"
msgstr ""
-"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろ"
-"しいですか?"
+"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろし"
+"いですか?"
#: ../../enterprise/godmode/setup/setup_history.php:753
#, php-format
msgid ""
-"Historical database allows you to keep data older than %d days. This action "
-"will produce no changes. Historical database will remain disabled."
+"Historical database allows you to keep data older than %d days. This action will "
+"produce no changes. Historical database will remain disabled."
msgstr ""
-"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクショ"
-"ンでは変更は行われません。ヒストリデータベースは無効のままになります。"
+"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクション"
+"では変更は行われません。ヒストリデータベースは無効のままになります。"
#: ../../enterprise/godmode/setup/setup_history.php:758
msgid ""
@@ -19416,9 +19224,9 @@ msgid ""
"needed, database schema will be applied on your selected target. Information "
"stored in previous configuration will be IGNORED, do you want to proceed?"
msgstr ""
-"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必"
-"要に応じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存"
-"された情報は無視されます。続行しますか?"
+"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必要"
+"に応じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存され"
+"た情報は無視されます。続行しますか?"
#: ../../enterprise/godmode/setup/setup_history.php:761
msgid "Please ensure all fields matches your needs."
@@ -19432,14 +19240,14 @@ msgstr "更新が予定されています。"
msgid ""
" If you are replicating events, events validated or deleted on the metaconsole "
"WILL NOT be deleted or validated here. This option is just to allow local "
-"pandora users to see events, but not to operate with them. Operation, when "
-"event replication is enabled, should be done only in metaconsole"
+"pandora users to see events, but not to operate with them. Operation, when event "
+"replication is enabled, should be done only in metaconsole"
msgstr ""
-" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここで"
-"は削除または検証されません。 このオプションは、ローカルの pandora ユーザがイベ"
-"ントを表示できるようにするためだけのものであり、イベントを操作するためのもので"
-"はありません。イベントの複製が有効になっている場合の操作は、メタコンソールでの"
-"み実行する必要があります。"
+" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここでは"
+"削除または検証されません。 このオプションは、ローカルの pandora ユーザがイベント"
+"を表示できるようにするためだけのものであり、イベントを操作するためのものではあり"
+"ません。イベントの複製が有効になっている場合の操作は、メタコンソールでのみ実行す"
+"る必要があります。"
#: ../../enterprise/godmode/setup/setup.php:45
msgid "Yes and change status"
@@ -19590,8 +19398,8 @@ msgid ""
"Token previously configured on the destination Pandora console in order to use "
"delegated authentification."
msgstr ""
-"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークン"
-"です。"
+"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンで"
+"す。"
#: ../../enterprise/godmode/setup/setup_metaconsole.php:274
msgid "Console URLxxxxxx"
@@ -19690,12 +19498,11 @@ msgstr "OP"
#: ../../enterprise/godmode/setup/setup_auth.php:1411
#: ../../enterprise/godmode/setup/setup_acl.php:68
#: ../../godmode/groups/configure_group.php:108
-#: ../../godmode/groups/group_list.php:377
-#: ../../godmode/users/profile_list.php:92
+#: ../../godmode/groups/group_list.php:377 ../../godmode/users/profile_list.php:92
#: ../../godmode/users/profile_list.php:332
#: ../../godmode/users/configure_profile.php:86
-#: ../../godmode/users/user_list.php:297
-#: ../../godmode/users/configure_user.php:276 ../../godmode/menu.php:165
+#: ../../godmode/users/user_list.php:297 ../../godmode/users/configure_user.php:276
+#: ../../godmode/menu.php:165
msgid "Profiles"
msgstr "プロファイル"
@@ -19775,8 +19582,8 @@ msgid ""
"SAML field where search for the user email (while autocreate remote users is "
"enabled)"
msgstr ""
-"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっ"
-"ている場合)"
+"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になって"
+"いる場合)"
#: ../../enterprise/godmode/setup/setup_auth.php:1203
msgid "SAML group name attribute"
@@ -19787,8 +19594,8 @@ msgid ""
"SAML field where search for the group name (while autocreate remote users is "
"enabled)"
msgstr ""
-"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になって"
-"いる場合)"
+"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になってい"
+"る場合)"
#: ../../enterprise/godmode/setup/setup_auth.php:1211
msgid "Simple attribute / Multivalue attribute"
@@ -19883,8 +19690,7 @@ msgstr "プロファイルへカスタム要素を追加"
#: ../../godmode/users/configure_profile.php:276
#: ../../godmode/massive/massive_delete_profiles.php:152
#: ../../godmode/massive/massive_add_profiles.php:202
-#: ../../include/functions_profile.php:203
-#: ../../operation/users/user_edit.php:998
+#: ../../include/functions_profile.php:203 ../../operation/users/user_edit.php:998
msgid "Profile name"
msgstr "プロファイル名"
@@ -19968,9 +19774,9 @@ msgid ""
"max_input_time = -1"
msgstr ""
"一括操作のためには、PHPのタイムアウトパラメータを正しく設定する必要があります。"
-"php設定ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タ"
-"イムアウトパラメータを次のように設定してください。
max_execution_time = "
-"0、 max_input_time = -1"
+"php設定ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タイ"
+"ムアウトパラメータを次のように設定してください。
max_execution_time = 0"
+"i>、 max_input_time = -1"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:263
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:205
@@ -19998,8 +19804,8 @@ msgid ""
"Left in blank if you want to use default name: Template name - agents (num "
"agents) - Date"
msgstr ""
-"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利"
-"用したい場合は、空白にしてください。"
+"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利用"
+"したい場合は、空白にしてください。"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314
#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:377
@@ -20011,8 +19817,7 @@ msgstr "対象グループ"
#: ../../godmode/reporting/create_container.php:746
#: ../../mobile/operation/modules.php:194 ../../mobile/operation/modules.php:195
#: ../../mobile/operation/modules.php:308 ../../mobile/operation/modules.php:309
-#: ../../include/ajax/heatmap.ajax.php:129
-#: ../../include/ajax/heatmap.ajax.php:310
+#: ../../include/ajax/heatmap.ajax.php:129 ../../include/ajax/heatmap.ajax.php:310
#: ../../include/lib/Dashboard/Widgets/heatmap.php:301
#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350
msgid "Tag"
@@ -20156,14 +19961,14 @@ msgstr "クラウド監視自動検出タスク作成"
msgid ""
"Within this view you will find information collected using Discovery Cloud AWS "
"task. You will be able to see the most relevant information about your "
-"infrastructure, such as the current cost of your contracted services, the "
-"number of instances per region or resource usage metrics. In order to collect "
-"this information you must create a Cloud Monitoring Discovery task."
+"infrastructure, such as the current cost of your contracted services, the number "
+"of instances per region or resource usage metrics. In order to collect this "
+"information you must create a Cloud Monitoring Discovery task."
msgstr ""
-"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 "
-"契約サービスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指"
-"標など、インフラに関する最も関連性の高い情報を確認できます。 この情報を収集する"
-"には、クラウド監視自動検出タスクを作成する必要があります。"
+"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 契"
+"約サービスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指標な"
+"ど、インフラに関する最も関連性の高い情報を確認できます。 この情報を収集するには、"
+"クラウド監視自動検出タスクを作成する必要があります。"
#: ../../enterprise/godmode/reporting/aws_view.php:192
msgid "Press the create button to begin."
@@ -20230,14 +20035,14 @@ msgid ""
"You can use macro _agentalias_ here. Left in blank if you want to use default "
"name: Template name - agent alias"
msgstr ""
-"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白"
-"のままにします: テンプレート名 - エージェントの別名"
+"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白の"
+"ままにします: テンプレート名 - エージェントの別名"
#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:244
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:895
msgid ""
-"Case insensitive regular expression for agent alias. For example: Network.* "
-"will match with the following agent alias: network_agent1, NetworK CHECKS"
+"Case insensitive regular expression for agent alias. For example: Network.* will "
+"match with the following agent alias: network_agent1, NetworK CHECKS"
msgstr ""
"エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次の"
"エージェント別名と一致します: network_agent1, NetworK CHECKS"
@@ -20386,8 +20191,7 @@ msgstr "12時間"
#: ../../enterprise/operation/log/log_viewer.php:676
#: ../../godmode/reporting/create_container.php:422
#: ../../include/functions.php:2758 ../../include/ajax/module.php:224
-#: ../../include/ajax/graph.ajax.php:150
-#: ../../include/class/AuditLog.class.php:211
+#: ../../include/ajax/graph.ajax.php:150 ../../include/class/AuditLog.class.php:211
msgid "1 day"
msgstr "1日"
@@ -20409,8 +20213,7 @@ msgstr "先週"
#: ../../enterprise/operation/log/log_viewer.php:680
#: ../../godmode/reporting/create_container.php:426
#: ../../include/functions.php:2760 ../../include/ajax/module.php:226
-#: ../../include/ajax/graph.ajax.php:154
-#: ../../include/class/AuditLog.class.php:213
+#: ../../include/ajax/graph.ajax.php:154 ../../include/class/AuditLog.class.php:213
msgid "15 days"
msgstr "15日"
@@ -20544,11 +20347,11 @@ msgstr "最新の値"
#: ../../godmode/reporting/reporting_builder.item_editor.php:7472
msgid ""
"Warning: period 0 reports cannot be used to show information back in time. "
-"Information contained in this kind of reports will be always reporting the "
-"most recent information"
+"Information contained in this kind of reports will be always reporting the most "
+"recent information"
msgstr ""
-"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれ"
-"るのは、最新の情報のみとなります。"
+"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれる"
+"のは、最新の情報のみとなります。"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:217
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:211
@@ -20697,8 +20500,7 @@ msgstr "復旧を表示"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:447
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2741
msgid ""
-"Show a resume table with max, min, average of total modules on the report "
-"bottom"
+"Show a resume table with max, min, average of total modules on the report bottom"
msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:462
@@ -20760,8 +20562,7 @@ msgstr "並び順:"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:338
msgid ""
-"Show a resume table with max, min, average of total modules on the report "
-"bottom:"
+"Show a resume table with max, min, average of total modules on the report bottom:"
msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358
@@ -20799,8 +20600,8 @@ msgid ""
"SLA calculation must be performed taking into account the failover modules "
"assigned to the primary module"
msgstr ""
-"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを"
-"考慮して実行する必要があります"
+"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを考"
+"慮して実行する必要があります"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470
#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405
@@ -20872,8 +20673,8 @@ msgstr "詳細グラフ (TIP)"
#: ../../operation/agentes/stat_win.php:397
#: ../../operation/agentes/interface_traffic_graph_win.php:242
msgid ""
-"TIP mode charts do not support average - maximum - minimum series, you can "
-"only enable TIP or average, maximum or minimum series"
+"TIP mode charts do not support average - maximum - minimum series, you can only "
+"enable TIP or average, maximum or minimum series"
msgstr ""
"詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最"
"大、最小を有効にできます"
@@ -20895,11 +20696,11 @@ msgstr "パーセント値"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:595
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554
msgid ""
-"If this option was checked, only adding in elements that type of modules "
-"support this option."
+"If this option was checked, only adding in elements that type of modules support "
+"this option."
msgstr ""
-"このオプションをチェックすると、このオプションをサポートするモジュールタイプの"
-"要素のみ追加できます。"
+"このオプションをチェックすると、このオプションをサポートするモジュールタイプの要"
+"素のみ追加できます。"
#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835
@@ -21180,8 +20981,7 @@ msgstr "JSON"
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:473
#: ../../enterprise/operation/reporting/custom_reporting.php:18
-#: ../../extensions/insert_data.php:231
-#: ../../operation/agentes/exportdata.php:309
+#: ../../extensions/insert_data.php:231 ../../operation/agentes/exportdata.php:309
msgid "CSV"
msgstr "CSVファイル"
@@ -21437,8 +21237,8 @@ msgstr "ローカルメタコンソール"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1169
#: ../../include/lib/Dashboard/Widgets/top_n.php:207
msgid ""
-"Case insensitive regular expression for agent name. For example: Network.* "
-"will match with the following agent names: network_agent1, NetworK CHECKS"
+"Case insensitive regular expression for agent name. For example: Network.* will "
+"match with the following agent names: network_agent1, NetworK CHECKS"
msgstr ""
"エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、"
"network_agent1, NetworKCHECKS というエージェント名にマッチします。"
@@ -21449,14 +21249,14 @@ msgstr ""
#: ../../godmode/reporting/reporting_builder.item_editor.php:1192
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 "
+"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 ""
"モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モ"
-"ジュール完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字"
-"列そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、"
+"ジュール完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字列"
+"そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、"
"cpu_usage、vram usage in machine 1 にマッチします。"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121
@@ -21497,8 +21297,7 @@ msgstr "データのないアイテムを表示したくない場合はチェッ
#: ../../include/functions_visual_map_editor.php:397
#: ../../include/functions_visual_map_editor.php:400
#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615
-#: ../../include/functions_reports.php:573
-#: ../../include/functions_reports.php:660
+#: ../../include/functions_reports.php:573 ../../include/functions_reports.php:660
#: ../../include/functions_reports.php:666
#: ../../include/functions_reporting.php:10655
msgid "Custom graph"
@@ -21517,8 +21316,8 @@ msgstr "カスタム SQL テンプレート"
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295
#: ../../godmode/reporting/reporting_builder.item_editor.php:2386
msgid ""
-"The entities of the fields that contain them must be included. Also is "
-"possible use macros like `_start_date_` or `_end_date_`."
+"The entities of the fields that contain them must be included. Also is possible "
+"use macros like `_start_date_` or `_end_date_`."
msgstr ""
"それらを含むフィールドのエンティティを含める必要があります。 `_start_date_` や "
"`_end_date_` などのマクロを使用することもできます。"
@@ -21708,8 +21507,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:3305
#: ../../godmode/reporting/reporting_builder.item_editor.php:3367
@@ -22001,8 +21800,7 @@ msgid "Updating console task"
msgstr "コンソールタスクの更新中"
#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:524
-#: ../../godmode/menu.php:55
-#: ../../godmode/wizards/DiscoveryTaskList.class.php:105
+#: ../../godmode/menu.php:55 ../../godmode/wizards/DiscoveryTaskList.class.php:105
msgid "Task list"
msgstr "タスク一覧"
@@ -22053,8 +21851,8 @@ msgid ""
"All company names used here are for identification purposes only. Use of these "
"names, logos, and brands does not imply endorsement."
msgstr ""
-"ここで使用されているすべての会社名は、識別することのみを目的としています。 これ"
-"らの名前、ロゴ、およびブランドの使用の承認を意味するものではありません。"
+"ここで使用されているすべての会社名は、識別することのみを目的としています。 これら"
+"の名前、ロゴ、およびブランドの使用の承認を意味するものではありません。"
#: ../../enterprise/godmode/wizards/Cloud.class.php:240
#: ../../enterprise/godmode/wizards/Cloud.class.php:248
@@ -22065,11 +21863,10 @@ msgstr "%s 認証情報"
#: ../../enterprise/godmode/wizards/Cloud.class.php:264
msgid ""
"If a task with the selected credentials is already running, it will be edited. "
-"To create a new one, another account from the credential store must be "
-"selected."
+"To create a new one, another account from the credential store must be selected."
msgstr ""
-"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 "
-"新規作成するには、認証情報ストアから別のアカウントを選択する必要があります。"
+"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 新"
+"規作成するには、認証情報ストアから別のアカウントを選択する必要があります。"
#: ../../enterprise/godmode/wizards/Cloud.class.php:284
msgid "Manage accounts"
@@ -22304,15 +22101,15 @@ msgid ""
"Successfully deleted export target. All the linked modules will be "
"automatically unattached"
msgstr ""
-"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは"
-"自動的に接続解除されます"
+"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは自"
+"動的に接続解除されます"
#: ../../enterprise/godmode/servers/manage_export.php:135
msgid ""
"Can't be created export target: User and password must be filled with FTP mode"
msgstr ""
-"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力"
-"する必要があります"
+"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力す"
+"る必要があります"
#: ../../enterprise/godmode/servers/manage_export.php:155
msgid "There are no defined export targets"
@@ -22365,21 +22162,20 @@ msgid "Default value: "
msgstr "デフォルト値"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356
-#: ../../include/functions_servers.php:556
-#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271
+#: ../../include/functions_servers.php:556 ../../include/functions_servers.php:1221
+#: ../../include/functions_ui.php:7271
msgid "Data server"
msgstr "データサーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362
-#: ../../include/functions_servers.php:569
-#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276
+#: ../../include/functions_servers.php:569 ../../include/functions_servers.php:1224
+#: ../../include/functions_ui.php:7276
#: ../../include/class/AgentWizard.class.php:1382
msgid "Network server"
msgstr "ネットワークサーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368
-#: ../../include/functions_servers.php:855
-#: ../../include/functions_servers.php:1269
+#: ../../include/functions_servers.php:855 ../../include/functions_servers.php:1269
msgid "Alert server"
msgstr "アラートサーバ"
@@ -22398,8 +22194,7 @@ msgstr "アラートサーバ"
#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:468
#: ../../enterprise/tools/ipam/ipam_editor.php:200
#: ../../godmode/wizards/HostDevices.class.php:849
-#: ../../include/functions_servers.php:595
-#: ../../include/functions_servers.php:1257
+#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1257
#: ../../include/class/CustomNetScan.class.php:485
#: ../../general/first_task/recon_view.php:22
msgid "Discovery server"
@@ -22412,8 +22207,8 @@ msgid "Prediction server"
msgstr "予測サーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386
-#: ../../include/functions_servers.php:608
-#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281
+#: ../../include/functions_servers.php:608 ../../include/functions_servers.php:1236
+#: ../../include/functions_ui.php:7281
#: ../../include/class/AgentWizard.class.php:1363
msgid "Plugin server"
msgstr "プラグインサーバ"
@@ -22429,27 +22224,23 @@ msgid "SNMP server"
msgstr "SNNP サーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404
-#: ../../include/functions_servers.php:673
-#: ../../include/functions_servers.php:1245
+#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1245
msgid "Web server"
msgstr "ウェブサーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410
-#: ../../include/functions_servers.php:660
-#: ../../include/functions_servers.php:1251
+#: ../../include/functions_servers.php:660 ../../include/functions_servers.php:1251
msgid "Inventory server"
msgstr "インベントリサーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:416
#: ../../enterprise/godmode/servers/manage_export_form.php:111
-#: ../../include/functions_servers.php:647
-#: ../../include/functions_servers.php:1248
+#: ../../include/functions_servers.php:647 ../../include/functions_servers.php:1248
msgid "Export server"
msgstr "エクスポートサーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422
-#: ../../include/functions_servers.php:686
-#: ../../include/functions_servers.php:1254
+#: ../../include/functions_servers.php:686 ../../include/functions_servers.php:1254
msgid "Event server"
msgstr "イベントサーバ"
@@ -22463,14 +22254,13 @@ msgid "WUX server"
msgstr "WUX サーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440
-#: ../../include/functions_servers.php:816
-#: ../../include/functions_servers.php:1272
+#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1272
msgid "NCM server"
msgstr "NCM サーバ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446
-#: ../../include/functions_servers.php:634
-#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291
+#: ../../include/functions_servers.php:634 ../../include/functions_servers.php:1242
+#: ../../include/functions_ui.php:7291
#: ../../include/class/AgentWizard.class.php:1373
msgid "WMI server"
msgstr "WMI サーバ"
@@ -22614,8 +22404,8 @@ msgid ""
"Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate "
"files so that they don't interfere with remote agent configuration"
msgstr ""
-"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモー"
-"ト エージェントの設定に干渉しないようにするには、1 に設定します。"
+"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモート "
+"エージェントの設定に干渉しないようにするには、1 に設定します。"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647
msgid "Exec interval"
@@ -22644,9 +22434,9 @@ msgid ""
"in /usr/bin/fping and update this field with the new path"
msgstr ""
"Enterprise ICMP サーバによって使用されます。 CentOS にインストールする場合のデ"
-"フォルトパスは /usr/sbin/fping です。別のディストリビューションにインストールす"
-"る場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストー"
-"ル先のパスを設定します。"
+"フォルトパスは /usr/sbin/fping です。別のディストリビューションにインストールする"
+"場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストール先"
+"のパスを設定します。"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668
msgid "Path to Pandora Fast SNMP binary"
@@ -22669,16 +22459,14 @@ msgid "General GIS exec"
msgstr "一般的な GIS 実行"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682
-msgid ""
-"Path to general GIS coordinates generator. It should be an executable file"
+msgid "Path to general GIS coordinates generator. It should be an executable file"
msgstr ""
"一般的な GIS 座標ジェネレータへのパス。 実行可能ファイルである必要があります"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688
msgid "Group where agents will be placed (must exist in the Pandora FMS console)"
msgstr ""
-"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要がありま"
-"す)"
+"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要があります)"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694
msgid "Host file"
@@ -22871,8 +22659,8 @@ msgid ""
"Comma separated list of networks (in slash notation) to scan for host auto-"
"discovery (example: 192.168.0.0/24,192.168.1.0/24)"
msgstr ""
-"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表"
-"記) (例: 192.168.0.0/24,192.168.1.0/24)"
+"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表記) "
+"(例: 192.168.0.0/24,192.168.1.0/24)"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878
msgid "Recon timing template"
@@ -22894,8 +22682,7 @@ msgstr "サーバ IP"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886
msgid "Tentacle server address. Put here your Pandora FMS data server address"
msgstr ""
-"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してくださ"
-"い"
+"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してください"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893
msgid "Name of the Satellite server (the hostname is used by default)"
@@ -22909,8 +22696,8 @@ msgstr "サーバパス"
msgid ""
"Path where XML files are copied (only used if transfer mode is set to local)"
msgstr ""
-"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用"
-"されます)"
+"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用さ"
+"れます)"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906
msgid "Server port"
@@ -22950,8 +22737,8 @@ msgstr "キープアライブ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935
msgid ""
-"Interval of the main server loop in seconds. Status updates are sent to "
-"Pandora every keepalive seconds"
+"Interval of the main server loop in seconds. Status updates are sent to Pandora "
+"every keepalive seconds"
msgstr ""
"メインサーバループの間隔 (秒単位)。 ステータスの更新はキープアライブ秒ごとに "
"Pandora に送信されます"
@@ -23015,9 +22802,9 @@ msgid ""
"Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their "
"version). WARNING: some modules could stop working if you change this setting"
msgstr ""
-"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョ"
-"ンを明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しな"
-"くなる可能性があります"
+"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョン"
+"を明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しなくな"
+"る可能性があります"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997
msgid "SNMPv2c block"
@@ -23175,8 +22962,7 @@ msgid "Startup delay"
msgstr "開始遅延"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124
-msgid ""
-"Wait startup_delay seconds before sending XML data files for the first time"
+msgid "Wait startup_delay seconds before sending XML data files for the first time"
msgstr "初回の XML データファイル送信の前に、startup_delay 秒待機します。"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130
@@ -23216,8 +23002,7 @@ msgid "Temporal minimum size"
msgstr "一時的な最小サイズ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1159
-msgid ""
-"Minimum available bytes in the temporal directory to enable the XML buffer"
+msgid "Minimum available bytes in the temporal directory to enable the XML buffer"
msgstr "XML バッファを有効にする場合の一時ディレクトリで使用可能な最小バイト数"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165
@@ -23315,11 +23100,11 @@ msgstr "timeout バイナリ"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1254
msgid ""
-"If defined, the timeout program (usually /usr/bin/timeout) will be used to "
-"call the Tentacle client"
+"If defined, the timeout program (usually /usr/bin/timeout) will be used to call "
+"the Tentacle client"
msgstr ""
-"設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle ク"
-"ライアントの呼び出しに使用されます。"
+"設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle クラ"
+"イアントの呼び出しに使用されます。"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1260
msgid "IPAM interval"
@@ -23336,12 +23121,12 @@ msgstr "セカンダリモード"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1270
msgid ""
"If secondary_mode is set to on_error, data files are copied to the secondary "
-"server only if the primary server fails. If set to always, data files are "
-"always copied to the secondary server"
+"server only if the primary server fails. If set to always, data files are always "
+"copied to the secondary server"
msgstr ""
-"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生し"
-"た場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定"
-"すると、データ ファイルは常にセカンダリサーバにコピーされます。"
+"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生した"
+"場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定する"
+"と、データ ファイルは常にセカンダリサーバにコピーされます。"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1276
msgid "Secondary server IP"
@@ -23374,11 +23159,10 @@ msgstr "リモート設定ファイル削除"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388
msgid ""
-"Delete this conf file implies that server will send back local config to "
-"console"
+"Delete this conf file implies that server will send back local config to console"
msgstr ""
-"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すこと"
-"を意味します"
+"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すことを"
+"意味します"
#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1432
msgid "General server configuration"
@@ -23426,8 +23210,7 @@ msgstr "サテライトサーバ"
#: ../../enterprise/godmode/servers/list_satellite.php:41
#: ../../godmode/setup/license.php:261
-#: ../../godmode/servers/modificar_server.php:75
-#: ../../include/functions_ui.php:961
+#: ../../godmode/servers/modificar_server.php:75 ../../include/functions_ui.php:961
#: ../../include/class/Diagnostics.class.php:1207
msgid "Satellite"
msgstr "サテライト"
@@ -23568,8 +23351,7 @@ msgstr "スケジュールされたレポートは、添付ファイルなしで
#: ../../enterprise/include/functions_cron.php:1558
msgid "Scheduled report had an attempt to send an email with some attachments."
msgstr ""
-"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しまし"
-"た。"
+"スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しました。"
#: ../../enterprise/include/functions_cron.php:1801
#: ../../include/functions_reporting.php:15834
@@ -23581,8 +23363,7 @@ msgid "Attached to this email there's a CSV file of the logs"
msgstr "このメールに添付されているのは、ログの CSV ファイルです。"
#: ../../enterprise/include/functions_cron.php:1805
-#: ../../mobile/include/functions_web.php:84
-#: ../../mobile/include/ui.class.php:327
+#: ../../mobile/include/functions_web.php:84 ../../mobile/include/ui.class.php:327
#: ../../include/functions_reporting.php:15840
msgid "Generated at"
msgstr "更新日時:"
@@ -23626,8 +23407,8 @@ msgstr "自動検出コンソールタスクが正しく動作していません
msgid ""
"Discovery relies on a proper setup of cron, the time-based scheduling service"
msgstr ""
-"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存"
-"しています"
+"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存し"
+"ています"
#: ../../enterprise/include/functions_tasklist.php:59
#: ../../include/class/ConsoleSupervisor.php:2536
@@ -23794,14 +23575,13 @@ msgstr "開始ネットワーク"
#: ../../enterprise/include/ajax/ipam.ajax.php:316
msgid ""
-"The networks will be created/added starting from this address in the "
-"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). "
-"If no value was provided, it uses the starting address of the supernet by "
-"default."
+"The networks will be created/added starting from this address in the subnetting "
+"range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value "
+"was provided, it uses the starting address of the supernet by default."
msgstr ""
"ネットワークは、マスクで指定されたサブネット範囲のアドレスから作成/追加されま"
-"す。 CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デ"
-"フォルトでスーパーネットの開始アドレスが使用されます。"
+"す。 CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デフォ"
+"ルトでスーパーネットの開始アドレスが使用されます。"
#: ../../enterprise/include/ajax/ipam.ajax.php:320
msgid "Max. number"
@@ -24374,8 +24154,7 @@ msgstr "mysqldump の実行で問題が発生しました。"
msgid ""
"In order to make backups it is necessary to check if the configuration is "
"correct."
-msgstr ""
-"バックアップを作成するには、設定が正しいかどうかを確認する必要があります。"
+msgstr "バックアップを作成するには、設定が正しいかどうかを確認する必要があります。"
#: ../../enterprise/include/functions_backup.php:256
msgid "No description"
@@ -24643,16 +24422,15 @@ msgstr "定義済みアラート"
#: ../../enterprise/operation/services/services.treeview_services.php:296
#: ../../godmode/groups/group_list.php:1087
#: ../../godmode/groups/group_list.php:1088
-#: ../../godmode/groups/group_list.php:1089
-#: ../../include/functions_graph.php:2608
+#: ../../godmode/groups/group_list.php:1089 ../../include/functions_graph.php:2608
#: ../../include/functions_reporting.php:12171
#: ../../include/functions_reporting.php:12192
#: ../../include/lib/Dashboard/Widgets/tree_view.php:702
#: ../../include/lib/Dashboard/Widgets/tree_view.php:703
#: ../../include/lib/Dashboard/Widgets/tree_view.php:704
-#: ../../include/functions_groups.php:2718
-#: ../../include/functions_groups.php:2741 ../../operation/tree.php:506
-#: ../../operation/tree.php:507 ../../operation/tree.php:508
+#: ../../include/functions_groups.php:2718 ../../include/functions_groups.php:2741
+#: ../../operation/tree.php:506 ../../operation/tree.php:507
+#: ../../operation/tree.php:508
msgid "Fired alerts"
msgstr "発生したアラート"
@@ -24661,8 +24439,7 @@ msgid "Last 8 hours events"
msgstr "直近 8時間のイベント"
#: ../../enterprise/include/functions_reporting_csv.php:1036
-#: ../../include/functions_reports.php:789
-#: ../../include/functions_reports.php:795
+#: ../../include/functions_reports.php:789 ../../include/functions_reports.php:795
msgid "Group report"
msgstr "グループレポート"
@@ -24884,8 +24661,7 @@ msgstr "状態 "
#: ../../enterprise/include/functions_reporting.php:3988
#: ../../enterprise/include/functions_reporting.php:6182
#: ../../include/functions_reporting_html.php:670
-#: ../../include/functions_config.php:1337
-#: ../../include/functions_config.php:3541
+#: ../../include/functions_config.php:1337 ../../include/functions_config.php:3541
msgid "Fail"
msgstr "失敗"
@@ -25170,8 +24946,8 @@ msgstr "IPAM ネットワーク"
#: ../../enterprise/include/functions_reporting_csv.php:1984
#: ../../enterprise/include/functions_reporting.php:2336
-#: ../../godmode/events/custom_events.php:94
-#: ../../include/functions_events.php:244 ../../operation/events/events.php:2665
+#: ../../godmode/events/custom_events.php:94 ../../include/functions_events.php:244
+#: ../../operation/events/events.php:2665
msgid "Agent ID"
msgstr "エージェント ID"
@@ -25186,9 +24962,8 @@ msgstr "エージェント ID"
#: ../../godmode/users/configure_user.php:1218
#: ../../godmode/users/user_management.php:684
#: ../../mobile/operation/events.php:849
-#: ../../include/functions_reporting_html.php:6016
-#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763
-#: ../../include/class/AuditLog.class.php:114
+#: ../../include/functions_reporting_html.php:6016 ../../include/functions.php:3109
+#: ../../include/ajax/events.php:1763 ../../include/class/AuditLog.class.php:114
#: ../../operation/users/user_edit.php:743
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426
@@ -25282,10 +25057,8 @@ msgstr "未初期化数"
#: ../../enterprise/include/functions_reporting_csv.php:2041
#: ../../enterprise/operation/services/services.service.php:119
#: ../../enterprise/operation/services/services.list.php:546
-#: ../../include/functions_reports.php:710
-#: ../../include/functions_reports.php:715
-#: ../../include/functions_reports.php:719
-#: ../../include/functions_reports.php:723
+#: ../../include/functions_reports.php:710 ../../include/functions_reports.php:715
+#: ../../include/functions_reports.php:719 ../../include/functions_reports.php:723
#: ../../include/functions_reports.php:729
msgid "SLA"
msgstr "SLA"
@@ -25454,8 +25227,7 @@ msgid "Event Report Log"
msgstr "イベントレポートログ"
#: ../../enterprise/include/functions_reporting_csv.php:2581
-#: ../../include/functions_reports.php:951
-#: ../../include/functions_reports.php:952
+#: ../../include/functions_reports.php:951 ../../include/functions_reports.php:952
#: ../../include/functions_reporting.php:5108
msgid "Permissions report"
msgstr "権限レポート"
@@ -25551,8 +25323,8 @@ msgstr "Netflow トップ N 接続"
#: ../../enterprise/include/functions_reporting_csv.php:2858
#: ../../mobile/operation/tactical.php:351
-#: ../../include/functions_reporting_html.php:6015
-#: ../../include/functions.php:3109 ../../include/functions_netflow.php:347
+#: ../../include/functions_reporting_html.php:6015 ../../include/functions.php:3109
+#: ../../include/functions_netflow.php:347
#: ../../include/class/AuditLog.class.php:113
#: ../../operation/snmpconsole/snmp_statistics.php:183
#: ../../general/logon_ok.php:258
@@ -25565,8 +25337,7 @@ msgid "Destination IP"
msgstr "宛先 IP"
#: ../../enterprise/include/functions_reporting_csv.php:2858
-#: ../../include/functions_config.php:1024
-#: ../../include/functions_config.php:3453
+#: ../../include/functions_config.php:1024 ../../include/functions_config.php:3453
#: ../../include/functions_netflow.php:349
#: ../../operation/network/network_report.php:294
#: ../../operation/network/network_report.php:326
@@ -25798,8 +25569,8 @@ msgid ""
"This VMware configuration has been already defined. Please edit it or create a "
"new one."
msgstr ""
-"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してくだ"
-"さい。"
+"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してくださ"
+"い。"
#: ../../enterprise/include/class/VMware.app.php:264
#: ../../enterprise/include/class/DB2.app.php:197
@@ -25906,8 +25677,8 @@ msgid ""
"You must select a Discovery Server to run the Task, otherwise the Recon Task "
"will never run"
msgstr ""
-"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検"
-"出タスクは実行されません。"
+"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検出"
+"タスクは実行されません。"
#: ../../enterprise/include/class/VMware.app.php:656
msgid "Datacenter user"
@@ -25925,8 +25696,8 @@ msgid ""
"Manual interval means that it will be executed only On-demand, The minimum "
"recomended interval is 5 minutes"
msgstr ""
-"手動間隔は、オンデマンドのみで実行されることを意味します。推奨される最小間隔は "
-"5分です。"
+"手動間隔は、オンデマンドのみで実行されることを意味します。推奨される最小間隔は 5"
+"分です。"
#: ../../enterprise/include/class/VMware.app.php:677
#: ../../enterprise/include/class/VMware.app.php:894
@@ -25956,8 +25727,8 @@ msgid ""
"This name must match with the name wich appears when you log in you VMware "
"manager"
msgstr ""
-"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があ"
-"ります"
+"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があり"
+"ます"
#: ../../enterprise/include/class/VMware.app.php:748
msgid "Encrypt passwords"
@@ -26103,8 +25874,8 @@ msgid ""
"Sofware agent version with id %s does not exist, please, add it to your "
"repository %s "
msgstr ""
-"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加"
-"してください "
+"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加し"
+"てください "
#: ../../enterprise/include/class/DeploymentCenter.class.php:526
msgid "No target could be added. "
@@ -26439,8 +26210,8 @@ msgstr "再同期データディレクトリ"
#: ../../enterprise/include/class/DatabaseHA.class.php:847
msgid "Directory where mysql files are stored (must be common to all nodes)"
msgstr ""
-"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があ"
-"ります)"
+"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があり"
+"ます)"
#: ../../enterprise/include/class/DatabaseHA.class.php:857
msgid "Resync tmp directory"
@@ -26451,8 +26222,7 @@ msgid ""
"Temporary working directory where to store the backups that will be used to re-"
"synchronize a slave node"
msgstr ""
-"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクト"
-"リ"
+"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクトリ"
#: ../../enterprise/include/class/DatabaseHA.class.php:868
msgid "Resync MySQL user"
@@ -26463,8 +26233,8 @@ msgid ""
"User of the system that owns the MySQL files, necessary for the adjustment of "
"permissions (by default mysql)"
msgstr ""
-"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトで"
-"は mysql)"
+"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトでは "
+"mysql)"
#: ../../enterprise/include/class/DatabaseHA.class.php:879
msgid "Resync MySQL group"
@@ -26472,11 +26242,10 @@ msgstr "再同期 MySQL グループ"
#: ../../enterprise/include/class/DatabaseHA.class.php:880
msgid ""
-"System group that owns the MySQL files, needed for permissions setting "
-"(default mysql)"
-msgstr ""
-"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは "
+"System group that owns the MySQL files, needed for permissions setting (default "
"mysql)"
+msgstr ""
+"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは mysql)"
#: ../../enterprise/include/class/DatabaseHA.class.php:941
#: ../../enterprise/include/class/NewDatabaseHA.class.php:261
@@ -26686,8 +26455,8 @@ msgid ""
"Upload only official binary files from your device provide in raw format (not "
"compressed)"
msgstr ""
-"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロード"
-"してください"
+"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロードし"
+"てください"
#: ../../enterprise/include/class/NetworkConfigManager.class.php:2206
#: ../../godmode/modules/manage_network_templates.php:83
@@ -26733,16 +26502,16 @@ msgstr "ファームウエアを削除しました"
msgid ""
"Not executed yet, no content to display, define your own in following textarea."
msgstr ""
-"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定"
-"義してください。"
+"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定義"
+"してください。"
#: ../../enterprise/include/class/NetworkConfigManager.class.php:2489
msgid ""
"Following content is already queued to be executed! You must wait until "
"execution is finished before being able to modify this."
msgstr ""
-"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了"
-"するまで待つ必要があります。"
+"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了す"
+"るまで待つ必要があります。"
#: ../../enterprise/include/class/NetworkConfigManager.class.php:2581
msgid "Check progress"
@@ -26790,17 +26559,17 @@ msgstr "不正な ID 指定です"
#: ../../enterprise/include/class/NetworkConfigManager.class.php:2820
msgid ""
-"Is highly recommendable to execute this kind of operation from agent details "
-"to preview the script content"
+"Is highly recommendable to execute this kind of operation from agent details to "
+"preview the script content"
msgstr ""
-"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューする"
-"ことを強くお勧めします"
+"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューするこ"
+"とを強くお勧めします"
#: ../../enterprise/include/class/NetworkConfigManager.class.php:2829
msgid "This operation is not ready yet! Keep up to date with latest updates"
msgstr ""
-"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくだ"
-"さい"
+"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくださ"
+"い"
#: ../../enterprise/include/class/NetworkConfigManager.class.php:2838
msgid "Invalid action"
@@ -26959,8 +26728,8 @@ msgstr "前提条件 "
#: ../../enterprise/include/class/Omnishell.class.php:892
msgid "All commands defined line per line must success to execute main commands"
msgstr ""
-"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要"
-"があります"
+"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要が"
+"あります"
#: ../../enterprise/include/class/Omnishell.class.php:904
msgid "Execute commands "
@@ -26975,11 +26744,10 @@ msgid "Postconditions "
msgstr "前提条件 "
#: ../../enterprise/include/class/Omnishell.class.php:918
-msgid ""
-"All commands defined line per line must success to consider command success"
+msgid "All commands defined line per line must success to consider command success"
msgstr ""
-"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要が"
-"あります"
+"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要があ"
+"ります"
#: ../../enterprise/include/class/Omnishell.class.php:1347
msgid "Show agent list"
@@ -27074,8 +26842,8 @@ msgstr "ログソース更新"
#: ../../enterprise/include/class/DB2.app.php:165
msgid ""
-"This DB2 configuration has been already defined. Please edit it or create a "
-"new one."
+"This DB2 configuration has been already defined. Please edit it or create a new "
+"one."
msgstr ""
"この DB2 設定はすでに定義済です。 編集するか、新しいものを作成してください。"
@@ -27124,9 +26892,9 @@ msgid ""
"defined multiple targets, define a comma separated list of names here or leave "
"in blank to use target as name."
msgstr ""
-"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を"
-"定義した場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象"
-"を名前として使用します。"
+"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定"
+"義した場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象を名"
+"前として使用します。"
#: ../../enterprise/include/class/DB2.app.php:666
#: ../../enterprise/include/class/MySQL.app.php:688
@@ -27140,11 +26908,11 @@ msgstr "カスタムモジュールプレフィックス"
#: ../../enterprise/include/class/Oracle.app.php:674
#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:678
msgid ""
-"Defines a custom prefix to be concatenated before module names generated by "
-"this task."
+"Defines a custom prefix to be concatenated before module names generated by this "
+"task."
msgstr ""
-"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックス"
-"を定義します。"
+"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックスを"
+"定義します。"
#: ../../enterprise/include/class/DB2.app.php:685
msgid "Get database summary"
@@ -27253,8 +27021,8 @@ msgid ""
"empty agents with the name, IP, OS type, description and group provided in the "
"CSV."
msgstr ""
-"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、"
-"IP、OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。"
+"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、IP、"
+"OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。"
#: ../../enterprise/include/class/CSVImportAgents.class.php:182
msgid "Alias as name"
@@ -27328,8 +27096,8 @@ msgid ""
"yet, please visit"
msgstr ""
"SAP 表示では、自動検出サーバが通常再試行するように設定されている最も重要なモ"
-"ジュールを確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にア"
-"クセスしてください:"
+"ジュールを確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にアク"
+"セスしてください:"
#: ../../enterprise/include/class/SAPView.class.php:626
msgid "to start monitoring your SAP infrastructure."
@@ -27341,8 +27109,8 @@ msgstr "自動検出 SAP"
#: ../../enterprise/include/class/SAP.app.php:155
msgid ""
-"This SAP configuration has been already defined. Please edit it or create a "
-"new one."
+"This SAP configuration has been already defined. Please edit it or create a new "
+"one."
msgstr ""
"この SAP 設定はすでに定義済です。 編集するか、新しいものを作成してください。"
@@ -27465,11 +27233,11 @@ msgstr "エラーアップデート WP 数"
#: ../../enterprise/include/class/SAP.app.php:784
#, php-format
msgid ""
-"Module 180 must be customized before being used, please use advanced options "
-"to define the module following the documentation:
%s"
+"Module 180 must be customized before being used, please use advanced options to "
+"define the module following the documentation:
%s"
msgstr ""
-"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを"
-"使用して、ドキュメントに従ってモジュールを定義してください。
%s"
+"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを使"
+"用して、ドキュメントに従ってモジュールを定義してください。
%s"
#: ../../enterprise/include/class/SAP.app.php:805
#: ../../godmode/agentes/planned_downtime.editor.php:1257
@@ -27509,8 +27277,8 @@ msgid ""
"Each line is a module definition using following format: module name ; "
"module_type ; SAP check definition."
msgstr ""
-"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイ"
-"プ ; SAPチェック定義"
+"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイプ ; "
+"SAPチェック定義"
#: ../../enterprise/include/class/Aws.cloud.php:118
#: ../../include/class/CredentialStore.class.php:960
@@ -27583,8 +27351,8 @@ msgid ""
"You cannot monitor RDS instances from different types. Please define several "
"tasks for several types."
msgstr ""
-"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対"
-"してそれぞれのタスクを定義してください。"
+"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対し"
+"てそれぞれのタスクを定義してください。"
#: ../../enterprise/include/class/Aws.cloud.php:1008
msgid "Discovery.Cloud.AWS.RDS"
@@ -27666,9 +27434,9 @@ msgid ""
"defined multiple targets, define a comma separated list of names here or leave "
"in blank to use server IP address/ FQDN."
msgstr ""
-"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を"
-"定義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレ"
-"ス/ FQDN を使用するために空白のままにします。"
+"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定"
+"義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレス/ "
+"FQDN を使用するために空白のままにします。"
#: ../../enterprise/include/class/MySQL.app.php:710
msgid "Scan databases"
@@ -27684,11 +27452,11 @@ msgstr "カスタムデータベースエージェントプレフィックス"
#: ../../enterprise/include/class/MySQL.app.php:748
msgid ""
-"Defines a custom prefix to be concatenated before database agent names "
-"generated by this task."
+"Defines a custom prefix to be concatenated before database agent names generated "
+"by this task."
msgstr ""
-"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタム"
-"プレフィックスを定義します。"
+"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタムプ"
+"レフィックスを定義します。"
#: ../../enterprise/include/class/MySQL.app.php:769
#: ../../enterprise/include/class/Oracle.app.php:692
@@ -27779,11 +27547,11 @@ msgstr "テーブルスペース監視"
#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171
msgid ""
-"This Microsoft SQL Server configuration has been already defined. Please edit "
-"it or create a new one."
+"This Microsoft SQL Server configuration has been already defined. Please edit it "
+"or create a new one."
msgstr ""
-"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成"
-"してください。"
+"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成し"
+"てください。"
#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213
msgid "You must provide a valid Microsoft SQL Server server IP or FQDN."
@@ -27801,8 +27569,7 @@ msgstr "対象の Microsoft SQL Server"
msgid ""
"SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you "
"need."
-msgstr ""
-"SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。"
+msgstr "SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:499
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:560
@@ -27882,8 +27649,8 @@ msgstr "ルール評価モード"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1074
msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches."
msgstr ""
-"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止し"
-"ます。"
+"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止しま"
+"す。"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1091
msgid "Grouped by"
@@ -28078,16 +27845,14 @@ msgstr "復旧アラート"
#: ../../godmode/alerts/alert_commands.php:123
#: ../../godmode/alerts/alert_commands.php:129
#: ../../godmode/alerts/configure_alert_template.php:991
-#: ../../godmode/alerts/alert_view.php:490
-#: ../../godmode/alerts/alert_view.php:609
+#: ../../godmode/alerts/alert_view.php:490 ../../godmode/alerts/alert_view.php:609
#, php-format
msgid "Field %s"
msgstr "フィールド %s"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121
msgid "Agent and module event recovery macros are not available in this section"
-msgstr ""
-"ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません"
+msgstr "ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121
#, php-format
@@ -28126,8 +27891,7 @@ msgstr "リカバリ中"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2655
msgid ""
-"Select the desired action and mode to view the Triggering fields for this "
-"action"
+"Select the desired action and mode to view the Triggering fields for this action"
msgstr ""
"目的のアクションとモードを選択して、このアクションの発報フィールドを表示します"
@@ -28138,8 +27902,7 @@ msgstr "アクションを選択"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2731
#: ../../godmode/alerts/configure_alert_template.php:938
-#: ../../godmode/alerts/alert_view.php:441
-#: ../../godmode/alerts/alert_view.php:575
+#: ../../godmode/alerts/alert_view.php:441 ../../godmode/alerts/alert_view.php:575
msgid "Firing fields"
msgstr "発報フィールド"
@@ -28153,15 +27916,13 @@ msgstr ""
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2737
#: ../../godmode/agentes/fields_manager.php:153
-#: ../../godmode/alerts/alert_view.php:447
-#: ../../godmode/alerts/alert_view.php:570
+#: ../../godmode/alerts/alert_view.php:447 ../../godmode/alerts/alert_view.php:570
#: ../../operation/agentes/custom_fields.php:65
msgid "Field"
msgstr "フィールド"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2739
-#: ../../godmode/alerts/alert_view.php:449
-#: ../../godmode/alerts/alert_view.php:572
+#: ../../godmode/alerts/alert_view.php:449 ../../godmode/alerts/alert_view.php:572
msgid "Fields configured on the command associated to the action"
msgstr "アクションに関連付けられたコマンドで設定されたフィールド"
@@ -28189,8 +27950,7 @@ msgid "Executed on firing"
msgstr "発報時の実行"
#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2754
-#: ../../godmode/alerts/alert_view.php:465
-#: ../../godmode/alerts/alert_view.php:577
+#: ../../godmode/alerts/alert_view.php:465 ../../godmode/alerts/alert_view.php:577
msgid "Fields used on execution when the alert is fired"
msgstr "アラートが発報したときに実行に使われるフィールド"
@@ -28353,8 +28113,8 @@ msgid ""
"Memory limit is recomended to be unlimited in metaconsole, please set to -1 in "
"php.ini."
msgstr ""
-"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に"
-"設定してください。"
+"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に設"
+"定してください。"
#: ../../enterprise/include/class/CommandCenter.class.php:314
msgid "Nodes priority order"
@@ -28422,9 +28182,8 @@ msgid ""
"System is not unified yet, something is wrong, please troubleshoot the errors "
"and retry the merge process. Your data have not been modified."
msgstr ""
-"システムはまだ統合されていません。何らかの問題があります。エラーのトラブル"
-"シューティングを行い、マージ処理を再試行してください。 データは変更されていませ"
-"ん。"
+"システムはまだ統合されていません。何らかの問題があります。エラーのトラブルシュー"
+"ティングを行い、マージ処理を再試行してください。 データは変更されていません。"
#: ../../enterprise/include/class/CommandCenter.class.php:461
msgid "Errors while merging"
@@ -28491,11 +28250,11 @@ msgstr "優先ノードの更新ができませんでした"
#: ../../enterprise/include/class/CommandCenter.class.php:567
msgid ""
-"By unifying databases all information across your infrastructure will be "
-"merged to gain integrity"
+"By unifying databases all information across your infrastructure will be merged "
+"to gain integrity"
msgstr ""
-"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマー"
-"ジされ、整合性が得られます"
+"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマージ"
+"され、整合性が得られます"
#: ../../enterprise/include/class/CommandCenter.class.php:580
#: ../../enterprise/include/class/CommandCenter.class.php:590
@@ -28520,9 +28279,9 @@ msgid ""
"overwrite those backups? Press OK button to ignore this message and start the "
"process."
msgstr ""
-"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書き"
-"してもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタ"
-"ンを押してください。"
+"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書きし"
+"てもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタンを"
+"押してください。"
#: ../../enterprise/include/class/CommandCenter.class.php:648
msgid "System is merging events..."
@@ -28600,8 +28359,7 @@ msgstr "DB バックアップ管理"
#: ../../enterprise/include/class/ManageBackups.class.php:129
#, php-format
-msgid ""
-"To schedule a periodic (or one-time) backup task you can do it through %s."
+msgid "To schedule a periodic (or one-time) backup task you can do it through %s."
msgstr ""
"定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。"
@@ -28659,11 +28417,11 @@ msgstr "表示する追加情報がありません:"
#: ../../enterprise/include/class/ManageBackups.class.php:446
msgid ""
-"Are you sure you want to delete this database backup file? Once deleted you "
-"will not be able to recover it."
+"Are you sure you want to delete this database backup file? Once deleted you will "
+"not be able to recover it."
msgstr ""
-"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に"
-"戻すことはできません。"
+"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に戻"
+"すことはできません。"
#: ../../enterprise/include/class/ManageBackups.class.php:448
msgid "Do you like perform a database restoration?"
@@ -28675,16 +28433,15 @@ msgstr "タグごとのツリー表示"
#: ../../enterprise/include/functions_enterprise.php:481
msgid ""
-"If the interval of days until events data purge is shorter than the events "
-"data history storage interval, data will be lost. It is recommended that the "
-"storage frequency is higher than the purge frequency."
+"If the interval of days until events data purge is shorter than the events data "
+"history storage interval, data will be lost. It is recommended that the storage "
+"frequency is higher than the purge frequency."
msgstr ""
"イベントデータの削除までの日数がヒストリイベントデータの保存間隔よりも短い場合"
"データは失われます。 保存頻度は削除頻度よりも大きくすることをお勧めします。"
#: ../../enterprise/include/functions_enterprise.php:483
-msgid ""
-"Problems with event days purge and event days that pass data to history DB."
+msgid "Problems with event days purge and event days that pass data to history DB."
msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。"
#: ../../enterprise/include/functions_enterprise.php:494
@@ -28693,9 +28450,9 @@ msgid ""
"problems and you lost data. Recommended that days purge will more taller than "
"days to history DB"
msgstr ""
-"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失"
-"します。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてくだ"
-"さい。"
+"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失し"
+"ます。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてくださ"
+"い。"
#: ../../enterprise/include/functions_enterprise.php:496
msgid "Problems with days purge and days that pass data to history DB"
@@ -29041,24 +28798,23 @@ msgid ""
"Error adding web analysis module to policy. Id_module_type is not correct for "
"web analysis modules."
msgstr ""
-"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 "
-"Id_module_type が、ウェブ分析モジュールに対して正しくありません。"
+"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 Id_module_type "
+"が、ウェブ分析モジュールに対して正しくありません。"
#: ../../enterprise/include/functions_enterprise_api.php:4070
msgid ""
"Network Module could not be added to policy. Id_module_type is not correct for "
"network modules."
msgstr ""
-"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネッ"
-"トワークモジュールに対して正しくありません。"
+"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネット"
+"ワークモジュールに対して正しくありません。"
#: ../../enterprise/include/functions_enterprise_api.php:4079
msgid ""
-"Error adding web module to policy. Id_module_type is not correct for web "
-"modules."
+"Error adding web module to policy. Id_module_type is not correct for web modules."
msgstr ""
-"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対し"
-"て正しくありません。"
+"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対して"
+"正しくありません。"
#: ../../enterprise/include/functions_enterprise_api.php:4100
msgid "Error adding module to policy configuration_data is not a valid base64."
@@ -29377,8 +29133,7 @@ msgstr "不正なプラグイン定義"
#: ../../enterprise/include/lib/NetworkManager.php:82
#: ../../godmode/setup/setup_ehorus.php:139
#: ../../godmode/setup/setup_integria.php:652
-#: ../../operation/users/user_edit.php:872
-#: ../../operation/users/user_edit.php:925
+#: ../../operation/users/user_edit.php:872 ../../operation/users/user_edit.php:925
msgid "Test"
msgstr "テスト"
@@ -29517,8 +29272,8 @@ msgstr "現在選択されているテンプレートが、設定されている
#, php-format
msgid "No %s script available for this agent, check template %s"
msgstr ""
-"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認"
-"してください"
+"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認し"
+"てください"
#: ../../enterprise/include/lib/NetworkManager/Template.php:192
msgid "Error linking script: "
@@ -29566,8 +29321,8 @@ msgid ""
" Cannot switch from SMART to MANUAL if there are dynamic elements attached to "
"the service. Please erase dynamic elements before change to MANUAL"
msgstr ""
-" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 "
-"手動に変更する前に、動的要素を消去してください"
+" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 手"
+"動に変更する前に、動的要素を消去してください"
#: ../../enterprise/include/lib/Service.php:397
#: ../../enterprise/include/lib/Service.php:740
@@ -29686,11 +29441,10 @@ msgstr "ノードが見つかりません"
#: ../../enterprise/include/lib/Metaconsole/Node.php:396
#, php-format
-msgid ""
-"There are %d queries pending to be applied, click in the eye to see results"
+msgid "There are %d queries pending to be applied, click in the eye to see results"
msgstr ""
-"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認"
-"してください"
+"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認し"
+"てください"
#: ../../enterprise/include/lib/Metaconsole/Node.php:405
msgid "Database synchronization state and pending tasks"
@@ -29706,16 +29460,16 @@ msgid ""
"Failed synchronizing %s, please check node PHP configuration issues and "
"collection max sizes"
msgstr ""
-"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確"
-"認してください"
+"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確認"
+"してください"
#: ../../enterprise/include/lib/Metaconsole/Node.php:1174
msgid ""
"The elimination of this node will lead to the suppression of its agents from "
"metaconsole and all the configuration assigned to them. "
msgstr ""
-"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てら"
-"れているすべての設定が抑制されます。"
+"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てられ"
+"ているすべての設定が抑制されます。"
#: ../../enterprise/include/lib/Metaconsole/Node.php:1178
msgid "The rules for this node may stop working. "
@@ -29723,11 +29477,10 @@ msgstr "このノードのルールが機能しなくなる可能性がありま
#: ../../enterprise/include/lib/Metaconsole/Node.php:1182
msgid ""
-"The deleted node will lose its license, and you must license it manually "
-"again. "
+"The deleted node will lose its license, and you must license it manually again. "
msgstr ""
-"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があ"
-"ります。"
+"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があり"
+"ます。"
#: ../../enterprise/include/lib/Metaconsole/Node.php:1686
#, php-format
@@ -29800,14 +29553,14 @@ msgstr "memory_limit 現在値"
msgid ""
"Check current packages, all nodes and metaconsole, are not in the same version"
msgstr ""
-"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンで"
-"はありません。"
+"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンでは"
+"ありません。"
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:979
msgid "Check Minor release, All nodes and metaconsole, do not have the same mr"
msgstr ""
-"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではあり"
-"ません。"
+"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではありま"
+"せん。"
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:991
msgid "Max size collection, all nodes and metaconsole, are not equal"
@@ -29815,20 +29568,17 @@ msgstr "全ノードとメタコンソールで最大コレクションサイズ
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1016
#, php-format
-msgid ""
-"Post max size, nodes cannot be smaller than the size of the metaconsole %s"
+msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s"
msgstr ""
-"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできませ"
-"ん"
+"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできません"
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1031
#, php-format
msgid ""
-"Upload max file size, nodes cannot be smaller than the size of the metaconsole "
-"%s"
+"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s"
msgstr ""
-"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより"
-"小さくすることはできません"
+"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより小"
+"さくすることはできません"
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1093
#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1109
@@ -30301,10 +30051,8 @@ msgid "Agent plugins does not exist in target node"
msgstr "エージェントプラグインが対象ノードに存在しません"
#: ../../enterprise/include/functions_metaconsole.php:2906
-msgid ""
-"Agent policies definitions does not match with defined ones in target node"
-msgstr ""
-"エージェントポリシーの定義が、対象ノードで定義されているものと一致しません"
+msgid "Agent policies definitions does not match with defined ones in target node"
+msgstr "エージェントポリシーの定義が、対象ノードで定義されているものと一致しません"
#: ../../enterprise/include/functions_metaconsole.php:2913
msgid "Agent group does not exist in target node"
@@ -30353,8 +30101,7 @@ msgid "Next available IP"
msgstr "次の空き IP"
#: ../../enterprise/include/functions_ipam.php:1343
-#: ../../enterprise/tools/ipam/ipam_ajax.php:486
-#: ../../include/ajax/events.php:1753
+#: ../../enterprise/tools/ipam/ipam_ajax.php:486 ../../include/ajax/events.php:1753
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394
msgid "Details"
@@ -30727,8 +30474,8 @@ msgid ""
"Error uploading resource. Check if the selected file is a valid resource "
"template in .ptr format"
msgstr ""
-"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の"
-"有効なリソーステンプレートであるかどうかを確認してください"
+"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の有"
+"効なリソーステンプレートであるかどうかを確認してください"
#: ../../enterprise/include/functions_policies.php:4508
msgid "Policy does not exist"
@@ -30846,8 +30593,8 @@ msgstr "回"
#: ../../enterprise/operation/agentes/policy_view.php:352
#: ../../godmode/alerts/alert_list.list.php:651
#: ../../godmode/alerts/alert_view.php:117 ../../mobile/operation/alerts.php:330
-#: ../../include/functions_agents.php:3000
-#: ../../include/functions_agents.php:3011 ../../include/functions_ui.php:1423
+#: ../../include/functions_agents.php:3000 ../../include/functions_agents.php:3011
+#: ../../include/functions_ui.php:1423
#: ../../include/class/AgentsAlerts.class.php:962
#: ../../include/class/SnmpConsole.class.php:843
#: ../../include/functions_reporting.php:13066
@@ -31260,12 +31007,11 @@ msgid ""
"This is a view to interface with Elasticsearch directly from WEB console. \n"
"Please note that you can damage your Elasticsearch if you don`t know exactly "
"what are you are doing. \n"
-"This view is intended to be used only by users with a knowledge of "
-"Elasticsearch"
+"This view is intended to be used only by users with a knowledge of Elasticsearch"
msgstr ""
"これは、WEBコンソールから直接 Elasticsearch を操作するための画面です。\n"
-"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意"
-"してください。\n"
+"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意し"
+"てください。\n"
"この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としていま"
"す。"
@@ -31342,8 +31088,7 @@ msgstr "1週間"
#: ../../enterprise/operation/log/log_viewer.php:681
#: ../../godmode/reporting/create_container.php:427
#: ../../include/functions.php:2761 ../../include/ajax/module.php:227
-#: ../../include/ajax/graph.ajax.php:155
-#: ../../include/class/AuditLog.class.php:214
+#: ../../include/ajax/graph.ajax.php:155 ../../include/class/AuditLog.class.php:214
msgid "1 month"
msgstr "1ヵ月"
@@ -31422,8 +31167,8 @@ msgid ""
"WARNING: If your email size exceeds your mail attachment size limit, the file "
"will be saved in the local attachment folder."
msgstr ""
-"警告:メールの添付ファイルのサイズ制限を超えると、ファイルはローカルの添付ファ"
-"イルフォルダに保存されます。"
+"警告:メールの添付ファイルのサイズ制限を超えると、ファイルはローカルの添付ファイ"
+"ルフォルダに保存されます。"
#: ../../enterprise/operation/log/log_viewer.php:1239
msgid "The start date cannot be greater than the end date"
@@ -31463,8 +31208,7 @@ msgstr "AWS 表示"
msgid "SAP view"
msgstr "SAP 表示"
-#: ../../enterprise/operation/menu.php:117
-#: ../../enterprise/operation/menu.php:118
+#: ../../enterprise/operation/menu.php:117 ../../enterprise/operation/menu.php:118
#: ../../enterprise/operation/services/services.php:244
msgid "Service tree view"
msgstr "サービスツリー表示"
@@ -31597,8 +31341,8 @@ msgid ""
"Weights configured are common for every item added to the service, if you want "
"to customize them, please edit the service."
msgstr ""
-"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらを"
-"カスタマイズする場合は、サービスを編集してください。"
+"設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらをカ"
+"スタマイズする場合は、サービスを編集してください。"
#: ../../enterprise/operation/services/massive/services.create.php:1174
#: ../../enterprise/operation/services/massive/service.delete.elements.php:209
@@ -31731,8 +31475,8 @@ msgid ""
"Weights configured are common for every item added to the service, if you want "
"to customize them, please edit each element at service element editor."
msgstr ""
-"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらを"
-"カスタマイズする場合は、サービス要素エディタで各要素を編集してください。"
+"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらをカ"
+"スタマイズする場合は、サービス要素エディタで各要素を編集してください。"
#: ../../enterprise/operation/services/massive/service.create.elements.php:646
msgid "Item type to be added"
@@ -31764,8 +31508,7 @@ msgid "Show sunburst"
msgstr "サンバースト表示"
#: ../../enterprise/operation/services/services.service_map.php:129
-#: ../../extensions/agents_modules.php:1043
-#: ../../extensions/module_groups.php:464
+#: ../../extensions/agents_modules.php:1043 ../../extensions/module_groups.php:464
#: ../../godmode/snmpconsole/snmp_alert.php:2203
#: ../../include/functions_reporting_html.php:2281
#: ../../include/class/SnmpConsole.class.php:522
@@ -31871,8 +31614,7 @@ msgstr "表形式表示"
msgid "Operation view"
msgstr "操作画面"
-#: ../../enterprise/tools/ipam/ipam.php:78
-#: ../../enterprise/tools/ipam/ipam.php:356
+#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356
msgid "Subnetworks calculator"
msgstr "サブネット計算"
@@ -32111,8 +31853,7 @@ msgstr "スーパーネットへ追加されるネットワークがありませ
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:446
msgid "supernet name could not be added, please select supernet"
-msgstr ""
-"スーパーネット名を追加できませんでした。スーパーネットを選択してください。"
+msgstr "スーパーネット名を追加できませんでした。スーパーネットを選択してください。"
#: ../../enterprise/tools/ipam/ipam_supernet_config.php:475
msgid "Could not be deleted, please select supernet and network"
@@ -32707,12 +32448,12 @@ msgstr "パッケージをアップロードしました。"
#: ../../update_manager_client/views/offline.php:68
#, php-format
msgid ""
-"Please keep in mind that this package is going to override your actual %s "
-"files and that it's recommended to conduct a backup before continuing the "
-"updating process."
+"Please keep in mind that this package is going to override your actual %s files "
+"and that it's recommended to conduct a backup before continuing the updating "
+"process."
msgstr ""
-"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバッ"
-"クアップを取ることをお勧めします。"
+"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバック"
+"アップを取ることをお勧めします。"
#: ../../update_manager_client/views/offline.php:69
msgid "Click on the file below to begin."
@@ -32763,8 +32504,8 @@ msgid ""
"This update does not correspond with next version of %s. Are you sure you want "
"to install it?"
msgstr ""
-"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしい"
-"ですか?"
+"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしいで"
+"すか?"
#: ../../update_manager_client/views/offline.php:82
msgid ""
@@ -32777,12 +32518,12 @@ msgstr ""
#: ../../update_manager_client/views/offline.php:83
msgid ""
"File name does not match required format: package_NUMBER.oum or "
-"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use "
-"numbers with decimals."
+"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers "
+"with decimals."
msgstr ""
"ファイル名が所定の形式と一致しません: package_数字.oum または "
-"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含む"
-"ことがあります。"
+"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含むこ"
+"とがあります。"
#: ../../update_manager_client/views/offline.php:84
msgid "Files included in this package"
@@ -32800,11 +32541,10 @@ msgstr "パッケージの署名を確認"
#, php-format
msgid ""
"Copy into the textarea the signature validation token you can retrieve from %s "
-"and press OK to verify the package, press ignore to avoid signature "
-"verification"
+"and press OK to verify the package, press ignore to avoid signature verification"
msgstr ""
-"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケー"
-"ジを確認します。'無視する' を押すと署名の確認を回避します。"
+"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケージ"
+"を確認します。'無視する' を押すと署名の確認を回避します。"
#: ../../update_manager_client/views/offline.php:88
msgid ""
@@ -32812,9 +32552,9 @@ msgid ""
"going to be installed unless patches are allowed. Please enable patches in "
"update manager settings."
msgstr ""
-"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ"
-"適用が許可されていない限りインストールされません。 アップデートマネージャの設定"
-"でパッチを有効にしてください。"
+"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ適"
+"用が許可されていない限りインストールされません。 アップデートマネージャの設定で"
+"パッチを有効にしてください。"
#: ../../update_manager_client/views/offline.php:89
#, php-format
@@ -32823,9 +32563,9 @@ msgid ""
"installed unless patches are allowed. Please enable patches in update manager "
"settings."
msgstr ""
-"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されて"
-"いない限りインストールされません。 アップデートマネージャの設定でパッチを有効に"
-"してください。"
+"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されてい"
+"ない限りインストールされません。 アップデートマネージャの設定でパッチを有効にして"
+"ください。"
#: ../../update_manager_client/views/register.php:47
msgid "Register to Warp Update"
@@ -32849,8 +32589,8 @@ msgstr ""
"%s ワープアップデートサーバを購読すると、\n"
" %s インスタンスを %s が所有するデータベースの識別子として登録しま"
"す。 このデータは、\n"
-" %s に関する情報提供のために利用され、第三者に提供されることはありま"
-"せん。 登録は\n"
+" %s に関する情報提供のために利用され、第三者に提供されることはありませ"
+"ん。 登録は\n"
" ワープアップデートオプションからいつでも解除できます。"
#: ../../update_manager_client/views/register.php:74
@@ -33029,8 +32769,7 @@ msgstr "Matrix イベント"
#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251
msgid "WebService engine has not been started, please check documentation."
-msgstr ""
-"ウェブサービスエンジンが起動していません。ドキュメントを確認してください。"
+msgstr "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。"
#: ../../extensions/quick_shell.php:153
msgid "Retry"
@@ -33051,8 +32790,7 @@ msgstr "SSH または Telnet を利用してください。"
#: ../../extensions/quick_shell.php:273
msgid "WebService engine is not working properly, please check documentation."
msgstr ""
-"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してくださ"
-"い。"
+"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してください。"
#: ../../extensions/quick_shell.php:432
#, php-format
@@ -33143,8 +32881,8 @@ msgstr "レポート '%s' でエラーです。指定の名前はすでに使わ
#, php-format
msgid "Warning create '%s' report, the name exist, the report have a name %s."
msgstr ""
-"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は "
-"%s です。"
+"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は %s "
+"です。"
#: ../../extensions/resource_registration.php:114
msgid "Error the report haven't name."
@@ -33193,11 +32931,10 @@ msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前が
#: ../../extensions/resource_registration.php:521
#, php-format
-msgid ""
-"Warning create '%s' visual map, the name exist, the report have a name %s."
+msgid "Warning create '%s' visual map, the name exist, the report have a name %s."
msgstr ""
-"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s "
-"です。"
+"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s で"
+"す。"
#: ../../extensions/resource_registration.php:533
#, php-format
@@ -33268,8 +33005,7 @@ msgstr "リソース"
#: ../../extensions/resource_registration.php:1112
#, php-format
-msgid ""
-"This node is configured with centralized mode. Go to %s to create a policy."
+msgid "This node is configured with centralized mode. Go to %s to create a policy."
msgstr ""
"このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。"
@@ -33284,8 +33020,8 @@ msgstr "ここに、.ptr フォーマットでリソーステンプレートを
#: ../../extensions/resource_registration.php:1121
#, php-format
msgid ""
-"Please refer to our documentation for more information on how to obtain and "
-"use %s resources."
+"Please refer to our documentation for more information on how to obtain and use "
+"%s resources."
msgstr ""
"%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してくださ"
"い。"
@@ -33295,8 +33031,8 @@ msgid ""
"You can get more resurces in our Public Resource Library"
msgstr ""
-"公開リソースライブラリか"
-"ら追加のリソースを入手できます。"
+"公開リソースライブラリから"
+"追加のリソースを入手できます。"
#: ../../extensions/resource_registration.php:1131
msgid "File to upload"
@@ -33316,11 +33052,9 @@ msgstr "API チェッカ"
msgid "%s Console URL"
msgstr "%s コンソールURL"
-#: ../../extensions/api_checker.php:243
-#: ../../godmode/users/configure_user.php:1006
+#: ../../extensions/api_checker.php:243 ../../godmode/users/configure_user.php:1006
#: ../../godmode/users/configure_user.php:1029
-#: ../../operation/users/user_edit.php:299
-#: ../../operation/users/user_edit.php:338
+#: ../../operation/users/user_edit.php:299 ../../operation/users/user_edit.php:338
msgid "API Token"
msgstr "API トークン"
@@ -33391,9 +33125,8 @@ msgid ""
"This extension checks the DB is correct. Because sometimes the old DB from a "
"migration has not some fields in the tables or the data is changed."
msgstr ""
-"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーション"
-"でテーブルのフィールドが不足していたりデータが変更されていなかったりするためで"
-"す。"
+"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーションで"
+"テーブルのフィールドが不足していたりデータが変更されていなかったりするためです。"
#: ../../extensions/db_status.php:56
msgid "At the moment the checks is for MySQL/MariaDB."
@@ -33515,8 +33248,8 @@ msgid ""
"Warning, you are accessing the database directly. You can leave the system "
"inoperative if you run an inappropriate SQL statement"
msgstr ""
-"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行す"
-"ると、システムが動作しなくなる可能性があります"
+"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行する"
+"と、システムが動作しなくなる可能性があります"
#: ../../extensions/dbmanager.php:137
#, php-format
@@ -33528,16 +33261,15 @@ msgid ""
" if you don't know exactly what are you are doing,\n"
" this means that you can severily damage your setup using this "
"extension.\n"
-" This extension is intended to be used only by experienced "
-"users\n"
+" This extension is intended to be used only by experienced users"
+"b>\n"
" with a depth knowledge of %s internals."
msgstr ""
"これは、WEB コンソールから %s データベースと直接接続するための高度な拡張機能で"
"す。\n"
"\t\t何をやっているかを正しく把握していない場合、%s のインストールを\n"
"\t\t破壊する可能性があることに注意してください。\n"
-"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性がありま"
-"す。\n"
+"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性があります。\n"
"\t\tこの拡張は、%s の内部について深い理解を持っているユーザにのみ\n"
"\t\t利用いただくことを想定しています。"
@@ -33579,8 +33311,7 @@ msgstr "モジュールの値表示"
msgid "Information to be shown"
msgstr "表示情報"
-#: ../../extensions/agents_modules.php:543
-#: ../../include/functions_reports.php:807
+#: ../../extensions/agents_modules.php:543 ../../include/functions_reports.php:807
msgid "Agents/Modules"
msgstr "エージェント/モジュール"
@@ -33669,8 +33400,8 @@ msgstr "コンソールで %s ログファイルを直接参照するために
#: ../../extensions/pandora_logs.php:110
msgid ""
-"You can choose the amount of information shown in general setup (Log size "
-"limit in system logs viewer extension), "
+"You can choose the amount of information shown in general setup (Log size limit "
+"in system logs viewer extension), "
msgstr ""
"一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できま"
"す。 "
@@ -33771,41 +33502,40 @@ msgid "Search by module group"
msgstr "モジュールグループでの検索"
#: ../../extensions/module_groups.php:455
-msgid ""
-"Orange cell when the module group and agent have at least one alarm fired."
+msgid "Orange cell when the module group and agent have at least one alarm fired."
msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが"
-"発生している時にオレンジになります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが発"
+"生している時にオレンジになります。"
#: ../../extensions/module_groups.php:456
msgid ""
"Red cell when the module group and agent have at least one module in critical "
"status and the others in any status"
msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の"
-"時に赤になります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の時"
+"に赤になります。"
#: ../../extensions/module_groups.php:457
msgid ""
-"Yellow cell when the module group and agent have at least one in warning "
-"status and the others in grey or green status"
+"Yellow cell when the module group and agent have at least one in warning status "
+"and the others in grey or green status"
msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態"
-"で、その他のモジュールが不明か正常状態の時にに黄色なります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態で、"
+"その他のモジュールが不明か正常状態の時にに黄色なります。"
#: ../../extensions/module_groups.php:458
msgid ""
"Grey cell when the module group and agent have at least one in unknown status "
"and the others in green status"
msgstr ""
-"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態"
-"で、その他のモジュールが正常状態の時にグレーになります。"
+"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態で、"
+"その他のモジュールが正常状態の時にグレーになります。"
#: ../../extensions/module_groups.php:459
msgid "Green cell when the module group and agent have all modules in OK status"
msgstr ""
-"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑にな"
-"ります。"
+"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑になり"
+"ます。"
#: ../../extensions/module_groups.php:460
msgid ""
@@ -33814,8 +33544,8 @@ msgstr "青のセルは、全モジュールが未初期化状態であること
#: ../../extensions/module_groups.php:466
msgid ""
-"This table shows in columns the modules group and in rows agents group. The "
-"cell shows all modules"
+"This table shows in columns the modules group and in rows agents group. The cell "
+"shows all modules"
msgstr ""
"列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モ"
"ジュールの状態を表示しています。"
@@ -33854,8 +33584,7 @@ msgstr "エージェント(%s)、モジュール(%s) のデータを保存でき
msgid "Save agent (%s), module (%s) data xml."
msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。"
-#: ../../extensions/realtime_graphs.php:58
-#: ../../extensions/realtime_graphs.php:295
+#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:295
msgid "Realtime graphs"
msgstr "リアルタイムグラフ"
@@ -33922,8 +33651,7 @@ msgstr "接続ユーザ一覧"
msgid "Workspace"
msgstr "ワークスペース"
-#: ../../extensions/users_connected.php:68
-#: ../../extensions/users_connected.php:243
+#: ../../extensions/users_connected.php:68 ../../extensions/users_connected.php:243
msgid "Users connected"
msgstr "接続ユーザ"
@@ -34011,8 +33739,8 @@ msgid ""
"This node is configured with centralized mode. Component groups are read only. "
"Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り"
-"専用です。管理は %s にて行います。"
+"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り専"
+"用です。管理は %s にて行います。"
#: ../../godmode/modules/manage_nc_groups.php:334
msgid "There are no defined component groups"
@@ -34111,8 +33839,8 @@ msgid ""
"This node is configured with centralized mode. All remote components are read "
"only. Go to %s to manage them."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは"
-"読み取り専用です。 それらを管理するには、%s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは読"
+"み取り専用です。 それらを管理するには、%s に移動します。"
#: ../../godmode/modules/manage_network_components.php:433
msgid "Could not be created because the component exists"
@@ -34387,9 +34115,9 @@ msgid ""
"maintenance daemon is running. It's very important to keep your database up to "
"date in order to get the best performance and results from %s."
msgstr ""
-"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されて"
-"いることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データ"
-"ベースを最新の状態に保つことが非常に重要です。"
+"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されてい"
+"ることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データベー"
+"スを最新の状態に保つことが非常に重要です。"
#: ../../godmode/groups/configure_group.php:95
msgid "Update group"
@@ -34472,8 +34200,8 @@ msgid ""
"This node is configured with centralized mode. All groups information is read "
"only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専"
-"用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専用"
+"です。管理するには %s に移動します。"
#: ../../godmode/groups/group_list.php:465
#: ../../godmode/groups/modu_group_list.php:129
@@ -34485,13 +34213,11 @@ msgstr "グループを作成しました。"
msgid "There was a problem creating group"
msgstr "グループの作成に失敗しました。"
-#: ../../godmode/groups/group_list.php:470
-#: ../../godmode/groups/group_list.php:542
+#: ../../godmode/groups/group_list.php:470 ../../godmode/groups/group_list.php:542
msgid "Each group must have a different name"
msgstr "各グループは異なる名前でなければいけません"
-#: ../../godmode/groups/group_list.php:473
-#: ../../godmode/groups/group_list.php:545
+#: ../../godmode/groups/group_list.php:473 ../../godmode/groups/group_list.php:545
msgid "Group must have a name"
msgstr "グループには名前が必要です"
@@ -34537,8 +34263,7 @@ msgstr "グループの削除に失敗しました。"
msgid "The group is not empty. It is use in %s."
msgstr "グループが空ではありません。%s で利用されています。"
-#: ../../godmode/groups/group_list.php:774
-#: ../../godmode/groups/group_list.php:994
+#: ../../godmode/groups/group_list.php:774 ../../godmode/groups/group_list.php:994
msgid "There are no defined groups"
msgstr "グループが定義されていません"
@@ -34551,8 +34276,7 @@ msgid "Are you sure? This group will also be deleted in all the nodes."
msgstr "よろしいですか? このグループはすべてのノードで削除されます。"
#: ../../godmode/groups/group_list.php:964
-msgid ""
-"The child groups will be updated to use the parent id of the deleted group"
+msgid "The child groups will be updated to use the parent id of the deleted group"
msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます"
#: ../../godmode/groups/configure_modu_group.php:30
@@ -34570,11 +34294,11 @@ msgstr "モジュールグループ一覧"
#: ../../godmode/groups/modu_group_list.php:102
#, php-format
msgid ""
-"This node is configured with centralized mode. All module groups information "
-"is read only. Go to %s to manage it."
+"This node is configured with centralized mode. All module groups information is "
+"read only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は"
-"読み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は読"
+"み取り専用です。管理するには %s に移動します。"
#: ../../godmode/groups/modu_group_list.php:137
#: ../../godmode/groups/modu_group_list.php:173
@@ -34716,11 +34440,11 @@ msgstr "%s コミュニティリマインダ"
#: ../../godmode/update_manager/update_manager.setup.php:393
#, php-format
msgid ""
-"Every 8 days, a message is displayed to admin users to remember to register "
-"this %s instance"
+"Every 8 days, a message is displayed to admin users to remember to register this "
+"%s instance"
msgstr ""
-"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに"
-"表示します。"
+"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに表"
+"示します。"
#: ../../godmode/update_manager/update_manager.history.php:42
msgid "Origin"
@@ -34759,19 +34483,18 @@ msgstr "ユーザプロファイル管理"
#: ../../godmode/users/profile_list.php:96
#: ../../godmode/users/configure_profile.php:90
#: ../../godmode/users/configure_profile.php:389
-#: ../../godmode/users/user_list.php:301
-#: ../../godmode/users/configure_user.php:280
+#: ../../godmode/users/user_list.php:301 ../../godmode/users/configure_user.php:280
msgid "Manage users"
msgstr "ユーザ管理"
#: ../../godmode/users/profile_list.php:124
#, php-format
msgid ""
-"This node is configured with centralized mode. All profiles information is "
-"read only. Go to %s to manage it."
+"This node is configured with centralized mode. All profiles information is read "
+"only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取"
-"り専用です。管理には %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取り"
+"専用です。管理には %s に移動します。"
#: ../../godmode/users/profile_list.php:136 ../../godmode/users/user_list.php:412
msgid "There was a problem deleting the profile"
@@ -34992,8 +34715,7 @@ msgstr "%s 管理"
msgid "Profile name already on use, please, change the name before save"
msgstr "プロファイルが既に存在します。保存する前に名前を変更してください。"
-#: ../../godmode/users/user_list.php:351
-#: ../../godmode/users/configure_user.php:115
+#: ../../godmode/users/user_list.php:351 ../../godmode/users/configure_user.php:115
#, php-format
msgid "Deleted user %s"
msgstr "ユーザ %s を削除しました"
@@ -35003,26 +34725,22 @@ msgstr "ユーザ %s を削除しました"
msgid "There was a problem deleting the user"
msgstr "ユーザの削除に失敗しました。"
-#: ../../godmode/users/user_list.php:376
-#: ../../godmode/users/configure_user.php:137
+#: ../../godmode/users/user_list.php:376 ../../godmode/users/configure_user.php:137
#, php-format
msgid "Deleted user %s from metaconsole"
msgstr "メタコンソールから、ユーザ %s を削除しました"
-#: ../../godmode/users/user_list.php:388
-#: ../../godmode/users/configure_user.php:149
+#: ../../godmode/users/user_list.php:388 ../../godmode/users/configure_user.php:149
#, php-format
msgid "Deleted user %s from %s"
msgstr "ユーザ %s を %s から削除しました"
-#: ../../godmode/users/user_list.php:394
-#: ../../godmode/users/configure_user.php:158
+#: ../../godmode/users/user_list.php:394 ../../godmode/users/configure_user.php:158
#, php-format
msgid "Successfully deleted from %s"
msgstr "%s から削除しました"
-#: ../../godmode/users/user_list.php:395
-#: ../../godmode/users/configure_user.php:159
+#: ../../godmode/users/user_list.php:395 ../../godmode/users/configure_user.php:159
#, php-format
msgid "There was a problem deleting the user from %s"
msgstr "%s からのユーザ削除で問題が発生しました"
@@ -35045,8 +34763,8 @@ msgid ""
"This node is configured with centralized mode. All users information is read "
"only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用"
-"です。管理には %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用で"
+"す。管理には %s に移動します。"
#: ../../godmode/users/user_list.php:580
msgid "Profile / Group"
@@ -35069,11 +34787,10 @@ msgid ""
"Other profiles you cannot manage are also assigned. These profiles are not "
"shown. You cannot enable/disable or delete this user."
msgstr ""
-"管理できない他のプロファイルも割り当てられています。これらのプロファイルは表示"
-"されていません。このユーザを有効/無効または削除することはできません。"
+"管理できない他のプロファイルも割り当てられています。これらのプロファイルは表示さ"
+"れていません。このユーザを有効/無効または削除することはできません。"
-#: ../../godmode/users/user_list.php:823
-#: ../../include/functions_reporting.php:5140
+#: ../../godmode/users/user_list.php:823 ../../include/functions_reporting.php:5140
#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87
msgid "The user doesn't have any assigned profile/group"
msgstr ""
@@ -35148,8 +34865,7 @@ msgstr "プロファイルの追加に失敗しました。"
#: ../../godmode/users/configure_user.php:852
#: ../../godmode/users/configure_user.php:859
#: ../../godmode/users/configure_user.php:891
-#: ../../operation/users/user_edit.php:216
-#: ../../operation/users/user_edit.php:262
+#: ../../operation/users/user_edit.php:216 ../../operation/users/user_edit.php:262
msgid "User info successfully updated"
msgstr "ユーザ情報を更新しました。"
@@ -35179,15 +34895,14 @@ msgid "You have generated a new API Token."
msgstr "新たな API トークンを生成しました。"
#: ../../godmode/users/configure_user.php:881
-msgid ""
-"Strict ACL is not recommended for this user. Performance could be affected."
+msgid "Strict ACL is not recommended for this user. Performance could be affected."
msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。"
#: ../../godmode/users/configure_user.php:1014
#: ../../operation/users/user_edit.php:306
msgid ""
-"The API token will be renewed. After this action, the last token you were "
-"using will not work. Are you sure?"
+"The API token will be renewed. After this action, the last token you were using "
+"will not work. Are you sure?"
msgstr ""
"API トークンが更新されます。 これの実行後は以前のトークンは利用できなくなりま"
"す。 よろしいですか?"
@@ -35258,8 +34973,8 @@ msgid ""
"Add the source IPs that will allow console access. Each IP must be separated "
"only by comma. * allows all."
msgstr ""
-"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る"
-"必要があります。* はすべてを許可します。"
+"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る必"
+"要があります。* はすべてを許可します。"
#: ../../godmode/users/configure_user.php:1269
msgid "Skin"
@@ -35293,9 +35008,8 @@ msgid ""
"ver_agente&id_agente=1 to show agent detail view"
msgstr ""
"ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳"
-"細' が表示されます。 例: 'その他' を選択し、index.php?"
-"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 と入力すると、エージェ"
-"ントの詳細を表示します。"
+"細' が表示されます。 例: 'その他' を選択し、index.php?sec=estado&sec2=operation/"
+"agentes/ver_agente&id_agente=1 と入力すると、エージェントの詳細を表示します。"
#: ../../godmode/users/configure_user.php:1410
msgid "Metaconsole access"
@@ -35338,8 +35052,7 @@ msgstr "ノードアクセスを有効にする"
#: ../../godmode/users/configure_user.php:1617
msgid "With this option enabled, the user will can access to nodes console"
-msgstr ""
-"このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。"
+msgstr "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。"
#: ../../godmode/users/configure_user.php:1849
msgid "yes"
@@ -35364,11 +35077,11 @@ msgstr "最後のプロファイルを削除すると、このユーザが削除
#: ../../godmode/users/configure_user.php:1975
msgid ""
-"User will be created without profiles assigned and won't be able to log in, "
-"are you sure?"
+"User will be created without profiles assigned and won't be able to log in, are "
+"you sure?"
msgstr ""
-"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなり"
-"ます。よろしいですか?"
+"ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなりま"
+"す。よろしいですか?"
#: ../../godmode/users/configure_user.php:2082
#: ../../operation/users/user_edit.php:1256
@@ -35443,8 +35156,7 @@ msgstr "ローカルユーザ"
#: ../../godmode/users/user_management.php:372
msgid ""
-"The user with local authentication enabled will always use local "
-"authentication."
+"The user with local authentication enabled will always use local authentication."
msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。"
#: ../../godmode/users/user_management.php:384
@@ -35453,8 +35165,8 @@ msgstr "セッション時間"
#: ../../godmode/users/user_management.php:394
msgid ""
-"This is defined in minutes, If you wish a permanent session should putting -1 "
-"in this field."
+"This is defined in minutes, If you wish a permanent session should putting -1 in "
+"this field."
msgstr "分単位で定義します。無制限の場合は -1 を設定してください。"
#: ../../godmode/users/user_management.php:399
@@ -35478,8 +35190,7 @@ msgstr "自動更新ページ"
#: ../../godmode/massive/massive_edit_users.php:427
#: ../../godmode/massive/massive_edit_users.php:428
#: ../../include/functions_html.php:1381 ../../include/functions_html.php:1382
-#: ../../operation/users/user_edit.php:690
-#: ../../operation/users/user_edit.php:691
+#: ../../operation/users/user_edit.php:690 ../../operation/users/user_edit.php:691
msgid "Push selected pages into autorefresh list"
msgstr "選択したページを自動更新にする"
@@ -35488,8 +35199,7 @@ msgstr "選択したページを自動更新にする"
#: ../../godmode/massive/massive_edit_users.php:437
#: ../../godmode/massive/massive_edit_users.php:438
#: ../../include/functions_html.php:1393 ../../include/functions_html.php:1394
-#: ../../operation/users/user_edit.php:699
-#: ../../operation/users/user_edit.php:700
+#: ../../operation/users/user_edit.php:699 ../../operation/users/user_edit.php:700
msgid "Pop selected pages out of autorefresh list"
msgstr "選択したページを自動更新から外す"
@@ -35505,11 +35215,11 @@ msgstr "自動更新時間"
#: ../../godmode/massive/massive_edit_users.php:454
#: ../../operation/users/user_edit.php:716
msgid ""
-"Interval of autorefresh of the elements, by default they are 30 seconds, "
-"needing to enable the autorefresh first"
+"Interval of autorefresh of the elements, by default they are 30 seconds, needing "
+"to enable the autorefresh first"
msgstr ""
-"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要"
-"があります。"
+"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要が"
+"あります。"
#: ../../godmode/users/user_management.php:554
msgid "Language and Appearance"
@@ -35585,11 +35295,11 @@ msgstr "オプション。WMI 名前空間。不明な場合は空白のまま
#: ../../godmode/agentes/module_manager_editor_wmi.php:193
msgid ""
-"Optional. Substring to look for in the WQL query result. The module returns 1 "
-"if found, 0 if not."
+"Optional. Substring to look for in the WQL query result. The module returns 1 if "
+"found, 0 if not."
msgstr ""
-"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は "
-"1 を返し、見つからない場合は 0 を返します。"
+"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は 1 "
+"を返し、見つからない場合は 0 を返します。"
#: ../../godmode/agentes/module_manager_editor_wmi.php:217
msgid "Column number to retrieve from the WQL query result (starting from zero)."
@@ -35771,8 +35481,8 @@ msgstr "エージェントのロードに失敗しました。"
#: ../../godmode/agentes/configurar_agente.php:1736
msgid ""
-"There was a problem updating module. Another module already exists with the "
-"same name."
+"There was a problem updating module. Another module already exists with the same "
+"name."
msgstr ""
"モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。"
@@ -35780,8 +35490,7 @@ msgstr ""
msgid ""
"There was a problem updating module. Some required fields are missed: (name)"
msgstr ""
-"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名"
-"前)"
+"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)"
#: ../../godmode/agentes/configurar_agente.php:1744
msgid "There was a problem updating module. \"No change\""
@@ -35803,11 +35512,9 @@ msgstr ""
"モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。"
#: ../../godmode/agentes/configurar_agente.php:1917
-msgid ""
-"There was a problem adding module. Some required fields are missed : (name)"
+msgid "There was a problem adding module. Some required fields are missed : (name)"
msgstr ""
-"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名"
-"前)"
+"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)"
#: ../../godmode/agentes/configurar_agente.php:1923
msgid "There was a problem adding module. Processing error"
@@ -35916,8 +35623,7 @@ msgstr "ファイル入力要素がみつかりません。"
#: ../../godmode/agentes/module_manager_editor.php:989
msgid "This browser doesn`t seem to support the files property of file inputs."
msgstr ""
-"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていませ"
-"ん。"
+"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていません。"
#: ../../godmode/agentes/module_manager_editor.php:990
msgid "Please select a file before clicking Load"
@@ -35943,11 +35649,10 @@ msgstr "%s で定義されたエージェント"
#: ../../godmode/agentes/modificar_agente.php:125
#, php-format
-msgid ""
-"This node is configured with centralized mode. Go to %s to delete an agent"
+msgid "This node is configured with centralized mode. Go to %s to delete an agent"
msgstr ""
-"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に"
-"移動します"
+"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に移"
+"動します"
#: ../../godmode/agentes/modificar_agente.php:170
msgid "Success deleted agent."
@@ -36036,8 +35741,8 @@ msgid ""
"There is no GIS data for this agent, so it's positioned in default position of "
"map."
msgstr ""
-"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に"
-"配置します。"
+"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に配"
+"置します。"
#: ../../godmode/agentes/agent_conf_gis.php:58
msgid ""
@@ -36184,8 +35889,8 @@ msgid ""
"Not created. Error inserting data. Start time must be higher than the current "
"time"
msgstr ""
-"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなけれ"
-"ばいけません。"
+"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなければ"
+"いけません。"
#: ../../godmode/agentes/planned_downtime.editor.php:266
#: ../../godmode/agentes/planned_downtime.editor.php:270
@@ -36405,8 +36110,8 @@ msgstr "モジュールを選択してください。"
#: ../../godmode/agentes/planned_downtime.editor.php:2046
msgid ""
-"WARNING: If you edit this scheduled downtime, the data of future SLA reports "
-"may be altered"
+"WARNING: If you edit this scheduled downtime, the data of future SLA reports may "
+"be altered"
msgstr ""
"警告: この計画停止を編集すると、将来の SLA レポートデータが置き換えられます"
@@ -36453,8 +36158,7 @@ msgstr "前面に表示"
#: ../../godmode/agentes/configure_field.php:128
#: ../../operation/agentes/custom_fields.php:67
msgid ""
-"The fields with display on front enabled will be displayed into the agent "
-"details"
+"The fields with display on front enabled will be displayed into the agent details"
msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。"
#: ../../godmode/agentes/fields_manager.php:228
@@ -36475,8 +36179,8 @@ msgid ""
msgstr ""
"必要であれば、シングルクォーテーションを使ってください。\n"
"\n"
-"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープし"
-"てください。"
+"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープして"
+"ください。"
#: ../../godmode/agentes/module_manager_editor_network.php:536
msgid "Windows remote"
@@ -36493,8 +36197,7 @@ msgid "Use alias as name"
msgstr "名前に別名を利用"
#: ../../godmode/agentes/agent_manager.php:407
-#: ../../godmode/setup/setup_general.php:649
-#: ../../include/functions_config.php:390
+#: ../../godmode/setup/setup_general.php:649 ../../include/functions_config.php:390
msgid "Unique IP"
msgstr "ユニーク IP"
@@ -36586,11 +36289,11 @@ msgstr "セカンダリグループはプライマリにできません。"
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23
#: ../../operation/incidents/list_integriaims_incidents.php:44
msgid ""
-"In order to access ticket management system, integration with Integria IMS "
-"must be enabled and properly configured"
+"In order to access ticket management system, integration with Integria IMS must "
+"be enabled and properly configured"
msgstr ""
-"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正"
-"しく設定されている必要があります"
+"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正し"
+"く設定されている必要があります"
#: ../../godmode/agentes/agent_incidents.php:65
msgid "No incidents associated to this agent"
@@ -36620,16 +36323,16 @@ msgid ""
"You cannot set the Password type until you clear the combo values and click on "
"update button."
msgstr ""
-"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定するこ"
-"とはできません。"
+"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定すること"
+"はできません。"
#: ../../godmode/agentes/configure_field.php:93
msgid ""
-"You cannot unset the enable combo until you clear the combo values and click "
-"on update."
+"You cannot unset the enable combo until you clear the combo values and click on "
+"update."
msgstr ""
-"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできま"
-"せん。"
+"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできませ"
+"ん。"
#: ../../godmode/agentes/configure_field.php:97
msgid "If you select Enabled combo the Password type will be disabled."
@@ -36649,8 +36352,8 @@ msgstr "パスタイプ"
#: ../../godmode/agentes/configure_field.php:154
msgid ""
-"The fields with pass type enabled will be displayed like html input type pass "
-"in html"
+"The fields with pass type enabled will be displayed like html input type pass in "
+"html"
msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。"
#: ../../godmode/agentes/configure_field.php:166
@@ -36791,8 +36494,8 @@ msgid "S"
msgstr "S"
#: ../../godmode/agentes/module_manager.php:836
-#: ../../godmode/agentes/module_manager.php:844
-#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072
+#: ../../godmode/agentes/module_manager.php:844 ../../include/ajax/module.php:1064
+#: ../../include/ajax/module.php:1072
msgid "Adopted"
msgstr "適用"
@@ -36874,8 +36577,7 @@ msgstr "フィルタ管理"
msgid "Netflow filters"
msgstr "Netflow フィルタ"
-#: ../../godmode/netflow/nf_edit.php:225
-#: ../../godmode/events/event_filter.php:224
+#: ../../godmode/netflow/nf_edit.php:225 ../../godmode/events/event_filter.php:224
msgid "There are no defined filters"
msgstr "定義済のフィルタがありません"
@@ -36923,12 +36625,11 @@ msgstr "宛先 IP"
#: ../../godmode/netflow/nf_edit_form.php:286
#: ../../operation/netflow/nf_live_view.php:294
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"
+"Destination IP. A comma separated list of destination ip. If we leave the field "
+"blank, will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249"
msgstr ""
-"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によ"
-"るフィルタ例:
25.46.157.214,160.253.135.249"
+"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP による"
+"フィルタ例:
25.46.157.214,160.253.135.249"
#: ../../godmode/netflow/nf_edit_form.php:290
#: ../../operation/netflow/nf_live_view.php:302
@@ -36941,8 +36642,8 @@ msgid ""
"Source IP. A comma separated list of source ip. If we leave the field blank, "
"will show all ip. Example filter by ip:
25.46.157.214,160.253.135.249"
msgstr ""
-"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IP"
-"によるフィルタ例:
25.46.157.214,160.253.135.249"
+"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IPに"
+"よるフィルタ例:
25.46.157.214,160.253.135.249"
#: ../../godmode/netflow/nf_edit_form.php:310
#: ../../operation/netflow/nf_live_view.php:313
@@ -36950,8 +36651,8 @@ 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 ""
-"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。"
-"ポート 80 および 22 のフィルタ例:
80,22"
+"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。ポー"
+"ト 80 および 22 のフィルタ例:
80,22"
#: ../../godmode/netflow/nf_edit_form.php:322
#: ../../operation/netflow/nf_live_view.php:321
@@ -37109,7 +36810,7 @@ msgstr "SNMPアラートID"
#: ../../godmode/snmpconsole/snmp_alert.php:2225
msgid "Do you want delete this alert?"
-msgstr "このエージェントを削除しますか?"
+msgstr "このアラートを削除しますか?"
#: ../../godmode/snmpconsole/snmp_alert.php:2240
msgid "Do you want delete the selected alerts?"
@@ -37598,15 +37299,15 @@ msgid ""
"No changes have been made because they exceed the maximum allowed (%d). Make "
"fewer changes or contact the administrator."
msgstr ""
-"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理"
-"者に連絡してください。"
+"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理者"
+"に連絡してください。"
#: ../../godmode/massive/massive_operations.php:440
#, php-format
msgid "This node is configured with centralized mode. To delete agents go to %s"
msgstr ""
-"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s "
-"に移動します"
+"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s に"
+"移動します"
#: ../../godmode/massive/massive_operations.php:448
msgid "The blank fields will not be updated"
@@ -37739,11 +37440,11 @@ msgstr "エージェントを先に選択してください"
#: ../../godmode/massive/massive_add_profiles.php:52
#, php-format
msgid ""
-"This node is configured with centralized mode. All profiles user information "
-"is read only. Go to %s to manage it."
+"This node is configured with centralized mode. All profiles user information is "
+"read only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報"
-"は読み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報は"
+"読み取り専用です。管理するには %s に移動します。"
#: ../../godmode/massive/massive_edit_users.php:153
#, php-format
@@ -37791,8 +37492,8 @@ msgid ""
"There was an error deleting the agent, the operation has been cancelled Could "
"not delete agent %s"
msgstr ""
-"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェ"
-"ント %s は削除できません。"
+"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェン"
+"ト %s は削除できません。"
#: ../../godmode/massive/massive_delete_agents.php:132
#, php-format
@@ -38019,8 +37720,8 @@ msgid ""
"config.php in each individual console and wait for cron to run in order to be "
"registered."
msgstr ""
-"コンソールを登録したい場合は、各コンソールで config.php を編集してコンソールを"
-"定義し、登録のための cron が実行されるまで待つ必要があります。"
+"コンソールを登録したい場合は、各コンソールで config.php を編集してコンソールを定"
+"義し、登録のための cron が実行されるまで待つ必要があります。"
#: ../../godmode/alerts/configure_alert_command.php:67
msgid "Configure alert command"
@@ -38030,11 +37731,11 @@ msgstr "コマンドの作成"
#: ../../godmode/alerts/alert_commands.php:737
#, php-format
msgid ""
-"This node is configured with centralized mode. All alert commands information "
-"is read only. Go to %s to manage it."
+"This node is configured with centralized mode. All alert commands information is "
+"read only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読"
-"み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読み"
+"取り専用です。管理するには %s に移動します。"
#: ../../godmode/alerts/configure_alert_command.php:304
#, php-format
@@ -38063,11 +37764,11 @@ msgstr "アクション"
#: ../../godmode/alerts/configure_alert_action.php:132
#, php-format
msgid ""
-"This node is configured with centralized mode. All alert actions information "
-"is read only. Go to %s to manage it."
+"This node is configured with centralized mode. All alert actions information is "
+"read only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は"
-"読み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は読"
+"み取り専用です。管理するには %s に移動します。"
#: ../../godmode/alerts/alert_actions.php:421
msgid ""
@@ -38077,11 +37778,11 @@ msgstr ""
#: ../../godmode/alerts/alert_actions.php:432
msgid ""
-"The action and the command associated with it do not have the same group. "
-"Please contact an administrator to fix it."
+"The action and the command associated with it do not have the same group. Please "
+"contact an administrator to fix it."
msgstr ""
-"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連"
-"絡して修正してください。"
+"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連絡"
+"して修正してください。"
#: ../../godmode/alerts/alert_actions.php:496
msgid "No alert actions configured"
@@ -38131,8 +37832,8 @@ msgid ""
"For sending emails, text must be HTML format, if you want to use plain text, "
"type it between the following labels: "
msgstr ""
-"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキ"
-"ストを使いたい場合は、ラベル の間に入力してください。"
+"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキス"
+"トを使いたい場合は、ラベル の間に入力してください。"
#: ../../godmode/alerts/alert_commands.php:221
#: ../../godmode/alerts/alert_commands.php:252
@@ -38158,8 +37859,8 @@ msgid ""
"Command management is limited to administrator users or user profiles with "
"permissions PM"
msgstr ""
-"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられた"
-"ユーザに制限されています"
+"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられたユー"
+"ザに制限されています"
#: ../../godmode/alerts/alert_commands.php:590
msgid "Alert commands"
@@ -38189,16 +37890,16 @@ msgid ""
"This node is configured with centralized mode. All alert templates information "
"is read only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
-"は読み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は"
+"読み取り専用です。管理するには %s に移動します。"
#: ../../godmode/alerts/alert_templates.php:438
msgid ""
"You cannot edit this alert template, You don't have the permission to edit All "
"group."
msgstr ""
-"このアラートテンプレートを編集することはできません。'全て' グループを編集する権"
-"限がありません。"
+"このアラートテンプレートを編集することはできません。'全て' グループを編集する権限"
+"がありません。"
#: ../../godmode/alerts/alert_templates.php:505
msgid "No alert templates defined"
@@ -38226,8 +37927,8 @@ msgid "Recovery"
msgstr "復旧通知"
#: ../../godmode/alerts/configure_alert_action.php:330
-#: ../../godmode/alerts/alert_view.php:533
-#: ../../godmode/alerts/alert_view.php:660 ../../godmode/servers/plugin.php:513
+#: ../../godmode/alerts/alert_view.php:533 ../../godmode/alerts/alert_view.php:660
+#: ../../godmode/servers/plugin.php:513
msgid "Command preview"
msgstr "実行されるコマンドのプレビュー"
@@ -38240,8 +37941,8 @@ msgid ""
"If closed status is set on recovery, a workunit will be added to the ticket in "
"Integria IMS rather that closing the ticket."
msgstr ""
-"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットを"
-"クローズするのではなく、Integria IMS のチケットに追加されます。"
+"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットをク"
+"ローズするのではなく、Integria IMS のチケットに追加されます。"
#: ../../godmode/alerts/configure_alert_template.php:104
#: ../../godmode/alerts/configure_alert_template.php:135
@@ -38263,11 +37964,11 @@ msgstr "拡張フィールド"
#: ../../godmode/alerts/configure_alert_template.php:436
#, php-format
msgid ""
-"This node is configured with centralized mode. All alerts templates "
-"information is read only. Go to Go to %s to manage it."
+"This node is configured with centralized mode. All alerts templates information "
+"is read only. Go to Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
-"は読み取り専用です。 管理するには、%s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は"
+"読み取り専用です。 管理するには、%s に移動します。"
#: ../../godmode/alerts/configure_alert_template.php:548
msgid "No template name specified"
@@ -38275,11 +37976,11 @@ msgstr "テンプレート名が指定されていません"
#: ../../godmode/alerts/configure_alert_template.php:722
msgid ""
-"Unless they're left blank, the fields from the action will override those set "
-"on the template."
+"Unless they're left blank, the fields from the action will override those set on "
+"the template."
msgstr ""
-"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が"
-"優先されます。"
+"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が優"
+"先されます。"
#: ../../godmode/alerts/configure_alert_template.php:767
msgid "Reset counter for non-sustained alerts"
@@ -38290,8 +37991,8 @@ msgid ""
"Enable this option if you want the counter to be reset when the alert is not "
"being fired consecutively, even if it's within the time threshold"
msgstr ""
-"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタ"
-"をリセットしたい場合にこのオプションを有効化します。"
+"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタを"
+"リセットしたい場合にこのオプションを有効化します。"
#: ../../godmode/alerts/configure_alert_template.php:818
msgid "Condition type"
@@ -38354,8 +38055,8 @@ msgid ""
"The alert would fire when the value is not between and "
""
msgstr ""
-"値が と の間にない場合、アラートが発"
-"生します。"
+"値が と の間にない場合、アラートが発生"
+"します。"
#: ../../godmode/alerts/configure_alert_template.php:1272
#: ../../godmode/alerts/alert_view.php:206
@@ -38406,8 +38107,8 @@ msgid ""
"The alert would fire when the module is in unknown status. Warning: "
"unknown_updates of pandora_server.conf must be equal to 1"
msgstr ""
-"モジュールのステータスが不明の場合、アラートが発生します。 警告: "
-"pandora_server.conf の unknown_updates を 1 にする必要があります"
+"モジュールのステータスが不明の場合、アラートが発生します。 警告: pandora_server."
+"conf の unknown_updates を 1 にする必要があります"
#: ../../godmode/alerts/alert_view.php:89 ../../godmode/alerts/alert_view.php:90
#: ../../godmode/alerts/alert_list.php:487
@@ -38424,13 +38125,13 @@ msgstr "スタンバイ"
msgid ""
"The alert would fire when the value doesn't match "
msgstr ""
-"取得した値が にマッチしない場合、アラートを発生させ"
-"ます。"
+"取得した値が にマッチしない場合、アラートを発生させま"
+"す。"
#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519
msgid ""
-"The alert would fire when the value is not between "
-"and "
+"The alert would fire when the value is not between and "
+""
msgstr ""
"取得した値が と の間を外れた"
"ら、アラートを発生させます。"
@@ -38439,8 +38140,7 @@ msgstr ""
msgid "Firing conditions"
msgstr "発報条件"
-#: ../../godmode/alerts/alert_view.php:311
-#: ../../godmode/alerts/alert_view.php:345
+#: ../../godmode/alerts/alert_view.php:311 ../../godmode/alerts/alert_view.php:345
msgid "Every time that the alert is fired"
msgstr "アラート発生のたび"
@@ -38449,8 +38149,8 @@ msgid ""
"Select the desired action and mode to see the Firing/Recovery fields for this "
"action"
msgstr ""
-"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを"
-"選択してください。"
+"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを選"
+"択してください。"
#: ../../godmode/alerts/alert_view.php:452
msgid "Template fields"
@@ -38470,8 +38170,7 @@ msgstr "復旧フィールド"
#: ../../godmode/alerts/alert_view.php:566
msgid ""
-"Fields passed to the command executed by this action when the alert is "
-"recovered"
+"Fields passed to the command executed by this action when the alert is recovered"
msgstr ""
"アラートが復旧したときに、このアクションによって実行されるコマンドに渡される"
"フィールド"
@@ -38605,8 +38304,8 @@ msgid ""
"This key is used to encrypt your Pandora FMS license when it is shared with "
"other Pandora FMS components"
msgstr ""
-"このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセン"
-"スを暗号化するために使用されます。"
+"このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセンス"
+"を暗号化するために使用されます。"
#: ../../godmode/setup/license.php:317 ../../godmode/setup/license.php:345
msgid "Request new license"
@@ -38628,8 +38327,7 @@ msgstr "auth key と次の request key を入力してくださ
#: ../../godmode/setup/license.php:361
msgid "Enter your name (or a company name) and a contact email address."
-msgstr ""
-"あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
+msgstr "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
#: ../../godmode/setup/license.php:364
msgid "Click on Generate."
@@ -38640,8 +38338,8 @@ msgid ""
"Click here, enter the "
"generated license key and click on Validate."
msgstr ""
-"ここをクリックし、生成"
-"されたライセンスキーを入力し有効化をクリックします。"
+"ここをクリックし、生成さ"
+"れたライセンスキーを入力し有効化をクリックします。"
#: ../../godmode/setup/news.php:30
msgid "Site news management"
@@ -38724,8 +38422,7 @@ msgstr "パスワードポリシー"
msgid "Correct update the setup options"
msgstr "設定オプションを更新しました"
-#: ../../godmode/setup/setup_ehorus.php:67
-#: ../../include/functions_config.php:1812
+#: ../../godmode/setup/setup_ehorus.php:67 ../../include/functions_config.php:1812
msgid "Enable eHorus"
msgstr "eHorus の有効化"
@@ -38764,8 +38461,7 @@ msgstr "eHorus には独自のエージェント識別があります"
#: ../../godmode/setup/setup_ehorus.php:188
msgid "To store them, it will be necessary to use an agent custom field"
-msgstr ""
-"それを保存するために、エージェントのカスタムフィールドを使う必要があります"
+msgstr "それを保存するために、エージェントのカスタムフィールドを使う必要があります"
#: ../../godmode/setup/setup_ehorus.php:189
msgid "Possibly the eHorus id will have to be filled in by hand for every agent"
@@ -38808,43 +38504,32 @@ msgstr "ユーザが見つかりません"
msgid "Invalid password"
msgstr "パスワードが正しくありません"
-#: ../../godmode/setup/setup_sflow.php:45
-#: ../../godmode/setup/setup_netflow.php:45
+#: ../../godmode/setup/setup_sflow.php:45 ../../godmode/setup/setup_netflow.php:45
msgid "Data storage path"
msgstr "データストアのパス"
-#: ../../godmode/setup/setup_sflow.php:50
-#: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1540
-#: ../../include/functions_config.php:1583
+#: ../../godmode/setup/setup_sflow.php:50 ../../godmode/setup/setup_netflow.php:50
+#: ../../include/functions_config.php:1540 ../../include/functions_config.php:1583
msgid "Daemon interval"
msgstr "デーモン間隔"
-#: ../../godmode/setup/setup_sflow.php:55
-#: ../../godmode/setup/setup_netflow.php:55
-#: ../../include/functions_config.php:1544
-#: ../../include/functions_config.php:1587
+#: ../../godmode/setup/setup_sflow.php:55 ../../godmode/setup/setup_netflow.php:55
+#: ../../include/functions_config.php:1544 ../../include/functions_config.php:1587
msgid "Daemon binary path"
msgstr "デーモンのバイナリパス"
-#: ../../godmode/setup/setup_sflow.php:60
-#: ../../godmode/setup/setup_netflow.php:60
-#: ../../include/functions_config.php:1548
-#: ../../include/functions_config.php:1591
+#: ../../godmode/setup/setup_sflow.php:60 ../../godmode/setup/setup_netflow.php:60
+#: ../../include/functions_config.php:1548 ../../include/functions_config.php:1591
msgid "Nfdump binary path"
msgstr "nfdump バイナリのパス"
-#: ../../godmode/setup/setup_sflow.php:65
-#: ../../godmode/setup/setup_netflow.php:65
-#: ../../include/functions_config.php:1552
-#: ../../include/functions_config.php:1595
+#: ../../godmode/setup/setup_sflow.php:65 ../../godmode/setup/setup_netflow.php:65
+#: ../../include/functions_config.php:1552 ../../include/functions_config.php:1595
msgid "Nfexpire binary path"
msgstr "nfexpire バイナリのパス"
-#: ../../godmode/setup/setup_sflow.php:70
-#: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1556
-#: ../../include/functions_config.php:1599
+#: ../../godmode/setup/setup_sflow.php:70 ../../godmode/setup/setup_netflow.php:70
+#: ../../include/functions_config.php:1556 ../../include/functions_config.php:1599
msgid "Maximum chart resolution"
msgstr "最大グラフ解像度"
@@ -38852,16 +38537,13 @@ msgstr "最大グラフ解像度"
msgid "Sflow max lifetime"
msgstr "Sflow 最大保持期間"
-#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
+#: ../../godmode/setup/setup_sflow.php:84 ../../godmode/setup/setup_netflow.php:84
#: ../../operation/netflow/nf_live_view.php:339
msgid "IP address resolution can take a lot of time"
msgstr "IP アドレスの解決には多くの時間がかかります"
-#: ../../godmode/setup/setup_sflow.php:86
-#: ../../godmode/setup/setup_netflow.php:86
-#: ../../include/functions_config.php:1568
-#: ../../include/functions_config.php:1611
+#: ../../godmode/setup/setup_sflow.php:86 ../../godmode/setup/setup_netflow.php:86
+#: ../../include/functions_config.php:1568 ../../include/functions_config.php:1611
msgid "Name resolution for IP address"
msgstr "IP アドレスの名前解決"
@@ -38885,8 +38567,8 @@ msgstr "Websocket プロキシ URL"
#: ../../godmode/setup/os.list.php:56
#, php-format
msgid ""
-"This node is configured with centralized mode. All OS definitions are read "
-"only. Go to %s to manage them."
+"This node is configured with centralized mode. All OS definitions are read only. "
+"Go to %s to manage them."
msgstr ""
"このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用で"
"す。 それらを管理するには、%s に移動します。"
@@ -39084,18 +38766,15 @@ msgstr "GIS データが無い場合のエージェントのデフォルト位
msgid "Change in the map"
msgstr "マップ内での変更"
-#: ../../godmode/setup/gis_step_2.php:486
-#: ../../operation/agentes/gis_view.php:218
+#: ../../godmode/setup/gis_step_2.php:486 ../../operation/agentes/gis_view.php:218
msgid "Latitude"
msgstr "緯度"
-#: ../../godmode/setup/gis_step_2.php:504
-#: ../../operation/agentes/gis_view.php:217
+#: ../../godmode/setup/gis_step_2.php:504 ../../operation/agentes/gis_view.php:217
msgid "Longitude"
msgstr "経度"
-#: ../../godmode/setup/gis_step_2.php:522
-#: ../../operation/agentes/gis_view.php:219
+#: ../../godmode/setup/gis_step_2.php:522 ../../operation/agentes/gis_view.php:219
msgid "Altitude"
msgstr "高度"
@@ -39158,11 +38837,11 @@ msgstr "Integria IMS セットアップ URL"
#: ../../godmode/setup/setup_integria.php:322
msgid ""
-"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
-"https://support.mycompany.com)."
+"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://"
+"support.mycompany.com)."
msgstr ""
-"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, "
-"https://support.mycompany.com)"
+"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, https://"
+"support.mycompany.com)"
#: ../../godmode/setup/setup_integria.php:336
msgid "API Password"
@@ -39217,8 +38896,7 @@ msgstr "SNMP翻訳の保存に失敗しました"
msgid "Unsucessful save the snmp translation."
msgstr "SNMP翻訳の保存に失敗しました。"
-#: ../../godmode/setup/setup_netflow.php:80
-#: ../../include/functions_config.php:1564
+#: ../../godmode/setup/setup_netflow.php:80 ../../include/functions_config.php:1564
msgid "Netflow max lifetime"
msgstr "Netflow 最大保持期間"
@@ -39272,8 +38950,7 @@ msgid "Custom support logo"
msgstr "カスタムサポートロゴ"
#: ../../godmode/setup/setup_visuals.php:680
-#: ../../include/functions_config.php:1102
-#: ../../include/functions_config.php:1106
+#: ../../include/functions_config.php:1102 ../../include/functions_config.php:1106
msgid "Custom networkmap center logo"
msgstr "カスタムネットワークマップセンターロゴ"
@@ -39321,8 +38998,7 @@ msgid "Show unit along with value in reports"
msgstr "レポート内に値に加えて単位を表示する"
#: ../../godmode/setup/setup_visuals.php:1000
-#: ../../include/functions_config.php:1226
-#: ../../include/functions_config.php:1230
+#: ../../include/functions_config.php:1226 ../../include/functions_config.php:1230
msgid "Agent size text"
msgstr "エージェント名の表示長さ"
@@ -39337,8 +39013,7 @@ msgid "Module size text"
msgstr "モジュール名の表示長さ"
#: ../../godmode/setup/setup_visuals.php:1046
-#: ../../include/functions_config.php:1238
-#: ../../include/functions_config.php:1242
+#: ../../include/functions_config.php:1238 ../../include/functions_config.php:1242
msgid "Description size text"
msgstr "説明の表示長さ"
@@ -39395,8 +39070,8 @@ msgstr "メニューに表示するお気に入りのサービスの数"
#: ../../godmode/setup/setup_visuals.php:1535
msgid ""
-"The dir of custom logos is in your www Console in 'images/custom_logo'. You "
-"can upload more files (ONLY JPEG AND PNG) in upload tool in console."
+"The dir of custom logos is in your www Console in 'images/custom_logo'. You can "
+"upload more files (ONLY JPEG AND PNG) in upload tool in console."
msgstr ""
"カスタムロゴのディレクトリは、ウェブコンソールの 'images/custom_logo' にありま"
"す。 コンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップ"
@@ -39504,8 +39179,7 @@ msgstr " コンソール"
#: ../../godmode/setup/setup_general.php:115
msgid "If public URL is not properly configured you will lose access to "
-msgstr ""
-"公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: "
+msgstr "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: "
#: ../../godmode/setup/setup_general.php:181
msgid "Out of black list"
@@ -39536,8 +39210,7 @@ msgstr "上級者"
msgid "Language code"
msgstr "言語"
-#: ../../godmode/setup/setup_general.php:320
-#: ../../include/functions_config.php:204
+#: ../../godmode/setup/setup_general.php:320 ../../include/functions_config.php:204
msgid "Automatic check for updates"
msgstr "更新の自動チェック"
@@ -39549,38 +39222,31 @@ msgstr "SSL証明書の利用"
msgid "Path of SSL Cert."
msgstr "SSL証明書のパス"
-#: ../../godmode/setup/setup_general.php:384
-#: ../../include/functions_config.php:244
+#: ../../godmode/setup/setup_general.php:384 ../../include/functions_config.php:244
msgid "Enable GIS features"
msgstr "GIS 機能の有効化"
-#: ../../godmode/setup/setup_general.php:394
-#: ../../include/functions_config.php:260
+#: ../../godmode/setup/setup_general.php:394 ../../include/functions_config.php:260
msgid "Enable Netflow"
msgstr "Netflow を利用する"
-#: ../../godmode/setup/setup_general.php:408
-#: ../../include/functions_config.php:264
+#: ../../godmode/setup/setup_general.php:408 ../../include/functions_config.php:264
msgid "Enable Sflow"
msgstr "Sflow を利用する"
-#: ../../godmode/setup/setup_general.php:421
-#: ../../include/functions_config.php:268
+#: ../../godmode/setup/setup_general.php:421 ../../include/functions_config.php:268
msgid "General network path"
msgstr "一般ネットワークパス"
-#: ../../godmode/setup/setup_general.php:515
-#: ../../include/functions_config.php:423
+#: ../../godmode/setup/setup_general.php:515 ../../include/functions_config.php:423
msgid "Inventory changes blacklist"
msgstr "インベントリブラックリスト変更"
-#: ../../godmode/setup/setup_general.php:520
-#: ../../include/functions_config.php:342
+#: ../../godmode/setup/setup_general.php:520 ../../include/functions_config.php:342
msgid "Server logs directory"
msgstr "サーバログディレクトリ"
-#: ../../godmode/setup/setup_general.php:532
-#: ../../include/functions_config.php:330
+#: ../../godmode/setup/setup_general.php:532 ../../include/functions_config.php:330
msgid "Event storm protection"
msgstr "イベントストーム保護"
@@ -39588,23 +39254,19 @@ msgstr "イベントストーム保護"
msgid "Change remote config encoding"
msgstr "リモートコンフィグのエンコーディング自動調整"
-#: ../../godmode/setup/setup_general.php:561
-#: ../../include/functions_config.php:326
+#: ../../godmode/setup/setup_general.php:561 ../../include/functions_config.php:326
msgid "Referer security"
msgstr "リファラーセキュリティ"
-#: ../../godmode/setup/setup_general.php:571
-#: ../../include/functions_config.php:346
+#: ../../godmode/setup/setup_general.php:571 ../../include/functions_config.php:346
msgid "Log size limit in system logs viewer extension"
msgstr "システムログビューワ拡張でのログサイズ制限"
-#: ../../godmode/setup/setup_general.php:592
-#: ../../include/functions_config.php:350
+#: ../../godmode/setup/setup_general.php:592 ../../include/functions_config.php:350
msgid "Tutorial mode"
msgstr "チュートリアルモード"
-#: ../../godmode/setup/setup_general.php:605
-#: ../../include/functions_config.php:354
+#: ../../godmode/setup/setup_general.php:605 ../../include/functions_config.php:354
msgid "Allow create scheduled downtimes in the past"
msgstr "過去の計画停止の作成を許可する"
@@ -39646,9 +39308,9 @@ msgid ""
" If you have manual settings in your pandora_server.conf, please note these "
"settings will ignore this console setup."
msgstr ""
-"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有"
-"効化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してく"
-"ださい。"
+"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有効"
+"化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してくださ"
+"い。"
#: ../../godmode/setup/setup_general.php:744
msgid "From address"
@@ -39688,8 +39350,8 @@ msgstr "未実行"
msgid "Max. days before delete traps"
msgstr "トラップデータ保持日数"
-#: ../../godmode/setup/performance.php:308
-#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838
+#: ../../godmode/setup/performance.php:308 ../../godmode/setup/performance.php:518
+#: ../../include/functions_config.php:838
msgid "Max. days before delete string data"
msgstr "文字列データ保持日数"
@@ -39697,8 +39359,8 @@ msgstr "文字列データ保持日数"
msgid "Max. days before delete GIS data"
msgstr "GIS データ保持日数"
-#: ../../godmode/setup/performance.php:353
-#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862
+#: ../../godmode/setup/performance.php:353 ../../godmode/setup/performance.php:482
+#: ../../include/functions_config.php:862
msgid "Max. days before compact data"
msgstr "データ保持日数(丸め込みなし)"
@@ -39718,8 +39380,8 @@ msgstr "自動無効化エージェントを削除せず保持する日数"
msgid "Retention period of past special days"
msgstr "過去の特別日の保存期間"
-#: ../../godmode/setup/performance.php:494
-#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878
+#: ../../godmode/setup/performance.php:494 ../../godmode/setup/performance.php:615
+#: ../../include/functions_config.php:878
msgid "Compact interpolation in hours (1 Fine-20 bad)"
msgstr "データ縮小時の丸め込み単位時間 (1〜20)"
@@ -39785,11 +39447,11 @@ msgstr "snmpwalk バイナリ"
#: ../../godmode/setup/performance.php:788
msgid ""
-"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
-"instead (by default snmpwalk, slower)."
+"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead "
+"(by default snmpwalk, slower)."
msgstr ""
-"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されま"
-"す。(デフォルトで snmpwalk で遅くなります)"
+"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されます。"
+"(デフォルトで snmpwalk で遅くなります)"
#: ../../godmode/setup/performance.php:793
msgid "SNMP walk binary (fallback)"
@@ -39801,8 +39463,8 @@ msgid ""
"%s web2image cache system cleanup. It is always cleaned up after perform an "
"upgrade"
msgstr ""
-"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は"
-"常にクリーンアップされます"
+"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は常"
+"にクリーンアップされます"
#: ../../godmode/setup/performance.php:813
msgid "WMI binary"
@@ -40091,8 +39753,8 @@ msgid ""
"This is the interval or period of time with which the graph data will be "
"obtained. For example, a week means data from a week ago from now. "
msgstr ""
-"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味し"
-"ます。 "
+"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味しま"
+"す。 "
#: ../../godmode/reporting/create_container.php:498
#: ../../godmode/reporting/create_container.php:686
@@ -40223,14 +39885,13 @@ msgstr "レポート名または説明で検索したリスト。"
msgid "Show Option"
msgstr "オプション表示"
-#: ../../godmode/reporting/graphs.php:362
-#: ../../include/functions_container.php:146 ../../operation/search_graphs.php:30
+#: ../../godmode/reporting/graphs.php:362 ../../include/functions_container.php:146
+#: ../../operation/search_graphs.php:30
#: ../../operation/reporting/graph_viewer.php:567
msgid "Graph name"
msgstr "グラフ名"
-#: ../../godmode/reporting/graphs.php:364
-#: ../../include/functions_container.php:148
+#: ../../godmode/reporting/graphs.php:364 ../../include/functions_container.php:148
msgid "Number of Graphs"
msgstr "グラフ数"
@@ -40248,8 +39909,8 @@ msgid ""
"The maximum number of items in a chart is %d. You have %d elements, only first "
"%d will be displayed."
msgstr ""
-"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムの"
-"み表示されます。"
+"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムのみ"
+"表示されます。"
#: ../../godmode/reporting/graph_builder.graph_editor.php:315
msgid "Sort selected items"
@@ -40288,19 +39949,18 @@ msgstr "警告: このパラメータはログの内容を制限しパフォー
#: ../../godmode/reporting/reporting_builder.item_editor.php:1396
msgid ""
"This is the range, or period of time over which the report renders the "
-"information for this report type. For example, a week means data from a week "
-"ago from now. "
+"information for this report type. For example, a week means data from a week ago "
+"from now. "
msgstr ""
-"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間で"
-"す。 たとえば、1週間は、今から1週間前のデータを意味します。 "
+"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間です。 "
+"たとえば、1週間は、今から1週間前のデータを意味します。 "
#: ../../godmode/reporting/reporting_builder.item_editor.php:1919
msgid "Show modules"
msgstr "モジュール表示"
#: ../../godmode/reporting/reporting_builder.item_editor.php:2221
-#: ../../include/functions_ui.php:2494
-#: ../../operation/inventory/inventory.php:687
+#: ../../include/functions_ui.php:2494 ../../operation/inventory/inventory.php:687
msgid "Last"
msgstr "最新"
@@ -40319,8 +39979,8 @@ msgstr "描画定義"
#: ../../godmode/reporting/reporting_builder.item_editor.php:2630
msgid "Please note that not all CSS styles are supported by PDF reports."
msgstr ""
-"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意して"
-"ください。"
+"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意してく"
+"ださい。"
#: ../../godmode/reporting/reporting_builder.item_editor.php:2728
msgid "Greater or equal (>=)"
@@ -40351,8 +40011,8 @@ msgid ""
"Show a summary chart with max, min and average number of total modules at the "
"end of the report and Checks."
msgstr ""
-"最新のレポートおよび監視時点のトータルモジュール数の最大、最小、平均の概要グラ"
-"フを表示します。"
+"最新のレポートおよび監視時点のトータルモジュール数の最大、最小、平均の概要グラフ"
+"を表示します。"
#: ../../godmode/reporting/reporting_builder.item_editor.php:2913
msgid "Checks in Warning status"
@@ -40388,11 +40048,11 @@ msgstr "承諾済 / 未承諾 "
#: ../../godmode/reporting/reporting_builder.item_editor.php:3162
msgid ""
-"With the token enabled the query will affect the Historical Database, which "
-"may mean a small drop in performance."
+"With the token enabled the query will affect the Historical Database, which may "
+"mean a small drop in performance."
msgstr ""
-"トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、"
-"パフォーマンスのわずかな低下を発生させる場合があります。"
+"トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、パ"
+"フォーマンスのわずかな低下を発生させる場合があります。"
#: ../../godmode/reporting/reporting_builder.item_editor.php:3347
msgid "Include filter"
@@ -40409,11 +40069,11 @@ msgstr "除外フィルタ"
#: ../../godmode/reporting/reporting_builder.item_editor.php:3464
msgid ""
-"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise "
-"full value will be displayed (example: 20.742 bytes/sec)"
+"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise full "
+"value will be displayed (example: 20.742 bytes/sec)"
msgstr ""
-"数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完"
-"全な値が表示されます (例: 20.742 bytes/sec)。"
+"数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完全"
+"な値が表示されます (例: 20.742 bytes/sec)。"
#: ../../godmode/reporting/reporting_builder.item_editor.php:3502
#: ../../include/functions_reporting.php:5163
@@ -40500,8 +40160,8 @@ 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:4664
msgid "Please save the report to start adding items into the list."
@@ -40667,11 +40327,11 @@ msgstr "書き込みアクセス"
#: ../../godmode/reporting/reporting_builder.main.php:163
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."
+"For example, you want a report that the people of \"All\" groups can see but you "
+"want to edit only for you or your group."
msgstr ""
-"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分"
-"のグループのみが編集できるようにしたい場合等に利用します。"
+"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分の"
+"グループのみが編集できるようにしたい場合等に利用します。"
#: ../../godmode/reporting/reporting_builder.main.php:207
msgid "Non interactive report"
@@ -40680,8 +40340,7 @@ msgstr "非対話型レポート"
#: ../../godmode/reporting/reporting_builder.php:190
#: ../../operation/reporting/reporting_viewer.php:100
msgid "Your report has been planned, and the system will email you a "
-msgstr ""
-"レポート処理が計画されており、システムはあなたに次の電子メールを送ります: "
+msgstr "レポート処理が計画されており、システムはあなたに次の電子メールを送ります: "
#: ../../godmode/reporting/reporting_builder.php:191
#: ../../operation/reporting/reporting_viewer.php:101
@@ -40696,8 +40355,8 @@ msgid "Reports list"
msgstr "レポート一覧"
#: ../../godmode/reporting/reporting_builder.php:531
-#: ../../godmode/reporting/reporting_builder.php:3571
-#: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23
+#: ../../godmode/reporting/reporting_builder.php:3571 ../../operation/menu.php:457
+#: ../../operation/reporting/custom_reporting.php:23
msgid "Custom reporting"
msgstr "カスタムレポート"
@@ -40923,36 +40582,35 @@ msgid ""
"elements. Please update your license or disable enterprise section by moving "
"enterprise directory to another location and try again."
msgstr ""
-"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライ"
-"センスを更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の"
-"機能を無効にして、再試行してください。"
+"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライセ"
+"ンスを更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の機能"
+"を無効にして、再試行してください。"
#: ../../godmode/um_client/index.php:107
#, php-format
msgid ""
"You cannot use update manager %s. This license has expired %d days ago. Please "
-"update your license or disable enterprise section by moving enterprise "
-"directory to another location and try again."
+"update your license or disable enterprise section by moving enterprise directory "
+"to another location and try again."
msgstr ""
-"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れ"
-"になりました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動"
-"して Enterprise 版の機能を無効にして、再試行してください。"
+"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れに"
+"なりました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動して "
+"Enterprise 版の機能を無効にして、再試行してください。"
#: ../../godmode/um_client/index.php:120
#, php-format
msgid ""
-"You cannot use update manager %s. This license is a trial license to test all "
-"%s features. Please update your license to unlock all %s features."
+"You cannot use update manager %s. This license is a trial license to test all %s "
+"features. Please update your license to unlock all %s features."
msgstr ""
-"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能"
-"をテストするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能の"
-"ロックを解除してください。"
+"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能を"
+"テストするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能のロッ"
+"クを解除してください。"
#: ../../godmode/um_client/index.php:216
#, php-format
msgid "Master server version %s does not match console version %s."
-msgstr ""
-"マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。"
+msgstr "マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。"
#: ../../godmode/um_client/index.php:229
#, php-format
@@ -40960,8 +40618,8 @@ msgid ""
"'%s' recommended value is %s or greater. Please, change it on your PHP "
"configuration file (php.ini) or contact with administrator"
msgstr ""
-"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連"
-"絡してください 。"
+"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連絡"
+"してください 。"
#: ../../godmode/um_client/index.php:318
msgid "Update online requires registration."
@@ -40972,8 +40630,8 @@ msgid ""
"Applying offline patches may make your console unusable, we recommend to "
"completely backup your files before applying any patch."
msgstr ""
-"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。"
-"パッチを適用する前に、ファイルを完全にバックアップすることをお勧めします。"
+"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。パッ"
+"チを適用する前に、ファイルを完全にバックアップすることをお勧めします。"
#: ../../godmode/events/event_responses.editor.php:156
msgid "Modal window"
@@ -41008,19 +40666,17 @@ msgstr "表示コマンド"
#: ../../godmode/events/event_responses.editor.php:315
msgid ""
-"If enabled the command will be displayed to any user that can execute this "
-"event response"
+"If enabled the command will be displayed to any user that can execute this event "
+"response"
msgstr ""
-"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されま"
-"す"
+"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されます"
#: ../../godmode/events/event_edit_filter.php:304
msgid "Save in group"
msgstr "保存グループ"
#: ../../godmode/events/event_edit_filter.php:304
-msgid ""
-"This group will be use to restrict the visibility of this filter with ACLs"
+msgid "This group will be use to restrict the visibility of this filter with ACLs"
msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます"
#: ../../godmode/events/event_edit_filter.php:502
@@ -41117,13 +40773,12 @@ msgstr "前のイベントからフィールドをロード"
msgid "Event fields will be loaded. Do you want to continue?"
msgstr "イベントフィールドが読み込まれます。続けますか?"
-#: ../../godmode/events/custom_events.php:92
-#: ../../include/functions_events.php:238
+#: ../../godmode/events/custom_events.php:92 ../../include/functions_events.php:238
msgid "Event Id"
msgstr "イベント ID"
-#: ../../godmode/events/custom_events.php:93
-#: ../../mobile/operation/events.php:237 ../../include/functions_events.php:241
+#: ../../godmode/events/custom_events.php:93 ../../mobile/operation/events.php:237
+#: ../../include/functions_events.php:241
msgid "Event Name"
msgstr "イベント名"
@@ -41132,8 +40787,7 @@ msgstr "イベント名"
msgid "Agent Name"
msgstr "エージェント名"
-#: ../../godmode/events/custom_events.php:96
-#: ../../include/functions_events.php:320
+#: ../../godmode/events/custom_events.php:96 ../../include/functions_events.php:320
msgid "Agent IP"
msgstr "エージェント IP"
@@ -41226,11 +40880,11 @@ msgstr "CSV ファイルから読み込んだ内容が不正です: %s"
#: ../../godmode/wizards/HostDevices.class.php:391
msgid ""
-"This network scan task has been already defined. Please edit it or create a "
-"new one."
+"This network scan task has been already defined. Please edit it or create a new "
+"one."
msgstr ""
-"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに"
-"作成してください。"
+"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに作"
+"成してください。"
#: ../../godmode/wizards/HostDevices.class.php:433
msgid "You must provide a valid network."
@@ -41279,8 +40933,8 @@ msgid ""
"You can upload a CSV file. Each line must contain a network in IP/MASK format. "
"For instance: 192.168.1.1/32"
msgstr ""
-"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含ま"
-"れている必要があります。例: 192.168.1.1/32"
+"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含まれ"
+"ている必要があります。例: 192.168.1.1/32"
#: ../../godmode/wizards/HostDevices.class.php:901
msgid "Networks (current)"
@@ -41308,8 +40962,8 @@ msgid ""
"Targets will be scanned if at least one of defined ports (comma separated) is "
"open."
msgstr ""
-"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャン"
-"されます。"
+"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャンさ"
+"れます。"
#: ../../godmode/wizards/HostDevices.class.php:1083
msgid "Auto discover known hardware"
@@ -41320,14 +40974,13 @@ msgid ""
"Targets will be monitorized based on its Private Enterprise Number. "
"Requires SNMP."
msgstr ""
-"対象は、プライベートエンタープライズ番号 i> に基づいて監視されます。 SNMP "
-"が必要です。"
+"対象は、プライベートエンタープライズ番号 i> に基づいて監視されます。 SNMP が"
+"必要です。"
#: ../../godmode/wizards/HostDevices.class.php:1100
msgid "Module Host Alive will be added to discovered agents by default."
msgstr ""
-"モジュール Host Alive が検出されたエージェントにデフォルトで追加されま"
-"す。"
+"モジュール Host Alive が検出されたエージェントにデフォルトで追加されます。"
#: ../../godmode/wizards/HostDevices.class.php:1148
#, php-format
@@ -41335,8 +40988,8 @@ msgid ""
"Configured networks could generate %d agents, your license only allows %d, "
"'review results' is mandatory."
msgstr ""
-"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセン"
-"スは %d までです。'結果の確認' は必須です。"
+"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセンス"
+"は %d までです。'結果の確認' は必須です。"
#: ../../godmode/wizards/HostDevices.class.php:1156
#: ../../godmode/wizards/DiscoveryTaskList.class.php:917
@@ -41356,8 +41009,8 @@ msgid ""
"System is able to auto configure detected host & devices by applying your "
"defined configuration rules."
msgstr ""
-"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイ"
-"スを自動設定できます。"
+"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイス"
+"を自動設定できます。"
#: ../../godmode/wizards/HostDevices.class.php:1202
msgid "SNMP enabled"
@@ -41646,8 +41299,8 @@ msgid ""
"Please ensure instances or regions are being monitorized and 'scan and general "
"monitoring' is enabled."
msgstr ""
-"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有"
-"効になっていることを確認してください。"
+"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有効"
+"になっていることを確認してください。"
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1550
#: ../../godmode/wizards/DiscoveryTaskList.class.php:1692
@@ -41831,11 +41484,11 @@ msgstr "プラグインの登録"
#: ../../godmode/servers/plugin_registration.php:86
#, php-format
msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from feature from %s."
+"This console is not manager of this environment, please manage this feature from "
+"feature from %s."
msgstr ""
-"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理"
-"してください。"
+"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理し"
+"てください。"
#: ../../godmode/servers/plugin_registration.php:105
msgid "Plugin Registration"
@@ -41932,8 +41585,7 @@ msgstr "プラグインタイプ"
msgid ""
"This value only will be applied if is minor than the server general "
"configuration plugin timeout"
-msgstr ""
-"全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。"
+msgstr "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。"
#: ../../godmode/servers/plugin.php:433
msgid "If you set a 0 seconds timeout, the server plugin timeout will be used"
@@ -42034,8 +41686,8 @@ msgid ""
"The modules or components should be updated manually or using the bulk "
"operations for plugins after this change"
msgstr ""
-"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作"
-"を使う必要があります。"
+"モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作を"
+"使う必要があります。"
#: ../../godmode/servers/plugin.php:1224
msgid "Are you sure you want to perform this action?"
@@ -42043,11 +41695,11 @@ msgstr "この処理を実行してもよろしいですか。"
#: ../../godmode/servers/plugin.php:1233
msgid ""
-"The plugin macros cannot be updated because some modules or components are "
-"using the plugin"
+"The plugin macros cannot be updated because some modules or components are using "
+"the plugin"
msgstr ""
-"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ"
-"インマクロは更新できません。"
+"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグイ"
+"ンマクロは更新できません。"
#: ../../godmode/servers/discovery.php:190
msgid "You must create a task first"
@@ -42168,8 +41820,8 @@ msgid ""
"This node is configured with centralized mode. All categories information is "
"read only. Go to %s to manage it."
msgstr ""
-"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専"
-"用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専用"
+"です。管理するには %s に移動します。"
#: ../../godmode/category/category.php:118
msgid "Error deleting category"
@@ -42263,17 +41915,17 @@ msgstr "Pandora FMS %s - ビルド %s"
#: ../../mobile/include/system.class.php:156
msgid ""
-"Access to this page is restricted to authorized users only, please contact "
-"your system administrator if you should need help."
+"Access to this page is restricted to authorized users only, please contact your "
+"system administrator if you should need help."
msgstr ""
-"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要"
-"な場合は、システム管理者に連絡してください。"
+"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な"
+"場合は、システム管理者に連絡してください。"
#: ../../mobile/include/system.class.php:156
#, php-format
msgid ""
-"Please remember that any attempts to access this page will be recorded on the "
-"%s System Database."
+"Please remember that any attempts to access this page will be recorded on the %s "
+"System Database."
msgstr "このページへのアクセスは、%s システムデータベースに記録されます。"
#: ../../mobile/include/ui.class.php:120
@@ -42323,8 +41975,7 @@ msgstr "折り返しが不正です"
msgid "User cannot log in into this console, please contact administrator"
msgstr "ユーザはこのコンソールにログインできません。管理者に連絡してください。"
-#: ../../mobile/include/user.class.php:287
-#: ../../mobile/include/user.class.php:302
+#: ../../mobile/include/user.class.php:287 ../../mobile/include/user.class.php:302
#: ../../mobile/include/user.class.php:309
msgid "Double authentication failed"
msgstr "二段階認証に失敗しました"
@@ -42361,8 +42012,7 @@ msgstr "ユーザ"
msgid "password"
msgstr "パスワード"
-#: ../../mobile/include/user.class.php:488
-#: ../../mobile/include/user.class.php:489
+#: ../../mobile/include/user.class.php:488 ../../mobile/include/user.class.php:489
msgid "Authenticator code"
msgstr "認証コード"
@@ -42534,8 +42184,8 @@ msgstr "グラフ生成エラー"
#: ../../include/functions_reporting_html.php:1095
#: ../../include/functions_reporting_html.php:1337
#: ../../include/functions_reporting_html.php:2658
-#: ../../include/functions_events.php:2571
-#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779
+#: ../../include/functions_events.php:2571 ../../include/functions_events.php:4742
+#: ../../operation/events/events.php:779
msgid "New event"
msgstr "新規イベント"
@@ -42543,8 +42193,8 @@ msgstr "新規イベント"
#: ../../include/functions_reporting_html.php:1084
#: ../../include/functions_reporting_html.php:1342
#: ../../include/functions_reporting_html.php:2663
-#: ../../include/functions_events.php:2576
-#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792
+#: ../../include/functions_events.php:2576 ../../include/functions_events.php:4748
+#: ../../operation/events/events.php:792
msgid "Event validated"
msgstr "承諾済"
@@ -42552,8 +42202,8 @@ msgstr "承諾済"
#: ../../include/functions_reporting_html.php:1089
#: ../../include/functions_reporting_html.php:1347
#: ../../include/functions_reporting_html.php:2668
-#: ../../include/functions_events.php:2581
-#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804
+#: ../../include/functions_events.php:2581 ../../include/functions_events.php:4754
+#: ../../operation/events/events.php:804
msgid "Event in process"
msgstr "処理中イベント"
@@ -42599,8 +42249,7 @@ msgstr "定義済フィルタ"
#: ../../include/functions_reporting_html.php:6335
#: ../../include/functions_reporting.php:2189
#: ../../include/functions_reporting.php:2564
-#: ../../include/functions_events.php:2497
-#: ../../include/functions_events.php:2500
+#: ../../include/functions_events.php:2497 ../../include/functions_events.php:2500
msgid "No events"
msgstr "イベントがありません。"
@@ -42648,8 +42297,7 @@ msgid ""
"printed at the end."
msgstr ""
"'ラベル' フィールドを利用するには、'(_VALUE_)'を\n"
-"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されま"
-"す。"
+"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されます。"
#: ../../include/functions_visual_map_editor.php:107
#: ../../include/functions_visual_map_editor.php:133
@@ -42668,8 +42316,7 @@ msgid "Fill color"
msgstr "塗りつぶしの色"
#: ../../include/functions_visual_map_editor.php:239
-msgid ""
-"Scroll the mouse wheel over the label editor to change the background color"
+msgid "Scroll the mouse wheel over the label editor to change the background color"
msgstr ""
"背景色を変更するには、ラベルエディタの上でマウスのウィールをスクロースします"
@@ -42818,12 +42465,12 @@ msgstr "デフォルト色"
#: ../../include/functions_visual_map_editor.php:810
msgid ""
-"The color of the element will be the one selected in the first range created "
-"in which the value of the module is found (with the initial and final values "
-"of the range included)"
+"The color of the element will be the one selected in the first range created in "
+"which the value of the module is found (with the initial and final values of the "
+"range included)"
msgstr ""
-"要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色にな"
-"ります(含まれる範囲の初期値と最終値)。"
+"要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色になり"
+"ます(含まれる範囲の初期値と最終値)。"
#: ../../include/functions_visual_map_editor.php:813
msgid "Ranges"
@@ -42911,13 +42558,12 @@ msgstr "グループへの制限アクセス"
#: ../../include/functions_visual_map_editor.php:1215
msgid ""
-"If selected, restrict visualization of this item in the visual console to "
-"users who have access to selected group. This is also used on calculating "
-"child visual consoles."
+"If selected, restrict visualization of this item in the visual console to users "
+"who have access to selected group. This is also used on calculating child visual "
+"consoles."
msgstr ""
-"選択すると、ビジュアルコンソールでのこのアイテム表示を、選択したグループにアク"
-"セスできるユーザーに制限します。 これは、子ビジュアルコンソールにも使用されま"
-"す。"
+"選択すると、ビジュアルコンソールでのこのアイテム表示を、選択したグループにアクセ"
+"スできるユーザーに制限します。 これは、子ビジュアルコンソールにも使用されます。"
#: ../../include/functions_visual_map_editor.php:1246
#: ../../include/rest-api/models/VisualConsole/Item.php:2202
@@ -43051,8 +42697,7 @@ msgstr "変更を保存しました。"
msgid "Could not be save."
msgstr "保存できません。"
-#: ../../include/graphs/export_data.php:91
-#: ../../include/graphs/export_data.php:157
+#: ../../include/graphs/export_data.php:91 ../../include/graphs/export_data.php:157
msgid "An error occured exporting the data"
msgstr "データエクスポートエラー"
@@ -43061,8 +42706,8 @@ msgid "Selected"
msgstr "選択済"
#: ../../include/graphs/functions_gd.php:183
-#: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822
+#: ../../include/graphs/functions_gd.php:466 ../../include/functions_graph.php:2774
+#: ../../include/functions_graph.php:2822
msgid "Out of limits"
msgstr "範囲外"
@@ -43094,13 +42739,11 @@ msgstr "SNMPトラップサーバ"
msgid "Correlation server"
msgstr "相関サーバ"
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1230
+#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1230
msgid "Enterprise ICMP server"
msgstr "エンタープライズ ICMP サーバ"
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1233
+#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1233
msgid "Enterprise SNMP server"
msgstr "エンタープライズSNMPサーバ"
@@ -43125,8 +42768,7 @@ msgstr "同期サーバ"
msgid "Wux server"
msgstr "Wux サーバ"
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1260
+#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1260
msgid "Log server"
msgstr "ログサーバ"
@@ -43398,8 +43040,8 @@ msgstr "このSLAは、次の計画停止の影響を受けています"
#: ../../include/functions_reporting_html.php:6366
msgid ""
-"If the duration of the scheduled downtime is less than 5 minutes it will not "
-"be represented in the graph"
+"If the duration of the scheduled downtime is less than 5 minutes it will not be "
+"represented in the graph"
msgstr "計画停止の期間が 5分未満の場合、グラフには表示されません。"
#: ../../include/functions_reporting_html.php:6373
@@ -43526,9 +43168,8 @@ msgid "ALERT FIRED"
msgstr "アラート発報"
#: ../../include/functions.php:1413 ../../include/functions.php:1450
-#: ../../include/functions_modules.php:4263
-#: ../../include/class/Tree.class.php:655 ../../include/lib/Module.php:598
-#: ../../operation/agentes/status_monitor.php:1868
+#: ../../include/functions_modules.php:4263 ../../include/class/Tree.class.php:655
+#: ../../include/lib/Module.php:598 ../../operation/agentes/status_monitor.php:1868
#: ../../operation/agentes/status_monitor.php:1881
msgid "NO DATA"
msgstr "データがありません"
@@ -43678,11 +43319,10 @@ msgid ""
"This is an email test sent from Pandora FMS. If you can read this, your "
"configuration works."
msgstr ""
-"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は"
-"機能しています。"
+"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は機"
+"能しています。"
-#: ../../include/functions.php:6311
-#: ../../include/class/ConsoleSupervisor.php:1645
+#: ../../include/functions.php:6311 ../../include/class/ConsoleSupervisor.php:1645
#: ../../include/class/ConsoleSupervisor.php:1669
#: ../../include/class/ConsoleSupervisor.php:1698
#: ../../include/class/ConsoleSupervisor.php:1779
@@ -43694,8 +43334,7 @@ msgstr "PHP 設定における値 '%s' はおすすめしません"
msgid "Recommended value is: -1"
msgstr "推奨値は -1 です"
-#: ../../include/functions.php:6313
-#: ../../include/class/ConsoleSupervisor.php:1704
+#: ../../include/functions.php:6313 ../../include/class/ConsoleSupervisor.php:1704
#: ../../include/class/ConsoleSupervisor.php:1785
msgid ""
"Please, change it on your PHP configuration file (php.ini) or contact with "
@@ -43736,8 +43375,8 @@ msgid ""
"This console is not the environment administrator. Please, manage this feature "
"from centralized manager console (Metaconsole)."
msgstr ""
-"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタ"
-"コンソール)から管理してください。"
+"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタコ"
+"ンソール)から管理してください。"
#: ../../include/functions_api.php:196
msgid "Auth error"
@@ -43749,11 +43388,10 @@ msgstr "現在のライセンスではこの操作はできません。"
#: ../../include/functions_api.php:1534
msgid ""
-"The agent could not be modified. For security reasons, use a group other than "
-"0."
+"The agent could not be modified. For security reasons, use a group other than 0."
msgstr ""
-"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループ"
-"を利用してください。"
+"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループを"
+"利用してください。"
#: ../../include/functions_api.php:1889
#, php-format
@@ -43884,8 +43522,8 @@ msgid ""
"Error stopping downtime. Periodical and running scheduled downtime cannot be "
"stopped."
msgstr ""
-"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止する"
-"ことはできません。"
+"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止するこ"
+"とはできません。"
#: ../../include/functions_api.php:7071
msgid "Downtime stopped."
@@ -44077,8 +43715,7 @@ msgstr "自動検出タスクの有効化/無効化エラー。id_user は空に
#: ../../include/functions_api.php:17367
msgid ""
"Error enable/disable discovery task. Enable/disable value cannot be left blank."
-msgstr ""
-"自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
+msgstr "自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
#: ../../include/functions_api.php:17392
msgid "Error in discovery task enabling/disabling."
@@ -44096,8 +43733,7 @@ msgstr "自動検出タスクを無効化しました。"
msgid "Radial dynamic"
msgstr "放射状で動的"
-#: ../../include/functions_networkmap.php:1311
-#: ../../include/functions_maps.php:38
+#: ../../include/functions_networkmap.php:1311 ../../include/functions_maps.php:38
msgid "Topology"
msgstr "トポロジ"
@@ -44117,8 +43753,7 @@ msgstr "新たな動的マップの作成"
msgid "Create a new radial dynamic map"
msgstr "放射状の動的マップを新規作成"
-#: ../../include/functions_networkmap.php:2073
-#: ../../include/functions_maps.php:73
+#: ../../include/functions_networkmap.php:2073 ../../include/functions_maps.php:73
#: ../../include/functions_planned_downtimes.php:967
msgid "Copy of "
msgstr "コピー: "
@@ -44149,8 +43784,7 @@ msgstr "二段階認証を有効化しようとしています"
#: ../../include/ajax/double_auth.ajax.php:210
msgid ""
"With this option enabled, your account access will be more secure, \n"
-"\t\tcause a code generated by other application will be required after the "
-"login"
+"\t\tcause a code generated by other application will be required after the login"
msgstr ""
"このオプションを有効化すると、あなたのアカウントはよりセキュアになります。\n"
"\t\tログイン後、他のアプリケーションで生成したコードが必要になります。"
@@ -44313,9 +43947,9 @@ msgid ""
"charts or CSV exported data won't match, because is interpreted at runtime. "
"Please check 'Pandora FMS Engineering' chapter from documentation."
msgstr ""
-"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラ"
-"フ、または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ド"
-"キュメントの 'Pandora FMS の技術情報' の章を確認してください。"
+"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラフ、"
+"または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ドキュメン"
+"トの 'Pandora FMS の技術情報' の章を確認してください。"
#: ../../include/ajax/module.php:586
msgid "No available data to showaaaa"
@@ -44326,14 +43960,10 @@ msgid "T"
msgstr "T"
#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650
-#: ../../include/functions_reports.php:654
-#: ../../include/functions_reports.php:659
-#: ../../include/functions_reports.php:665
-#: ../../include/functions_reports.php:672
-#: ../../include/functions_reports.php:676
-#: ../../include/functions_reports.php:680
-#: ../../include/functions_reports.php:687
-#: ../../include/functions_reports.php:693
+#: ../../include/functions_reports.php:654 ../../include/functions_reports.php:659
+#: ../../include/functions_reports.php:665 ../../include/functions_reports.php:672
+#: ../../include/functions_reports.php:676 ../../include/functions_reports.php:680
+#: ../../include/functions_reports.php:687 ../../include/functions_reports.php:693
#: ../../include/functions_reports.php:698 ../../include/functions_groups.php:123
#: ../../include/functions_groups.php:187 ../../operation/search_results.php:120
#: ../../operation/agentes/ver_agente.php:1578
@@ -44566,35 +44196,30 @@ msgid ""
"There was an error copying the agent configuration, the copy has been cancelled"
msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。"
-#: ../../include/functions_agents.php:3022
-#: ../../include/functions_agents.php:3061
+#: ../../include/functions_agents.php:3022 ../../include/functions_agents.php:3061
#: ../../include/functions_agents.php:3150
msgid "No Monitors"
msgstr "モニタ項目なし"
-#: ../../include/functions_agents.php:3030
-#: ../../include/functions_agents.php:3091
+#: ../../include/functions_agents.php:3030 ../../include/functions_agents.php:3091
#: ../../include/functions_agents.php:3158
#: ../../include/functions_reporting.php:13111
msgid "At least one module in CRITICAL status"
msgstr "一つ以上のモジュールが致命的な状態です。"
-#: ../../include/functions_agents.php:3036
-#: ../../include/functions_agents.php:3104
+#: ../../include/functions_agents.php:3036 ../../include/functions_agents.php:3104
#: ../../include/functions_agents.php:3166
#: ../../include/functions_reporting.php:13118
msgid "At least one module in WARNING status"
msgstr "一つ以上のモジュールが警告状態です。"
-#: ../../include/functions_agents.php:3042
-#: ../../include/functions_agents.php:3117
+#: ../../include/functions_agents.php:3042 ../../include/functions_agents.php:3117
#: ../../include/functions_agents.php:3174
#: ../../include/functions_reporting.php:13125
msgid "At least one module is in UKNOWN status"
msgstr "一つ以上のモジュールが不明な状態です。"
-#: ../../include/functions_agents.php:3048
-#: ../../include/functions_agents.php:3130
+#: ../../include/functions_agents.php:3048 ../../include/functions_agents.php:3130
#: ../../include/functions_agents.php:3182
#: ../../include/functions_reporting.php:13132
msgid "All Monitors OK"
@@ -44652,8 +44277,8 @@ msgid ""
"API request failed. Please check Integria IMS' access credentials in Pandora "
"setup."
msgstr ""
-"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認"
-"証情報を確認してください。"
+"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認証"
+"情報を確認してください。"
#: ../../include/functions_integriaims.php:557
msgid "File successfully added"
@@ -44704,8 +44329,7 @@ msgid "Create a new web Server module"
msgstr "ウェブサーバモジュールの新規作成"
#: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
-msgid ""
-"Problems with configuration permissions. Please contact with Administrator"
+msgid "Problems with configuration permissions. Please contact with Administrator"
msgstr "パーミッション設定に問題があります。管理者に連絡してください。"
#: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
@@ -45071,12 +44695,12 @@ msgstr "トポロジグループ"
#: ../../include/help/clippy/topology_group.php:35
msgid ""
-"Please note that group topology maps do not show the parent relationship "
-"between nodes, it only shows the group parentship and the agent distribution "
-"inside them. "
+"Please note that group topology maps do not show the parent relationship between "
+"nodes, it only shows the group parentship and the agent distribution inside "
+"them. "
msgstr ""
-"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。"
-"グループの親子関係とその中にあるエージェントのみを表示します。 "
+"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。グ"
+"ループの親子関係とその中にあるエージェントのみを表示します。 "
#: ../../include/help/clippy/homepage.php:75
msgid "Hi, can I help you?"
@@ -45089,9 +44713,9 @@ msgid ""
"follow my steps to do basic tasks in %s or you can close me and never see me "
"again."
msgstr ""
-"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私"
-"の手順に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わない"
-"ようにすることができます。"
+"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私の"
+"手順に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わないよう"
+"にすることができます。"
#: ../../include/help/clippy/homepage.php:75
msgid "Close this wizard and don't open it again."
@@ -45131,20 +44755,20 @@ msgstr "このエージェントには不明モジュールがあります。"
#: ../../include/help/clippy/module_unknow.php:35
msgid ""
"Unknown modules are modules which receive data normally at least in one "
-"occassion, but at this time are not receving data. Please check our "
-"troubleshoot help page to help you determine why you have unknown modules."
+"occassion, but at this time are not receving data. Please check our troubleshoot "
+"help page to help you determine why you have unknown modules."
msgstr ""
-"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデー"
-"タを受信していないモジュールです。なぜ不明モジュールがあるのか原因を特定するに"
-"は、トラブルシュートのためのヘルプページを確認してください。"
+"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデータ"
+"を受信していないモジュールです。なぜ不明モジュールがあるのか原因を特定するには、"
+"トラブルシュートのためのヘルプページを確認してください。"
#: ../../include/help/clippy/modules_not_learning_mode.php:46
msgid ""
-"Please note that you have your agent setup to do not add new modules coming "
-"from the data XML."
+"Please note that you have your agent setup to do not add new modules coming from "
+"the data XML."
msgstr ""
-"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっ"
-"ていることに注意してください。"
+"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになって"
+"いることに注意してください。"
#: ../../include/help/clippy/modules_not_learning_mode.php:46
msgid ""
@@ -45153,54 +44777,51 @@ msgid ""
"manually in the interface (with the exact name and type as coming in the XML "
"file)."
msgstr ""
-"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加し"
-"た場合は、インタフェースで手動作成するまでエージェントに反映されないということ"
-"を意味します(正しい名前とタイプは XML で送られます)。"
+"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加した"
+"場合は、インタフェースで手動作成するまでエージェントに反映されないということを意"
+"味します(正しい名前とタイプは XML で送られます)。"
#: ../../include/help/clippy/modules_not_learning_mode.php:46
msgid ""
-"You should use the \"normal\" mode (non learn) only when you don't intend to "
-"add more modules to the agent."
+"You should use the \"normal\" mode (non learn) only when you don't intend to add "
+"more modules to the agent."
msgstr ""
-"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使"
-"います。"
+"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使い"
+"ます。"
#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
msgid ""
"The last step is to check the alert created. Click on the round icon to force "
-"the action execution and after a few minutes you will receive the alert in "
-"your email."
+"the action execution and after a few minutes you will receive the alert in your "
+"email."
msgstr ""
-"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイ"
-"コンをクリックします。数分のうちにアラートをメールで受信するでしょう。"
+"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイコ"
+"ンをクリックします。数分のうちにアラートをメールで受信するでしょう。"
#: ../../include/help/clippy/operation_agentes_ver_agente.php:35
-msgid ""
-"And restart your pandora server to read again general configuration tokens."
-msgstr ""
-"そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
+msgid "And restart your pandora server to read again general configuration tokens."
+msgstr "そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
msgid ""
"Let me show you how to create an email action: Click on Create button and fill "
"the form showed in the following screen."
msgstr ""
-"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示"
-"されるフォームに入力します。"
+"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示さ"
+"れるフォームに入力します。"
#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
msgid ""
-"Now, you have to go to the monitors list and look for a critical module to "
-"apply the alert."
+"Now, you have to go to the monitors list and look for a critical module to apply "
+"the alert."
msgstr "ここで、監視一覧へ行き、アラートを適用する障害モジュールを探します。"
#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
msgid ""
-"Click on the arrow to drop down the Monitoring submenu and select Monitor "
-"Detail."
+"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail."
msgstr ""
-"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細"
-"を選択します。"
+"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細を"
+"選択します。"
#: ../../include/help/clippy/agent_out_of_limits.php:35
msgid "Agent contact date passed it's ETA!."
@@ -45212,9 +44833,8 @@ msgid ""
"(too load or just down). Check also connectivity between the agent and the "
"server."
msgstr ""
-"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)し"
-"ているときにこれが起こります。エージェントとサーバの間の通信も確認してくださ"
-"い。"
+"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)して"
+"いるときにこれが起こります。エージェントとサーバの間の通信も確認してください。"
#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
msgid "I'm going to show you how to monitor a server."
@@ -45243,17 +44863,17 @@ msgstr "未初期化モジュールがあります。"
#: ../../include/help/clippy/modules_not_init.php:35
msgid ""
"This happen when you have just created a module and it's not executed at first "
-"time. Usually in a few seconds should be initialized and you will be able to "
-"see in main view. If you keep non-init modules for more than 24hr (due a "
-"problem in it's execution or configuration) they will be automatically deleted "
-"by the system. Non-init are not visible in the âmain viewâ, you can see/edit "
-"them in the module administration section, in the agent administrator."
+"time. Usually in a few seconds should be initialized and you will be able to see "
+"in main view. If you keep non-init modules for more than 24hr (due a problem in "
+"it's execution or configuration) they will be automatically deleted by the "
+"system. Non-init are not visible in the âmain viewâ, you can see/edit them in "
+"the module administration section, in the agent administrator."
msgstr ""
-"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で"
-"初期化されメイン画面で参照できるようになります。24時間以上(実行や設定に問題があ"
-"る等で)未初期化モジュールが放置された場合は、システムにより自動的に削除されま"
-"す。未初期化モジュールは、メインがメインに表示されません。エージェント管理のモ"
-"ジュール管理画面でのみ参照や編集ができます。"
+"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で初"
+"期化されメイン画面で参照できるようになります。24時間以上(実行や設定に問題がある等"
+"で)未初期化モジュールが放置された場合は、システムにより自動的に削除されます。未初"
+"期化モジュールは、メインがメインに表示されません。エージェント管理のモジュール管"
+"理画面でのみ参照や編集ができます。"
#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
msgid "Fill the name of your action."
@@ -45275,8 +44895,8 @@ msgstr "コマンドフィールドで \"email\" を選択します。"
msgid ""
"In the threshold field enter the seconds. The help icon show more information."
msgstr ""
-"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示し"
-"ます。"
+"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示しま"
+"す。"
#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
msgid ""
@@ -45291,16 +44911,16 @@ msgid ""
"In the \"Subject\" field you can use the macros _agent_ or _module_ for each "
"name."
msgstr ""
-"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロ"
-"が利用できます。"
+"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロが"
+"利用できます。"
#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
msgid ""
"In the text field, you can also use macros. Get more information about the "
"macros by clicking on the help icon."
msgstr ""
-"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイ"
-"コンをクリックしてください。"
+"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイコ"
+"ンをクリックしてください。"
#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
msgid "Click on Create button to create the action."
@@ -45315,14 +44935,14 @@ msgid ""
"Please note that information provided here affects how the agent collect "
"information and generate the data XML. Any data/configuration reported by the "
"agent, different from data or description is discarded, and the configuration "
-"shown in the console prevails over any configuration coming from the agent, "
-"this applies for example for crit/warn thresholds, interval, module group, min/"
-"max value, tags, etc."
+"shown in the console prevails over any configuration coming from the agent, this "
+"applies for example for crit/warn thresholds, interval, module group, min/max "
+"value, tags, etc."
msgstr ""
-"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で"
-"影響があるということに注意してください。エージェントから送られてくるデータや設"
-"定のうち、データおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、"
-"最小・最大の値、タグなどは、コンソールに設定されているものが優先されます。"
+"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で影"
+"響があるということに注意してください。エージェントから送られてくるデータや設定の"
+"うち、データおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、最小・"
+"最大の値、タグなどは、コンソールに設定されているものが優先されます。"
#: ../../include/help/clippy/data_configuration_module.php:35
msgid ""
@@ -45330,9 +44950,9 @@ msgid ""
"see in the console, but after the first import, system will ignore any update "
"coming from the XML/Agent."
msgstr ""
-"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができ"
-"ますが、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無"
-"視します。"
+"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができま"
+"すが、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無視し"
+"ます。"
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
msgid "Now you must go to Modules. Don't worry I'll lead you."
@@ -45358,8 +44978,7 @@ msgstr "そしてボタンをクリックします。"
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
msgid "Now you must create the module. Don't worry, i'll teach you ."
-msgstr ""
-"ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
+msgstr "ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
msgid "Now we are going to fill the form."
@@ -45387,15 +45006,14 @@ msgstr "そしてこのボタンをクリックするだけで終了です。"
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
msgid ""
-"Congrats! Your module has been created.
and the status color is blue."
-"
That color means that the module hasn't been executed for the first "
+"Congrats! Your module has been created.
and the status color is blue."
+"b>
That color means that the module hasn't been executed for the first "
"time. In the next seconds, if there is no problem, the status color will turn "
"into red or green."
msgstr ""
-"おめでとうございます! モジュールが作成されました。
そして、状態の色は "
-"青です。
この色は、モジュールの初回実行が完了していないことを意味して"
-"います。問題がなければ数秒のうちに状態の色が赤または緑に変わりま"
-"す。"
+"おめでとうございます! モジュールが作成されました。
そして、状態の色は 青"
+"です。
この色は、モジュールの初回実行が完了していないことを意味していま"
+"す。問題がなければ数秒のうちに状態の色が赤または緑に変わります。"
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129
msgid "Click on alerts tab and then fill the form to add an alert."
@@ -45419,22 +45037,22 @@ msgstr "アラートを作成するために、アラートの追加ボタンを
#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171
msgid ""
-"To test the alert you've just created go to the main view by clicking on the "
-"eye tab."
+"To test the alert you've just created go to the main view by clicking on the eye "
+"tab."
msgstr ""
"作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。"
#: ../../include/help/clippy/server_queued_modules.php:35
msgid ""
-"You have too much items in the processing queue. This can happen if your "
-"server is too loaded and/or not properly configured. This could be something "
-"temporal, or a bottleneck. One possible solution is increase number of server "
-"threads, but you should consider getting support about this."
+"You have too much items in the processing queue. This can happen if your server "
+"is too loaded and/or not properly configured. This could be something temporal, "
+"or a bottleneck. One possible solution is increase number of server threads, but "
+"you should consider getting support about this."
msgstr ""
-"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎている"
-"か、またはサーバが正しく設定されていません。これは一時的なものかもしれません"
-"が、ボトルネックになります。一つの解決策としてはサーバのスレッド数を増やすこと"
-"です。しかし、これについては支援を得ることを考慮した方がよいでしょう。"
+"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎているか、"
+"またはサーバが正しく設定されていません。これは一時的なものかもしれませんが、ボト"
+"ルネックになります。一つの解決策としてはサーバのスレッド数を増やすことです。しか"
+"し、これについては支援を得ることを考慮した方がよいでしょう。"
#: ../../include/help/clippy/servers_down.php:35
msgid "All servers down"
@@ -45446,8 +45064,8 @@ msgid ""
"command: \"sudo /etc/init.d/pandora_server restart\". It's possible need "
"introduce root pass."
msgstr ""
-"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/"
-"pandora_server restart\" を実行します。root のパスワードが必要です。"
+"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/pandora_server "
+"restart\" を実行します。root のパスワードが必要です。"
#: ../../include/help/clippy/interval_agent_min.php:35
msgid "Interval Agent."
@@ -45457,16 +45075,16 @@ msgstr "エージェントの間隔"
msgid ""
"Please note that having agents with a monitoring interval below 300 seconds is "
"not recommended. This will impact seriously in the performance of the server. "
-"For example, having 200 agents with one minute interval, is the same than "
-"having 1000 agents with a 5 minute interval. The probability of getting "
-"unknown modules is higher, and the impact on the server is higher because it "
-"requires a shorter response time."
+"For example, having 200 agents with one minute interval, is the same than having "
+"1000 agents with a 5 minute interval. The probability of getting unknown modules "
+"is higher, and the impact on the server is higher because it requires a shorter "
+"response time."
msgstr ""
-"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意して"
-"ください。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間"
-"隔で 200エージェントがある場合は、5分間隔で 1000エージェントがあるのと同じで"
-"す。おそらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのイ"
-"ンパクトは大きくなるでしょう。"
+"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意してく"
+"ださい。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間隔"
+"で 200エージェントがある場合は、5分間隔で 1000エージェントがあるのと同じです。お"
+"そらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのインパクト"
+"は大きくなるでしょう。"
#: ../../include/help/clippy/operation_agentes_status_monitor.php:34
msgid ""
@@ -45478,13 +45096,13 @@ msgstr ""
#: ../../include/help/clippy/operation_agentes_status_monitor.php:38
msgid ""
-"If you know the name of the agent or the name of the module in critical "
-"status, type it in this field to make the module list shorter. You can write "
-"the entire name or just a part of it."
+"If you know the name of the agent or the name of the module in critical status, "
+"type it in this field to make the module list shorter. You can write the entire "
+"name or just a part of it."
msgstr ""
-"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧"
-"を短くするためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力"
-"ができます。"
+"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧を"
+"短くするためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力がで"
+"きます。"
#: ../../include/help/clippy/operation_agentes_status_monitor.php:43
msgid "Click on Show button to get the modules list filtered."
@@ -45505,8 +45123,7 @@ msgstr "タスクメールの設定は、Enterprise 設定にあります:"
msgid "Please check if the email configuration is correct."
msgstr "メール設定が正しいか確認してください。"
-#: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:972
+#: ../../include/functions_profile.php:188 ../../operation/users/user_edit.php:972
#: ../../operation/users/user_edit.php:981
msgid "Profiles/Groups assigned to this user"
msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ"
@@ -45625,8 +45242,7 @@ msgstr "メジャー"
#: ../../include/functions_reporting.php:12333
#: ../../include/functions_reporting.php:14672
#: ../../include/functions_reporting.php:14747
-#: ../../include/functions_groups.php:2647
-#: ../../include/functions_groups.php:2661
+#: ../../include/functions_groups.php:2647 ../../include/functions_groups.php:2661
#: ../../include/functions_groups.php:2711
msgid "Enterprise version not installed"
msgstr "Enterprise 版がインストールされていません"
@@ -45646,8 +45262,8 @@ msgstr "処理できないエラーが発生しました"
#: ../../include/functions_ui.php:6775
#, php-format
msgid ""
-"These controls are using the timezone of the system (%s) instead of yours "
-"(%s). The difference with your time zone in hours is %s."
+"These controls are using the timezone of the system (%s) instead of yours (%s). "
+"The difference with your time zone in hours is %s."
msgstr ""
"これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイム"
"ゾーン(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。"
@@ -46087,8 +45703,7 @@ msgstr "要素削除"
msgid "Click here to get more information"
msgstr "詳細についてはこちらをクリックしてください"
-#: ../../include/functions_reports.php:651
-#: ../../include/functions_reports.php:1102
+#: ../../include/functions_reports.php:651 ../../include/functions_reports.php:1102
#: ../../include/functions_reporting.php:10729
#: ../../include/functions_reporting.php:10889
msgid "Simple graph"
@@ -46110,8 +45725,7 @@ msgstr "モジュールヒストグラムグラフ"
msgid "IPAM networks"
msgstr "IPAM ネットワーク"
-#: ../../include/functions_reports.php:736
-#: ../../include/functions_reports.php:740
+#: ../../include/functions_reports.php:736 ../../include/functions_reports.php:740
msgid "Forecasting"
msgstr "予測"
@@ -46143,16 +45757,11 @@ msgstr "データの並び"
msgid "Historical Data"
msgstr "保存データ"
-#: ../../include/functions_reports.php:782
-#: ../../include/functions_reports.php:788
-#: ../../include/functions_reports.php:794
-#: ../../include/functions_reports.php:800
-#: ../../include/functions_reports.php:806
-#: ../../include/functions_reports.php:813
-#: ../../include/functions_reports.php:820
-#: ../../include/functions_reports.php:826
-#: ../../include/functions_reports.php:830
-#: ../../include/functions_reports.php:835
+#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788
+#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:800
+#: ../../include/functions_reports.php:806 ../../include/functions_reports.php:813
+#: ../../include/functions_reports.php:820 ../../include/functions_reports.php:826
+#: ../../include/functions_reports.php:830 ../../include/functions_reports.php:835
#: ../../include/functions_reports.php:841
msgid "Grouped"
msgstr "グループ化"
@@ -46169,8 +45778,7 @@ msgstr "ネットワークインタフェース"
msgid "Custom Render"
msgstr "カスタムレンダリング"
-#: ../../include/functions_reports.php:846
-#: ../../include/functions_reports.php:850
+#: ../../include/functions_reports.php:846 ../../include/functions_reports.php:850
msgid "Text/HTML "
msgstr "テキスト/HTML "
@@ -46317,8 +45925,8 @@ msgid ""
"Must have the same time zone as the system or database to avoid mismatches of "
"time."
msgstr ""
-"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする"
-"必要があります。"
+"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必"
+"要があります。"
#: ../../include/functions_register.php:171
msgid "E-mail for receiving alerts"
@@ -46337,8 +45945,7 @@ msgid ""
"You could change this options later in \"alert actions\" and setting your "
"account."
msgstr ""
-"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できま"
-"す。"
+"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できます。"
#: ../../include/functions_config.php:150
msgid "Failed updated: User did not login."
@@ -46575,13 +46182,11 @@ msgstr "カスタムサブタイトルヘッダ"
msgid "Login background"
msgstr "ログイン背景"
-#: ../../include/functions_config.php:1138
-#: ../../include/functions_config.php:1186
+#: ../../include/functions_config.php:1138 ../../include/functions_config.php:1186
msgid "Custom Docs url"
msgstr "カスタムドキュメントURL"
-#: ../../include/functions_config.php:1142
-#: ../../include/functions_config.php:1190
+#: ../../include/functions_config.php:1142 ../../include/functions_config.php:1190
msgid "Custom support url"
msgstr "カスタムサポートURL"
@@ -47224,8 +46829,7 @@ msgstr "[pandorafms wiki] 新規レポート"
#: ../../include/class/HelpFeedBack.class.php:262
msgid "Please provide your email address, we promise not to bother you"
-msgstr ""
-"あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。"
+msgstr "あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。"
#: ../../include/class/HelpFeedBack.class.php:310
msgid "Something went wrong while sending the report."
@@ -47471,8 +47075,7 @@ msgstr "InnoDB buffer pool size"
#: ../../include/class/Diagnostics.class.php:809
#, no-php-format
-msgid ""
-"It has to be 40% of the server memory not recommended to be greater or less"
+msgid "It has to be 40% of the server memory not recommended to be greater or less"
msgstr ""
"サーバメモリの40%である必要があり、これを超えたり下回ることは推奨されません。"
@@ -47582,8 +47185,8 @@ msgstr "Thread stack"
msgid ""
"Table fragmentation is higher than recommended. They should be defragmented."
msgstr ""
-"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要が"
-"あります。"
+"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要があ"
+"ります。"
#: ../../include/class/Diagnostics.class.php:995
msgid "Table fragmentation is correct."
@@ -47638,8 +47241,8 @@ msgid ""
"The average of modules per agent is more than 40. You can have performance "
"problems"
msgstr ""
-"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題"
-"が発生する可能性があります。"
+"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題が"
+"発生する可能性があります。"
#: ../../include/class/Diagnostics.class.php:1121
msgid "The average of modules per agent is less than 40"
@@ -47687,8 +47290,8 @@ msgid ""
"The tagente_datos table contains too much data. A historical database is "
"recommended."
msgstr ""
-"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお"
-"勧めします。"
+"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお勧"
+"めします。"
#: ../../include/class/Diagnostics.class.php:1310
msgid "The tagente_datos table contains an acceptable amount of data."
@@ -47719,24 +47322,24 @@ msgid ""
"There's more pandora_server threads than configured, are you running multiple "
"servers simultaneusly?."
msgstr ""
-"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していま"
-"せんか?"
+"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していませ"
+"んか?"
#: ../../include/class/Diagnostics.class.php:1514
msgid ""
"Please check your Pandora Server setup and make sure that the database "
"maintenance daemon is running."
msgstr ""
-"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作して"
-"いるか確認してください。"
+"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作してい"
+"るか確認してください。"
#: ../../include/class/Diagnostics.class.php:1518
msgid ""
"It' is very important to keep the database up-to-date to get the best "
"performance and results in Pandora"
msgstr ""
-"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこ"
-"とが非常に重要です。"
+"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこと"
+"が非常に重要です。"
#: ../../include/class/Diagnostics.class.php:1780
msgid "You have more than 10 MB of logs"
@@ -47781,8 +47384,8 @@ msgid ""
"If you think this report must be escalated, feel free to forward this mail to "
"\"%s\""
msgstr ""
-"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" "
-"へ転送してください。"
+"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" へ"
+"転送してください。"
#: ../../include/class/Diagnostics.class.php:2025
msgid "LEGAL WARNING"
@@ -47793,8 +47396,8 @@ msgid ""
"The information contained in this transmission is privileged and confidential "
"information intended only for the use of the individual or entity named above"
msgstr ""
-"この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報"
-"です。"
+"この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報で"
+"す。"
#: ../../include/class/Diagnostics.class.php:2031
msgid ""
@@ -47802,8 +47405,8 @@ msgid ""
"notified that any dissemination, distribution or copying of this communication "
"is strictly prohibited"
msgstr ""
-"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピー"
-"を固く禁止します"
+"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピーを"
+"固く禁止します"
#: ../../include/class/Diagnostics.class.php:2035
msgid "If you have received this transmission in error, do not read it"
@@ -47811,8 +47414,8 @@ msgstr "もし、間違えてこの情報を受け取った場合は、読まな
#: ../../include/class/Diagnostics.class.php:2039
msgid ""
-"Please immediately reply to the sender that you have received this "
-"communication in error and then delete it"
+"Please immediately reply to the sender that you have received this communication "
+"in error and then delete it"
msgstr "すぐに間違えて届いた旨を送信者へ返信するとともに、削除してください"
#: ../../include/class/Diagnostics.class.php:2118
@@ -47892,11 +47495,11 @@ msgstr "実行"
#: ../../include/class/NetworkMap.class.php:2948
msgid ""
-"Resetting the map will delete all customizations you have done, including "
-"manual relationships between elements, new items, etc."
+"Resetting the map will delete all customizations you have done, including manual "
+"relationships between elements, new items, etc."
msgstr ""
-"マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイ"
-"ズを削除します。"
+"マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイズ"
+"を削除します。"
#: ../../include/class/NetworkMap.class.php:2952
msgid "Restart map"
@@ -48283,12 +47886,9 @@ msgstr "未承諾"
#: ../../include/functions_reporting.php:2365
#: ../../include/functions_reporting.php:4596
#: ../../include/functions_reporting.php:11389
-#: ../../include/functions_events.php:2547
-#: ../../include/functions_events.php:3269
-#: ../../include/functions_events.php:3544
-#: ../../include/functions_events.php:3553
-#: ../../include/functions_events.php:3560
-#: ../../include/functions_events.php:3567
+#: ../../include/functions_events.php:2547 ../../include/functions_events.php:3269
+#: ../../include/functions_events.php:3544 ../../include/functions_events.php:3553
+#: ../../include/functions_events.php:3560 ../../include/functions_events.php:3567
msgid "Validated"
msgstr "承諾済み"
@@ -48355,8 +47955,8 @@ msgstr "システム監査ログ"
#: ../../include/class/AuditLog.class.php:197
msgid "Search filter by User, Action, Date, Source IP or Comments fields content"
msgstr ""
-"ユーザ、アクション、日付、ソース IP、またはコメントフィールドの内容による検索"
-"フィルタ"
+"ユーザ、アクション、日付、ソース IP、またはコメントフィールドの内容による検索フィ"
+"ルタ"
#: ../../include/class/AuditLog.class.php:212
msgid "7 days"
@@ -48641,8 +48241,7 @@ msgstr "添付ファイルディレクトリ書き込み不可"
#: ../../include/class/ConsoleSupervisor.php:1111
#, php-format
-msgid ""
-"Directory %s is not writable. Please, configure corresponding permissions."
+msgid "Directory %s is not writable. Please, configure corresponding permissions."
msgstr ""
"%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。"
@@ -48656,8 +48255,8 @@ msgid ""
"There are more than %d files in attachment, consider cleaning up attachment "
"directory manually."
msgstr ""
-"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリ"
-"を手動で整理することを検討してください。"
+"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリを"
+"手動で整理することを検討してください。"
#: ../../include/class/ConsoleSupervisor.php:1165
msgid "Remote configuration directory is not readable"
@@ -48666,8 +48265,7 @@ msgstr "リモート設定ディレクトリが読めません"
#: ../../include/class/ConsoleSupervisor.php:1167
#, php-format
msgid ""
-"Remote configuration directory %s is not readable. Please, adjust "
-"configuration."
+"Remote configuration directory %s is not readable. Please, adjust configuration."
msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。"
#: ../../include/class/ConsoleSupervisor.php:1184
@@ -48677,8 +48275,7 @@ msgstr "リモート設定ディレクトリに書けません"
#: ../../include/class/ConsoleSupervisor.php:1186
#, php-format
msgid ""
-"Remote configuration directory %s is not writable. Please, adjust "
-"configuration."
+"Remote configuration directory %s is not writable. Please, adjust configuration."
msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。"
#: ../../include/class/ConsoleSupervisor.php:1202
@@ -48708,8 +48305,8 @@ msgstr "スプールに多くのファイルがあります"
msgid ""
"There are more than %d files in %s. Consider checking DataServer performance"
msgstr ""
-"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してく"
-"ださい。"
+"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してくだ"
+"さい。"
#: ../../include/class/ConsoleSupervisor.php:1273
msgid "There are too many BADXML files in spool"
@@ -48719,8 +48316,8 @@ msgstr "スプールに BADXML ファイルが大量にあります"
#, php-format
msgid "There are more than %d files in %s. Consider checking software agents."
msgstr ""
-"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくだ"
-"さい。"
+"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくださ"
+"い。"
#: ../../include/class/ConsoleSupervisor.php:1362
#, php-format
@@ -48736,8 +48333,7 @@ msgid ""
"There are no servers registered in this console. Please, check installation "
"guide."
msgstr ""
-"コンソールに登録されたサーバがありません。インストールガイドを確認してくださ"
-"い。"
+"コンソールに登録されたサーバがありません。インストールガイドを確認してください。"
#: ../../include/class/ConsoleSupervisor.php:1476
#, php-format
@@ -48760,8 +48356,8 @@ msgid ""
"%s (%s) is not running. Please, check configuration file or remove this server "
"from server list."
msgstr ""
-"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から"
-"削除してください。"
+"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から削"
+"除してください。"
#: ../../include/class/ConsoleSupervisor.php:1546
msgid "No master servers found."
@@ -48784,8 +48380,8 @@ msgid ""
"To disable it, go to your PHP configuration file (php.ini) and put safe_mode = "
"Off (Do not forget to restart apache process after changes)"
msgstr ""
-"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してく"
-"ださい。(変更後は apache プロセスの再起動を忘れないようにしてください)"
+"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してくだ"
+"さい。(変更後は apache プロセスの再起動を忘れないようにしてください)"
#: ../../include/class/ConsoleSupervisor.php:1621
#, php-format
@@ -48843,8 +48439,8 @@ msgid ""
"The variable disable_functions contains functions system() or exec() in PHP "
"configuration file (php.ini)"
msgstr ""
-"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() "
-"を含んでいます。"
+"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() を"
+"含んでいます。"
#: ../../include/class/ConsoleSupervisor.php:1738
msgid "chromium is not installed"
@@ -48852,42 +48448,37 @@ msgstr "chromium がインストールされていません"
#: ../../include/class/ConsoleSupervisor.php:1739
msgid ""
-"To be able to create images of the graphs for PDFs, please install the "
-"chromium extension. For that, it is necessary to follow these steps:"
+"To be able to create images of the graphs for PDFs, please install the chromium "
+"extension. For that, it is necessary to follow these steps:"
msgstr ""
-"PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールして"
-"ください。それには、以下のステップを行う必要があります。"
+"PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールしてく"
+"ださい。それには、以下のステップを行う必要があります。"
#: ../../include/class/ConsoleSupervisor.php:1760
msgid "PHP UPDATE REQUIRED"
msgstr "PHP のアップデートが必要です"
-#: ../../include/class/ConsoleSupervisor.php:1761
-#: ../../general/php_message.php:30
+#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:30
msgid ""
"For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or "
"higher."
msgstr ""
-"Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があ"
-"ります。"
+"Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があり"
+"ます。"
-#: ../../include/class/ConsoleSupervisor.php:1761
-#: ../../general/php_message.php:31
+#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:31
msgid "Otherwise, functionalities will be lost."
msgstr "そうしないと、機能が動作しません。"
-#: ../../include/class/ConsoleSupervisor.php:1761
-#: ../../general/php_message.php:33
+#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:33
msgid "Report download in PDF format"
msgstr "PDF フォーマットでのレポートダウンロード"
-#: ../../include/class/ConsoleSupervisor.php:1761
-#: ../../general/php_message.php:34
+#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:34
msgid "Emails Sending"
msgstr "メール送信"
-#: ../../include/class/ConsoleSupervisor.php:1761
-#: ../../general/php_message.php:35
+#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:35
msgid "Metaconsole Collections"
msgstr "メタコンソールコレクション"
@@ -48909,12 +48500,12 @@ msgstr "データベースメンテナンスにおける問題"
#, php-format
msgid ""
"Your database hasn't been through maintenance for 48hrs. Please, check "
-"documentation on how to perform this maintenance process on %s and enable it "
-"as soon as possible."
+"documentation on how to perform this maintenance process on %s and enable it as "
+"soon as possible."
msgstr ""
-"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセス"
-"を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してく"
-"ださい。"
+"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセスを"
+"実行する方法はドキュメントを確認してください。また、なるべく早く有効化してくださ"
+"い。"
#: ../../include/class/ConsoleSupervisor.php:1933
msgid "Historical database maintenance problem."
@@ -48924,12 +48515,12 @@ msgstr "ヒストリデータベースにおける問題"
#, php-format
msgid ""
"Your historical database hasn't been through maintenance for 48hrs. Please, "
-"check documentation on how to perform this maintenance process on %s and "
-"enable it as soon as possible."
+"check documentation on how to perform this maintenance process on %s and enable "
+"it as soon as possible."
msgstr ""
-"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンス"
-"プロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効"
-"化してください。"
+"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンスプ"
+"ロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効化し"
+"てください。"
#: ../../include/class/ConsoleSupervisor.php:1973
msgid "Historical database MR mismatch"
@@ -48937,8 +48528,8 @@ msgstr "ヒストリデータベースの MR が一致していません"
#: ../../include/class/ConsoleSupervisor.php:1974
msgid ""
-"Your historical database is not using the same schema as the main DB. This "
-"could produce anomalies while storing historical data."
+"Your historical database is not using the same schema as the main DB. This could "
+"produce anomalies while storing historical data."
msgstr ""
"ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これによ"
"り、ヒストリデータの保存中に異常が発生する可能性があります。"
@@ -48968,8 +48559,8 @@ msgid ""
"A scheduled downtime is running. Some monitoring data won't be available while "
"downtime is taking place."
msgstr ""
-"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用でき"
-"ません。"
+"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用できま"
+"せん。"
#: ../../include/class/ConsoleSupervisor.php:2270
msgid "Downtime scheduled soon."
@@ -48978,11 +48569,11 @@ msgstr "まもなく計画停止"
#: ../../include/class/ConsoleSupervisor.php:2272
#, php-format
msgid ""
-"A scheduled downtime is going to be executed from %s to %s. Some monitoring "
-"data won't be available while downtime is taking place."
+"A scheduled downtime is going to be executed from %s to %s. Some monitoring data "
+"won't be available while downtime is taking place."
msgstr ""
-"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監"
-"視データは利用できません。"
+"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監視"
+"データは利用できません。"
#: ../../include/class/ConsoleSupervisor.php:2302
msgid "This instance is not registered in the Update manager section"
@@ -49008,8 +48599,8 @@ msgstr "デフォルトのフォントがありません"
#: ../../include/class/ConsoleSupervisor.php:2372
msgid ""
-"Your defined font doesn't exist or is not defined. Please, check font "
-"parameters in your config"
+"Your defined font doesn't exist or is not defined. Please, check font parameters "
+"in your config"
msgstr ""
"定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラ"
"メータを確認してください。"
@@ -49025,8 +48616,8 @@ msgid ""
"should be disabled in a production environment. This value is located in the "
"main index.php file"
msgstr ""
-"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境で"
-"は無効化してください。この定義は、メインの index.php ファイル内にあります。"
+"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境では"
+"無効化してください。この定義は、メインの index.php ファイル内にあります。"
#: ../../include/class/ConsoleSupervisor.php:2423
msgid "Event storm protection is enabled."
@@ -49037,8 +48628,8 @@ msgid ""
"Some events may get lost while this mode is enabled. The server must be "
"restarted after altering this setting."
msgstr ""
-"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変"
-"更した後はサーバを再起動する必要があります。"
+"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変更"
+"した後はサーバを再起動する必要があります。"
#: ../../include/class/ConsoleSupervisor.php:2450
msgid "Failed to retrieve updates, please configure utility"
@@ -49063,8 +48654,8 @@ msgid ""
"There is one or more minor releases available. .About minor release update."
msgstr ""
-"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。"
+"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。"
#: ../../include/class/ConsoleSupervisor.php:2535
msgid "Discovery relies on an appropriate cron setup."
@@ -49089,8 +48680,8 @@ msgid ""
"Server %s and this console have different versions. This might cause several "
"malfunctions. Please, update this server."
msgstr ""
-"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作"
-"が発生する場合があります。 サーバを更新してください。"
+"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作が"
+"発生する場合があります。 サーバを更新してください。"
#: ../../include/class/ConsoleSupervisor.php:2720
msgid "AllowOverride is disabled"
@@ -49111,8 +48702,8 @@ msgid ""
"you have an outdated and inoperative version of this file at %s. Please, "
"consider deleting it."
msgstr ""
-"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いロ"
-"グファイルがあります。 削除を検討してください。"
+"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いログ"
+"ファイルがあります。 削除を検討してください。"
#: ../../include/class/ConsoleSupervisor.php:2828
msgid "Pandora FMS audit log file changed location"
@@ -49121,12 +48712,12 @@ msgstr "Pandora FMS 監査ログの場所が変わりました"
#: ../../include/class/ConsoleSupervisor.php:2832
#, php-format
msgid ""
-"Pandora FMS audit log file has been moved to new location %s/log. Currently "
-"you have an outdated and inoperative version of this file at %s. Please, "
-"consider deleting it."
+"Pandora FMS audit log file has been moved to new location %s/log. Currently you "
+"have an outdated and inoperative version of this file at %s. Please, consider "
+"deleting it."
msgstr ""
-"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファ"
-"イルがあります。 削除を検討してください。"
+"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファイ"
+"ルがあります。 削除を検討してください。"
#: ../../include/class/ConsoleSupervisor.php:2890
#, php-format
@@ -49136,11 +48727,11 @@ msgstr "ノード %s の同期キューの長さを超えました。"
#: ../../include/class/ConsoleSupervisor.php:2892
#, php-format
msgid ""
-"Synchronization queue lenght for node %s is %d items, this value should be 0 "
-"or lower than %d, please check the queue status."
+"Synchronization queue lenght for node %s is %d items, this value should be 0 or "
+"lower than %d, please check the queue status."
msgstr ""
-"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下であ"
-"る必要があります。キューの状態を確認してください。"
+"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下である"
+"必要があります。キューの状態を確認してください。"
#: ../../include/class/ConsoleSupervisor.php:2945
#, php-format
@@ -49153,8 +48744,8 @@ msgid ""
"Node %s cannot process synchronization queue due %s, please check the queue "
"status."
msgstr ""
-"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくだ"
-"さい。"
+"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくださ"
+"い。"
#: ../../include/class/ConsoleSupervisor.php:2978
msgid "Agent dependency error"
@@ -49531,8 +49122,7 @@ msgstr "コマンドが失敗し、戻り値が返りました:"
#: ../../include/class/ExternalTools.class.php:806
msgid ""
-"Something went wrong while perform the execution. Please check the "
-"configuration."
+"Something went wrong while perform the execution. Please check the configuration."
msgstr "実行中に何らかの問題が発生しました。設定を確認してください。"
#: ../../include/class/ExternalTools.class.php:845
@@ -49797,8 +49387,8 @@ msgstr "このクエリは安全ではなく、スキーマに不要な変更を
#: ../../include/functions_reporting.php:5658
msgid "The group has no agents or none of the agents has any network interface"
msgstr ""
-"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントが"
-"ありません"
+"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがあ"
+"りません"
#: ../../include/functions_reporting.php:5683
msgid "bytes/s"
@@ -49841,9 +49431,8 @@ msgid ""
"Illegal query: Due security restrictions, there are some tokens or words you "
"cannot use: *, delete, drop, alter, modify, password, pass, insert or update."
msgstr ""
-"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, "
-"password, pass, insert, update といったいくつかのトークンや単語は利用できませ"
-"ん。"
+"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, password, "
+"pass, insert, update といったいくつかのトークンや単語は利用できません。"
#: ../../include/functions_reporting.php:9118
#: ../../include/functions_reporting.php:9836
@@ -50184,8 +49773,8 @@ msgstr "ディレクトリの作成"
#: ../../include/functions_filemanager.php:880
msgid "The zip upload in this dir, easy to upload multiple files."
msgstr ""
-"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロー"
-"ドも簡単です。"
+"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロード"
+"も簡単です。"
#: ../../include/functions_filemanager.php:882
msgid "Decompress"
@@ -50432,25 +50021,22 @@ msgstr ""
#: ../../include/lib/Dashboard/Widgets/example.php:250
msgid ""
-"To add more elements, click on \"Add widgets\" on the top of this "
-"page."
+"To add more elements, click on \"Add widgets\" on the top of this page."
msgstr ""
-"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をク"
-"リックします。"
+"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリッ"
+"クします。"
#: ../../include/lib/Dashboard/Widgets/example.php:251
#: ../../include/lib/Dashboard/Widgets/example.php:253
msgid ""
"To delete this message, click on the delete button on top right corner of this "
"element."
-msgstr ""
-"このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。"
+msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。"
#: ../../include/lib/Dashboard/Widgets/example.php:252
msgid ""
"To do so, just click on the title and drag and drop it to the desired place."
-msgstr ""
-"そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。"
+msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。"
#: ../../include/lib/Dashboard/Widgets/example.php:254
#, php-format
@@ -50485,8 +50071,7 @@ msgstr "制限"
#, php-format
msgid ""
"The maximum number of modules to display is %d, please reconfigure the widget."
-msgstr ""
-"表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。"
+msgstr "表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。"
#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:674
msgid "Data Matrix"
@@ -50570,16 +50155,14 @@ msgstr "カスタムフィルタ"
#: ../../include/lib/Dashboard/Widgets/events_list.php:383
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299
-#: ../../include/functions_events.php:3261
-#: ../../include/functions_events.php:3267
+#: ../../include/functions_events.php:3261 ../../include/functions_events.php:3267
#: ../../include/functions_events.php:3289
msgid "All event"
msgstr "全イベント"
#: ../../include/lib/Dashboard/Widgets/events_list.php:384
#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300
-#: ../../include/functions_events.php:3263
-#: ../../include/functions_events.php:3297
+#: ../../include/functions_events.php:3263 ../../include/functions_events.php:3297
msgid "Only validated"
msgstr "承諾済み"
@@ -50720,8 +50303,8 @@ msgid ""
"ZOOM functionality is only available when there is only one such widget in the "
"dashboard"
msgstr ""
-"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使"
-"用できます。"
+"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使用"
+"できます。"
#: ../../include/lib/Dashboard/Widgets/service_map.php:390
msgid "Missing Service id"
@@ -50856,8 +50439,8 @@ msgid ""
"Case insensitive regular expression or string for module name. For example: ."
"*usage.* will match: cpu_usage, vram usage."
msgstr ""
-"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage."
-"* は cpu_usage、vram usage にマッチします。"
+"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage.* "
+"は cpu_usage、vram usage にマッチします。"
#: ../../include/lib/Dashboard/Widgets/top_n.php:280
msgid "Avg."
@@ -50934,8 +50517,7 @@ msgstr "クラスタ名"
msgid ""
"An agent with the same name of the cluster will be created, as well a special "
"service with the same name"
-msgstr ""
-"クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます"
+msgstr "クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます"
#: ../../include/lib/ClusterViewer/ClusterWizard.php:797
msgid "Cluster type"
@@ -50943,11 +50525,11 @@ msgstr "クラスタタイプ"
#: ../../include/lib/ClusterViewer/ClusterWizard.php:798
msgid ""
-"AA is a cluster where all members are working. In AP cluster only master "
-"member is working"
+"AA is a cluster where all members are working. In AP cluster only master member "
+"is working"
msgstr ""
-"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-"
-"スタンバイクラスタでは、マスターのみが稼働しています"
+"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-ス"
+"タンバイクラスタでは、マスターのみが稼働しています"
#: ../../include/lib/ClusterViewer/ClusterWizard.php:806
msgid "Active - Active"
@@ -50964,8 +50546,7 @@ msgstr "対象のクラスタエージェントはこのグループに保存さ
#: ../../include/lib/ClusterViewer/ClusterWizard.php:844
msgid ""
"You must select a Prediction Server to perform all cluster status calculations"
-msgstr ""
-"すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります"
+msgstr "すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります"
#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041
msgid "critical if"
@@ -50992,8 +50573,8 @@ msgstr ""
#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207
msgid ""
-"If a critical balanced module is going to critical status, then cluster will "
-"be critical."
+"If a critical balanced module is going to critical status, then cluster will be "
+"critical."
msgstr ""
"クリティカルバランスモジュールが障害状態なる場合、クラスタは障害になります。"
@@ -51021,8 +50602,7 @@ msgstr "モジュール名に不正な文字が含まれています"
#: ../../include/lib/Module.php:1086
msgid "Module already exists please select another name or agent."
-msgstr ""
-"モジュールが既に存在します。他の名前またはエージェントを選択してください。"
+msgstr "モジュールが既に存在します。他の名前またはエージェントを選択してください。"
#: ../../include/lib/Module.php:1092
msgid "Insufficent permissions to perform this action"
@@ -51228,8 +50808,7 @@ msgstr "モジュールカスタム ID"
msgid "Could not connect: %s"
msgstr "接続できませんでした: %s"
-#: ../../include/functions_events.php:2510
-#: ../../operation/agentes/tactical.php:248
+#: ../../include/functions_events.php:2510 ../../operation/agentes/tactical.php:248
msgid "Latest events"
msgstr "最新のイベント"
@@ -51269,23 +50848,19 @@ msgstr "新しいエージェントが作成されました。"
msgid "Unknown type:"
msgstr "不明なタイプ"
-#: ../../include/functions_events.php:3262
-#: ../../include/functions_events.php:3293
+#: ../../include/functions_events.php:3262 ../../include/functions_events.php:3293
msgid "Only new"
msgstr "新規のみ"
-#: ../../include/functions_events.php:3264
-#: ../../include/functions_events.php:3301
+#: ../../include/functions_events.php:3264 ../../include/functions_events.php:3301
msgid "Only in process"
msgstr "処理中のみ"
-#: ../../include/functions_events.php:3265
-#: ../../include/functions_events.php:3305
+#: ../../include/functions_events.php:3265 ../../include/functions_events.php:3305
msgid "Only not validated"
msgstr "未承諾のみ"
-#: ../../include/functions_events.php:3270
-#: ../../include/functions_events.php:3543
+#: ../../include/functions_events.php:3270 ../../include/functions_events.php:3543
#: ../../include/functions_events.php:3552
msgid "In process"
msgstr "処理中"
@@ -51302,14 +50877,13 @@ msgstr "所有者変更"
msgid "Change status"
msgstr "ステータス変更"
-#: ../../include/functions_events.php:3625
-#: ../../include/functions_events.php:5361
+#: ../../include/functions_events.php:3625 ../../include/functions_events.php:5361
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330
msgid "Add comment"
msgstr "コメントの追加"
-#: ../../include/functions_events.php:3648
-#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978
+#: ../../include/functions_events.php:3648 ../../include/functions_events.php:3652
+#: ../../operation/events/events.php:978
msgid "Delete event"
msgstr "削除"
@@ -51345,8 +50919,7 @@ msgstr "モジュール詳細"
msgid "No assigned"
msgstr "未割当"
-#: ../../include/functions_events.php:4562
-#: ../../include/functions_events.php:4571
+#: ../../include/functions_events.php:4562 ../../include/functions_events.php:4571
msgid "Go to data overview"
msgstr "データ概要表示"
@@ -51404,8 +50977,7 @@ msgstr "計画停止から %s 件の要素が有効になりました"
#: ../../include/functions_planned_downtimes.php:793
msgid "The downtime must be quiet, disable_agents or disable_agents_alerts"
msgstr ""
-"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかで"
-"す。"
+"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかです。"
#: ../../include/functions_planned_downtimes.php:798
msgid "The execution must be once or periodically"
@@ -51553,13 +51125,11 @@ msgid ""
"Passwords didn't match or other problem encountered while updating passwords"
msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。"
-#: ../../operation/users/user_edit.php:201
-#: ../../operation/users/user_edit.php:220
+#: ../../operation/users/user_edit.php:201 ../../operation/users/user_edit.php:220
msgid "Password successfully updated"
msgstr "パスワードを更新しました。"
-#: ../../operation/users/user_edit.php:211
-#: ../../operation/users/user_edit.php:263
+#: ../../operation/users/user_edit.php:211 ../../operation/users/user_edit.php:263
msgid "Error updating user info"
msgstr "ユーザ情報の更新に失敗しました。"
@@ -51593,8 +51163,8 @@ msgstr "API トークンの表示"
#: ../../operation/users/user_edit.php:356
msgid ""
-"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf."
-"d/php.conf"
+"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf.d/"
+"php.conf"
msgstr ""
"ディレクティブ HTTP_AUTHORIZATION=$1 が設定されていません。 /etc/httpd/conf.d/"
"php.conf に追加してください。"
@@ -51607,8 +51177,7 @@ msgstr "現在の認証スキームではパスワードを変更できません
msgid "If checkbox is clicked then block size global configuration is used"
msgstr "チェックボックスをクリックすると、システム全体の設定が利用されます"
-#: ../../operation/users/user_edit.php:519
-#: ../../operation/users/user_edit.php:528
+#: ../../operation/users/user_edit.php:519 ../../operation/users/user_edit.php:528
msgid "Theme"
msgstr "テーマ"
@@ -51657,8 +51226,8 @@ msgstr "見つかりませんでした。"
#, php-format
msgid "You can find more help in the wiki"
msgstr ""
-"追加のヘルプは wiki で見つけることができ"
-"ます"
+"追加のヘルプは wiki で見つけることができま"
+"す"
#: ../../operation/search_helps.php:32
msgid "Matches"
@@ -51724,13 +51293,11 @@ msgstr "グラフの場所に問題があります。"
msgid "Refresh time"
msgstr "更新時間"
-#: ../../operation/agentes/stat_win.php:278
-#: ../../operation/agentes/graphs.php:237
+#: ../../operation/agentes/stat_win.php:278 ../../operation/agentes/graphs.php:237
msgid "Show events"
msgstr "イベント表示"
-#: ../../operation/agentes/stat_win.php:299
-#: ../../operation/agentes/graphs.php:239
+#: ../../operation/agentes/stat_win.php:299 ../../operation/agentes/graphs.php:239
msgid "Show alerts"
msgstr "アラート表示"
@@ -51951,30 +51518,30 @@ msgstr "マップ作成中..."
#: ../../operation/agentes/pandora_networkmap.editor.php:281
msgid ""
"To create a network map that visually recreates link-level (L2) relationships, "
-"you must first discover these relationships with Discovery Server. Network "
-"maps only reflect relationships that have already been discovered."
+"you must first discover these relationships with Discovery Server. Network maps "
+"only reflect relationships that have already been discovered."
msgstr ""
-"リンクレベル (L2) の関係を視覚的に表現するネットワーク マップを作成するには、ま"
-"ず自動検出サーバを使用してこれらの関係を検出する必要があります。 ネットワーク "
-"マップには、すでに検出されている関係のみが反映されます。"
+"リンクレベル (L2) の関係を視覚的に表現するネットワーク マップを作成するには、まず"
+"自動検出サーバを使用してこれらの関係を検出する必要があります。 ネットワーク マッ"
+"プには、すでに検出されている関係のみが反映されます。"
#: ../../operation/agentes/pandora_networkmap.editor.php:283
msgid ""
"Discovery Server discovers relationships between interfaces (L2) through SNMP "
"and relationships between hosts (L3) through route discovery."
msgstr ""
-"自動検出サーバは、SNMP を通じてインターフェイス間の関係 (L2) を検出し、ルーティ"
-"ング検出を通じてホスト間の関係 (L3) を検出します。"
+"自動検出サーバは、SNMP を通じてインターフェイス間の関係 (L2) を検出し、ルーティン"
+"グ検出を通じてホスト間の関係 (L3) を検出します。"
#: ../../operation/agentes/pandora_networkmap.editor.php:284
msgid ""
-"You can also create these relationships manually by editing nodes or re-"
-"passing a discovery task after adding new information (for example by adding "
-"new SNMP communities)."
+"You can also create these relationships manually by editing nodes or re-passing "
+"a discovery task after adding new information (for example by adding new SNMP "
+"communities)."
msgstr ""
-"これらの関係は、ノードを編集することにより手動で作成したり、新たな情報を追加 "
-"(新しい SNMP コミュニティを追加するなど) したあとに自動検出タスクを再実行するこ"
-"とによって作成することもできます。"
+"これらの関係は、ノードを編集することにより手動で作成したり、新たな情報を追加 (新"
+"しい SNMP コミュニティを追加するなど) したあとに自動検出タスクを再実行することに"
+"よって作成することもできます。"
#: ../../operation/agentes/pandora_networkmap.editor.php:285
msgid "See our documentation for more information."
@@ -51997,8 +51564,7 @@ msgstr "拡大スケール"
#: ../../operation/agentes/pandora_networkmap.editor.php:394
#: ../../operation/agentes/pandora_networkmap.view.php:171
-msgid ""
-"Introduce zoom level. 1 = Highest resolution. Figures may include decimals"
+msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals"
msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。"
#: ../../operation/agentes/pandora_networkmap.editor.php:430
@@ -52012,8 +51578,7 @@ msgstr "複製元グループ"
#: ../../operation/agentes/pandora_networkmap.editor.php:459
msgid "Source id group changed. All elements in networkmap will be lost."
-msgstr ""
-"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。"
+msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。"
#: ../../operation/agentes/pandora_networkmap.editor.php:470
#: ../../operation/agentes/pandora_networkmap.view.php:260
@@ -52031,8 +51596,8 @@ msgid ""
"It is setted any recon task, the nodes get from the recontask IP mask instead "
"from the group."
msgstr ""
-"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マ"
-"スクから取得します。"
+"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マス"
+"クから取得します。"
#: ../../operation/agentes/pandora_networkmap.editor.php:502
#: ../../operation/agentes/pandora_networkmap.view.php:239
@@ -52057,8 +51622,8 @@ msgstr "ランク分け"
#: ../../operation/agentes/pandora_networkmap.editor.php:539
#: ../../operation/agentes/pandora_networkmap.view.php:313
msgid ""
-"Only flat and radial. Separation between arrows. By default 0.5 in flat and "
-"1.0 in radial"
+"Only flat and radial. Separation between arrows. By default 0.5 in flat and 1.0 "
+"in radial"
msgstr ""
"フラットおよびラジアルのみ。 矢印の間の分離です。 デフォルトでは、フラットが "
"0.5、ラジアルが 1.0 です。"
@@ -52082,13 +51647,11 @@ msgstr "デフォルトノード間距離"
#: ../../operation/agentes/pandora_networkmap.view.php:319
msgid "Only fdp. Default ideal node separation in the layout. By default 0.3"
msgstr ""
-"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 で"
-"す。"
+"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 です。"
#: ../../operation/agentes/pandora_networkmap.editor.php:744
msgid "Source id group changed. All elements in Networkmap will be lost"
-msgstr ""
-"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。"
+msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。"
#: ../../operation/agentes/pandora_networkmap.php:139
#: ../../operation/agentes/pandora_networkmap.php:377
@@ -52215,11 +51778,10 @@ msgstr "メインデータベース"
#: ../../operation/agentes/datos_agente.php:181
msgid ""
-"Switch between the main database and the history database to retrieve module "
-"data"
+"Switch between the main database and the history database to retrieve module data"
msgstr ""
-"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータ"
-"ベース間で切り替えます。"
+"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータベー"
+"ス間で切り替えます。"
#: ../../operation/agentes/datos_agente.php:211
#: ../../operation/agentes/alerts_status.functions.php:151
@@ -52386,8 +51948,8 @@ msgid ""
"To see the list of modules paginated, enable this option in the Styles "
"Configuration."
msgstr ""
-"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化"
-"します。"
+"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化し"
+"ます。"
#: ../../operation/agentes/estado_monitores.php:519
msgid "Not Normal"
@@ -52457,8 +52019,8 @@ msgstr "エージェントメイン表示"
#: ../../operation/agentes/estado_generalagente.php:57
msgid "The agent has not assigned server. Maybe agent does not run fine."
msgstr ""
-"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可"
-"能性があります。"
+"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可能"
+"性があります。"
#: ../../operation/agentes/estado_generalagente.php:98
msgid "In scheduled downtime"
@@ -52830,12 +52392,12 @@ msgstr "MIB アップローダ"
#: ../../operation/snmpconsole/snmp_mib_uploader.php:86
msgid ""
-"MIB files will be installed on the system. Please note that a MIB may depend "
-"on other MIB. To customize trap definitions use the SNMP trap editor."
+"MIB files will be installed on the system. Please note that a MIB may depend on "
+"other MIB. To customize trap definitions use the SNMP trap editor."
msgstr ""
-"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性が"
-"あることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップ"
-"エディタを使ってください。"
+"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性があ"
+"ることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップエ"
+"ディタを使ってください。"
#: ../../operation/menu.php:222
msgid "Netflow Live View"
@@ -53028,8 +52590,8 @@ msgstr "Integria IMS で更新できませんでした"
msgid ""
"This field corresponds to the Integria IMS user specified in Integria IMS setup"
msgstr ""
-"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対"
-"応します"
+"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対応"
+"します"
#: ../../operation/incidents/configure_integriaims_incident.php:383
#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222
@@ -53234,8 +52796,8 @@ msgid ""
"If an option is selected, all graphs will have the highest value from all "
"modules included in the graph as a maximum threshold"
msgstr ""
-"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値"
-"が含まれます。"
+"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値が"
+"含まれます。"
#: ../../operation/reporting/graph_viewer.php:387
msgid "Zoom x1"
@@ -53469,30 +53031,30 @@ msgstr "インシデント作成"
#, php-format
msgid ""
"Besides receiving and processing data to monitor systems or applications,\n"
-"\t\t\tyou're also required to monitor possible incidents which might take "
-"place on these subsystems within the system's monitoring process.\n"
+"\t\t\tyou're also required to monitor possible incidents which might take place "
+"on these subsystems within the system's monitoring process.\n"
"\t\t\tFor it, the %s team has designed an incident manager from which any user "
"is able to open incidents,\n"
-"\t\t\tthat explain what's happened on the network, and update them with "
-"comments and files, at any time, in case there is a need to do so.\n"
-"\t\t\tThis system allows users to work as a team, along with different roles "
-"and work-flow systems which allow an incident to be\n"
+"\t\t\tthat explain what's happened on the network, and update them with comments "
+"and files, at any time, in case there is a need to do so.\n"
+"\t\t\tThis system allows users to work as a team, along with different roles and "
+"work-flow systems which allow an incident to be\n"
"\t\t\tmoved from one group to another, and members from different groups and "
"different people could work on the same incident, sharing information and "
"files.\n"
"\t\t"
msgstr ""
"システムまたはアプリケーションを監視するためのデータの受信と処理に加えて、\n"
-"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデント"
-"を監視する必要があります。\n"
-"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるイン"
-"シデントマネージャを設計しました。\n"
+"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデントを"
+"監視する必要があります。\n"
+"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるインシ"
+"デントマネージャを設計しました。\n"
"\t\t\tネットワークで何が起こっているかを説明し、必要に応じていつでもコメントや"
"ファイルを更新します。\n"
-"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役"
-"割やワークフローシステム\n"
-"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なる"
-"グループのメンバーが一つの\n"
+"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役割"
+"やワークフローシステム\n"
+"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なるグ"
+"ループのメンバーが一つの\n"
"\t\t\tインシデントに対して対応するなど、情報とファイルを共有します。\n"
"\t\t"
@@ -53507,21 +53069,21 @@ msgstr "自動検出タスクの作成"
#: ../../general/first_task/recon_view.php:28
msgid ""
"Discovery Task are used to find new elements in the network. \n"
-"\t\tIf it detects any item, it will add that item to the monitoring, and if "
-"that item it is already being monitored, then it will \n"
-"\t\tignore it or will update its information.There are three types of "
-"detection: Based on ICMP (pings), \n"
-"\t\tSNMP (detecting the topology of networks "
-"and their interfaces), and other customized \n"
+"\t\tIf it detects any item, it will add that item to the monitoring, and if that "
+"item it is already being monitored, then it will \n"
+"\t\tignore it or will update its information.There are three types of detection: "
+"Based on ICMP (pings), \n"
+"\t\tSNMP (detecting the topology of networks and "
+"their interfaces), and other customized \n"
"\t\ttype. You can define your own customized recon script."
msgstr ""
"自動検出タスクは、ネットワーク内の新たな要素を検出するのに使います。\n"
-"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視さ"
-"れている場合は、\n"
+"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視され"
+"ている場合は、\n"
"\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。"
" ICMP (ping)、\n"
-"\t\t SNMP (ネットワークとそのインターフェース"
-"のトポロジの検出)、その他 カスタマイズタイプで"
+"\t\t SNMP (ネットワークとそのインターフェースの"
+"トポロジの検出)、その他 カスタマイズタイプで"
"す。\n"
"\t\t独自の自動検出スクリプトを定義することができます。"
@@ -53547,11 +53109,10 @@ msgstr ""
#: ../../general/first_task/HA_cluster_builder.php:50
msgid ""
-"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster "
-"into a Pandora FMS DB Cluster."
+"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster into "
+"a Pandora FMS DB Cluster."
msgstr ""
-"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始しま"
-"す。"
+"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始します。"
#: ../../general/first_task/HA_cluster_builder.php:59
msgid "Add new node"
@@ -53565,24 +53126,22 @@ msgstr "ビジュアルコンソール"
#, php-format
msgid ""
"%s allows users to create visual maps on which each user is able to create his "
-"or her own monitoring map. The new visual console editor is much more "
-"practical, although the prior visual console editor had its advantages. On the "
-"new visual console, we've been successful in imitating the sensation and touch "
-"of a drawing application like GIMP. We've also simplified the editor by "
-"dividing it into several subject-divided tabs named 'Data', 'Preview', "
-"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was "
-"designed to handle are 'static images', 'percentage bars', 'module graphs' and "
-"'simple values'."
+"or her own monitoring map. The new visual console editor is much more practical, "
+"although the prior visual console editor had its advantages. On the new visual "
+"console, we've been successful in imitating the sensation and touch of a drawing "
+"application like GIMP. We've also simplified the editor by dividing it into "
+"several subject-divided tabs named 'Data', 'Preview', 'Wizard', 'List of "
+"Elements' and 'Editor'. The items the %s Visual Map was designed to handle are "
+"'static images', 'percentage bars', 'module graphs' and 'simple values'."
msgstr ""
-"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユー"
-"ザーは独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも"
-"良い点はありましたが、新しいビジュアルコンソールエディターははるかに実用的で"
-"す。新しいビジュアルコンソールでは、GIMP のような描画アプリケーションの感覚と"
-"タッチを模倣することに成功しています。また、'データ'、'プレビュー'、'ウィザー"
-"ド'、'要素のリスト'、'エディタ' という名前の複数の要素に分割したタブにすること"
-"で、エディターを簡素化しました。%s ビジュアルマップが処理するように設計したアイ"
-"テムは、’静的画像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' で"
-"す。"
+"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユーザー"
+"は独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも良い点"
+"はありましたが、新しいビジュアルコンソールエディターははるかに実用的です。新しい"
+"ビジュアルコンソールでは、GIMP のような描画アプリケーションの感覚とタッチを模倣す"
+"ることに成功しています。また、'データ'、'プレビュー'、'ウィザード'、'要素のリス"
+"ト'、'エディタ' という名前の複数の要素に分割したタブにすることで、エディターを簡"
+"素化しました。%s ビジュアルマップが処理するように設計したアイテムは、’静的画"
+"像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' です。"
#: ../../general/first_task/map_builder.php:58
msgid "Create a Visual Console"
@@ -53611,30 +53170,30 @@ msgstr "どのようにサービス提供であるかに依存し、次の 2つ
msgid ""
"Clusters to balance the service load: these are active - active (A/A) "
"mode clusters. It means that all the nodes (or machines that compose it) are "
-"working. They must be working because if one stops working, it will overload "
-"the others."
+"working. They must be working because if one stops working, it will overload the "
+"others."
msgstr ""
-"
サービス負荷分散クラスタ:これらは、アクティブ-アクティブ(A/A)モードクラ"
-"スタです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停"
-"止しても動作を継続しますが負荷は増えます。"
+"
サービス負荷分散クラスタ:これらは、アクティブ-アクティブ(A/A)モードクラス"
+"タです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止し"
+"ても動作を継続しますが負荷は増えます。"
#: ../../general/first_task/cluster_builder.php:63
msgid ""
"Clusters to guarantee service: these are active - passive (A/P) mode "
-"clusters. It means that one of the nodes (or machines that make up the "
-"cluster) will be running (primary) and another won't (secondary). When the "
-"primary goes down, the secondary must take over and give the service instead. "
-"Although many of the elements of this cluster are active-passive, it will also "
-"have active elements in both of them that indicate that the passive node is "
-"\"online\", so that in the case of a service failure in the master, the active "
-"node collects this information."
+"clusters. It means that one of the nodes (or machines that make up the cluster) "
+"will be running (primary) and another won't (secondary). When the primary goes "
+"down, the secondary must take over and give the service instead. Although many "
+"of the elements of this cluster are active-passive, it will also have active "
+"elements in both of them that indicate that the passive node is \"online\", so "
+"that in the case of a service failure in the master, the active node collects "
+"this information."
msgstr ""
-"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。"
-"一つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動"
-"作していません(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを"
-"代わりに引き継ぎます。このクラスタの要素の多くはアクティブ-スタンバイですが、ス"
-"タンバイノードが「オンライン」であることを示すアクティブな要素もあります。した"
-"がって、マスタのサービス障害の場合、アクティブノードはこの情報を収集します。"
+"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。一"
+"つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作し"
+"ていません(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを代わり"
+"に引き継ぎます。このクラスタの要素の多くはアクティブ-スタンバイですが、スタンバイ"
+"ノードが「オンライン」であることを示すアクティブな要素もあります。したがって、マ"
+"スタのサービス障害の場合、アクティブノードはこの情報を収集します。"
#: ../../general/first_task/network_map.php:19
msgid "There are no network map defined yet."
@@ -53658,8 +53217,8 @@ msgid ""
"\t\t\t"
msgstr ""
"オープンソース版のネットワークマップもあります。\n"
-"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよび"
-"グループをユーザにグラフィカルに表示できます。\n"
+"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよびグ"
+"ループをユーザにグラフィカルに表示できます。\n"
"\t\t\t\t\t\t\t\tネットワークマップには 3つのタイプがあります。\n"
"\t\t\t"
@@ -53694,16 +53253,16 @@ msgstr "タグ作成"
#: ../../general/first_task/tags.php:28
msgid ""
"Access to modules can be configured by a tagging system.\n"
-"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the "
-"chosen modules.\n"
+"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen "
+"modules.\n"
"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with "
"certain tags."
msgstr ""
"モジュールへのアクセスは、タグシステムによって設定できます。\n"
"\t\t\t\t\t\t\t\tタグはシステム上で構成され、選択したモジュールに割り当てられま"
"す。\n"
-"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限"
-"できます。"
+"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限で"
+"きます。"
#: ../../general/first_task/omnishell.php:27
msgid "There is no command defined yet."
@@ -53716,16 +53275,16 @@ msgid ""
"command along any agent in your %s. The only requirement is to have remote "
"configuration enabled in your agent."
msgstr ""
-"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる Enterprise "
-"版の機能です。唯一の要件は、エージェントでリモート設定を有効にすることです。"
+"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる Enterprise 版"
+"の機能です。唯一の要件は、エージェントでリモート設定を有効にすることです。"
#: ../../general/first_task/omnishell.php:42
msgid ""
-"You can execute any command on as many agents you need, and check the "
-"execution on all of them using the Omnishell Command View"
+"You can execute any command on as many agents you need, and check the execution "
+"on all of them using the Omnishell Command View"
msgstr ""
-"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を"
-"使用してすべてのエージェントでの実行を確認できます。"
+"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を使"
+"用してすべてのエージェントでの実行を確認できます。"
#: ../../general/first_task/omnishell.php:50
msgid "Define a command"
@@ -53749,8 +53308,8 @@ msgid ""
"'Manage monitoring' -> 'Manage custom fields'. "
msgstr ""
"カスタムフィールドは、エージェントの独自情報を記載できます。\n"
-"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールド"
-"を作成できます。 "
+"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを"
+"作成できます。 "
#: ../../general/first_task/fields_manager.php:22
msgid "Fields Manager"
@@ -53767,8 +53326,8 @@ msgid ""
"'Manage monitoring' -> 'Manage custom fields'. "
msgstr ""
"カスタムフィールドは、エージェントの独自情報を記載できます。\n"
-"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィー"
-"ルドを作成できます。 "
+"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィール"
+"ドを作成できます。 "
#: ../../general/first_task/fields_manager.php:34
msgid "Create Fields "
@@ -53832,8 +53391,8 @@ msgid ""
"the ones for the server are going to get ruled out automatically. "
msgstr ""
"いくつかのシステムで大量のトラップが発生しています。\n"
-"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必"
-"要な負荷をかけないように\n"
+"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必要"
+"な負荷をかけないように\n"
"\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管"
"理' -> 'SNMP管理コンソール' および \n"
"\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外さ"
@@ -53841,30 +53400,28 @@ msgstr ""
#: ../../general/first_task/service_list.php:45
msgid ""
-"A service is a way to group your IT resources based on their "
-"functionalities. \n"
-"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, "
-"your support application, or even your printers.\n"
+"A service is a way to group your IT resources based on their functionalities. \n"
+"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, your "
+"support application, or even your printers.\n"
"\t\t\t\t\t\t Services are logical groups which can include hosts, routers, "
"switches, firewalls, CRMs, ERPs, websites and numerous other services. \n"
"\t\t\t\t\t\t By the following example, you're able to see more clearly what a "
"service is:\n"
-"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around "
-"the world. \n"
-"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an "
-"on-line shop and support."
+"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the "
+"world. \n"
+"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an on-"
+"line shop and support."
msgstr ""
"サービスは、機能に基づき IT リソースをグループ化する手法です。\n"
-"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポート"
-"アプリケーション、プリンタなどです。\n"
-"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、"
-"ERP、ウェブサイトやその他さまざまなサービスを含めることができる論理的なグループ"
-"です。\n"
-"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n"
-"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っていま"
+"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポートア"
+"プリケーション、プリンタなどです。\n"
+"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、"
+"ウェブサイトやその他さまざまなサービスを含めることができる論理的なグループで"
"す。\n"
-"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門"
-"からなっています。"
+"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n"
+"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っています。\n"
+"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門か"
+"らなっています。"
#: ../../general/first_task/service_list.php:58
msgid "Create a service"
@@ -53889,12 +53446,12 @@ msgid ""
"\t\t\t\tThere are two types of graphs: The agent's automated graphs and the "
"graphs the user customizes by using one or more modules to do so."
msgstr ""
-"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示す"
-"るように設計されています。\n"
-"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とする"
-"タイミングで生成され、最新の状態を表示します。\n"
-"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフ"
-"と、ユーザが 1つ以上のモジュールを使用してカスタマイズするグラフです。"
+"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示する"
+"ように設計されています。\n"
+"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とするタ"
+"イミングで生成され、最新の状態を表示します。\n"
+"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフと、"
+"ユーザが 1つ以上のモジュールを使用してカスタマイズするグラフです。"
#: ../../general/first_task/collections.php:25
#: ../../general/first_task/collections.php:39
@@ -53903,32 +53460,30 @@ msgstr "コレクション作成"
#: ../../general/first_task/collections.php:28
msgid ""
-"A file collection is a group of files (e.g. scripts or executables) which "
-"are \n"
-"\t\tautomatically copied to a specific directory of the agent (under Windows "
-"or UNIX). The file collections allow to be propagated\n"
+"A file collection is a group of files (e.g. scripts or executables) which are \n"
+"\t\tautomatically copied to a specific directory of the agent (under Windows or "
+"UNIX). The file collections allow to be propagated\n"
"\t\t along with the policies in order to be used by a group of agents, using a "
"'package' of scripts and modules which use them.\n"
"\t\tFirst we learn how to use the file collections in the agent's view, how to "
"conduct it manually, agent by agent, without using collections,\n"
-"\t\t and how to do the same thing by using policies.Our first task is to "
-"arrange a compilation of files. In order to do this, please go to the "
-"agent's \n"
+"\t\t and how to do the same thing by using policies.Our first task is to arrange "
+"a compilation of files. In order to do this, please go to the agent's \n"
"\t\t administrator. Subsequently, we're going to see a 'sub option' called "
-"'Collections'. Please click on it in order to create a new collection as we "
-"can see on \n"
+"'Collections'. Please click on it in order to create a new collection as we can "
+"see on \n"
"\t\t the picture below. "
msgstr ""
"ファイルコレクションは、次のような(スクリプトや実行形式の)ファイルのグループで"
"す。\n"
"\t\t(WindowsまたはUNIXの)エージェントの特定のディレクトリに自動的にコピーされま"
"す。ファイルコレクションは、\n"
-"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使え"
-"るようにするためにポリシーでまとめることができます。\n"
+"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使える"
+"ようにするためにポリシーでまとめることができます。\n"
"\t\t最初にエージェント表示画面でファイルコレクションの使い方を学びます。コレク"
"ションを利用せずにエージェントごとに手動で\n"
-"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うこと"
-"は、編集ファイルの配置です。これを行うには、\n"
+"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うことは、"
+"編集ファイルの配置です。これを行うには、\n"
"\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプ"
"ションへ行きます。以下の画像で示すように、\n"
"\t\t新たなコレクションを作成するにはそれをクリックします。 "
@@ -53991,12 +53546,12 @@ msgid ""
" Download the official documentation"
msgstr ""
-"これは %sコンソールのオンラインヘルプです。 このヘルプは、簡単なコンテキストヘ"
-"ルプであり、%s の使用方法のすべてを示すことを目的としたものではありません。 %s "
-"の公式ドキュメントは約900ページであり、おそらくすべてを読む必要はありませんが、"
-"ダウンロードして確認する必要があります。
\n"
-" 公"
-"式ドキュメントのダウンロード"
+"これは %sコンソールのオンラインヘルプです。 このヘルプは、簡単なコンテキストヘル"
+"プであり、%s の使用方法のすべてを示すことを目的としたものではありません。 %s の公"
+"式ドキュメントは約900ページであり、おそらくすべてを読む必要はありませんが、ダウン"
+"ロードして確認する必要があります。
\n"
+" 公式"
+"ドキュメントのダウンロード"
#: ../../general/alert_enterprise.php:120
#, php-format
@@ -54006,10 +53561,10 @@ msgid ""
" Please know that all attempts to access this page are recorded in security "
"logs of %s System Database."
msgstr ""
-"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要"
-"な場合はシステム管理者に連絡してください。
\n"
-" このページへのアクセス試行は、すべて %s システムデータベースのセキュリティ"
-"ログに記録されます。"
+"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な"
+"場合はシステム管理者に連絡してください。
\n"
+" このページへのアクセス試行は、すべて %s システムデータベースのセキュリティロ"
+"グに記録されます。"
#: ../../general/alert_enterprise.php:130
#, php-format
@@ -54019,39 +53574,37 @@ msgid ""
"new plugins and new features (even full migrations tools for future versions) "
"automatically."
msgstr ""
-"アップデートマネージャクライアントは、%s に含まれています。アップデートマネー"
-"ジャは、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全"
-"な移行ツールも含む)を自動的に取得するため、システム管理者が %s を自動的に更新"
-"するのに役立ちます。"
+"アップデートマネージャクライアントは、%s に含まれています。アップデートマネージャ"
+"は、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行"
+"ツールも含む)を自動的に取得するため、システム管理者が %s を自動的に更新するのに"
+"役立ちます。"
#: ../../general/alert_enterprise.php:130
msgid ""
-"OpenSource version updates are automated packages generated each week. "
-"These updates come WITHOUT ANY warranty or support. If your system is "
-"corrupted or a feature stops working properly, you will need to recover a "
-"backup by yourself."
+"OpenSource version updates are automated packages generated each week. These "
+"updates come WITHOUT ANY warranty or support. If your system is corrupted or a "
+"feature stops working properly, you will need to recover a backup by yourself."
+"b>"
msgstr ""
-"オープンソース版は毎週生成されるパッケージで更新されます。これらの更新は保証"
-"やサポートはありません。システムが壊れたり一部の機能が正しく動作しなかった場合"
-"は、ご自身でバックアップから戻す必要があります。"
+"オープンソース版は毎週生成されるパッケージで更新されます。これらの更新は保証や"
+"サポートはありません。システムが壊れたり一部の機能が正しく動作しなかった場合は、"
+"ご自身でバックアップから戻す必要があります。"
#: ../../general/alert_enterprise.php:130
#, php-format
msgid ""
-"The Enterprise version comes with a different update system, with fully "
-"tested, professionally-supported packages, and our support team is there to "
-"help you in case of problems or queries. Update Manager is another feature "
-"present in the Enterprise version and not included in the OpenSource version. "
-"There are lots of advanced business-oriented features contained in %s "
-"Enterprise Edition. For more information visit pandorafms.com"
+"The Enterprise version comes with a different update system, with fully tested, "
+"professionally-supported packages, and our support team is there to help you in "
+"case of problems or queries. Update Manager is another feature present in the "
+"Enterprise version and not included in the OpenSource version. There are lots of "
+"advanced business-oriented features contained in %s Enterprise Edition. For more "
+"information visit pandorafms.com"
msgstr ""
-"Enterprise 版には、完全にテストされ専門的にサポートされたパッケージの更新システ"
-"ムが付属しており、問題や問い合わせにはサポートチームが対応します。アップデート"
-"マネージャは、Enterprise 版に存在する機能であり、オープンソース版には含まれてい"
-"ません。%s Enterprise 版には、ビジネス向けの高度な機能が数多く含まれています。"
-"より詳細は、pandorafms.comを参照してく"
-"ださい。"
+"Enterprise 版には、完全にテストされ専門的にサポートされたパッケージの更新システム"
+"が付属しており、問題や問い合わせにはサポートチームが対応します。アップデートマ"
+"ネージャは、Enterprise 版に存在する機能であり、オープンソース版には含まれていませ"
+"ん。%s Enterprise 版には、ビジネス向けの高度な機能が数多く含まれています。より詳"
+"細は、pandorafms.comを参照してください。"
#: ../../general/alert_enterprise.php:132
#, php-format
@@ -54061,11 +53614,10 @@ msgid ""
"automatically, since the Update Manager retrieves new modules, new plugins and "
"new features (even full migrations tools for future versions) automatically."
msgstr ""
-"新たな アップデートマネージャ"
-"クライアントは、%s に含まれています。アップデートマネージャは、新しいモ"
-"ジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含"
-"む)を自動的に取得するため、システム管理者が %s を自動的に更新するのに役立ちま"
-"す。"
+"新たな アップデートマネージャ"
+"a>クライアントは、%s に含まれています。アップデートマネージャは、新しいモジュー"
+"ル、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含む)を自"
+"動的に取得するため、システム管理者が %s を自動的に更新するのに役立ちます。"
#: ../../general/alert_enterprise.php:132
#, php-format
@@ -54075,85 +53627,84 @@ msgid ""
"pandorafms.com."
msgstr ""
"アップデートマネージャは、%s Enterprise 版の最も高度な機能の一つです。より詳細"
-"は、http://pandorafms.comを参照してく"
-"ださい。"
+"は、http://pandorafms.comを参照してくだ"
+"さい。"
#: ../../general/alert_enterprise.php:132
#, php-format
msgid ""
-"Update Manager sends anonymous information about %s usage (number of agents "
-"and modules running). To disable it, please remove the remote server address "
-"from the Update Manager plugin setup."
+"Update Manager sends anonymous information about %s usage (number of agents and "
+"modules running). To disable it, please remove the remote server address from "
+"the Update Manager plugin setup."
msgstr ""
-"アップデートマネージャは、%s の使用状況(実行中のエージェントとモジュールの数)に"
-"関する匿名情報を送信します。無効にするには、アップデートマネージャプラグインの"
-"設定からリモートサーバのアドレスを削除してください。"
+"アップデートマネージャは、%s の使用状況(実行中のエージェントとモジュールの数)に関"
+"する匿名情報を送信します。無効にするには、アップデートマネージャプラグインの設定"
+"からリモートサーバのアドレスを削除してください。"
#: ../../general/alert_enterprise.php:138
msgid ""
"The community version doesn't have the ability to define your own library of "
-"local modules, or distribute it to remote agents. You need to make those "
-"changes individually on each agent which is possible by using external tools "
-"and time and effort. Nor can it distribute local plugins, or have access to "
-"the library of enterprise plugins to monitor applications such as VMWare, RHEV "
-"or Informix between others. The Enterprise version will have all this, plus "
-"the ability to distribute and manage your own local modules on your systems, "
-"individually or through policies.\n"
+"local modules, or distribute it to remote agents. You need to make those changes "
+"individually on each agent which is possible by using external tools and time "
+"and effort. Nor can it distribute local plugins, or have access to the library "
+"of enterprise plugins to monitor applications such as VMWare, RHEV or Informix "
+"between others. The Enterprise version will have all this, plus the ability to "
+"distribute and manage your own local modules on your systems, individually or "
+"through policies.\n"
" pandorafms."
-"com"
+"Do you want to consolidate all your system monitoring? Do you have many systems, "
+"making it difficult to manage them in a comprehensive manner? Would you like to "
+"deploy monitoring, alerts and even local plugins with a single click? %s "
+"Enterprise Policies are exactly what you need; you'll save time, effort and "
+"annoyances. More information pandorafms.com"
msgstr ""
-"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な"
-"方法で管理することが難しくありませんか? ワンクリックで監視、アラート、さらには"
-"ローカルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必"
-"要とするものです。 時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com を参照してください。"
+"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な方"
+"法で管理することが難しくありませんか? ワンクリックで監視、アラート、さらにはロー"
+"カルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必要とす"
+"るものです。 時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com を参照してください。"
#: ../../general/alert_enterprise.php:148
#, php-format
msgid ""
"%s Enterprise also features event correlation. Through correlation you can "
-"generate realtime alerts and / or new events based on logical rules. This "
-"allows you to automate troubleshooting. If you know the value of working with "
-"events, event correlation will take you to a new level."
+"generate realtime alerts and / or new events based on logical rules. This allows "
+"you to automate troubleshooting. If you know the value of working with events, "
+"event correlation will take you to a new level."
msgstr ""
-"%s Enterprise は、イベント相関も備えています。 相関により、論理的なルールに基づ"
-"いてリアルタイムのアラートや新しいイベントを生成できます。 これにより、トラブル"
-"シューティングを自動化できます。 イベントに応じた対応の受容性がわかっているので"
-"あれば、イベント相関が新しい領域を提供します。"
+"%s Enterprise は、イベント相関も備えています。 相関により、論理的なルールに基づい"
+"てリアルタイムのアラートや新しいイベントを生成できます。 これにより、トラブル"
+"シューティングを自動化できます。 イベントに応じた対応の受容性がわかっているのであ"
+"れば、イベント相関が新しい領域を提供します。"
#: ../../general/alert_enterprise.php:152
#, php-format
msgid ""
"Report generating on the Enterprise version is also more powerful: it has "
-"wizards, you can schedule emails in PDF to be sent according to the schedule "
-"you decide, and it has a template system to create personalized reports "
-"quickly for each of your customers. It will even allow your customers to "
-"generate their own reports from templates created by you. If reports are key "
-"to your business, %s Enterprise version is for you."
+"wizards, you can schedule emails in PDF to be sent according to the schedule you "
+"decide, and it has a template system to create personalized reports quickly for "
+"each of your customers. It will even allow your customers to generate their own "
+"reports from templates created by you. If reports are key to your business, %s "
+"Enterprise version is for you."
msgstr ""
-"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF でメールを送"
-"信するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレ"
-"ポートをすばやく作成するためのテンプレートシステムがあります。 顧客が作成したテ"
-"ンプレートから独自のレポートを生成することもできます。 レポートがビジネスにとっ"
-"て重要であるならば、%s Enterprise 版が最適です。"
+"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF でメールを送信"
+"するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレポー"
+"トをすばやく作成するためのテンプレートシステムがあります。 顧客が作成したテンプ"
+"レートから独自のレポートを生成することもできます。 レポートがビジネスにとって重要"
+"であるならば、%s Enterprise 版が最適です。"
#: ../../general/alert_enterprise.php:156
msgid "These options are only effective on the Enterprise version."
@@ -54163,25 +53714,24 @@ msgstr "これらのオプションは、Enterprise版でのみ有効です。"
msgid ""
"WARNING: You are just one click away from an automated update. This may result "
"in a damaged system, including loss of data and operativity. Check you have a "
-"recent backup. OpenSource updates are automatically created packages, and "
-"there is no WARRANTY or SUPPORT. If you need professional support and "
-"warranty, please upgrade to Enterprise Version."
+"recent backup. OpenSource updates are automatically created packages, and there "
+"is no WARRANTY or SUPPORT. If you need professional support and warranty, please "
+"upgrade to Enterprise Version."
msgstr ""
-"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題"
-"が発生している可能性があります。最新のバックアップを確認してください。オープン"
-"ソース版はパッケージを使って自動更新されます。保障やサポートはありません。プロ"
-"フェッショナルサポートや保証が必要な場合は、Enterprise版にアップデートしてくだ"
-"さい。"
+"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題が"
+"発生している可能性があります。最新のバックアップを確認してください。オープンソー"
+"ス版はパッケージを使って自動更新されます。保障やサポートはありません。プロフェッ"
+"ショナルサポートや保証が必要な場合は、Enterprise版にアップデートしてください。"
#: ../../general/alert_enterprise.php:164
msgid ""
"This system is heavily loaded. OpenSource version could get a lot more agents "
-"but fine tuning requires knowledge and time. Checkout the Enterprise Version "
-"for a professional supported system."
+"but fine tuning requires knowledge and time. Checkout the Enterprise Version for "
+"a professional supported system."
msgstr ""
-"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応"
-"できますが、最適なチューニングのための知識と時間が必要です。プロフェッショナル"
-"サポートは、Enterprise版を確認してください。"
+"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応で"
+"きますが、最適なチューニングのための知識と時間が必要です。プロフェッショナルサ"
+"ポートは、Enterprise版を確認してください。"
#: ../../general/alert_enterprise.php:173
#, php-format
@@ -54191,22 +53741,21 @@ msgid ""
"agent. This configuration has %d modules per agent. Checkout the Enterprise "
"Version for a professional supported system."
msgstr ""
-"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数"
-"千のモジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用"
-"することはお勧めしません。 この設定では、エージェントごとに %d個のモジュールが"
-"あります。 プロフェッショナルのサポートを受けられる、Enterprise 版を確認してく"
-"ださい。"
+"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数千"
+"のモジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用する"
+"ことはお勧めしません。 この設定では、エージェントごとに %d個のモジュールがありま"
+"す。 プロフェッショナルのサポートを受けられる、Enterprise 版を確認してください。"
#: ../../general/alert_enterprise.php:177
msgid ""
"Too much remote modules has been detected on this system. OpenSource version "
-"could manage thousands of modules, but performance is limited on high amount "
-"of SNMP or ICMP request. Checkout the Enterprise Version for a professional "
+"could manage thousands of modules, but performance is limited on high amount of "
+"SNMP or ICMP request. Checkout the Enterprise Version for a professional "
"supported system with improved capacity on network monitoring, including "
"distributed servers."
msgstr ""
-"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数"
-"千のモジュールを管理できますが、大量の SNMP や ICMP リクエストがある環境でのパ"
+"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数千"
+"のモジュールを管理できますが、大量の SNMP や ICMP リクエストがある環境でのパ"
"フォーマンスは限られています。プロフェッショナルサポートがあり、容量を改善した"
"ネットワーク監視や分散監視ができる Enterprise版を確認してください。"
@@ -54215,20 +53764,20 @@ msgid ""
"This system has too much events in the database. Checkout database purge "
"options. Checkout the Enterprise Version for a professional supported system."
msgstr ""
-"このシステムはデータベースに多くのイベントがあります。データベースの削除オプ"
-"ションを確認してください。プロフェッショナルサポートは、Enterprise版を確認して"
-"ください。"
+"このシステムはデータベースに多くのイベントがあります。データベースの削除オプショ"
+"ンを確認してください。プロフェッショナルサポートは、Enterprise版を確認してくださ"
+"い。"
#: ../../general/alert_enterprise.php:185
msgid ""
"You have defined a high number of alerts, this may cause you performance "
-"problems in the future. In the Enterprise version, you can use event "
-"correlation alerts to simplify the alerting system and have easier "
-"administration and increased performance."
+"problems in the future. In the Enterprise version, you can use event correlation "
+"alerts to simplify the alerting system and have easier administration and "
+"increased performance."
msgstr ""
-"アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性が"
-"あります。Enterprise版では、イベント相関でアラートシステムを単純化でき、管理が"
-"簡単になりパフォーマンスが向上します。"
+"アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性があ"
+"ります。Enterprise版では、イベント相関でアラートシステムを単純化でき、管理が簡単"
+"になりパフォーマンスが向上します。"
#: ../../general/login_help_dialog.php:43
#, php-format
@@ -54237,9 +53786,9 @@ msgid ""
"learn more about the software. Monitoring can be overwhelming, but take your "
"time to learn how to harness the power of %s!"
msgstr ""
-"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつ"
-"かお勧めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方"
-"法を学んでください!"
+"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつか"
+"お勧めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方法を"
+"学んでください!"
#: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62
msgid "Online help"
@@ -54289,10 +53838,9 @@ msgid ""
"failed login attempts are logged in Pandora FMS System logs, and these can be "
"reviewed by each user, please report to admin any incident or malfunction."
msgstr ""
-"パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、"
-"CAPS LOCKキーを確認してください。
ログインの失敗は Pandora FMS システム"
-"ログに記録され他のユーザから確認されます。問題があれば管理者へ連絡してくださ"
-"い。"
+"パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、CAPS "
+"LOCKキーを確認してください。
ログインの失敗は Pandora FMS システムログに記"
+"録され他のユーザから確認されます。問題があれば管理者へ連絡してください。"
#: ../../general/node_deactivated.php:36
msgid "You cannot use this node until system is unified"
@@ -54311,11 +53859,11 @@ msgstr "このページへのアクセスは制限されています"
msgid ""
"Access to this page is restricted to authorized users only, please contact "
"system administrator if you need assistance.
\n"
-"\t\t\tPlease know that all attempts to access this page are recorded in "
-"security logs of Pandora System Database"
+"\t\t\tPlease know that all attempts to access this page are recorded in security "
+"logs of Pandora System Database"
msgstr ""
-"このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合"
-"はシステム管理者へ連絡してください。
\n"
+"このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合は"
+"システム管理者へ連絡してください。
\n"
"\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリ"
"ティログに記録されます。"
@@ -54328,16 +53876,16 @@ msgid ""
"Failure to connect to historical database, please check the configuration or "
"contact system administrator if you need assistance."
msgstr ""
-"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合"
-"はシステム管理者に連絡してください。"
+"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合は"
+"システム管理者に連絡してください。"
#: ../../general/mysqlerr.php:9
msgid ""
"Failure to connect to Database server, please check the configuration file "
"config.php or contact system administrator if you need assistance."
msgstr ""
-"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認する"
-"か、支援が必要な場合はシステム管理者に連絡してください。"
+"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認するか、"
+"支援が必要な場合はシステム管理者に連絡してください。"
#: ../../general/mysqlerr.php:31
msgid "Mysql error"
@@ -54377,8 +53925,8 @@ msgid ""
"This node is configured with centralized mode. Go to metaconsole to reset the "
"password"
msgstr ""
-"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソール"
-"で行います。"
+"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソールで"
+"行います。"
#: ../../general/login_page.php:569
msgid "Forbidden"
@@ -54401,8 +53949,8 @@ msgid ""
"This user does not have access on node, please enable node access on this user "
"from metaconsole."
msgstr ""
-"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードア"
-"クセスを有効にしてください。"
+"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードアク"
+"セスを有効にしてください。"
#: ../../general/login_page.php:718 ../../general/login_page.php:720
#, php-format
@@ -54413,12 +53961,11 @@ msgstr "%s データベースに問題があります"
msgid ""
"Cannot connect to the database, please check your database setup in the "
"include/config.php file.
\n"
-"\t\tProbably your database, hostname, user or password values are incorrect "
-"or\n"
+"\t\tProbably your database, hostname, user or password values are incorrect or\n"
"\t\tthe database server is not running."
msgstr ""
-"データベースに接続できません。include/config.phpファイル内のデータベース"
-"設定を確認してください。
\n"
+"データベースに接続できません。include/config.phpファイル内のデータベース設"
+"定を確認してください。
\n"
"\t\tおそらく、データベース名、ホスト名、ユーザ名、パスワードの値が不正か\n"
"\t\tデータベースサーバが動作していません。"
@@ -54430,13 +53977,13 @@ msgstr "DB エラー"
#, php-format
msgid ""
"If you have modified the auth system, the origin of this problem could be that "
-"%s cannot override the authorization variables from the config database. "
-"Please remove them from your database by executing:DELETE FROM "
-"tconfig WHERE token = \"auth\";
"
+"%s cannot override the authorization variables from the config database. Please "
+"remove them from your database by executing:DELETE FROM tconfig WHERE "
+"token = \"auth\";
"
msgstr ""
-"認証システムを変更した場合、この問題の原因は、%s が設定データベースの認証設定を"
-"上書きできないことです。以下を実行することにより、データベースよりそれらを削除"
-"してください。DELETE FROM tconfig WHERE token = \"auth\";
"
+"認証システムを変更した場合、この問題の原因は、%s が設定データベースの認証設定を上"
+"書きできないことです。以下を実行することにより、データベースよりそれらを削除して"
+"ください。DELETE FROM tconfig WHERE token = \"auth\";
"
#: ../../general/login_page.php:740
msgid "Empty configuration table"
@@ -54448,22 +53995,22 @@ msgid ""
"Cannot load configuration variables from database. Please check your database "
"setup in the\n"
"\t\t\tinclude/config.php file.
\n"
-"\t\t\tMost likely your database schema has been created but there are is no "
-"data in it, you have a problem with the database access credentials or your "
-"schema is out of date.\n"
-"\t\t\t
%s Console cannot find include/config.php or this file "
-"has invalid\n"
+"\t\t\tMost likely your database schema has been created but there are is no data "
+"in it, you have a problem with the database access credentials or your schema is "
+"out of date.\n"
+"\t\t\t
%s Console cannot find include/config.php or this file has "
+"invalid\n"
"\t\t\tpermissions and HTTP server cannot read it. Please read documentation to "
"fix this problem."
msgstr ""
"データベースから設定を読み込めません。include/config.phpファイルのデータ"
"ベース設定を確認してください。
\n"
-"\t\t\tほとんどの場合、データベーススキーマは作成されていますが、データがありま"
-"せん。データベースアクセス権限に問題があるか、スキーマが古くなっています。\n"
-"\t\t\t
%s コンソールが include/config.php を見つけられないか、"
-"ファイルのパーミッションが\n"
-"\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメント"
-"を確認してください。"
+"\t\t\tほとんどの場合、データベーススキーマは作成されていますが、データがありませ"
+"ん。データベースアクセス権限に問題があるか、スキーマが古くなっています。\n"
+"\t\t\t
%s コンソールが include/config.php を見つけられないか、ファ"
+"イルのパーミッションが\n"
+"\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメントを"
+"確認してください。"
#: ../../general/login_page.php:752
msgid "No configuration file found"
@@ -54473,13 +54020,13 @@ msgstr "設定ファイルがありません"
#, php-format
msgid ""
"%s Console cannot find include/config.php or this file has invalid\n"
-"\t\tpermissions and HTTP server cannot read it. Please read documentation to "
-"fix this problem."
+"\t\tpermissions and HTTP server cannot read it. Please read documentation to fix "
+"this problem."
msgstr ""
-"%s コンソールが include/config.php を見つけられないか、このファイルの"
-"パーミッションが不正で\n"
-"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照して"
-"ください。"
+"%s コンソールが include/config.php を見つけられないか、このファイルのパー"
+"ミッションが不正で\n"
+"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照してく"
+"ださい。"
#: ../../general/login_page.php:766
#, php-format
@@ -54497,8 +54044,8 @@ msgid ""
"installer file.\n"
"\t\tPlease delete the ./install.php file before running %s Console."
msgstr ""
-"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はでき"
-"ません。\n"
+"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はできま"
+"せん。\n"
"\t\t%s コンソールを実行する前に、./install.php ファイルを削除してくださ"
"い。"
@@ -54513,15 +54060,15 @@ msgid ""
"\t\tshould not read it or write to it. It should be written only for owner\n"
"\t\t(usually www-data or http daemon user), normal operation is not possible "
"until you change\n"
-"\t\tpermissions for include/config.php file. Please do it, it is for "
-"your security."
+"\t\tpermissions for include/config.php file. Please do it, it is for your "
+"security."
msgstr ""
-"セキュリティ上の理由により、config.php は制限したパーミッションでなけれ"
-"ばいけません。\n"
-"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または "
-"http デーモンのユーザ)\n"
-"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変"
-"更するまで\n"
+"セキュリティ上の理由により、config.php は制限したパーミッションでなければ"
+"いけません。\n"
+"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または http "
+"デーモンのユーザ)\n"
+"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変更"
+"するまで\n"
"\t\t通常の操作はできません。セキュリティのために対応してください。"
#: ../../general/login_page.php:789
@@ -54533,8 +54080,7 @@ msgid ""
"In the config.php file in the variable $config[\"homedir\"] = add the correct "
"path"
msgstr ""
-"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してくださ"
-"い。"
+"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してください。"
#: ../../general/login_page.php:794
msgid "Bad defined homeurl or homeurl_static"
@@ -54545,8 +54091,8 @@ msgid ""
"In the config.php file in the variable $config[\"homeurl\"] or "
"$config[\"homeurl_static\"] = add the correct path"
msgstr ""
-"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] "
-"に正しいパスを設定してください。"
+"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] に"
+"正しいパスを設定してください。"
#: ../../general/pandora_help.php:23
#, php-format
@@ -54560,11 +54106,11 @@ msgstr "ヘルプシステムエラー"
#: ../../general/pandora_help.php:77
#, php-format
msgid ""
-"%s help system has been called with a help reference that currently don't "
-"exist. There is no help content to show."
+"%s help system has been called with a help reference that currently don't exist. "
+"There is no help content to show."
msgstr ""
-"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘル"
-"プコンテンツはありません。"
+"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘルプ"
+"コンテンツはありません。"
#~ msgid "Calendars"
#~ msgstr "カレンダー"
@@ -54653,8 +54199,8 @@ msgstr ""
#~ "The templates shown are only for correlative alerts, event alert (legacy) "
#~ "will be deprecated in the future"
#~ msgstr ""
-#~ "表示されているテンプレートは相関アラート専用であり、イベントアラート(レガ"
-#~ "シー)は将来非推奨になります"
+#~ "表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)"
+#~ "は将来非推奨になります"
#~ msgid "Confirm: "
#~ msgstr "確認: "
@@ -54774,11 +54320,11 @@ msgstr ""
#~ msgstr "公開 URL 利用に関する情報"
#~ msgid ""
-#~ "Use [ or ( as first character, for example '[*] Map name', to render this "
-#~ "map name in main menu"
+#~ "Use [ or ( as first character, for example '[*] Map name', to render this map "
+#~ "name in main menu"
#~ msgstr ""
-#~ "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニュー"
-#~ "に表示するには、'[*] Map name' です。"
+#~ "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに"
+#~ "表示するには、'[*] Map name' です。"
#~ msgid "Edit event responses"
#~ msgstr "イベント応答の編集"
@@ -54844,15 +54390,15 @@ msgstr ""
#~ msgstr "参照"
#~ msgid ""
-#~ "If event replication is ongoing, it won't be possible to enter comments "
-#~ "here. This option is only to allow local pandora users to see comments, but "
-#~ "not to operate with them. The operation, when event replication is enabled, "
-#~ "must be done only in the Metaconsole."
+#~ "If event replication is ongoing, it won't be possible to enter comments here. "
+#~ "This option is only to allow local pandora users to see comments, but not to "
+#~ "operate with them. The operation, when event replication is enabled, must be "
+#~ "done only in the Metaconsole."
#~ msgstr ""
#~ "イベントの複製実行中は、ここにコメントを入力することはできません。 このオプ"
-#~ "ションでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、"
-#~ "コメントを操作することはできません。 イベント複製が有効な場合は、操作はメタ"
-#~ "コンソールでのみ実行する必要があります。"
+#~ "ションでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、コ"
+#~ "メントを操作することはできません。 イベント複製が有効な場合は、操作はメタコン"
+#~ "ソールでのみ実行する必要があります。"
#~ msgid "No log sources found"
#~ msgstr "ログソースが見つかりません"
@@ -54956,8 +54502,8 @@ msgstr ""
#~ "Enable/disable token (this will comment out the corresponding line in the "
#~ "configuration file)"
#~ msgstr ""
-#~ "トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントア"
-#~ "ウトされます)"
+#~ "トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントアウ"
+#~ "トされます)"
#~ msgid "Enable (1) or disable (0) remote configuration"
#~ msgstr "リモート設定の有効化(1)または無効化(0)"
@@ -55092,8 +54638,8 @@ msgstr ""
#~ "The plugin command cannot be updated because some modules or components are "
#~ "using the plugin."
#~ msgstr ""
-#~ "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラ"
-#~ "グインコマンドを更新できません。"
+#~ "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ"
+#~ "インコマンドを更新できません。"
#~ msgid "Circular porgress bar"
#~ msgstr "円進捗バー"
@@ -55124,8 +54670,7 @@ msgstr ""
#~ "\t\tREMEMBER trap sources need to be searched by IP Address"
#~ msgstr ""
#~ "トラップの英数字フィールドで検索。\n"
-#~ "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してくださ"
-#~ "い。"
+#~ "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してください。"
#~ msgid "There are no SNMP traps in database that contains this filter"
#~ msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。"
@@ -55153,12 +54698,12 @@ msgstr ""
#~ "Transaction graphs represent the different processes within our "
#~ "infrastructure that we use to deliver our service."
#~ msgstr ""
-#~ "新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行が"
-#~ "できます。指定した時間に対象を確認するために、いくつかの処理の実行ができるこ"
-#~ "とを意味します。\n"
+#~ "新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行がで"
+#~ "きます。指定した時間に対象を確認するために、いくつかの処理の実行ができることを"
+#~ "意味します。\n"
#~ "\n"
-#~ "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる"
-#~ "処理を表現します。"
+#~ "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる処"
+#~ "理を表現します。"
#~ msgid "Mode Cell"
#~ msgstr "モードセル"
@@ -55185,11 +54730,11 @@ msgstr ""
#~ msgstr "処理中イベントは削除できません"
#~ msgid ""
-#~ "Event viewer is disabled due event replication. For more information, "
-#~ "please contact with the administrator"
+#~ "Event viewer is disabled due event replication. For more information, please "
+#~ "contact with the administrator"
#~ msgstr ""
-#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡"
-#~ "してください。"
+#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡し"
+#~ "てください。"
#~ msgid "No filter loaded"
#~ msgstr "フィルタが読み込まれていません"
@@ -55222,8 +54767,8 @@ msgstr ""
#~ msgid ""
#~ "'Show events' is disabled because this %s node is set to event replication."
#~ msgstr ""
-#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' "
-#~ "は無効です。"
+#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' は"
+#~ "無効です。"
#~ msgid "Treshold"
#~ msgstr "閾値"
@@ -55409,17 +54954,16 @@ msgstr ""
#~ "This user has permissions to manage all. An admin user should not requiere "
#~ "additional group permissions, except for using Enterprise ACL."
#~ msgstr ""
-#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、"
-#~ "管理者ユーザは追加のグループパーミッション設定をすべきではありません。"
+#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、管"
+#~ "理者ユーザは追加のグループパーミッション設定をすべきではありません。"
#~ 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"
+#~ "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 ""
-#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限"
-#~ "られた権限を所有します。"
+#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限ら"
+#~ "れた権限を所有します。"
#~ msgid "Assigned node"
#~ msgstr "割り当てノード"
@@ -55434,8 +54978,7 @@ msgstr ""
#~ msgstr "移動を再実行するか管理者に連絡してください。"
#~ msgid "Agents cannot be updated (maybe there was no field to update)"
-#~ msgstr ""
-#~ "エージェントが更新できません (更新するフィールドがない可能性があります)"
+#~ msgstr "エージェントが更新できません (更新するフィールドがない可能性があります)"
#~ msgid "Days of week"
#~ msgstr "曜日"
@@ -55480,8 +55023,8 @@ msgstr ""
#~ msgid ""
#~ "Exceeded max. number (%d) of agents added to policy concurrently (%d added)"
#~ msgstr ""
-#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されま"
-#~ "した)"
+#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されまし"
+#~ "た)"
#~ msgid "Successfully deleted from delete pending agents"
#~ msgstr "削除待ちエージェントから削除しました"
@@ -55535,11 +55078,11 @@ msgstr ""
#~ msgstr "マイナーリリースは拒否されました。変更は適用されません。"
#~ msgid ""
-#~ "Minor release rejected. The database will not be updated and the package "
-#~ "will apply."
+#~ "Minor release rejected. The database will not be updated and the package will "
+#~ "apply."
#~ msgstr ""
-#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用"
-#~ "されます。"
+#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用さ"
+#~ "れます。"
#~ msgid "Database successfully updated"
#~ msgstr "データベースを更新しました"
@@ -55635,8 +55178,8 @@ msgstr ""
#, php-format
#~ msgid ""
-#~ "This policy exist in node %s with other name (%s). Change the name to '%s' "
-#~ "to apply the policy."
+#~ "This policy exist in node %s with other name (%s). Change the name to '%s' to "
+#~ "apply the policy."
#~ msgstr ""
#~ "このポリシーは、ノード %s に他の名前(%s)で存在します。 ポリシーを適用するに"
#~ "は、名前を '%s' に変更します。"
@@ -55701,12 +55244,12 @@ msgstr ""
#~ msgid ""
#~ "Access to this page is restricted to authorized users only, please contact "
#~ "system administrator if you need assistance.
Please know that all "
-#~ "attempts to access this page are recorded in security logs of Pandora "
-#~ "System Database"
+#~ "attempts to access this page are recorded in security logs of Pandora System "
+#~ "Database"
#~ msgstr ""
-#~ "このページへのアクセスは認証されたユーザのみに制限されています。必要であれば"
-#~ "システム管理者へ連絡してください。
このページへのアクセスは、Pandora"
-#~ "システムデータベースのセキュリティログに記録されますので注意してください。"
+#~ "このページへのアクセスは認証されたユーザのみに制限されています。必要であればシ"
+#~ "ステム管理者へ連絡してください。
このページへのアクセスは、Pandoraシス"
+#~ "テムデータベースのセキュリティログに記録されますので注意してください。"
#~ msgid "Welcome to Pandora FMS"
#~ msgstr "ようこそ Pandora FMS へ"
@@ -55715,11 +55258,10 @@ msgstr ""
#~ msgstr "Pandora FMS ヘルプシステム"
#~ msgid ""
-#~ "Pandora FMS help system has been called with a help reference that "
-#~ "currently don't exist. There is no help content to show."
+#~ "Pandora FMS help system has been called with a help reference that currently "
+#~ "don't exist. There is no help content to show."
#~ msgstr ""
-#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しませ"
-#~ "ん。"
+#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しません。"
#~ msgid "Message overview"
#~ msgstr "メッセージ概要"
@@ -55736,8 +55278,8 @@ msgstr ""
#~ msgstr "警告が %d 件あります。"
#~ msgid ""
-#~ "Your session is over. Please close your browser window to close this "
-#~ "Pandora session."
+#~ "Your session is over. Please close your browser window to close this Pandora "
+#~ "session."
#~ msgstr "セッションを終了しました。ブラウザのウインドウを閉じてください。"
#~ msgid "Pandora FMS Diagnostic tool"
@@ -56018,8 +55560,7 @@ msgstr ""
#~ msgid "File was partially uploaded. Please try again"
#~ msgstr ""
-#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてくださ"
-#~ "い。"
+#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてください。"
#~ msgid "Generic upload error"
#~ msgstr "一般アップロードエラー"
@@ -56091,8 +55632,8 @@ msgstr ""
#~ "You must select a Recon Server for the Task, otherwise the Recon Task will "
#~ "never run"
#~ msgstr ""
-#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出"
-#~ "は実行されません。"
+#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出は"
+#~ "実行されません。"
#~ msgid "Network sweep"
#~ msgstr "ネットワーク探査"
@@ -56104,9 +55645,9 @@ msgstr ""
#~ "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 ""
-#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 "
-#~ "(nmapコマンドのフォーマット)のように記載します。ポートスキャンをしたくない場"
-#~ "合は、空白にしてください。"
+#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 (nmap"
+#~ "コマンドのフォーマット)のように記載します。ポートスキャンをしたくない場合は、"
+#~ "空白にしてください。"
#~ msgid "Choose if the discovery of a new system creates an incident or not."
#~ msgstr "新システム検出時のインシデント作成有無の選択"
@@ -56115,10 +55656,9 @@ msgstr ""
#~ msgstr "SNMP デフォルトコミュニティ"
#~ msgid ""
-#~ "The current authentication scheme doesn't support creating users from "
-#~ "Pandora FMS"
-#~ msgstr ""
-#~ "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。"
+#~ "The current authentication scheme doesn't support creating users from Pandora "
+#~ "FMS"
+#~ msgstr "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。"
#~ msgid "Profiles defined in Pandora"
#~ msgstr "Pandora 内プロファイル"
@@ -56160,8 +55700,8 @@ msgstr ""
#~ msgstr "Pandora に定義されているモジュールグループ"
#~ msgid ""
-#~ "If realtime statistics are disabled, statistics interval resfresh will be "
-#~ "set here."
+#~ "If realtime statistics are disabled, statistics interval resfresh will be set "
+#~ "here."
#~ msgstr "リアルタイム統計が無効の場合、ここで統計処理間隔を設定します。"
#~ msgid "Success updatng OS"
@@ -56195,8 +55735,8 @@ msgstr ""
#~ "If SSL is not properly configured you will lose access to Pandora FMS "
#~ "Console. Do you want to continue?"
#~ msgstr ""
-#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなりま"
-#~ "す。設定を行いますか?"
+#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなります。"
+#~ "設定を行いますか?"
#~ msgid "Enable GIS features in Pandora Console"
#~ msgstr "コンソールで GIS 機能を利用する"
@@ -56212,8 +55752,7 @@ msgstr ""
#~ "Pandora FMS Console (even admin). Do you want to continue?"
#~ msgstr ""
#~ "ルール設定が無い状態でエンタープライズACLシステムが有効になっている場合は、"
-#~ "(adminでさえも)Pandora FMS コンソールへアクセスできなくなります。続けます"
-#~ "か。"
+#~ "(adminでさえも)Pandora FMS コンソールへアクセスできなくなります。続けますか。"
#~ msgid "There are no SNMP filters"
#~ msgstr "SNMP フィルタがありません。"
@@ -56222,8 +55761,8 @@ msgstr ""
#~ "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 ""
-#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィール"
-#~ "ドの設定が \"デフォルトアクション\" になります。"
+#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィールド"
+#~ "の設定が \"デフォルトアクション\" になります。"
#~ msgid "Query SQL"
#~ msgstr "SQL クエリ"
@@ -56311,11 +55850,11 @@ msgstr ""
#~ msgstr "処理エラー"
#~ msgid ""
-#~ "In case you use an Export server you can link this module and export data "
-#~ "to one these."
+#~ "In case you use an Export server you can link this module and export data to "
+#~ "one these."
#~ msgstr ""
-#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポート"
-#~ "できます。"
+#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポートで"
+#~ "きます。"
#~ msgid "The agent's name must be the same as the one defined at the console"
#~ msgstr ""
@@ -56400,13 +55939,13 @@ msgstr ""
#~ msgstr "複数モジュールコピー"
#~ msgid ""
-#~ "Please check your Pandora Server setup and be sure that database "
-#~ "maintenance daemon is running. It's very important to keep up-to-date "
-#~ "database to get the best performance and results in Pandora"
+#~ "Please check your Pandora Server setup and be sure that database maintenance "
+#~ "daemon is running. It's very important to keep up-to-date database to get the "
+#~ "best performance and results in Pandora"
#~ msgstr ""
-#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてくだ"
-#~ "さい。パフォーマンスを維持するためには、データベースを日々整理することが重要"
-#~ "です。"
+#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてくださ"
+#~ "い。パフォーマンスを維持するためには、データベースを日々整理することが重要で"
+#~ "す。"
#~ msgid "Get data from agent"
#~ msgstr "エージェントから収集したデータ"
@@ -56415,8 +55954,8 @@ msgstr ""
#~ "Please be patient. This operation can take a long time depending on the "
#~ "amount of modules."
#~ msgstr ""
-#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかるこ"
-#~ "とがあります。"
+#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかること"
+#~ "があります。"
#~ msgid "Deleting records for all agents"
#~ msgstr "全エージェントのレコードの削除中"
@@ -56435,8 +55974,7 @@ msgstr ""
#~ msgid "Click here to get the data from the agent specified in the select box"
#~ msgstr ""
-#~ "選択したエージェントからデータを取得するためには、ここをクリックしてくださ"
-#~ "い。"
+#~ "選択したエージェントからデータを取得するためには、ここをクリックしてください。"
#, php-format
#~ msgid "Information on agent %s in the database"
@@ -56587,8 +56125,8 @@ msgstr ""
#~ "At least one map connection must be defined, it will be possible to change "
#~ "between the connections in the map"
#~ msgstr ""
-#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は"
-#~ "可能です。"
+#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は可"
+#~ "能です。"
#~ msgid "Group that owns the map"
#~ msgstr "マップを利用するグループ"
@@ -56600,8 +56138,8 @@ msgstr ""
#~ "Each layer can show agents from one group or the agents added to that layer "
#~ "or both."
#~ msgstr ""
-#~ "それぞれのレイヤは、グループに所属するエージェントまたはレイヤに個別に追加さ"
-#~ "れたエージェントを表示できます。"
+#~ "それぞれのレイヤは、グループに所属するエージェントまたはレイヤに個別に追加され"
+#~ "たエージェントを表示できます。"
#~ msgid "It is possible to edit, delete and reorder the layers."
#~ msgstr "編集、削除、レイヤの順番の変更ができます。"
@@ -56616,20 +56154,20 @@ msgstr ""
#~ msgstr "ファイルを読み込めません"
#~ msgid ""
-#~ "This extension can run as PHP script in a shell for extract more "
-#~ "information, but it must be run as root or across sudo. For example: "
-#~ "sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c"
+#~ "This extension can run as PHP script in a shell for extract more information, "
+#~ "but it must be run as root or across sudo. For example: sudo php /var/www/"
+#~ "pandora_console/extensions/system_info.php -d -s -c"
#~ msgstr ""
#~ "この拡張は、シェル上で情報を表示するための PHP スクリプトとしても実行できま"
-#~ "す。ただし、root 権限が必要です。
例: sudo php /var/www/"
-#~ "pandora_console/extensions/system_info.php -d -s -c"
+#~ "す。ただし、root 権限が必要です。
例: sudo php /var/www/pandora_console/"
+#~ "extensions/system_info.php -d -s -c"
#~ msgid ""
-#~ "This tool is used just to view your Pandora FMS system logfiles directly "
-#~ "from console"
+#~ "This tool is used just to view your Pandora FMS system logfiles directly from "
+#~ "console"
#~ msgstr ""
-#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照す"
-#~ "るのに利用します。"
+#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照する"
+#~ "のに利用します。"
#~ msgid "Pandora Diagnostic info"
#~ msgstr "Pandora 診断情報"
@@ -56647,11 +56185,11 @@ msgstr ""
#~ msgstr "ファイル生成"
#~ msgid ""
-#~ "This extension makes exportation of resource template more easy. Here you "
-#~ "can export as a resource template in Pandora FMS 3.x format (.ptr). "
+#~ "This extension makes exportation of resource template more easy. Here you can "
+#~ "export as a resource template in Pandora FMS 3.x format (.ptr). "
#~ msgstr ""
-#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS "
-#~ "3.x フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 "
+#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS 3."
+#~ "x フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 "
#~ msgid "VNC view"
#~ msgstr "VNCビュー"
@@ -56659,16 +56197,16 @@ msgstr ""
#, php-format
#~ msgid ""
#~ "This extension makes registration of server plugins more easy. Here you can "
-#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please "
-#~ "refer to documentation on how to obtain and use Pandora FMS Server Plugins."
-#~ "
You can get more plugins in our Public Resource "
-#~ "Library"
+#~ "upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer "
+#~ "to documentation on how to obtain and use Pandora FMS Server Plugins."
+#~ "
You can get more plugins in our Public Resource Library"
+#~ "a>"
#~ msgstr ""
-#~ "この拡張インタフェースを使うことによって、サーバプラグインを簡単に登録するこ"
-#~ "とができます。アップロードは、Pandora FMS 3.x の圧縮フォーマット(.pspz)で"
-#~ "行ってください。Pandora FMS サーバプラグインの入手方法についてはドキュメント"
-#~ "を参照してください。
プラグインは、パブリックリソースラ"
-#~ "イブラリから入手できます。"
+#~ "この拡張インタフェースを使うことによって、サーバプラグインを簡単に登録すること"
+#~ "ができます。アップロードは、Pandora FMS 3.x の圧縮フォーマット(.pspz)で行って"
+#~ "ください。Pandora FMS サーバプラグインの入手方法についてはドキュメントを参照し"
+#~ "てください。
プラグインは、パブリックリソースライブラリ"
+#~ "a>から入手できます。"
#~ msgid "Traceroute to "
#~ msgstr "以下へのtraceroute "
@@ -56688,16 +56226,15 @@ msgstr ""
#, 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"
+#~ "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 ""
-#~ "この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、"
-#~ "Pandora FMS 3.x フォーマット (.ptr) でリソーステンプレートをアップロードでき"
-#~ "ます。Pandora FMS リソースの取得および利用方法については、ドキュメントを参照"
-#~ "してください。
リソースは、我々のPublic Resource "
-#~ "Libraryから取得できます。"
+#~ "この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、Pandora "
+#~ "FMS 3.x フォーマット (.ptr) でリソーステンプレートをアップロードできます。"
+#~ "Pandora FMS リソースの取得および利用方法については、ドキュメントを参照してくだ"
+#~ "さい。
リソースは、我々のPublic Resource Libraryから取"
+#~ "得できます。"
#~ msgid "No agent selected or the agent does not exist"
#~ msgstr "エージェントが選択されてないか、存在しません。"
@@ -56709,13 +56246,13 @@ msgstr ""
#~ msgstr "サーバの接続に失敗しました。"
#~ msgid ""
-#~ "Update Manager is one of the most advanced features of Pandora FMS "
-#~ "Enterprise version, for more information visit http://pandorafms.com."
+#~ "Update Manager is one of the most advanced features of Pandora FMS Enterprise "
+#~ "version, for more information visit http://"
+#~ "pandorafms.com."
#~ msgstr ""
-#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細"
-#~ "は、http://pandorafms.com を参照してく"
-#~ "ださい。"
+#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細は、"
+#~ "http://pandorafms.com を参照してくださ"
+#~ "い。"
#~ msgid "Week"
#~ msgstr "週"
@@ -56763,16 +56300,15 @@ msgstr ""
#~ msgstr "\"Admin\" ユーザのデフォルトパスワードが変更されていません。"
#~ msgid ""
-#~ "Please change the default password because is a common vulnerability "
-#~ "reported."
+#~ "Please change the default password because is a common vulnerability reported."
#~ msgstr "脆弱性となるため、デフォルトのパスワードは変更してください。"
#~ msgid ""
-#~ "Please check that the web server has write rights on the {HOMEDIR}/"
-#~ "attachment directory"
+#~ "Please check that the web server has write rights on the {HOMEDIR}/attachment "
+#~ "directory"
#~ msgstr ""
-#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認"
-#~ "してください。"
+#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認し"
+#~ "てください。"
#~ msgid "Remote configuration directory is not writtable for the console"
#~ msgstr "コンソールから、リモート設定ディレクトリに書き込めません。"
@@ -56781,11 +56317,11 @@ msgstr ""
#~ msgstr "attachmentディレクトリにあるファイルが多すぎます。"
#~ msgid ""
-#~ "There are too much files in attachment directory. This is not fatal, but "
-#~ "you should consider cleaning up your attachment directory manually"
+#~ "There are too much files in attachment directory. This is not fatal, but you "
+#~ "should consider cleaning up your attachment directory manually"
#~ msgstr ""
-#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレ"
-#~ "クトリの手動での整理をお勧めします。"
+#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレク"
+#~ "トリの手動での整理をお勧めします。"
#~ msgid "files"
#~ msgstr "ファイル"
@@ -56795,14 +56331,14 @@ msgstr ""
#~ msgid ""
#~ "Your database is not well maintained. Seems that it have more than 48hr "
-#~ "without a proper maintance. Please review Pandora FMS documentation about "
-#~ "how to execute this maintance process (pandora_db.pl) and enable it as soon "
-#~ "as possible"
+#~ "without a proper maintance. Please review Pandora FMS documentation about how "
+#~ "to execute this maintance process (pandora_db.pl) and enable it as soon as "
+#~ "possible"
#~ msgstr ""
-#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンス"
-#~ "がされていないように見受けられます。メンテナンスプロセス(pandora_db.pl)の実"
-#~ "行に関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効"
-#~ "にしてください。"
+#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンスが"
+#~ "されていないように見受けられます。メンテナンスプロセス(pandora_db.pl)の実行に"
+#~ "関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効にして"
+#~ "ください。"
#~ msgid "Default font doesnt exist"
#~ msgstr "デフォルトのフォントがありません"
@@ -56811,17 +56347,17 @@ msgstr ""
#~ "Your defined font doesnt exist or is not defined. Please check font "
#~ "parameters in your config"
#~ msgstr ""
-#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメー"
-#~ "タの設定を確認してください。"
+#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメータ"
+#~ "の設定を確認してください。"
#~ msgid ""
-#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a "
-#~ "developer mode and should be disabled in a production system. This value is "
-#~ "written in the main index.php file"
+#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a developer "
+#~ "mode and should be disabled in a production system. This value is written in "
+#~ "the main index.php file"
#~ msgstr ""
-#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、"
-#~ "これは開発用のモードであるため本番システムでは無効にしてください。この設定"
-#~ "は、メインの index.php ファイルに書かれています。"
+#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、こ"
+#~ "れは開発用のモードであるため本番システムでは無効にしてください。この設定は、メ"
+#~ "インの index.php ファイルに書かれています。"
#~ msgid "Alerts not fired"
#~ msgstr "未通知アラート"
@@ -56909,8 +56445,8 @@ msgstr ""
#~ "Error in creation network module. Id_module_type is not correct for network "
#~ "modules."
#~ msgstr ""
-#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が"
-#~ "不正です。"
+#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が不"
+#~ "正です。"
#~ msgid "Error in creation network module. Agent name doesn't exists."
#~ msgstr "ネットワークモジュール作成エラー。エージェント名が存在しません。"
@@ -56938,8 +56474,8 @@ msgstr ""
#~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to "
#~ "'MD5' or 'SHA'. "
#~ msgstr ""
-#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または "
-#~ "'SHA' を設定してください。 "
+#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または 'SHA' "
+#~ "を設定してください。 "
#~ msgid "Error in creation SNMP module."
#~ msgstr "SNMPモジュール作成エラー。"
@@ -56947,10 +56483,8 @@ msgstr ""
#~ msgid "Error updating SNMP module. Id_module doesn't exists."
#~ msgstr "SNMPモジュール更新エラー。id_module が存在しません。"
-#~ msgid ""
-#~ "Error in creation SNMP module. Invalid id_module_type for a SNMP module."
-#~ msgstr ""
-#~ "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。"
+#~ msgid "Error in creation SNMP module. Invalid id_module_type for a SNMP module."
+#~ msgstr "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。"
#~ msgid "Error in creation SNMP module. Agent name doesn't exists."
#~ msgstr "SNMPモジュール作成エラー。エージェント名が存在しません。"
@@ -56959,8 +56493,8 @@ msgstr ""
#~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to "
#~ "'AES' or 'DES'. "
#~ msgstr ""
-#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または "
-#~ "'DES' を設定してください。 "
+#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または 'DES' "
+#~ "を設定してください。 "
#~ msgid ""
#~ "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to "
@@ -56970,11 +56504,10 @@ msgstr ""
#~ "'authNoPriv'、'authPriv'、noAuthNoPriv' のいずれかを設定してください。 "
#~ msgid ""
-#~ "Error creating network component. Network component name cannot be left "
-#~ "blank."
+#~ "Error creating network component. Network component name cannot be left blank."
#~ msgstr ""
-#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定され"
-#~ "ていません。"
+#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定されて"
+#~ "いません。"
#~ msgid "Error updating SNMP module. Id_module exists in the new agent."
#~ msgstr "SNMPモジュール更新エラー。id_moduleが新規エージェントにあります。"
@@ -56986,8 +56519,8 @@ msgstr ""
#~ "Error creating network component. Network component group cannot be left "
#~ "blank."
#~ msgstr ""
-#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指"
-#~ "定されていません。"
+#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指定"
+#~ "されていません。"
#~ msgid "Error updating plugin module. Id_module cannot be left blank."
#~ msgstr "プラグインモジュール更新エラー。id_module が指定されていません。"
@@ -57007,8 +56540,8 @@ msgstr ""
#~ msgid ""
#~ "Error creating plugin component. Plugin component name cannot be left blank."
#~ msgstr ""
-#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されてい"
-#~ "ません。"
+#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されていま"
+#~ "せん。"
#~ msgid "Error updating SNMP module. Id_module cannot be left blank."
#~ msgstr "SNMPモジュール更新エラー。id_module が指定されていません。"
@@ -57017,17 +56550,16 @@ msgstr ""
#~ msgstr "接続しました... 直近24時間のメッセージを取得します..."
#~ msgid ""
-#~ "Error creating network component. Incorrect value for Network component "
-#~ "type field."
+#~ "Error creating network component. Incorrect value for Network component type "
+#~ "field."
#~ msgstr ""
-#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正"
-#~ "です。"
+#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正で"
+#~ "す。"
-#~ msgid ""
-#~ "Error creating network component. This network component already exists."
+#~ msgid "Error creating network component. This network component already exists."
#~ msgstr ""
-#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在"
-#~ "します。"
+#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在し"
+#~ "ます。"
#~ msgid "Error creating plugin component. Incorrect value for Id plugin."
#~ msgstr "プラグインコンポーネント作成エラー。プラグイン ID が不正です。"
@@ -57038,19 +56570,16 @@ msgstr ""
#~ "す。"
#~ msgid ""
-#~ "Error creating plugin component. Plugin component group cannot be left "
-#~ "blank."
+#~ "Error creating plugin component. Plugin component group cannot be left blank."
#~ msgstr ""
-#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定さ"
-#~ "れていません。"
+#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定され"
+#~ "ていません。"
#~ msgid ""
-#~ "Error creating SNMP component. Incorrect value for Snmp component type "
-#~ "field."
+#~ "Error creating SNMP component. Incorrect value for Snmp component type field."
#~ msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントタイプが不正です。"
-#~ msgid ""
-#~ "Error creating SNMP component. SNMP component name cannot be left blank."
+#~ msgid "Error creating SNMP component. SNMP component name cannot be left blank."
#~ msgstr ""
#~ "SNMPコンポーネント作成エラー。SNMPコンポーネント名が指定されていません。"
@@ -57058,8 +56587,8 @@ msgstr ""
#~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to "
#~ "'MD5' or 'SHA'. "
#~ msgstr ""
-#~ "SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' また"
-#~ "は 'SHA' を設定してください。 "
+#~ "SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' または "
+#~ "'SHA' を設定してください。 "
#~ msgid ""
#~ "Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to "
@@ -57071,8 +56600,7 @@ msgstr ""
#~ msgid ""
#~ "Error creating SNMP component. Snmp component group cannot be left blank."
#~ msgstr ""
-#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていませ"
-#~ "ん。"
+#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていません。"
#~ msgid ""
#~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to "
@@ -57084,8 +56612,8 @@ msgstr ""
#~ msgid ""
#~ "Error creating local component. Local component group cannot be left blank."
#~ msgstr ""
-#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されて"
-#~ "いません。"
+#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されてい"
+#~ "ません。"
#~ msgid "Error updating alert template. Id_template cannot be left blank."
#~ msgstr "アラートテンプレート更新エラー。id_templateが指定されていません。"
@@ -57093,8 +56621,7 @@ msgstr ""
#~ msgid "Error creating alert template."
#~ msgstr "アラートテンプレート作成エラー。"
-#~ msgid ""
-#~ "Error getting module value from all agents. Module name doesn't exists."
+#~ msgid "Error getting module value from all agents. Module name doesn't exists."
#~ msgstr ""
#~ "全エージェントからのモジュール値取得エラー。モジュール名が存在しません。"
@@ -57102,11 +56629,9 @@ msgstr ""
#~ msgstr "アラートテンプレート作成エラー。テンプレート名が指定されていません。"
#~ msgid ""
-#~ "Error getting module value from all agents. Module name cannot be left "
-#~ "blank."
+#~ "Error getting module value from all agents. Module name cannot be left blank."
#~ msgstr ""
-#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていませ"
-#~ "ん。"
+#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていません。"
#~ msgid "Error creating local component."
#~ msgstr "ローカルコンポーネント作成エラー。"
@@ -57158,8 +56683,7 @@ msgstr ""
#~ msgstr "プラグイン取得エラー。"
#~ msgid "Error assigning module to template. Id_template cannot be left blank."
-#~ msgstr ""
-#~ "テンプレートへのモジュール割当エラー。id_templateが指定されていません。"
+#~ msgstr "テンプレートへのモジュール割当エラー。id_templateが指定されていません。"
#~ msgid "Error assigning module to template. Id_module cannot be left blank."
#~ msgstr "テンプレートへのモジュール割当エラー。id_moduleが指定されていません。"
@@ -57170,8 +56694,7 @@ msgstr ""
#~ msgid "Error assigning module to template."
#~ msgstr "テンプレートへのモジュール割当エラー。"
-#~ msgid ""
-#~ "Error deleting module template. Id_module_template cannot be left blank."
+#~ msgid "Error deleting module template. Id_module_template cannot be left blank."
#~ msgstr ""
#~ "モジュールテンプレート削除エラー。id_module_templateが指定されていません。"
@@ -57193,11 +56716,10 @@ msgstr ""
#~ msgid "Error validating all alert policies."
#~ msgstr "全アラートポリシーの承諾エラー。"
-#~ msgid ""
-#~ "Error adding data module to policy. The module is already in the policy."
+#~ msgid "Error adding data module to policy. The module is already in the policy."
#~ msgstr ""
-#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内に"
-#~ "あります。"
+#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内にあ"
+#~ "ります。"
#~ msgid "Error adding data module to policy."
#~ msgstr "ポリシーへのデータモジュール追加エラー。"
@@ -57207,8 +56729,8 @@ msgstr ""
#~ msgid "Error adding agent to policy. The agent is already in the policy."
#~ msgstr ""
-#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあ"
-#~ "ります。"
+#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあり"
+#~ "ます。"
#~ msgid "Error adding agent to policy. Id_agent cannot be left blank."
#~ msgstr "ポリシーへのエージェント追加エラー。id_agentが指定されていません。"
@@ -57217,8 +56739,7 @@ msgstr ""
#~ msgstr "ポリシーへのエージェント追加エラー。id_agentが存在しません。"
#~ msgid "Error adding data module to policy. Id_policy cannot be left blank."
-#~ msgstr ""
-#~ "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。"
+#~ msgstr "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。"
#~ msgid "Error adding data module to policy. Module_name cannot be left blank."
#~ msgstr ""
@@ -57230,19 +56751,17 @@ msgstr ""
#~ msgid ""
#~ "Error updating network module in policy. Module type is not network type."
#~ msgstr ""
-#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークの"
-#~ "タイプではありません。"
+#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークのタ"
+#~ "イプではありません。"
-#~ msgid ""
-#~ "Error adding network module to policy. Module_name cannot be left blank."
+#~ msgid "Error adding network module to policy. Module_name cannot be left blank."
#~ msgstr ""
#~ "ポリシーへのネットワークモジュール追加エラー。module_nameが指定されていませ"
#~ "ん。"
#~ msgid "Error adding network module to policy. Id_policy cannot be left blank."
#~ msgstr ""
-#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていませ"
-#~ "ん。"
+#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていません。"
#~ msgid "Error updating data module in policy. Module doesn't exists."
#~ msgstr "ポリシーのデータモジュール更新エラー。モジュールが存在しません。"
@@ -57268,14 +56787,12 @@ msgstr ""
#~ "ポリシーへのネットワークモジュール追加エラー。指定したモジュールはすでにポリ"
#~ "シー内にあります。"
-#~ msgid ""
-#~ "Error updating network module in policy. Id_policy cannot be left blank."
+#~ msgid "Error updating network module in policy. Id_policy cannot be left blank."
#~ msgstr ""
#~ "ポリシーのネットワークモジュール更新エラー。id_policyが指定されていません。"
#~ msgid ""
-#~ "Error updating plugin module in policy. Id_policy_module cannot be left "
-#~ "blank."
+#~ "Error updating plugin module in policy. Id_policy_module cannot be left blank."
#~ msgstr ""
#~ "ポリシーのプラグインモジュール更新エラー。id_policy_moduleが指定されていませ"
#~ "ん。"
@@ -57283,11 +56800,10 @@ msgstr ""
#~ msgid ""
#~ "Error adding plugin module to policy. The module is already in the policy."
#~ msgstr ""
-#~ "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー"
-#~ "内にあります。"
+#~ "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー内"
+#~ "にあります。"
-#~ msgid ""
-#~ "Error updating plugin module in policy. Id_policy cannot be left blank."
+#~ msgid "Error updating plugin module in policy. Id_policy cannot be left blank."
#~ msgstr ""
#~ "ポリシーのプラグインモジュール更新エラー。id_policyが指定されていません。"
@@ -57303,27 +56819,23 @@ msgstr ""
#~ msgstr "ポリシーへのプラグインモジュール追加エラー。"
#~ msgid "Error updating network module in policy. Module doesn't exists."
-#~ msgstr ""
-#~ "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。"
+#~ msgstr "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。"
-#~ msgid ""
-#~ "Error adding plugin module to policy. Module_name cannot be left blank."
+#~ msgid "Error adding plugin module to policy. Module_name cannot be left blank."
#~ msgstr ""
-#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていませ"
-#~ "ん。"
+#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていません。"
#~ msgid ""
#~ "Error updating network module in policy. Id_policy_module cannot be left "
#~ "blank."
#~ msgstr ""
-#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていま"
-#~ "せん。"
+#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていませ"
+#~ "ん。"
-#~ msgid ""
-#~ "Error updating plugin module in policy. Module type is not network type."
+#~ msgid "Error updating plugin module in policy. Module type is not network type."
#~ msgstr ""
-#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタ"
-#~ "イプではありません。"
+#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタイ"
+#~ "プではありません。"
#~ msgid "Error updating plugin module in policy. Module doesn't exists."
#~ msgstr "ポリシーのプラグインモジュール更新エラー。モジュールが存在しません。"
@@ -57335,21 +56847,21 @@ msgstr ""
#~ "Are you sure to sort the items into the report?\\nThis action change the "
#~ "sorting of items into data base."
#~ msgstr ""
-#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの"
-#~ "並びを変更します。"
+#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの並"
+#~ "びを変更します。"
#~ 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."
+#~ "getting new modules, new plugins and new features (even full migrations tools "
+#~ "for future versions) automatically."
#~ msgstr ""
-#~ "新しいアップデートマネー"
-#~ "ジャクライアントは、Pandora FMSと一緒にリリースされています。アップデー"
-#~ "トマネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するも"
-#~ "の(フルマイグレーションツールは将来対応予定)であり、これによりシステム管理者"
-#~ "がPandora FMSを自動的に更新するのに役に立つでしょう。"
+#~ "新しいアップデートマネージャ"
+#~ "クライアントは、Pandora FMSと一緒にリリースされています。アップデートマ"
+#~ "ネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するもの(フ"
+#~ "ルマイグレーションツールは将来対応予定)であり、これによりシステム管理者が"
+#~ "Pandora FMSを自動的に更新するのに役に立つでしょう。"
#~ msgid "Correct updating of alert template"
#~ msgstr "アラートテンプレートの更新内容を修正してください"
@@ -57364,8 +56876,7 @@ msgstr ""
#~ msgstr "全ポリシーアラートの承諾内容を修正してください。"
#~ msgid "Error adding SNMP module to policy. Id_policy cannot be left blank."
-#~ msgstr ""
-#~ "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。"
+#~ msgstr "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。"
#~ msgid "Error adding SNMP module to policy. Module_name cannot be left blank."
#~ msgstr ""
@@ -57378,14 +56889,13 @@ msgstr ""
#~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP "
#~ "modules."
#~ msgstr ""
-#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用"
-#~ "になっていません。"
+#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用に"
+#~ "なっていません。"
-#~ msgid ""
-#~ "Error adding SNMP module to policy. The module is already in the policy."
+#~ msgid "Error adding SNMP module to policy. The module is already in the policy."
#~ msgstr ""
-#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在し"
-#~ "ます。"
+#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在しま"
+#~ "す。"
#~ msgid "Error updating SNMP module in policy. Id_policy cannot be left blank."
#~ msgstr "ポリシー内のSNMPモジュール更新エラー。id_policyが指定されていません。"
@@ -57400,15 +56910,14 @@ msgstr ""
#~ msgid "Error updating SNMP module in policy. Module type is not SNMP type."
#~ msgstr ""
-#~ "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありませ"
-#~ "ん。"
+#~ "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありません。"
#~ msgid ""
-#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to "
-#~ "'AES' or 'DES'. "
+#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' "
+#~ "or 'DES'. "
#~ msgstr ""
-#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' "
-#~ "を指定してください。 "
+#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' を"
+#~ "指定してください。 "
#~ msgid ""
#~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to "
@@ -57418,11 +56927,11 @@ msgstr ""
#~ "ん。'authNoPriv'、'authPriv'、'noAuthNoPriv' のいずれかを指定してください。 "
#~ msgid ""
-#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to "
-#~ "'MD5' or 'SHA'. "
+#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to 'MD5' "
+#~ "or 'SHA'. "
#~ msgstr ""
-#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または "
-#~ "'SHA' を指定してください。 "
+#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または 'SHA' "
+#~ "を指定してください。 "
#~ msgid "Error applying policy. Id_policy cannot be left blank."
#~ msgstr "ポリシー適用エラー。id_policy が指定されていません。"
@@ -57487,13 +56996,13 @@ msgstr ""
#~ "Error creating module from network component. Network component doesn't "
#~ "exists."
#~ msgstr ""
-#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネ"
-#~ "ントが存在しません。"
+#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネン"
+#~ "トが存在しません。"
#~ msgid "Error creating module from network component. Agent doesn't exists."
#~ msgstr ""
-#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しま"
-#~ "せん。"
+#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しませ"
+#~ "ん。"
#~ msgid "Error creating module from network component. Error creating module."
#~ msgstr ""
@@ -57503,29 +57012,29 @@ msgstr ""
#~ "When the agent name have a lot of characters, in some places in Pandora "
#~ "Console it is necesary truncate to N characters."
#~ msgstr ""
-#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで"
-#~ "切る必要があります。"
+#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切"
+#~ "る必要があります。"
#~ msgid ""
#~ "When the module name have a lot of characters, in some places in Pandora "
#~ "Console it is necesary truncate to N characters."
#~ msgstr ""
-#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切"
-#~ "る必要があります。"
+#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る"
+#~ "必要があります。"
#~ msgid ""
-#~ "When the description name have a lot of characters, in some places in "
-#~ "Pandora Console it is necesary truncate to N characters."
+#~ "When the description name have a lot of characters, in some places in Pandora "
+#~ "Console it is necesary truncate to N characters."
#~ msgstr ""
-#~ "説明が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要が"
-#~ "あります。"
+#~ "説明が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があ"
+#~ "ります。"
#~ msgid ""
-#~ "When the item title name have a lot of characters, in some places in "
-#~ "Pandora Console it is necesary truncate to N characters."
+#~ "When the item title name have a lot of characters, in some places in Pandora "
+#~ "Console it is necesary truncate to N characters."
#~ msgstr ""
-#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字"
-#~ "までで切る必要があります。"
+#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字ま"
+#~ "でで切る必要があります。"
#~ msgid "Blank characters are used as AND conditions"
#~ msgstr "スペースは、AND 条件です。"
@@ -57551,8 +57060,8 @@ msgstr ""
#~ "There was a problem updating the incident, please check if any field was "
#~ "modified and the values are correct."
#~ msgstr ""
-#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認"
-#~ "してください。"
+#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認し"
+#~ "てください。"
#~ msgid "Incident created"
#~ msgstr "インシデントを作成しました"
@@ -57576,21 +57085,20 @@ msgstr ""
#~ "When it is set as \"yes\" in some important sections check if the user have "
#~ "gone from url Pandora."
#~ msgstr ""
-#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移"
-#~ "してきたかどうかをチェックします。"
+#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移し"
+#~ "てきたかどうかをチェックします。"
#~ msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used"
#~ msgstr ""
-#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコ"
-#~ "ンが利用されます。"
+#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコン"
+#~ "が利用されます。"
#~ msgid ""
-#~ "This enabling this, you get a label with agent name in GIS maps. If you "
-#~ "have lots of agents in the map, will be unreadable. Disabled by default."
+#~ "This enabling this, you get a label with agent name in GIS maps. If you have "
+#~ "lots of agents in the map, will be unreadable. Disabled by default."
#~ msgstr ""
-#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ"
-#~ "内に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効で"
-#~ "す。"
+#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ内"
+#~ "に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効です。"
#~ msgid "All Modules deleted succesfully"
#~ msgstr "すべてのモジュールを削除しました"
@@ -57623,8 +57131,7 @@ msgstr ""
#, php-format
#~ msgid "There was a problem deleting %s modules, none deleted."
#~ msgstr ""
-#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていませ"
-#~ "ん。"
+#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていません。"
#~ msgid "No Validated"
#~ msgstr "未承諾"
@@ -57637,8 +57144,8 @@ msgstr ""
#~ "number is reached then a warning message will appear in the header "
#~ "notification space."
#~ msgstr ""
-#~ "添付ディレクトリにおくファイルの上限数です。ファイル数がこの値に達した場合、"
-#~ "コンソールのヘッダ部分に警告メッセージが現れます。"
+#~ "添付ディレクトリにおくファイルの上限数です。ファイル数がこの値に達した場合、コ"
+#~ "ンソールのヘッダ部分に警告メッセージが現れます。"
#~ msgid "Events by criticity"
#~ msgstr "重要度で分類したイベント"
@@ -57698,18 +57205,18 @@ msgstr ""
#~ "estado_agente to show agent detail view"
#~ msgstr ""
#~ "ユーザはホームページをカスタマイズできます。デフォルトでは、'エージェント詳"
-#~ "細' が表示されます。例: 'その他' を選択し、sec=estado&sec2=operation/"
-#~ "agentes/estado_agente を入力すると、エージェント詳細が表示されます。"
+#~ "細' が表示されます。例: 'その他' を選択し、sec=estado&sec2=operation/agentes/"
+#~ "estado_agente を入力すると、エージェント詳細が表示されます。"
#~ msgid "Error in agent enabling/disabling."
#~ msgstr "エージェント有効化/無効化エラー"
#~ msgid ""
-#~ "By default, in Windows, Pandora FMS only support Standard network sweep, "
-#~ "not custom scripts"
+#~ "By default, in Windows, Pandora FMS only support Standard network sweep, not "
+#~ "custom scripts"
#~ msgstr ""
-#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみ"
-#~ "の対応で、カスタムスクリプトは使えません。"
+#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみの"
+#~ "対応で、カスタムスクリプトは使えません。"
#~ msgid "Output format"
#~ msgstr "出力フォーマット"
@@ -57735,8 +57242,7 @@ msgstr ""
#~ msgid ""
#~ "WARNING: If you edit this planned downtime, the data of future SLA reports "
#~ "may be altered"
-#~ msgstr ""
-#~ "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります"
+#~ msgstr "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります"
#~ msgid "Only it is show when
the agent is saved."
#~ msgstr "エージェントが保存されたときのみ
表示されます。"
@@ -57815,18 +57321,18 @@ msgstr ""
#~ msgstr "DEBUG: %s:%s に不正なモジュールタイプが指定されています"
#~ msgid ""
-#~ "Most likely you have recently upgraded from an earlier version of Pandora "
-#~ "and either
\n"
+#~ "Most likely you have recently upgraded from an earlier version of Pandora and "
+#~ "either
\n"
#~ "\t\t\t\t1) forgot to use the database converter
\n"
#~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport "
#~ "#2124706 for the solution)
\n"
#~ "\t\t\t\t3) found a new bug - please report a way to duplicate this error"
#~ msgstr ""
-#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれか"
-#~ "が考えられます。
\n"
+#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれかが"
+#~ "考えられます。
\n"
#~ "\t\t\t\t1) データベース変換の実行し忘れ
\n"
-#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレ"
-#~ "ポート #2124706 を参照)
\n"
+#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレポー"
+#~ "ト #2124706 を参照)
\n"
#~ "\t\t\t\t3) 新たなバグ - このエラーを再現する方法をレポートしてください"
#~ msgid "Module macros"
@@ -57845,8 +57351,8 @@ msgstr ""
#~ "If cron is set the module interval is ignored and the module runs on the "
#~ "specified date and time"
#~ msgstr ""
-#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定"
-#~ "された日時に実行されます。"
+#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定さ"
+#~ "れた日時に実行されます。"
#~ msgid "Activate this to prevent the relation from being updated or deleted"
#~ msgstr "更新や削除に対しても関係を維持するには、これを有効にしてください"
@@ -57953,30 +57459,30 @@ msgstr ""
#~ msgstr "お待ちください..."
#~ msgid ""
-#~ "Set this value when your PandoraFMS across inverse proxy or for example "
-#~ "with mod_proxy of Apache."
+#~ "Set this value when your PandoraFMS across inverse proxy or for example with "
+#~ "mod_proxy of Apache."
#~ msgstr ""
-#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利"
-#~ "用している場合などに、この値を設定してください。"
+#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利用"
+#~ "している場合などに、この値を設定してください。"
#~ msgid ""
-#~ "If set to yes no events or alerts will be generated, but agents will "
-#~ "continue receiving data."
+#~ "If set to yes no events or alerts will be generated, but agents will continue "
+#~ "receiving data."
#~ msgstr ""
-#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデー"
-#~ "タの受信を継続します。"
+#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデータ"
+#~ "の受信を継続します。"
#~ msgid "Directory where the server logs are stored."
#~ msgstr "サーバのログを保存するディレクトリ。"
#~ msgid ""
-#~ "Configuration of our clippy, 'full mode' show the icon in the header and "
-#~ "the contextual helps and it is noise, 'on demand' it is equal to full but "
-#~ "it is not noise and 'expert' the icons in the header and the context is not."
+#~ "Configuration of our clippy, 'full mode' show the icon in the header and the "
+#~ "contextual helps and it is noise, 'on demand' it is equal to full but it is "
+#~ "not noise and 'expert' the icons in the header and the context is not."
#~ msgstr ""
-#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示され"
-#~ "うるさい感じになます。'オンデマンド' はフルモードと同じですがうるさくはあり"
-#~ "ません。'上級者' はヘッダーにアイコンとヘルプが表示されません。"
+#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示されう"
+#~ "るさい感じになます。'オンデマンド' はフルモードと同じですがうるさくはありませ"
+#~ "ん。'上級者' はヘッダーにアイコンとヘルプが表示されません。"
#~ msgid "Allow create planned downtimes in the past"
#~ msgstr "終了した計画停止の作成を許可する"
@@ -57985,8 +57491,7 @@ msgstr ""
#~ msgstr "終了した計画停止の作成は SLA レポートに影響します"
#~ msgid ""
-#~ "This interval will affect to the lines between elements on the Visual "
-#~ "Console"
+#~ "This interval will affect to the lines between elements on the Visual Console"
#~ msgstr "これは、ビジュアルコンソール上の要素間の線に影響します。"
#~ msgid ""
@@ -57995,8 +57500,8 @@ msgstr ""
#~ "console."
#~ msgstr ""
#~ "カスタムロゴのディレクトリは、Pandora コンソールの \"images/custom_logo\" で"
-#~ "す。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードでき"
-#~ "ます。"
+#~ "す。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードできま"
+#~ "す。"
#~ msgid "Paginate module view"
#~ msgstr "モジュール表示をページ分割"
@@ -58040,12 +57545,11 @@ msgstr ""
#~ "If the compaction or purge of the data is more frequent than the events "
#~ "deletion, anomalies in module graphs could appear"
#~ msgstr ""
-#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしく"
-#~ "なる可能性があります"
+#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしくな"
+#~ "る可能性があります"
#~ msgid ""
-#~ "Configure a purge period more frequent than a compact data period has no "
-#~ "sense"
+#~ "Configure a purge period more frequent than a compact data period has no sense"
#~ msgstr "データの圧縮よりも削除を短くすることには意味がありません"
#~ msgid "To get your Pandora FMS Enterprise License:"
@@ -58060,17 +57564,17 @@ msgstr ""
#~ "Your PHP has set memory limit in %s. For avoid problems with big updates "
#~ "please set to 500M"
#~ msgstr ""
-#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるため"
-#~ "には、500M に設定してください。"
+#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるために"
+#~ "は、500M に設定してください。"
#~ msgid ""
-#~ "Update Manager sends anonymous information about Pandora FMS usage (number "
-#~ "of agents and modules running). To disable it, remove remote server address "
-#~ "from Update Manager plugin setup."
+#~ "Update Manager sends anonymous information about Pandora FMS usage (number of "
+#~ "agents and modules running). To disable it, remove remote server address from "
+#~ "Update Manager plugin setup."
#~ msgstr ""
-#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェン"
-#~ "トおよびモジュール数) を送信します。これを無効にするには、アップデートマネー"
-#~ "ジャプラグインの設定で、リモートサーバアドレスを削除します。"
+#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェント"
+#~ "およびモジュール数) を送信します。これを無効にするには、アップデートマネージャ"
+#~ "プラグインの設定で、リモートサーバアドレスを削除します。"
#~ msgid "Checking for the newest package."
#~ msgstr "最新パッケージの確認中。"
@@ -58082,8 +57586,8 @@ msgstr ""
#~ msgstr "ブラウズしてください"
#~ msgid ""
-#~ "Remember that this package will override the actual Pandora FMS files and "
-#~ "it is recommended to do a backup before continue with the update."
+#~ "Remember that this package will override the actual Pandora FMS files and it "
+#~ "is recommended to do a backup before continue with the update."
#~ msgstr ""
#~ "このパッケージは既存の Pandora FMS ファイルを上書きすることに注意してくださ"
#~ "い。アップデートを実行する前にバックアップを取得してください。"
@@ -58094,8 +57598,7 @@ msgstr ""
#~ msgid "Package updated successfully."
#~ msgstr "パッケージを更新しました。"
-#~ msgid ""
-#~ "If there are any database change, it will be applied on the next login."
+#~ msgid "If there are any database change, it will be applied on the next login."
#~ msgstr "データベース変更がある場合は、次回のログイン時に適用されます。"
#~ msgid "Package not updated."
@@ -58114,15 +57617,15 @@ msgstr ""
#~ msgstr "サービスの更新エラー"
#~ msgid ""
-#~ "In manual mode you should set the weights manually. In auto mode the "
-#~ "weights have default values.\n"
+#~ "In manual mode you should set the weights manually. In auto mode the weights "
+#~ "have default values.\n"
#~ "\t\tIn simple mode only the elements configured as \"critical element\" are "
#~ "used to calculate the service status."
#~ msgstr ""
-#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウ"
-#~ "エイトはデフォルトの値があります。\n"
-#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計"
-#~ "算に利用されます。"
+#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウエ"
+#~ "イトはデフォルトの値があります。\n"
+#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計算"
+#~ "に利用されます。"
#~ msgid "This values are by default because the service is auto calculate mode."
#~ msgstr "サービスが自動計算モードのため、デフォルト値です。"
@@ -58172,16 +57675,15 @@ msgstr ""
#~ msgid "Ok weight"
#~ msgstr "正常ウエイト"
-#~ msgid ""
-#~ "Only the critical elements are relevant to calculate the service status"
+#~ msgid "Only the critical elements are relevant to calculate the service status"
#~ msgstr "障害状態のもののみがサービス状態の計算に使われます"
#~ msgid ""
#~ "Maybe delete the extended data or the audit data is previous to table "
#~ "tsession_extended."
#~ msgstr ""
-#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにあり"
-#~ "ません。"
+#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにありま"
+#~ "せん。"
#~ msgid "Update all"
#~ msgstr "全て更新"
@@ -58259,8 +57761,8 @@ msgstr ""
#~ "Since the alert can have multiple actions. You can edit them from the alert "
#~ "list of events."
#~ msgstr ""
-#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集すること"
-#~ "ができます。"
+#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集することが"
+#~ "できます。"
#~ msgid "Event rules"
#~ msgstr "イベントルール"
@@ -58332,8 +57834,7 @@ msgstr ""
#~ msgid "Number of days before data is transfered to history database."
#~ msgstr "ヒストリデータベースへのデータ転送を行わない日数"
-#~ msgid ""
-#~ "Data size of mechanism used to transfer data (similar to a data buffer.)"
+#~ msgid "Data size of mechanism used to transfer data (similar to a data buffer.)"
#~ msgstr "データ転送に利用するデータサイズ (データバッファのようなもの)"
#~ msgid "Time interval between data transfer."
@@ -58343,22 +57844,22 @@ msgstr ""
#~ "Before activating this option check your ACL Setup. You may lose access to "
#~ "the console."
#~ msgstr ""
-#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのア"
-#~ "クセスができなくなる可能性があります。"
+#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのアク"
+#~ "セスができなくなる可能性があります。"
#~ msgid ""
#~ "The inventory modules included in the changes blacklist will not generate "
#~ "events when change."
#~ msgstr ""
-#~ "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを"
-#~ "生成しません。"
+#~ "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを生"
+#~ "成しません。"
#~ msgid ""
#~ "Rules applied to the management of passwords. This policy applies to all "
#~ "users except the administrator."
#~ msgstr ""
-#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適"
-#~ "用されます。"
+#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適用"
+#~ "されます。"
#~ msgid "Remote Pandora FMS"
#~ msgstr "リモートの Pandora FMS"
@@ -58381,21 +57882,20 @@ msgstr ""
#~ "This license allows %d agents and you have %d agents configured."
#~ msgstr ""
#~ "ライセンスの上限を超えています "
-#~ "
このライセンスは %d エージェントまでですが、%d エージェントが設定さ"
-#~ "れています。"
+#~ "
このライセンスは %d エージェントまでですが、%d エージェントが設定され"
+#~ "ています。"
#~ msgid ""
#~ "To continue using Pandora FMS, please disable enterprise by renaming the "
-#~ "Enterprise directory in the console.
Or contact Artica at "
-#~ "info@artica.es for a valid license:"
+#~ "Enterprise directory in the console.
Or contact Artica at info@artica."
+#~ "es for a valid license:"
#~ msgstr ""
-#~ "Pandora FMS の利用を継続するには、コンソールの enterprise ディレクトリをリ"
-#~ "ネームして Enterprise 版を無効化するか、
Artica (info@artica.es) まで"
-#~ "ライセンスに関してお問い合わせください:"
+#~ "Pandora FMS の利用を継続するには、コンソールの enterprise ディレクトリをリネー"
+#~ "ムして Enterprise 版を無効化するか、
Artica (info@artica.es) までライセ"
+#~ "ンスに関してお問い合わせください:"
#~ msgid "Please contact Artica at info@artica.es to renew the license."
-#~ msgstr ""
-#~ "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。"
+#~ msgstr "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。"
#~ msgid "Top N Events by agent."
#~ msgstr "エージェントごとのトップ N イベント"
@@ -58630,8 +58130,8 @@ msgstr ""
#, php-format
#~ msgid ""
-#~ "Error creating/updating the followings elements groups/profiles/user "
-#~ "profiles (%d/%d/%d)"
+#~ "Error creating/updating the followings elements groups/profiles/user profiles "
+#~ "(%d/%d/%d)"
#~ msgstr "グループ/プロファイル/ユーザの要素の作成・更新エラー (%d/%d/%d)"
#, php-format
@@ -58676,8 +58176,7 @@ msgstr ""
#~ msgid "Visual"
#~ msgstr "表示"
-#~ msgid ""
-#~ "Complete path to Pandora console without last \"/\" character. Example "
+#~ msgid "Complete path to Pandora console without last \"/\" character. Example "
#~ msgstr "最後の \"/\" を除いた Pandora コンソールの完全パス。例 "
#~ msgid "There aren't server added to metaconsole"
@@ -58748,8 +58247,8 @@ msgstr ""
#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora "
#~ "Console."
#~ msgstr ""
-#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコン"
-#~ "ソールの IP が設定されていない可能性があります。"
+#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコンソー"
+#~ "ルの IP が設定されていない可能性があります。"
#~ msgid "Successfully moved"
#~ msgstr "移動しました"
@@ -58762,9 +58261,9 @@ msgstr ""
#~ "any group with that name, will be created if check box is selected. "
#~ "Destination group filter is just used to check agents in that group"
#~ msgstr ""
-#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場"
-#~ "合、チェックボックスがチェックされていると作成されます。移行先のグループフィ"
-#~ "ルタは、エージェントがグループにあるかどうかのみのチェックに利用されます。"
+#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場合、"
+#~ "チェックボックスがチェックされていると作成されます。移行先のグループフィルタ"
+#~ "は、エージェントがグループにあるかどうかのみのチェックに利用されます。"
#~ msgid "Based on name"
#~ msgstr "名前ベース"
@@ -58778,8 +58277,8 @@ msgstr ""
#~ msgstr "Pandora FMS の利用には、以下を使うことを強くお勧めします"
#~ msgid ""
-#~ "Mozilla Firefox or "
-#~ "Google Chrome browsers."
+#~ "Mozilla Firefox or Google Chrome browsers."
#~ msgstr ""
#~ "Mozilla Firefox または Google Chrome ブラウザ。"
@@ -58924,8 +58423,8 @@ msgstr ""
#~ "Maybe the first run is not exactly equal to this value because the cron "
#~ "configuration is diferent."
#~ msgstr ""
-#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可"
-#~ "能性があります。"
+#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可能"
+#~ "性があります。"
#~ msgid "First execution"
#~ msgstr "初回実行"
@@ -58995,8 +58494,7 @@ msgstr ""
#~ msgstr "モジュールがありません。"
#~ msgid "Restoring a Pandora database backup must be done manually"
-#~ msgstr ""
-#~ "Pandora データベースバックアップのリストは、手動実行する必要があります"
+#~ msgstr "Pandora データベースバックアップのリストは、手動実行する必要があります"
#~ msgid "Run import command using the following command"
#~ msgstr "次のコマンドを使って、インポートコマンドを実行します"
@@ -59030,15 +58528,15 @@ msgstr ""
#~ "\"Translate string\" extension is missed in the server. This extension is "
#~ "mandatory to be configured on metaconsole."
#~ msgstr ""
-#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が"
-#~ "必須です。"
+#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が必"
+#~ "須です。"
#~ msgid ""
#~ "Server name doesnt match. Check the node server name and configure the same "
#~ "one on metasetup"
#~ msgstr ""
-#~ "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか"
-#~ "確認してください"
+#~ "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか確"
+#~ "認してください"
#~ msgid "Module store the service does not exist."
#~ msgstr "サービスを保存するモジュールがありません。"
@@ -59081,9 +58579,9 @@ msgstr ""
#~ "learn more about Pandora FMS. Monitoring could be overwhelm, but take your "
#~ "time to learn how to use the power of Pandora FMS!"
#~ msgstr ""
-#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリ"
-#~ "ンクを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには"
-#~ "時間が必要です。"
+#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリン"
+#~ "クを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには時間"
+#~ "が必要です。"
#~ msgid "Go to Pandora FMS Website"
#~ msgstr "Pandora FMS のウェブサイトへ"
@@ -59092,27 +58590,27 @@ msgstr ""
#~ "Pandora FMS frontend is built on advanced, modern technologies and does not "
#~ "support old browsers."
#~ msgstr ""
-#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザは"
-#~ "サポートしていません。"
+#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザはサ"
+#~ "ポートしていません。"
#~ msgid ""
-#~ "It is highly recommended that you choose and install a modern browser. It "
-#~ "is free of charge and only takes a couple of minutes."
+#~ "It is highly recommended that you choose and install a modern browser. It is "
+#~ "free of charge and only takes a couple of minutes."
#~ msgstr ""
-#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了"
-#~ "します。"
+#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了し"
+#~ "ます。"
#~ msgid "Why is it recommended to upgrade the web browser?"
#~ msgstr "なぜブラウザのアップグレードを推奨するのでしょうか?"
#~ msgid ""
#~ "New browsers usually come with support for new technologies, increasing web "
-#~ "page speed, better privacy settings and so on. They also resolve security "
-#~ "and functional issues."
+#~ "page speed, better privacy settings and so on. They also resolve security and "
+#~ "functional issues."
#~ msgstr ""
-#~ "新しいブラウザでは通常、新たな技術のサポート、表示速度の高速化、プライバシー"
-#~ "設定の強化等が行われています。また、セキュリティホールや不具合の解消も行われ"
-#~ "ています。"
+#~ "新しいブラウザでは通常、新たな技術のサポート、表示速度の高速化、プライバシー設"
+#~ "定の強化等が行われています。また、セキュリティホールや不具合の解消も行われてい"
+#~ "ます。"
#~ msgid "Continue despite this warning"
#~ msgstr "警告を無視して続ける"
@@ -59145,8 +58643,7 @@ msgstr ""
#~ "Agent statuses are re-calculated by the server, they are not shown in real "
#~ "time."
#~ msgstr ""
-#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されませ"
-#~ "ん。"
+#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されません。"
#~ msgid "one combined graph"
#~ msgstr "一つの組み合わせグラフ"
@@ -59170,8 +58667,8 @@ msgstr ""
#~ "Show events is disabled because this Pandora node is set the event "
#~ "replication."
#~ msgstr ""
-#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効"
-#~ "です。"
+#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効で"
+#~ "す。"
#~ msgid "Show event graph"
#~ msgstr "イベントグラフ表示"
@@ -59195,8 +58692,7 @@ msgstr ""
#~ msgstr "ショートカットバー"
#~ msgid ""
-#~ "This will activate a shortcut bar with alerts, events, messages... "
-#~ "information"
+#~ "This will activate a shortcut bar with alerts, events, messages... information"
#~ msgstr ""
#~ "アラート、イベント、メッセージ等の情報でショートカットバーを有効にします。"
@@ -59212,8 +58708,7 @@ msgstr ""
#~ "wikiを参照してください"
#~ msgid ""
-#~ "There is a error in the message from your Integria or there is not "
-#~ "connection."
+#~ "There is a error in the message from your Integria or there is not connection."
#~ msgstr "Integria からのメッセージにエラーがあるか、接続できません。"
#~ msgid "Opened tickets"
@@ -59229,8 +58724,8 @@ msgstr ""
#~ "You can set the command path in the menu Administration -> Extensions -"
#~ "> Config Network Tools"
#~ msgstr ""
-#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設"
-#~ "定できます。"
+#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設定"
+#~ "できます。"
#~ msgid "Config Network Tools"
#~ msgstr "ネットワークツール設定"
@@ -59315,8 +58810,8 @@ msgstr ""
#~ "close me and never see me again."
#~ msgstr ""
#~ "自己紹介をさせてください。私は Pandora FMS のおせっかいなアシスタント "
-#~ "Pandorin です。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示し"
-#~ "ないようにもできます。"
+#~ "Pandorin です。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示しな"
+#~ "いようにもできます。"
#~ msgid "Ping to a Linux or Windows server with a Pandora FMS agent"
#~ msgstr ""
@@ -59329,8 +58824,8 @@ msgstr ""
#~ msgid "Error updating data module in policy. Module type is not network type."
#~ msgstr ""
-#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイ"
-#~ "プではありません。"
+#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイプ"
+#~ "ではありません。"
#~ msgid "Error in netflow filter creation. Filter name cannot be left blank."
#~ msgstr "Netflow フィルタ作成エラー。フィルタ名が空です。"
@@ -59401,30 +58896,30 @@ msgstr ""
#~ msgid ""
#~ "Cannot connect to the database, please check your database setup in the "
#~ "include/config.php file.
\n"
-#~ "\t\t\tProbably your database, hostname, user or password values are "
-#~ "incorrect or \n"
+#~ "\t\t\tProbably your database, hostname, user or password values are incorrect "
+#~ "or \n"
#~ "\t\t\tthe database server is not running."
#~ msgstr ""
-#~ "データベースに接続できません。include/config.phpファイルで、データ"
-#~ "ベースの設定を確認してください。
\n"
-#~ "\t\t\t おそらく、データベース、ホスト名、ユーザ、パスワードの値が正しくない"
-#~ "かまたは、\n"
+#~ "データベースに接続できません。include/config.phpファイルで、データベー"
+#~ "スの設定を確認してください。
\n"
+#~ "\t\t\t おそらく、データベース、ホスト名、ユーザ、パスワードの値が正しくないか"
+#~ "または、\n"
#~ "\t\t\t データベースサーバが動作していません。"
#~ 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\";
"
+#~ "cannot override authorization variables from the config database. Remove them "
+#~ "from your database by executing:DELETE FROM tconfig WHERE token = "
+#~ "\"auth\";
"
#~ msgstr ""
-#~ "認証システムを変更した場合この問題が発生します。Pandora は、データベース設定"
-#~ "では認証方法を上書きできないためです。次のクエリを実行することにより、それら"
-#~ "をデータベースから削除してください。: DELETE FROM tconfig WHERE "
-#~ "token = \"auth\";
"
+#~ "認証システムを変更した場合この問題が発生します。Pandora は、データベース設定で"
+#~ "は認証方法を上書きできないためです。次のクエリを実行することにより、それらを"
+#~ "データベースから削除してください。: DELETE FROM tconfig WHERE token "
+#~ "= \"auth\";
"
#~ msgid ""
-#~ "Cannot load configuration variables from database. Please check your "
-#~ "database setup in the\n"
+#~ "Cannot load configuration variables from database. Please check your database "
+#~ "setup in the\n"
#~ "\t\t\tinclude/config.php file.
\n"
#~ "\t\t\tMost likely your database schema has been created but there are is no "
#~ "data in it, you have a problem with the database access credentials or your "
@@ -59434,15 +58929,14 @@ msgstr ""
#~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation "
#~ "to fix this problem."
#~ msgstr ""
-#~ "データベースから設定を読み込めません。include/config.phpファイルの"
-#~ "データベース設定を確認してください。
\n"
-#~ "\t\t\t データベーススキーマは作成されているがデータが入っていない、データ"
-#~ "ベースへのアクセス権限が無い、またはスキーマが古いといったことが考えられま"
-#~ "す。\n"
-#~ "\t\t\t
または、Pandora FMS コンソールが include/config.php "
-#~ "ファイルを見つけられないか、このファイルが不正な\n"
-#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決に"
-#~ "はドキュメントを参照してください。"
+#~ "データベースから設定を読み込めません。include/config.phpファイルのデー"
+#~ "タベース設定を確認してください。
\n"
+#~ "\t\t\t データベーススキーマは作成されているがデータが入っていない、データベー"
+#~ "スへのアクセス権限が無い、またはスキーマが古いといったことが考えられます。\n"
+#~ "\t\t\t
または、Pandora FMS コンソールが include/config.php ファ"
+#~ "イルを見つけられないか、このファイルが不正な\n"
+#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決には"
+#~ "ドキュメントを参照してください。"
#~ msgid ""
#~ "Pandora FMS Console cannot find include/config.php or this file has "
@@ -59452,19 +58946,19 @@ msgstr ""
#~ msgstr ""
#~ "Pandora FMS コンソールが include/config.php ファイルを見つけられない"
#~ "か、このファイルが不正な\n"
-#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決に"
-#~ "はドキュメントを参照してください。"
+#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決には"
+#~ "ドキュメントを参照してください。"
#~ msgid ""
#~ "For security reasons, normal operation is not possible until you delete "
#~ "installer file.\n"
-#~ "\t\t\tPlease delete the ./install.php file before running Pandora "
-#~ "FMS Console."
+#~ "\t\t\tPlease delete the ./install.php file before running Pandora FMS "
+#~ "Console."
#~ msgstr ""
-#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはな"
-#~ "りません。\n"
-#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削"
-#~ "除してください。"
+#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはなり"
+#~ "ません。\n"
+#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削除"
+#~ "してください。"
#~ msgid ""
#~ "For security reasons, config.php must have restrictive permissions, "
@@ -59473,15 +58967,15 @@ msgstr ""
#~ "owner \n"
#~ "\t\t\t(usually www-data or http daemon user), normal operation is not "
#~ "possible until you change \n"
-#~ "\t\t\tpermissions for include/config.php file. Please do it, it is "
-#~ "for your security."
+#~ "\t\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"
+#~ "セキュリティ上の理由から、 config.php はパーミッションを制限する必要が"
+#~ "あります。\"other\" ユーザは\n"
+#~ "\t\t\t 読み書きできてはいけません。owner (通常は www-data や http デーモンユー"
+#~ "ザ)でのみ書き込み\n"
+#~ "\t\t\t 可能にする必要があります。include/config.php のパーミッションを"
+#~ "変更しないと、通常の動作\n"
#~ "\t\t\t にはなりません。セキュリティのために調整を実施してください。"
#~ msgid "Auto Save"
@@ -59491,11 +58985,11 @@ msgstr ""
#~ msgstr "保存できませんでした"
#~ msgid ""
-#~ "You can not delete the last group in Pandora. A common installation must "
-#~ "has almost one group."
+#~ "You can not delete the last group in Pandora. A common installation must has "
+#~ "almost one group."
#~ msgstr ""
-#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければな"
-#~ "りません。"
+#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければなり"
+#~ "ません。"
#~ msgid "There is a unknown error."
#~ msgstr "不明なエラーがあります。"
@@ -59579,8 +59073,8 @@ msgstr ""
#~ "To disable, change it on your PHP configuration file (php.ini) and put "
#~ "safe_mode = Off (Dont forget restart apache process after changes)"
#~ msgstr ""
-#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定"
-#~ "します。 (変更後、apache プロセスの再起動を忘れずに行ってください)"
+#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定し"
+#~ "ます。 (変更後、apache プロセスの再起動を忘れずに行ってください)"
#~ msgid "For to view the list modules paginated, set in setup visuals."
#~ msgstr "ページ分割されたモジュール一覧表示は、画面設定で設定してください。"
@@ -59589,8 +59083,8 @@ msgstr ""
#~ msgstr "イベント情報 (1時間)"
#~ msgid ""
-#~ "Event storm protection is activated. No events will be generated during "
-#~ "this mode."
+#~ "Event storm protection is activated. No events will be generated during this "
+#~ "mode."
#~ msgstr ""
#~ "イベントストーム保護が有効です。このモードではイベントが生成されません。"
@@ -59620,16 +59114,16 @@ msgstr ""
#~ "Your PHP has set maximum allowed size for uploaded files limit in %s. For "
#~ "avoid problems with big updates please set to 100M"
#~ msgstr ""
-#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな"
-#~ "更新時に問題にならないよう、100M に設定してください。"
+#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな更"
+#~ "新時に問題にならないよう、100M に設定してください。"
#, php-format
#~ msgid ""
-#~ "Your PHP has set post parameter max size limit in %s. For avoid problems "
-#~ "with big updates please set to 100M"
+#~ "Your PHP has set post parameter max size limit in %s. For avoid problems with "
+#~ "big updates please set to 100M"
#~ msgstr ""
-#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時"
-#~ "に問題にならないよう、100M に設定してください。"
+#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時に"
+#~ "問題にならないよう、100M に設定してください。"
#~ msgid "Module data received"
#~ msgstr "データ受信モジュール"
@@ -59637,8 +59131,8 @@ msgstr ""
#~ msgid ""
#~ "Unsucessful delete profile. Because the profile is used by some admin users."
#~ msgstr ""
-#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われ"
-#~ "います。"
+#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われい"
+#~ "ます。"
#~ msgid "Unsuccessfull multiple delete."
#~ msgstr "複数削除に失敗しました。"
@@ -59676,8 +59170,8 @@ msgstr ""
#~ "The user doesn't have permission to read agents. Please contact with your "
#~ "pandora administrator."
#~ msgstr ""
-#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してくだ"
-#~ "さい。"
+#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してくださ"
+#~ "い。"
#~ msgid "Please choose other server."
#~ msgstr "他のサーバを選択してください。"
@@ -59726,18 +59220,18 @@ msgstr ""
#, php-format
#~ msgid ""
-#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not "
-#~ "set this value with upper values."
+#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not set "
+#~ "this value with upper values."
#~ msgstr ""
-#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけ"
-#~ "ません。"
+#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけま"
+#~ "せん。"
#~ msgid ""
-#~ "If this option is enabled, the users can use double authentication with "
-#~ "their accounts"
+#~ "If this option is enabled, the users can use double authentication with their "
+#~ "accounts"
#~ msgstr ""
-#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができ"
-#~ "ます。"
+#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができま"
+#~ "す。"
#~ msgid "This is defined in minutes"
#~ msgstr "分単位で設定します"
@@ -59767,8 +59261,8 @@ msgstr ""
#~ "With this option enabled, the user will can access to accurate information. "
#~ "It is not recommended for admin users because performance could be affected"
#~ msgstr ""
-#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすること"
-#~ "ができます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。"
+#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすることが"
+#~ "できます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。"
#~ msgid "No tag selected"
#~ msgstr "タグが選択されていません"
@@ -59792,8 +59286,7 @@ msgstr ""
#~ msgstr "DB Pandora にはすべてのテーブルが揃っています"
#, php-format
-#~ msgid ""
-#~ "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)"
+#~ msgid "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)"
#~ msgstr ""
#~ "DB Pandora にはすべてのテーブルが揃っていません。不足テーブルは (%s) です。"
@@ -59801,13 +59294,12 @@ msgstr ""
#~ msgid ""
#~ "Unsuccessful the field %s in the table %s must be setted the type with %s."
#~ msgstr ""
-#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要がありま"
-#~ "す。"
+#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要があります。"
#, php-format
#~ msgid ""
-#~ "Unsuccessful the field %s in the table %s must be setted the null values "
-#~ "with %s."
+#~ "Unsuccessful the field %s in the table %s must be setted the null values with "
+#~ "%s."
#~ msgstr ""
#~ "フィールド %s (テーブル %s 内)は、%s の null 値に設定されている必要がありま"
#~ "す。"
@@ -59817,22 +59309,21 @@ msgstr ""
#~ "Unsuccessful the field %s in the table %s must be setted the key as defined "
#~ "in the SQL file."
#~ msgstr ""
-#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが"
-#~ "設定されている必要があります。"
+#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが設"
+#~ "定されている必要があります。"
#~ msgid "Please check the SQL file for to know the kind of key needed."
#~ msgstr "必要なキーを特定するには、SQL ファイルを確認してください。"
#, php-format
#~ msgid ""
-#~ "Unsuccessful the field %s in the table %s must be setted the default value "
-#~ "as %s."
+#~ "Unsuccessful the field %s in the table %s must be setted the default value as "
+#~ "%s."
#~ msgstr ""
-#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要があ"
-#~ "ります。"
+#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要があり"
+#~ "ます。"
-#~ msgid ""
-#~ "Please check the SQL file for to know the kind of default value needed."
+#~ msgid "Please check the SQL file for to know the kind of default value needed."
#~ msgstr "必要なデフォルト値を特定するには、SQL ファイルを確認してください。"
#, php-format
@@ -59840,8 +59331,8 @@ msgstr ""
#~ "Unsuccessful the field %s in the table %s must be setted as defined in the "
#~ "SQL file."
#~ msgstr ""
-#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定され"
-#~ "ている必要があります。"
+#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定されて"
+#~ "いる必要があります。"
#~ msgid "Units. Value"
#~ msgstr "単位"
@@ -59880,16 +59371,16 @@ msgstr ""
#~ "This item is affected by a malformed planned downtime. Go to the planned "
#~ "downtimes section to solve this."
#~ msgstr ""
-#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだい"
-#~ "さい。"
+#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだいさ"
+#~ "い。"
#~ msgid "Netflow Statistics"
#~ msgstr "Netflow 統計"
#~ msgid ""
-#~ "Illegal query: Due security restrictions, there are some tokens or words "
-#~ "you cannot use: *, delete, drop, alter, modify, union, password, pass, "
-#~ "insert or update."
+#~ "Illegal query: Due security restrictions, there are some tokens or words you "
+#~ "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or "
+#~ "update."
#~ msgstr ""
#~ "不正なクエリ。セキュリティ上の制約により次のトークンやワードは利用でません: "
#~ "*, delete, drop, alter, modify, union, password, pass, insert または update"
@@ -59900,9 +59391,9 @@ msgstr ""
#~ "update_manager&tab=online\"> go to Administration:Setup:Update Manager "
#~ "for more details."
#~ msgstr ""
-#~ "新たな更新があります。詳細は、管理"
-#~ "メニューのアップデートマネージャを参照してください。"
+#~ "新たな更新があります。詳細は、管理メ"
+#~ "ニューのアップデートマネージャを参照してください。"
#~ msgid "Netflow Pie"
#~ msgstr "NetFlow円グラフ"
@@ -59992,15 +59483,14 @@ msgstr ""
#~ msgstr "エージェント有効化/無効化エラー。エージェントが存在しません。"
#~ msgid ""
-#~ "There is a new update please go to menu Administration and into extensions "
-#~ "go to Update Manager for "
-#~ "more details."
-#~ msgstr ""
-#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照"
-#~ "してください。"
+#~ "update_manager/update_manager&tab=online\">go to Update Manager for more "
+#~ "details."
+#~ msgstr ""
+#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照してください。"
#~ msgid "Error enable/disable agent. Id_agent cannot be left blank."
#~ msgstr "エージェント有効化/無効化エラー。id_agent は空にできません。"
@@ -60018,12 +59508,12 @@ msgstr ""
#~ "pandorafms.com/Library/Library/'>Public Resource Library "
#~ msgstr ""
#~ "この拡張は、サーバプラグインの登録を簡単にします。\n"
-#~ "\t\t\t\t\t\tPandora FMS 3.x の zip フォーマット(.pspz)でサーバプラグインを"
-#~ "アップロードできます。\n"
-#~ "\t\t\t\t\t\tPandora FMS サーバプラグインの取得と使い方はドキュメントを参照し"
-#~ "てください。\n"
-#~ "\t\t\t\t\t\t
多くのプラグインを、我々のリソースライブラリから取得できます。 "
+#~ "\t\t\t\t\t\tPandora FMS 3.x の zip フォーマット(.pspz)でサーバプラグインをアッ"
+#~ "プロードできます。\n"
+#~ "\t\t\t\t\t\tPandora FMS サーバプラグインの取得と使い方はドキュメントを参照して"
+#~ "ください。\n"
+#~ "\t\t\t\t\t\t
多くのプラグインを、我々のリソースライブラリから取得できます。 "
#~ msgid "Masive tags module policy edition"
#~ msgstr "一括タグモジュールポリシー編集"
@@ -60050,26 +59540,25 @@ msgstr ""
#~ msgstr "proc モジュールを二値(OK/FAIL)表示する"
#~ msgid ""
-#~ "The Recon Task definition of Pandora FMS is used to find new elements in "
-#~ "the network. \n"
+#~ "The Recon Task definition of Pandora FMS is used to find new elements in the "
+#~ "network. \n"
#~ "\t\tIf it detects any item, it will add that item to the monitoring, and if "
#~ "that item it is already being monitored, then it will \n"
#~ "\t\tignore it or will update its information.There are three types of "
#~ "detection: Based on ICMP (pings), \n"
#~ "\t\tSNMP (detecting the topology of networks "
-#~ "and their interfaces), and other customized "
-#~ "strong>\n"
+#~ "and their interfaces), and other customized \n"
#~ "\t\ttype. You can define your own customized recon script."
#~ msgstr ""
-#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利"
-#~ "用します。\n"
-#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情"
-#~ "報を更新します。\n"
+#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利用"
+#~ "します。\n"
+#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情報"
+#~ "を更新します。\n"
#~ "\t\t検出には 3つの種類があります。 ICMP "
-#~ "strong>(ping)、SNMP(ネットワークとインタ"
-#~ "フェースのトポロジ検出)、\n"
-#~ "\t\tおよび カスタムタイプです。独自の検出スク"
-#~ "リプトを定義することもできます。"
+#~ "strong>(ping)、SNMP(ネットワークとインタフェー"
+#~ "スのトポロジ検出)、\n"
+#~ "\t\tおよび カスタムタイプです。独自の検出スクリ"
+#~ "プトを定義することもできます。"
#~ msgid ""
#~ "A service is a way to group your IT resources based on their "
@@ -60080,53 +59569,53 @@ msgstr ""
#~ "switches, firewalls, CRMs, ERPs, websites and numerous other services. \n"
#~ "\t\t\t\t\t By the following example, you're able to see more clearly what a "
#~ "service is:\n"
-#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around "
-#~ "the world. \n"
+#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the "
+#~ "world. \n"
#~ "\t\t\t\t\t\tHis company consists of three big departments: A management, an "
#~ "on-line shop and support."
#~ msgstr ""
#~ "サービスは、機能に基づく IT リソースをグループ化するものです。\n"
-#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリ"
-#~ "ケーション、プリンタなどです。\n"
-#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、"
-#~ "ERP、ウェブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n"
+#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリケー"
+#~ "ション、プリンタなどです。\n"
+#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、"
+#~ "ウェブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n"
#~ "\t\t\t\t\t次の例で、サービスが何かがよりわかるでしょう。\n"
-#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを"
-#~ "販売しています。\n"
-#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門"
-#~ "から成っています。"
+#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを販"
+#~ "売しています。\n"
+#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門か"
+#~ "ら成っています。"
#~ msgid ""
#~ "Pandora FMS contains a scheduled downtime management system. \n"
#~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the "
#~ "intervals whenever there is down time by deactivating the agent.\n"
-#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In "
-#~ "a down time, the down-time intervals aren't taken into \n"
-#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because "
-#~ "the agents don't contain any data within those intervals. "
+#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a "
+#~ "down time, the down-time intervals aren't taken into \n"
+#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because the "
+#~ "agents don't contain any data within those intervals. "
#~ msgstr ""
#~ "Pandora FMS には、計画停止を管理するシステムがあります。\n"
-#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラー"
-#~ "トを無効化するように設計されています。\n"
+#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラート"
+#~ "を無効化するように設計されています。\n"
#~ "\t\t\t\t\t\tエージェントが無効化されると情報収集が行われません。停止期間中の"
#~ "データは、多くのレポートの計算に\n"
-#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いた"
-#~ "めです。 "
+#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いため"
+#~ "です。 "
#~ msgid ""
#~ "From Pandora FMS versions 5 and above, the access to modules can be "
#~ "configured by a tags system.\n"
#~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the "
#~ "chosen modules. \n"
-#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain "
-#~ "tags in this way. "
+#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain tags "
+#~ "in this way. "
#~ msgstr ""
-#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセス"
-#~ "を設定できます。\n"
+#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセスを"
+#~ "設定できます。\n"
#~ "\t\t\t\t\t\t\t\tタグは、システム上で設定し、選択したモジュールに割り当てま"
#~ "す。\n"
-#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限"
-#~ "定することができます。 "
+#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限定"
+#~ "することができます。 "
#~ msgid "Free text:"
#~ msgstr "検索文字列:"
@@ -60153,9 +59642,9 @@ msgstr ""
#~ "comments and files any time in case there is a need to do so.\n"
#~ "\t\t\tThis system allows the users to work as a team, along with different "
#~ "roles and work-flow systems which allows an incident to be \n"
-#~ "\t\t\tmoved from one group to another, and that members from different "
-#~ "groups and different people could work on the same incident, sharing "
-#~ "information and files.\n"
+#~ "\t\t\tmoved from one group to another, and that members from different groups "
+#~ "and different people could work on the same incident, sharing information and "
+#~ "files.\n"
#~ "\t\t"
#~ msgstr ""
#~ "システムやアプリケーションを監視するためにデータを受信し処理するほかに、\n"
@@ -60163,12 +59652,12 @@ msgstr ""
#~ "す。\n"
#~ "\t\t\tそのために、Pandora FMS チームではインシデント管理機能を用意しました。"
#~ "ユーザはいつでもインシデントをオープンし、\n"
-#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシ"
-#~ "ステムにより、ユーザがチームとして動くことが\n"
-#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグ"
-#~ "ループから他のグループへ移したり、異なる\n"
-#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報や"
-#~ "ファイルを共有したりできます。\n"
+#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシス"
+#~ "テムにより、ユーザがチームとして動くことが\n"
+#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグルー"
+#~ "プから他のグループへ移したり、異なる\n"
+#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報やファ"
+#~ "イルを共有したりできます。\n"
#~ "\t\t"
#~ msgid "An error occurred stopping the planned downtime"
@@ -60190,15 +59679,15 @@ msgstr ""
#~ msgstr "この計画停止は実行中です"
#~ msgid ""
-#~ "WARNING: You\\'re trying to create a group in a node member of a "
-#~ "metaconsole.\\n\\nThis group and all of this contents will not be visible "
-#~ "in the metaconsole.\\n\\nIf you want to create a visible group, you must do "
-#~ "it from the metaconsole and propagate to the node. "
+#~ "WARNING: You\\'re trying to create a group in a node member of a metaconsole."
+#~ "\\n\\nThis group and all of this contents will not be visible in the "
+#~ "metaconsole.\\n\\nIf you want to create a visible group, you must do it from "
+#~ "the metaconsole and propagate to the node. "
#~ msgstr ""
#~ "警告: メタコンソールのノードメンバーにグループを作成しようとしていま"
-#~ "す。\\n\\n このグループとそこに含まれるコンテンツはメタコンソールでは表示さ"
-#~ "れません。\\n\\n 表示されるグループを作成したい場合は、メタコンソールから実"
-#~ "行し、ノードに伝播させる必要があります。 "
+#~ "す。\\n\\n このグループとそこに含まれるコンテンツはメタコンソールでは表示され"
+#~ "ません。\\n\\n 表示されるグループを作成したい場合は、メタコンソールから実行"
+#~ "し、ノードに伝播させる必要があります。 "
#~ msgid "Advance Config AD"
#~ msgstr "AD 拡張設定"
@@ -60216,8 +59705,8 @@ msgstr ""
#~ msgid ""
#~ "Pandora FMS allows you to create visual maps in which each user is able to "
#~ "create his own monitoring map.\n"
-#~ "\t\t\tThe new visual console editor is much more practical, although the "
-#~ "old visual console editor had its advantages. \n"
+#~ "\t\t\tThe new visual console editor is much more practical, although the old "
+#~ "visual console editor had its advantages. \n"
#~ "\t\t\tWithin the new visual console, we've been successful in imitating the "
#~ "sensation and touch of a drawing application like GIMP. \n"
#~ "\t\t\tWe've also simplified the editor by dividing it into several subject-"
@@ -60226,10 +59715,10 @@ msgstr ""
#~ "\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are "
#~ "'static image', 'percentage bar', 'module graph' and 'simple value'. "
#~ msgstr ""
-#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監"
-#~ "視マップを作成することができます。\n"
-#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的で"
-#~ "す。新たなビジュアルコンソールでは、\n"
+#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監視"
+#~ "マップを作成することができます。\n"
+#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的です。"
+#~ "新たなビジュアルコンソールでは、\n"
#~ "\t\t\t絵を書くツールの GIMP のような感覚とタッチを模倣することに成功しまし"
#~ "た。\n"
#~ "\t\t\tまた、'データ'、'プレビュー'、'ウィザード'、'要素一覧' および 'エディ"
@@ -60246,18 +59735,18 @@ msgstr ""
#~ msgstr "%dパーセント"
#~ msgid ""
-#~ "Graphs are designed to show the data collected by Pandora FMS in a "
-#~ "temporary scale defined by the user.\n"
+#~ "Graphs are designed to show the data collected by Pandora FMS in a temporary "
+#~ "scale defined by the user.\n"
#~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated "
#~ "every time the operator requires any of them and display the up-to-date "
#~ "state.\n"
#~ "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the "
#~ "graphs the user customizes by using one or more modules to do so."
#~ msgstr ""
-#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表"
-#~ "示します。\n"
-#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作"
-#~ "したタイミングで生成され、最新の状態を表示します。\n"
+#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表示"
+#~ "します。\n"
+#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作し"
+#~ "たタイミングで生成され、最新の状態を表示します。\n"
#~ "\t\t\t\tグラフには 2つのタイプがあります。エージェントで自動生成されるグラフ"
#~ "と、1つ以上のモジュールを使ってユーザがカスタマイズしたグラフです。"
@@ -60289,11 +59778,11 @@ msgstr ""
#~ msgstr "最小エージェント"
#~ msgid ""
-#~ "Error, you are trying to add a widget in a empty cell. Please save the "
-#~ "layout before to add any widget in this cell."
+#~ "Error, you are trying to add a widget in a empty cell. Please save the layout "
+#~ "before to add any widget in this cell."
#~ msgstr ""
-#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェッ"
-#~ "トを追加するには、先にレイアウトを保存してください。"
+#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェット"
+#~ "を追加するには、先にレイアウトを保存してください。"
#~ msgid "Config widget"
#~ msgstr "ウィジェット設定"
@@ -60310,24 +59799,22 @@ msgstr ""
#~ msgid "Different parent"
#~ msgstr "異なる親"
-#~ msgid ""
-#~ "The target user profiles will be replaced with the source user profiles"
+#~ msgid "The target user profiles will be replaced with the source user profiles"
#~ msgstr "対象のユーザプロファイルは、元ユーザのプロファイルで置き換えられます"
#~ msgid ""
#~ "Access to this page is restricted to authorized users only, please contact "
#~ "system administrator if you need assistance. \n"
-#~ "\t\t\t\t\t
Please know that all attempts to access this page are "
-#~ "recorded in security logs of Pandora System Database"
+#~ "\t\t\t\t\t
Please know that all attempts to access this page are recorded "
+#~ "in security logs of Pandora System Database"
#~ msgstr ""
-#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシス"
-#~ "テム管理者へ連絡してください。\n"
-#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセ"
-#~ "キュリティログに記録されます。"
+#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシステ"
+#~ "ム管理者へ連絡してください。\n"
+#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセキュ"
+#~ "リティログに記録されます。"
#~ msgid ""
-#~ "The selected user profile will be added to the selected users into the "
-#~ "target"
+#~ "The selected user profile will be added to the selected users into the target"
#~ msgstr "選択されたユーザプロファイルは、対象の選択ユーザに追加されます"
#~ msgid "Login off"
@@ -60367,15 +59854,14 @@ msgstr ""
#~ msgstr "ウエイトはデフォルト値です"
#~ msgid ""
-#~ "Only the elements configured as 'critical element' are used to calculate "
-#~ "the service status"
+#~ "Only the elements configured as 'critical element' are used to calculate the "
+#~ "service status"
#~ msgstr "'障害' として設定されているもののみサービスの状態計算に利用されます。"
#~ msgid "No name and description specified for the service"
#~ msgstr "サービスに名前と説明がありません"
-#~ msgid ""
-#~ "All the items are not available in CSV, only the previous versions ones."
+#~ msgid "All the items are not available in CSV, only the previous versions ones."
#~ msgstr "CSV内に全アイテムがありません。以前のバージョンのみです。"
#~ msgid "Delete remote conf server files in Pandora"
@@ -60385,8 +59871,7 @@ msgstr ""
#~ "Delete this conf file implies that Pandora will send back local config to "
#~ "console"
#~ msgstr ""
-#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送しま"
-#~ "す"
+#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送します"
#~ msgid ""
#~ "Limit the number of events that are replicated metaconsole each specified "
@@ -60394,11 +59879,11 @@ msgstr ""
#~ msgstr "指定した範囲でメタコンソールへ複製するイベントの数を制限します。"
#~ msgid ""
-#~ "Enable this option will be synchronice the groups and tags each new user "
-#~ "when he/she will login."
+#~ "Enable this option will be synchronice the groups and tags each new user when "
+#~ "he/she will login."
#~ msgstr ""
-#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが"
-#~ "同期されます。"
+#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが同"
+#~ "期されます。"
#~ msgid "Generate a dynamic report\""
#~ msgstr "ダイナミックレポートの生成"
@@ -60432,40 +59917,39 @@ msgstr ""
#~ msgid ""
#~ "In the same fashion, when subscribed to the newsletter you accept that your "
-#~ "email will pass on to a database property of Artica TS. This data will "
-#~ "solely be used to provide you with information about Pandora FMS and will "
-#~ "not be conceded to third parties. You'll be able to unregister from said "
-#~ "database at any time from the newsletter subscription options"
+#~ "email will pass on to a database property of Artica TS. This data will solely "
+#~ "be used to provide you with information about Pandora FMS and will not be "
+#~ "conceded to third parties. You'll be able to unregister from said database at "
+#~ "any time from the newsletter subscription options"
#~ msgstr ""
#~ "同様に、ニュースレターの購読をすると、あなたのメールアドレスが Artica TS の"
-#~ "データベースに登録されることに合意いただくことになります。これは Pandora "
-#~ "FMS に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありませ"
-#~ "ん。ニュースレターの購読オプションでいつでも登録解除を行うことができます。"
+#~ "データベースに登録されることに合意いただくことになります。これは Pandora FMS "
+#~ "に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありません。"
+#~ "ニュースレターの購読オプションでいつでも登録解除を行うことができます。"
#~ msgid "Subscribe to our newsletter"
#~ msgstr "ニュースレターを購読する"
#~ msgid ""
-#~ "When you subscribe to the Pandora FMS Update Manager service, you accept "
-#~ "that we register your Pandora instance as an identifier on the database "
-#~ "owned by Artica TS. This data will solely be used to provide you with "
-#~ "information about Pandora FMS and will not be conceded to third parties. "
-#~ "You'll be able to unregister from said database at any time from the Update "
-#~ "Manager options"
+#~ "When you subscribe to the Pandora FMS Update Manager service, you accept that "
+#~ "we register your Pandora instance as an identifier on the database owned by "
+#~ "Artica TS. This data will solely be used to provide you with information "
+#~ "about Pandora FMS and will not be conceded to third parties. You'll be able "
+#~ "to unregister from said database at any time from the Update Manager options"
#~ msgstr ""
-#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータ"
-#~ "ベースにあなたの Pandora インスタンスを識別する情報を登録することに合意いた"
-#~ "だくことになります。これは Pandora FMS に関する情報を提供する目的にのみ利用"
-#~ "し、第三者へ提供されることはありません。アップデートマネージャオプションから"
-#~ "いつでもデータベースの登録解除を行うことができます。"
+#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータベー"
+#~ "スにあなたの Pandora インスタンスを識別する情報を登録することに合意いただくこ"
+#~ "とになります。これは Pandora FMS に関する情報を提供する目的にのみ利用し、第三"
+#~ "者へ提供されることはありません。アップデートマネージャオプションからいつでも"
+#~ "データベースの登録解除を行うことができます。"
#~ msgid "Stay up to date with the Pandora FMS community"
#~ msgstr "Pandora FMS コミュニティで最新情報を確認してください"
#~ msgid "This field allows url insertion using the BBCode's url tag"
#~ msgstr ""
-#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することが"
-#~ "できます"
+#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することがで"
+#~ "きます"
#~ msgid "The format is: [url='url to navigate']'text to show'[/url]"
#~ msgstr "フォーマット: [url='url to navigate']'表示するテキスト'[/url]"
@@ -60474,8 +59958,8 @@ msgstr ""
#~ msgstr "例: [url=pandorafms.org]Pandora FMS コミュニティ[/url]"
#~ msgid ""
-#~ "Please fill the following information in order to configure your Pandora "
-#~ "FMS instance successfully"
+#~ "Please fill the following information in order to configure your Pandora FMS "
+#~ "instance successfully"
#~ msgstr ""
#~ "Pandora FMS インスタンスを正しく設定するために、以下の情報を入力してください"
@@ -60502,18 +59986,18 @@ msgstr ""
#~ msgstr "例: switch.ehorus.com"
#~ msgid ""
-#~ "Set a value too high cause a slowdown on console and a performance penalty "
-#~ "in the system."
+#~ "Set a value too high cause a slowdown on console and a performance penalty in "
+#~ "the system."
#~ msgstr ""
-#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が"
-#~ "発生します。"
+#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が発"
+#~ "生します。"
#~ msgid ""
#~ "If you check this option, the lateral menus display with left click. "
#~ "Otherwise it will show by placing the mouse over"
#~ msgstr ""
-#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうで"
-#~ "なければ、マウスオーバーで表示されます。"
+#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうでな"
+#~ "ければ、マウスオーバーで表示されます。"
#~ msgid "Display lateral menus with click"
#~ msgstr "クリックで横のメニューを表示"
@@ -60560,8 +60044,8 @@ msgstr ""
#~ "newsletter subscription process"
#~ msgstr ""
#~ "ニュースレターの購読を開始するには こちら"
-#~ " をクリックしてください"
+#~ "decoration:underline\" href=\"javascript: force_run_newsletter();\"> こちら"
+#~ "a> をクリックしてください"
#~ msgid ""
#~ "Click こちら をクリッ"
-#~ "クしてください"
+#~ "underline\" href=\"javascript: force_run_register();\"> こちら をクリック"
+#~ "してください"
#~ msgid "This instance is not registered in the Update manager"
#~ msgstr "このインスタンスはアップデートマネージャに登録されていません"
@@ -60595,8 +60079,8 @@ msgstr ""
#~ "Path where you put your cert and name of this cert. Remember your cert only "
#~ "in .pem extension."
#~ msgstr ""
-#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意"
-#~ "してください。"
+#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意し"
+#~ "てください。"
#~ msgid "Module Groups synchronization"
#~ msgstr "モジュールグループ同期"
@@ -60641,82 +60125,79 @@ msgstr ""
#~ msgid "Empty for a transparent background color or CSS compatible value"
#~ msgstr "透明な背景色またはCSSに合う値が空です"
-#~ msgid ""
-#~ "If propagate acl is activated, this group will include its child groups"
+#~ msgid "If propagate acl is activated, this group will include its child groups"
#~ msgstr "ACLの伝播を有効にすると、このグループは子グループを含みます"
#~ msgid "Synchronizing Module Groups"
#~ msgstr "モジュールグループの同期中"
#~ msgid ""
-#~ "Update Manager sends anonymous information about Pandora FMS usage (number "
-#~ "of agents and modules running). To disable it, please remove the remote "
-#~ "server address from the Update Manager plugin setup."
+#~ "Update Manager sends anonymous information about Pandora FMS usage (number of "
+#~ "agents and modules running). To disable it, please remove the remote server "
+#~ "address from the Update Manager plugin setup."
#~ msgstr ""
-#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェ"
-#~ "ントとモジュール数)を送信します。無効化するには、アップデートマネージャプラ"
-#~ "グインの設定からリモートサーバのアドレスを削除します。"
+#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェン"
+#~ "トとモジュール数)を送信します。無効化するには、アップデートマネージャプラグイ"
+#~ "ンの設定からリモートサーバのアドレスを削除します。"
#~ msgid ""
-#~ "The community version doesn't have the ability to define your own library "
-#~ "of local modules, or distribute it to remote agents. You need to make those "
-#~ "changes individually on each agent which is possible by using external "
-#~ "tools and time and effort. Nor can it distribute local plugins, or have "
-#~ "access to the library of enterprise plugins to monitor applications such as "
-#~ "VMWare, RHEV or Informix between others. The Enterprise version will have "
-#~ "all this, plus the ability to distribute and manage your own local modules "
-#~ "on your systems, individually or through policies.\n"
+#~ "The community version doesn't have the ability to define your own library of "
+#~ "local modules, or distribute it to remote agents. You need to make those "
+#~ "changes individually on each agent which is possible by using external tools "
+#~ "and time and effort. Nor can it distribute local plugins, or have access to "
+#~ "the library of enterprise plugins to monitor applications such as VMWare, "
+#~ "RHEV or Informix between others. The Enterprise version will have all this, "
+#~ "plus the ability to distribute and manage your own local modules on your "
+#~ "systems, individually or through policies.\n"
#~ " pandorafms.com"
+#~ "systems, making it difficult to manage them in a comprehensive manner? Would "
+#~ "you like to deploy monitoring, alerts and even local plugins with a single "
+#~ "click? Pandora FMS Enterprise Policies are exactly what you need; you'll save "
+#~ "time, effort and annoyances. More information pandorafms.com"
#~ msgstr ""
-#~ "すべての監視を集約したいですか。多くのシステムがあり、包括的なルールでそれら"
-#~ "を管理するのは難しくはないでしょうか。監視、アラート設定、ローカルプラグイン"
-#~ "でさえ、一回のクリックで展開したくありませんか。Pandora FMS Enterprise ポリ"
-#~ "シーは、まさにそういったニーズに答えるものです。時間の浪費と頭痛の種を軽減し"
-#~ "ます。より詳細は、 pandorafms.comを参照してくだ"
-#~ "さい。"
+#~ "すべての監視を集約したいですか。多くのシステムがあり、包括的なルールでそれらを"
+#~ "管理するのは難しくはないでしょうか。監視、アラート設定、ローカルプラグインでさ"
+#~ "え、一回のクリックで展開したくありませんか。Pandora FMS Enterprise ポリシー"
+#~ "は、まさにそういったニーズに答えるものです。時間の浪費と頭痛の種を軽減します。"
+#~ "より詳細は、 pandorafms.comを参照してください。"
#~ msgid ""
#~ "Pandora FMS Enterprise also features event correlation. Through correlation "
-#~ "you can generate realtime alerts and / or new events based on logical "
-#~ "rules. This allows you to automate troubleshooting. If you know the value "
-#~ "of working with events, event correlation will take you to a new level."
+#~ "you can generate realtime alerts and / or new events based on logical rules. "
+#~ "This allows you to automate troubleshooting. If you know the value of working "
+#~ "with events, event correlation will take you to a new level."
#~ msgstr ""
-#~ "Pandora FMS Enterprise は、イベント集約の相関も持っています。これを通して、"
-#~ "論理的なルールに基づくリアルタイムアラートや新たなイベントを生成することがで"
-#~ "きます。これは、自動的なトラブルシューティングを可能にします。イベント発生時"
-#~ "の値を知れば、イベント送還が次のステップを教えてくれます。"
+#~ "Pandora FMS Enterprise は、イベント集約の相関も持っています。これを通して、論"
+#~ "理的なルールに基づくリアルタイムアラートや新たなイベントを生成することができま"
+#~ "す。これは、自動的なトラブルシューティングを可能にします。イベント発生時の値を"
+#~ "知れば、イベント送還が次のステップを教えてくれます。"
#~ msgid ""
#~ "The Enterprise version comes with a different update system, with fully "
#~ "tested, professionally-supported packages, and our support team is there to "
#~ "help you in case of problems or queries. Update Manager is another feature "
-#~ "present in the Enterprise version and not included in the OpenSource "
-#~ "version. There are lots of advanced business-oriented features contained in "
-#~ "Pandora FMS Enterprise Edition. For more information visit pandorafms.com"
#~ msgstr ""
-#~ "Enterprise版では、完全にテストされ、サポートされたパッケージでの異なる更新シ"
-#~ "ステムです。我々のサポートチームが問題や問い合わせに対して対応します。"
-#~ "Enterprise版のアップデートマネージャには、オープンソース版には無い異なる機能"
-#~ "があります。Pandora FMS Enterpriseには、多くのビジネス向けの機能が含まれてい"
-#~ "ます。より詳細は、pandorafms.comを参照"
-#~ "してください。"
+#~ "Enterprise版では、完全にテストされ、サポートされたパッケージでの異なる更新シス"
+#~ "テムです。我々のサポートチームが問題や問い合わせに対して対応します。Enterprise"
+#~ "版のアップデートマネージャには、オープンソース版には無い異なる機能があります。"
+#~ "Pandora FMS Enterpriseには、多くのビジネス向けの機能が含まれています。より詳細"
+#~ "は、pandorafms.comを参照してください。"
#~ msgid ""
#~ "The Update Manager client is included on Pandora FMS. It helps system "
@@ -60724,46 +60205,46 @@ msgstr ""
#~ "Manager retrieves new modules, new plugins and new features (even full "
#~ "migrations tools for future versions) automatically."
#~ msgstr ""
-#~ "アップデートマネージャクライアントは、Pandora FMS に含まれています。"
-#~ "Pandorra FMS を自動的に更新する処理をサポートします。アップデートマネージャ"
-#~ "は、新たなモジュール、新たなプラグインおよび新たな機能(将来のバージョンへの"
-#~ "マイグレーションツールを含む)を自動的に取り込みます。"
+#~ "アップデートマネージャクライアントは、Pandora FMS に含まれています。Pandorra "
+#~ "FMS を自動的に更新する処理をサポートします。アップデートマネージャは、新たなモ"
+#~ "ジュール、新たなプラグインおよび新たな機能(将来のバージョンへのマイグレーショ"
+#~ "ンツールを含む)を自動的に取り込みます。"
#~ msgid ""
#~ "Access to this page is restricted to authorized users only, please contact "
#~ "system administrator if you need assistance.
\n"
-#~ "\tPlease know that all attempts to access this page are recorded in "
-#~ "security logs of Pandora System Database"
+#~ "\tPlease know that all attempts to access this page are recorded in security "
+#~ "logs of Pandora System Database"
#~ msgstr ""
-#~ "このページへのアクセスは許可されたユーザのみ可能です。手助けが必要であればシ"
-#~ "ステム管理者へ連絡してください。
\n"
-#~ "\tこのページへのアクセスは、Pandora のシステムデータベースのセキュリティログ"
-#~ "に記録されます。"
+#~ "このページへのアクセスは許可されたユーザのみ可能です。手助けが必要であればシス"
+#~ "テム管理者へ連絡してください。
\n"
+#~ "\tこのページへのアクセスは、Pandora のシステムデータベースのセキュリティログに"
+#~ "記録されます。"
#~ msgid ""
#~ "Report generating on the Enterprise version is also more powerful: it has "
-#~ "wizards, you can schedule emails in PDF to be sent according to the "
-#~ "schedule you decide, and it has a template system to create personalized "
-#~ "reports quickly for each of your customers. It will even allow your "
-#~ "customers to generate their own reports from templates created by you. If "
-#~ "reports are key to your business, Pandora FMS Enterprise version is for you."
+#~ "wizards, you can schedule emails in PDF to be sent according to the schedule "
+#~ "you decide, and it has a template system to create personalized reports "
+#~ "quickly for each of your customers. It will even allow your customers to "
+#~ "generate their own reports from templates created by you. If reports are key "
+#~ "to your business, Pandora FMS Enterprise version is for you."
#~ msgstr ""
-#~ "Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュール"
-#~ "で PDF を送信することができます。また、あなたの顧客ごとに個別のレポートを素"
-#~ "早く作成できるテンプレートシステムがあります。作成したテンプレートから、顧客"
-#~ "自身が独自のレポートを生成することもできます。レポートがビジネスにとって重要"
-#~ "であるならば、Pandora FMS Enteprise はあなたの要望にマッチします。"
+#~ "Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュールで "
+#~ "PDF を送信することができます。また、あなたの顧客ごとに個別のレポートを素早く作"
+#~ "成できるテンプレートシステムがあります。作成したテンプレートから、顧客自身が独"
+#~ "自のレポートを生成することもできます。レポートがビジネスにとって重要であるなら"
+#~ "ば、Pandora FMS Enteprise はあなたの要望にマッチします。"
#~ msgid ""
#~ "This system has too many modules per agent. OpenSource version could manage "
-#~ "thousands of modules, but is not recommended to have more than 40 modules "
-#~ "per agent. This configuration has B/A modules per agent. Checkout the "
-#~ "Enterprise Version for a professional supported system."
+#~ "thousands of modules, but is not recommended to have more than 40 modules per "
+#~ "agent. This configuration has B/A modules per agent. Checkout the Enterprise "
+#~ "Version for a professional supported system."
#~ msgstr ""
#~ "このシステムは、一つのエージェントあたりのモジュール数が多すぎです。オープン"
-#~ "ソース版では数千のモジュールを管理することができますが、一つのエージェント"
-#~ "で 40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認"
-#~ "してください。"
+#~ "ソース版では数千のモジュールを管理することができますが、一つのエージェントで "
+#~ "40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認してく"
+#~ "ださい。"
#~ msgid "Status of module"
#~ msgstr "モジュールの状態"
@@ -60795,13 +60276,12 @@ msgstr ""
#~ msgid "No Dashboards"
#~ msgstr "ダッシュボードがありません"
-#~ msgid ""
-#~ "Select the path where SimpleSAML has been installed (by default '/opt/')"
+#~ msgid "Select the path where SimpleSAML has been installed (by default '/opt/')"
#~ msgstr "SimpleSAML がインストールされているパスを選択 (デフォルトは '/opt/')"
#~ msgid ""
-#~ "The alert would fire when the value is not between "
-#~ "span> and "
+#~ "The alert would fire when the value is not between "
+#~ "and "
#~ msgstr ""
#~ "値が と の間に無い場合"
#~ "に、アラートを発報します。"
@@ -60815,8 +60295,8 @@ msgstr ""
#~ msgid ""
#~ "Cannot connect to the database, please check your database setup in the "
#~ "include/config.php file.
\n"
-#~ "\t\t\tProbably your database, hostname, user or password values are "
-#~ "incorrect or\n"
+#~ "\t\t\tProbably your database, hostname, user or password values are incorrect "
+#~ "or\n"
#~ "\t\t\tthe database server is not running."
#~ msgstr ""
#~ "データベースに接続できません。 include/config.php ファイル内のデータ"
@@ -60831,21 +60311,20 @@ msgstr ""
#~ 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\tshould not read it or write to it. It should be written only for owner\n"
#~ "\t\t\t(usually www-data or http daemon user), normal operation is not "
#~ "possible until you change\n"
-#~ "\t\t\tpermissions for include/config.php file. Please do it, it is "
-#~ "for your security."
+#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for "
+#~ "your security."
#~ msgstr ""
-#~ "セキュリティ上の理由により、 config.php は制限されたパーミッションで"
-#~ "ある必要があります。\n"
+#~ "セキュリティ上の理由により、 config.php は制限されたパーミッションであ"
+#~ "る必要があります。\n"
#~ "\t\t\t\"other\"ユーザは読み書きできないようにし、所有者(通常は www-data や "
#~ "http デーモンの\n"
-#~ "\t\t\tユーザ)のみが書き込みできるようにします。include/config.php "
-#~ "ファイルの\n"
-#~ "\t\t\tパーミッションを修正するまで通常の動作をしません。セキュリティのために"
-#~ "調整をしてください。"
+#~ "\t\t\tユーザ)のみが書き込みできるようにします。include/config.php ファ"
+#~ "イルの\n"
+#~ "\t\t\tパーミッションを修正するまで通常の動作をしません。セキュリティのために調"
+#~ "整をしてください。"
#~ msgid "Percentil 95"
#~ msgstr "95パーセント"
@@ -60857,11 +60336,11 @@ msgstr ""
#~ msgstr " のモジュール "
#~ msgid ""
-#~ "Event history is ONLY used for event reports, is not used in graphs or "
-#~ "event viewer."
+#~ "Event history is ONLY used for event reports, is not used in graphs or event "
+#~ "viewer."
#~ msgstr ""
-#~ "イベントヒストリはイベントレポートにのみ利用されます。グラフやグラフ表示には"
-#~ "利用されません。"
+#~ "イベントヒストリはイベントレポートにのみ利用されます。グラフやグラフ表示には利"
+#~ "用されません。"
#~ msgid "Time Not init"
#~ msgstr "未初期化時間"
@@ -60886,9 +60365,9 @@ msgstr ""
#~ "problems and you lost data. Recommended that event days purge will more "
#~ "taller than event days to history DB"
#~ msgstr ""
-#~ "イベントの削除タイミングを、ヒストリデータベースへイベントを移す日よりも短く"
-#~ "設定していると、問題が発生しデータを失ってしまいます。イベントの削除は、ヒス"
-#~ "トリデータベースへイベントを移す日よりも後に設定してください。"
+#~ "イベントの削除タイミングを、ヒストリデータベースへイベントを移す日よりも短く設"
+#~ "定していると、問題が発生しデータを失ってしまいます。イベントの削除は、ヒストリ"
+#~ "データベースへイベントを移す日よりも後に設定してください。"
#~ msgid "Time Uknown"
#~ msgstr "不明時間"
@@ -60909,18 +60388,18 @@ msgstr ""
#~ msgstr "メインヘルプ"
#~ msgid ""
-#~ "This is the online help for Pandora FMS console. This help is -in best "
-#~ "cases- just a brief contextual help, not intented to teach you how to use "
-#~ "Pandora FMS. Official documentation of Pandora FMS is about 900 pages, and "
-#~ "you probably don't need to read it entirely, but sure, you should download "
-#~ "it and take a look.
\n"
+#~ "This is the online help for Pandora FMS console. This help is -in best cases- "
+#~ "just a brief contextual help, not intented to teach you how to use Pandora "
+#~ "FMS. Official documentation of Pandora FMS is about 900 pages, and you "
+#~ "probably don't need to read it entirely, but sure, you should download it and "
+#~ "take a look.
\n"
#~ "\tDownload the official documentation"
#~ msgstr ""
-#~ "Pandora FMS コンソールのオンラインヘルプです。これは、その場で最適な手助けを"
-#~ "するのもであり、Pandora FMS の使い方を教えるものではありません。Pandora FMS "
-#~ "の公式ドキュメントは約 900ページあり全体を読む必要はありません。しかしダウン"
-#~ "ロードして確認すると良いでしょう。
\n"
+#~ "Pandora FMS コンソールのオンラインヘルプです。これは、その場で最適な手助けをす"
+#~ "るのもであり、Pandora FMS の使い方を教えるものではありません。Pandora FMS の公"
+#~ "式ドキュメントは約 900ページあり全体を読む必要はありません。しかしダウンロード"
+#~ "して確認すると良いでしょう。
\n"
#~ "\t公式ドキュメントをダウンロード"
@@ -61003,16 +60482,16 @@ msgstr ""
#~ msgstr "画面サイズ制限のため、ビジュアルコンソールは表示されません"
#~ msgid ""
-#~ "To enable the plugin execution, this extension needs the Cron jobs "
-#~ "extension installed.\n"
+#~ "To enable the plugin execution, this extension needs the Cron jobs extension "
+#~ "installed.\n"
#~ "\tKeep in mind that the Cron jobs execution period will be the less real "
#~ "execution period, so if you want to run the plugin every\n"
#~ "\t5 minutes, for example, the Cron jobs script should be configured in the "
#~ "cron to run every 5 minutes or less"
#~ msgstr ""
-#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストー"
-#~ "ルされている必要があります。\n"
-#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してくださ"
-#~ "い。たとえば、プラグインを 5分間隔で\n"
-#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行す"
-#~ "るよう cron を設定する必要があります。"
+#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストール"
+#~ "されている必要があります。\n"
+#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してください。"
+#~ "たとえば、プラグインを 5分間隔で\n"
+#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行する"
+#~ "よう cron を設定する必要があります。"
diff --git a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php
index 8041cf77d9..ec02614285 100644
--- a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php
+++ b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php
@@ -561,7 +561,6 @@ class BasicChart extends Widget
global $config;
$size = parent::getSize();
- hd($size, true);
include_once $config['homedir'].'/include/functions_graph.php';
include_once $config['homedir'].'/include/functions_agents.php';
@@ -625,16 +624,20 @@ class BasicChart extends Widget
],
];
+ $graph = \grafico_modulo_sparse($params);
$output = 'values['colorLabel'].'; font-size:'.$this->values['sizeLabel'].'px;">';
+ $output .= ((bool) $this->values['showLabel'] === true) ? $title : '';
+ $output .= '';
+ $output .= '';
+ $output .= ((bool) $this->values['showValue'] === true) ? $value : '';
+ $output .= '';
+ $output .= '
'.$interface_name;
- $labelStart .= ' (out): '.$outOctets;
+ $outOctets = explode(' ', $outOctets);
+ $labelStart .= ' (out): '.format_for_graph($outOctets[0]).' '.$outOctets[1];
}
if (isset($links['start']['id_metaconsole']) === true
@@ -665,10 +667,12 @@ final class NetworkLink extends Model
$inOctets = sprintf('%0.3f %s', $inOctets, $unitIn);
$labelEnd = $interface_name;
- $labelEnd .= ' (in): '.$inOctets;
+ $inOctets = explode(' ', $inOctets);
+ $labelEnd .= ' (in): '.format_for_graph($inOctets[0]).' '.$inOctets[1];
$labelEnd .= '
'.$interface_name;
- $labelEnd .= ' (out): '.$outOctets;
+ $outOctets = explode(' ', $outOctets);
+ $labelEnd .= ' (out): '.format_for_graph($outOctets[0]).' '.$outOctets[1];
}
if (isset($links['end']['id_metaconsole']) === true
diff --git a/pandora_console/include/styles/events.css b/pandora_console/include/styles/events.css
index e4dfbe428d..b0790f76b5 100644
--- a/pandora_console/include/styles/events.css
+++ b/pandora_console/include/styles/events.css
@@ -88,6 +88,10 @@ table#table_events > tbody > tr > td {
padding: 0px !important;
}
+table#table_events > tbody > tr > td > i {
+ font-size: 7.5pt;
+}
+
td > input[id^="checkbox-multi"] {
margin: 0px !important;
}
diff --git a/pandora_console/include/styles/js/datatables.min.css b/pandora_console/include/styles/js/datatables.min.css
index 2d108fe8d3..a9a1d5285c 100644
--- a/pandora_console/include/styles/js/datatables.min.css
+++ b/pandora_console/include/styles/js/datatables.min.css
@@ -924,9 +924,8 @@ a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
border: 1px solid #003eff;
- background: #007fff;
+ background: #ececec;
font-weight: normal;
- color: #fff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
@@ -936,7 +935,6 @@ a.ui-button:active,
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
- color: #fff;
text-decoration: none;
}
.ui-state-highlight,
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index adf1325b07..09248a1d5c 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -87,6 +87,11 @@
font-weight: 900;
}
+@font-face {
+ font-family: "text-security-disc";
+ src: url("https://raw.githubusercontent.com/noppa/text-security/master/dist/text-security-disc.woff");
+}
+
/*
@font-face {
font-family: "lato-italic";
@@ -4424,9 +4429,13 @@ span.log_zone_line_error {
border: 1px solid red;
}
-#toolbox > input {
- border-width: 0px 1px 0px 0px;
- border-color: lightgray;
+/* VISUAL MAP */
+#toolbox {
+ padding-top: 10px;
+}
+
+#toolbox button {
+ margin: 0px 10px;
}
#toolbox > input.service_min {
@@ -7149,6 +7158,10 @@ div.graph div.legend table {
margin-bottom: 35px;
}
+.mrgn_btn_35px_imp {
+ margin-bottom: 35px !important;
+}
+
.mrgn_btn_40px {
margin-bottom: 40px;
}
@@ -9006,6 +9019,8 @@ div.graph div.legend table {
.pre-wrap {
white-space: pre-wrap;
+ word-wrap: break-word;
+ font-family: "Courier New";
}
.reporting_ulr_img {
@@ -10240,7 +10255,7 @@ button.submitButton {
justify-content: space-between;
flex-direction: row;
min-width: 110px;
- height: 42px;
+ height: 45px;
font-size: 14px;
/*font-family: "lato";*/
align-items: center;
@@ -10443,12 +10458,24 @@ button.submitButton.onlyIcon.delete_item {
-webkit-mask: url(../../images/delete.svg) no-repeat right / contain;
}
+button.buttonButton.onlyIcon.edit_item,
+button.submitButton.onlyIcon.edit_item {
+ mask: url(../../images/edit.svg) no-repeat right / contain;
+ -webkit-mask: url(../../images/edit.svg) no-repeat right / contain;
+}
+
button.buttonButton.onlyIcon.copy_item,
button.submitButton.onlyIcon.copy_item {
mask: url(../../images/copy.svg) no-repeat right / contain;
-webkit-mask: url(../../images/copy.svg) no-repeat right / contain;
}
+button.buttonButton.onlyIcon.show_grid,
+button.submitButton.onlyIcon.show_grid {
+ mask: url(../../images/WMI@svg.svg) no-repeat right / contain;
+ -webkit-mask: url(../../images/WMI@svg.svg) no-repeat right / contain;
+}
+
button.buttonButton.link-create-item,
button.submitButton.link-create-item {
border-radius: 0;
@@ -11539,6 +11566,7 @@ p.trademark-copyright {
#tab-database {
height: 80%;
overflow: auto;
+ width: 96%;
}
.item_status_tree_view {
@@ -11832,6 +11860,10 @@ div.relative > div > div#ui-datepicker-div {
width: 400px;
}
+#message_dialog_connection {
+ height: auto !important;
+}
+
#module_relations > thead > tr {
border: none !important;
border-bottom: 1px solid #e2e2e2 !important;
diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css
index f657e9d910..bd32734296 100644
--- a/pandora_console/include/styles/pandora_black.css
+++ b/pandora_console/include/styles/pandora_black.css
@@ -736,7 +736,7 @@ div#main_pure {
div#main,
div#container,
body.pure {
- background-color: #111;
+ background-color: #111 !important;
}
form ul.form_flex {
@@ -1392,6 +1392,7 @@ p.trademark-copyright {
#tab-database {
height: 80%;
overflow: auto;
+ width: 96%;
}
button.buttonButton,
@@ -1438,12 +1439,21 @@ select[multiple] option:active {
background: #008d86;
}
+.select2-search.select2-search--dropdown,
+.select2-results > .select2-results__options > .select2-results__option {
+ background-color: #222;
+}
+
.select2-results
> .select2-results__options
> .select2-results__option.select2-results__option--highlighted {
background-color: #008d86;
}
+.select2-container .select2-selection--single .select2-selection__rendered {
+ color: var(--secondary-color) !important;
+}
+
.filter_summary > div,
.filter_summary > div > div.content {
background-color: #222 !important;
diff --git a/pandora_console/include/styles/sound_events.css b/pandora_console/include/styles/sound_events.css
index 5bab51a89d..3b36dc67a2 100644
--- a/pandora_console/include/styles/sound_events.css
+++ b/pandora_console/include/styles/sound_events.css
@@ -4,6 +4,9 @@
div.container-button-play > button#button-start-search {
transition: none !important;
}
+.wizard {
+ text-align: left;
+}
#modal-sound {
display: flex;
flex-direction: column;
@@ -66,7 +69,7 @@ div.container-button-play > button#button-start-search {
width: inherit;
position: absolute;
top: -12px;
- left: 50%;
+ left: 52%;
}
#tabs-sound-modal ul.wizard li.interval-sounds label:first-of-type,
diff --git a/pandora_console/include/styles/visual_maps.css b/pandora_console/include/styles/visual_maps.css
index f106dda76d..af7a0af2c8 100644
--- a/pandora_console/include/styles/visual_maps.css
+++ b/pandora_console/include/styles/visual_maps.css
@@ -34,6 +34,7 @@ div#vc-controls {
div#vc-controls div#menu_tab {
margin: 0px;
+ height: 100% !important;
}
div#vc-controls ul.white-box-content {
@@ -99,15 +100,6 @@ div#vc-controls img.vc-qr {
flex: inherit;
}
-input.vs_button_ghost {
- background-color: transparent;
- border: 1px solid #82b92e;
- color: #82b92e;
- text-align: center;
- padding: 4px 12px;
- font-weight: bold;
-}
-
#toolbox #auto_save {
padding-top: 5px;
}
@@ -165,6 +157,14 @@ div.label strong span {
z-index: 999;
}
+.vc-btn-no-fullscreen {
+ padding: 0 !important;
+}
+
+.vc-btn-no-fullscreen img {
+ margin-top: 0 !important;
+}
+
.visual_font_size_4pt,
.visual_font_size_4pt > em,
.visual_font_size_4pt > strong,
diff --git a/pandora_console/index.php b/pandora_console/index.php
index 98b3ce716e..aaf960eb91 100755
--- a/pandora_console/index.php
+++ b/pandora_console/index.php
@@ -797,6 +797,7 @@ if (isset($config['id_user']) === false) {
$pass2 = get_parameter_post('pass2');
$id_user = get_parameter_post('id_user');
+ $db_reset_pass_entry = false;
if (empty($reset_hash) === false) {
$hash_data = explode(':::', $reset_hash);
$id_user = $hash_data[0];
@@ -1361,7 +1362,7 @@ if ($searchPage) {
$_GET['sec2'] = 'operation/agentes/group_view';
break;
- case 'Alert detail':
+ case 'Alert details':
$_GET['sec'] = 'view';
$_GET['sec2'] = 'operation/agentes/alerts_status';
break;
@@ -1388,7 +1389,7 @@ if ($searchPage) {
case 'Visual console':
$id_visualc = db_get_value('id', 'tlayout', 'name', $home_url);
if (($home_url == '') || ($id_visualc == false)) {
- $str = 'sec=network&sec2=operation/visual_console/index&refr=60';
+ $str = 'sec=godmode/reporting/map_builder&sec2=godmode/reporting/map_builder';
} else {
$str = 'sec=network&sec2=operation/visual_console/render_view&id='.$id_visualc;
}
diff --git a/pandora_console/install.php b/pandora_console/install.php
index 9b520d1d6a..724ac008d9 100644
--- a/pandora_console/install.php
+++ b/pandora_console/install.php
@@ -131,7 +131,7 @@